Re: [dpdk-dev] [PATCH] ethdev: fix endian annotation for spi item

2019-08-27 Thread Ferruh Yigit
On 8/23/2019 11:17 AM, Andrew Rybchenko wrote: > On 8/20/19 4:45 PM, David Marchand wrote: >> spi should be set with network endian values. >> While 0x == htonl(0x), this missing annotation is caught >> by sparse when compiling ovs (dpdk-latest branch). >> >> Fixes: d4b684f7197a ("n

Re: [dpdk-dev] [PATCH] ethdev: fix endian annotation for spi item

2019-08-23 Thread Andrew Rybchenko
On 8/20/19 4:45 PM, David Marchand wrote: spi should be set with network endian values. While 0x == htonl(0x), this missing annotation is caught by sparse when compiling ovs (dpdk-latest branch). Fixes: d4b684f7197a ("net: add ESP header to generic flow steering") Cc: sta...@dpdk

[dpdk-dev] [PATCH] ethdev: fix endian annotation for spi item

2019-08-20 Thread David Marchand
spi should be set with network endian values. While 0x == htonl(0x), this missing annotation is caught by sparse when compiling ovs (dpdk-latest branch). Fixes: d4b684f7197a ("net: add ESP header to generic flow steering") Cc: sta...@dpdk.org Signed-off-by: David Marchand --- li