[dpdk-dev] [PATCH 1/2] examples/distributor: Fix compile issue

2015-11-27 Thread Wan, Qun
Acked and verified. -Original Message- From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Michael Qiu Sent: Thursday, November 26, 2015 9:35 AM To: dev at dpdk.org Subject: [dpdk-dev] [PATCH 1/2] examples/distributor: Fix compile issue examples/distributor/main.c(338): error #167

[dpdk-dev] [PATCH 1/2] examples/distributor: Fix compile issue

2015-11-26 Thread Thomas Monjalon
2015-11-26 09:35, Michael Qiu: > examples/distributor/main.c(338): error #167: > argument of type "struct rte_mbuf *" > is incompatible with parameter of type "const char *" > _mm_prefetch(bufs[0], 0); > > The first param of _mm_prefetch should be "const char *" and > need co

[dpdk-dev] [PATCH 1/2] examples/distributor: Fix compile issue

2015-11-26 Thread Thomas Monjalon
Hi Michael, Thank you very much for working on compilation issues. Please could you try to insert a "Fixes:" line in your logs?

[dpdk-dev] [PATCH 1/2] examples/distributor: Fix compile issue

2015-11-26 Thread Michael Qiu
examples/distributor/main.c(338): error #167: argument of type "struct rte_mbuf *" is incompatible with parameter of type "const char *" _mm_prefetch(bufs[0], 0); The first param of _mm_prefetch should be "const char *" and need convert "struct rte_mbuf *" to "const void *"