Re: [PATCH net-next v10 0/4] net sched actions: improve dump performance

2017-06-11 Thread Jamal Hadi Salim
Attached iproute2 used for testing these features.. cheers, jamal diff --git a/Makefile b/Makefile index 18de7dc..ed3c10a 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,7 @@ HOSTCC ?= $(CC) DEFINES += -D_GNU_SOURCE # Turn on transparent support for LFS DEFINES += -D_FILE_OFFSET_BITS=64 -D_

[PATCH net-next v10 0/4] net sched actions: improve dump performance

2017-06-11 Thread Jamal Hadi Salim
From: Jamal Hadi Salim Changes since v9: - 1) General consensus: - remove again the use of BIT() to maintain uapi consistency ;-> 1) Jiri: - Add a new netlink type NLA_FLAG_BITS to check for valid bits and use it instead of inline vetting. Changes since v8: ---