Re: [dpdk-dev] [PATCH] net/tap: fix compilation issue with old kernels

2020-05-10 Thread Raslan Darawsheh
reference to glibc which is missing from commit log: https://github.com/bminor/glibc/commit/f9b437d5efce93800b51ad2a437c8b1c9616bf80 Kindest regards, Raslan Darawsheh > -Original Message- > From: Raslan Darawsheh > Sent: Thursday, May 7, 2020 12:46 PM > To: ferruh.yi...@intel.com > Cc: d

Re: [dpdk-dev] [PATCH] net/tap: fix compilation issue with old kernels

2020-05-07 Thread Ferruh Yigit
On 5/7/2020 10:45 AM, Raslan Darawsheh wrote: > With old kernels that don't have support for extended ack > the variable one is not used which will cause a compilation > failure: > drivers/net/tap/tap_netlink.c:48:6: > error: unused variable 'one' [-Werror=unused-variable] > int one = 1; >

[dpdk-dev] [PATCH] net/tap: fix compilation issue with old kernels

2020-05-07 Thread Raslan Darawsheh
With old kernels that don't have support for extended ack the variable one is not used which will cause a compilation failure: drivers/net/tap/tap_netlink.c:48:6: error: unused variable 'one' [-Werror=unused-variable] int one = 1; ^~~ cc1: all warnings being treated as errors Fixes: f11e38d