summaryrefslogtreecommitdiff
path: root/tc/Makefile
diff options
context:
space:
mode:
authorYotam Gigi <yotamg@mellanox.com>2016-08-31 09:28:26 +0200
committerStephen Hemminger <stephen@networkplumber.org>2016-09-01 08:37:01 -0700
commitd5cbf3ff0561b6c8158c3538c7fe1946add9dec3 (patch)
tree3881418709d59d9a3d3777d417ef4af5c3103d17 /tc/Makefile
parent7c55d7700f4320186784590516993a73183bc2f2 (diff)
tc: Add support for the matchall traffic classifier.
The matchall classifier matches every packet and allows the user to apply actions on it. In addition, it supports the skip_sw and skip_hw (as can be found on u32 and flower filter) that direct the kernel to skip the software/hardware processing of the actions. This filter is very useful in usecases where every packet should be matched. For example, packet mirroring (SPAN) can be setup very easily using that filter. Signed-off-by: Yotam Gigi <yotamg@mellanox.com> Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Diffstat (limited to 'tc/Makefile')
-rw-r--r--tc/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/tc/Makefile b/tc/Makefile
index 42747c51..8917eaf4 100644
--- a/tc/Makefile
+++ b/tc/Makefile
@@ -67,6 +67,7 @@ TCMODULES += q_pie.o
TCMODULES += q_hhf.o
TCMODULES += q_clsact.o
TCMODULES += e_bpf.o
+TCMODULES += f_matchall.o
ifeq ($(TC_CONFIG_IPSET), y)
ifeq ($(TC_CONFIG_XT), y)