Re: [dpdk-dev] [PATCH] ethdev: fix compilation with gcc 4.8

2019-10-23 Thread Ferruh Yigit
On 10/23/2019 1:14 PM, Raslan Darawsheh wrote: > gcc 4.8 is considering bit filed as extention rather than > c11 std with pedantic, which cause compilation failure. > > This adds extention keyword exceplicitly to the struct > to avoid compilation issue on gcc 4.8 > > Fixes: a7658a86 ("ethdev: add

[dpdk-dev] [PATCH] ethdev: fix compilation with gcc 4.8

2019-10-23 Thread Raslan Darawsheh
gcc 4.8 is considering bit filed as extention rather than c11 std with pedantic, which cause compilation failure. This adds extention keyword exceplicitly to the struct to avoid compilation issue on gcc 4.8 Fixes: a7658a86 ("ethdev: add HIGIG2 key field to flow API") Signed-off-by: Raslan Daraws