Re: [PATCH iproute2] configure: support ipset version 7 with kernel version 5

2020-07-08 Thread Tony Ambardar
On Wed, 8 Jul 2020 at 08:49, Stephen Hemminger wrote: > > On Tue, 7 Jul 2020 00:58:33 -0700 > Tony Ambardar wrote: > > > The configure script checks for ipset v6 availability but doesn't test > > for v7, which is backward compatible and used on kernel v5.x systems. > > Update the script to test

Re: [PATCH iproute2] configure: support ipset version 7 with kernel version 5

2020-07-08 Thread Stephen Hemminger
On Tue, 7 Jul 2020 00:58:33 -0700 Tony Ambardar wrote: > The configure script checks for ipset v6 availability but doesn't test > for v7, which is backward compatible and used on kernel v5.x systems. > Update the script to test for both ipset versions. Without this change, > the tc ematch functi

[PATCH iproute2] configure: support ipset version 7 with kernel version 5

2020-07-07 Thread Tony Ambardar
The configure script checks for ipset v6 availability but doesn't test for v7, which is backward compatible and used on kernel v5.x systems. Update the script to test for both ipset versions. Without this change, the tc ematch function em_ipset will be disabled. Signed-off-by: Tony Ambardar ---