[dpdk-dev] [PATCH] sched: fix build on Atom without SSE4 support

2015-12-06 Thread Thomas Monjalon
2015-12-05 17:27, Mike Sowka: > Thanks for the pointers Thomas. Here is a signed-off patch > re-submission with some explanation, to the best of my experience. Thanks, it is really well detailed. It would have been perfect with -v2 --in-reply-to :) > Irrelevant of the target, the preprocessor #if

[dpdk-dev] [PATCH] sched: fix build on Atom without SSE4 support

2015-12-05 Thread Thomas Monjalon
2015-12-05 00:00, Mike Sowka: > --- > lib/librte_sched/rte_sched.c | 6 +++--- Please provide some explanations and Signed-off. No cover letter is needed for one patch. Guide of patch submission here: http://dpdk.org/dev#send Thanks

[dpdk-dev] [PATCH] sched: fix build on Atom without SSE4 support

2015-12-05 Thread Mike Sowka
Thanks for the pointers Thomas. Here is a signed-off patch re-submission with some explanation, to the best of my experience. Irrelevant of the target, the preprocessor #ifdef SSE2 for the grinder_pipe_exists function is inadequate since the __mm_testz_si128 function requires SSE4.1, PTEST instruc

[dpdk-dev] [PATCH] sched: fix build on Atom without SSE4 support

2015-12-05 Thread Mike Sowka
--- lib/librte_sched/rte_sched.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/librte_sched/rte_sched.c b/lib/librte_sched/rte_sched.c index 21ebf25..6f92aa6 100644 --- a/lib/librte_sched/rte_sched.c +++ b/lib/librte_sched/rte_sched.c @@ -55,8 +55,8 @@ #ifdef RTE_S