[dpdk-dev] Issue on rte_sched.c

2016-05-01 Thread Thomas Monjalon
2016-04-30 05:50, Ariel Rodriguez: > Yes i am refereing on that commit. > > About RTE_MACHINE_CPUFLAG_* , i agreed. > > I never prepare a patch ... maybe is time to put my hands on that. Yes it is a good way to make your first patch. See http://dpdk.org/dev#send Thanks > 2016-04-13 20:35,

[dpdk-dev] Issue on rte_sched.c

2016-04-30 Thread Ariel Rodriguez
Yes i am refereing on that commit. About RTE_MACHINE_CPUFLAG_* , i agreed. I never prepare a patch ... maybe is time to put my hands on that. 2016-04-13 20:35, Ariel Rodriguez: > Hello, viewing the new code of librte_sched/ i found this line strange ... > > #if defined(__SSE4__) Are you

[dpdk-dev] Issue on rte_sched.c

2016-04-14 Thread Thomas Monjalon
2016-04-13 20:35, Ariel Rodriguez: > Hello, viewing the new code of librte_sched/ i found this line strange ... > > #if defined(__SSE4__) Are you refering to http://dpdk.org/commit/90f455f ? > if instead i use : > > #if defined(__SSE4_2__) || defined(__SSE4_1__) > > works like a charm ... >

[dpdk-dev] Issue on rte_sched.c

2016-04-13 Thread Ariel Rodriguez
Hello, viewing the new code of librte_sched/ i found this line strange ... #if defined(__SSE4__) if instead i use : #if defined(__SSE4_2__) || defined(__SSE4_1__) works like a charm ... i never see in any directive like __SSE4__ Regards