diff options
author | Siger Yang <siger.yang@outlook.com> | 2022-09-06 09:10:11 +0200 |
---|---|---|
committer | Siger Yang <siger.yang@outlook.com> | 2022-11-22 15:35:35 +0100 |
commit | c317d3f246769e8261df0f9d1eb787bea7b5da06 (patch) | |
tree | 5fe488123f08250f2c5db8c70bb092ea6c1e3ed5 /zebra/zebra_nhg.c | |
parent | zebra: update tc netlink / socket license header (diff) | |
download | frr-c317d3f246769e8261df0f9d1eb787bea7b5da06.tar.xz frr-c317d3f246769e8261df0f9d1eb787bea7b5da06.zip |
zebra: traffic control state management
This allows Zebra to manage QDISC, TCLASS, TFILTER in kernel and do cleaning
jobs when it starts up.
Signed-off-by: Siger Yang <siger.yang@outlook.com>
Diffstat (limited to 'zebra/zebra_nhg.c')
-rw-r--r-- | zebra/zebra_nhg.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/zebra/zebra_nhg.c b/zebra/zebra_nhg.c index 5fadd4c82..286cc0292 100644 --- a/zebra/zebra_nhg.c +++ b/zebra/zebra_nhg.c @@ -3168,9 +3168,14 @@ void zebra_nhg_dplane_result(struct zebra_dplane_ctx *ctx) case DPLANE_OP_INTF_INSTALL: case DPLANE_OP_INTF_UPDATE: case DPLANE_OP_INTF_DELETE: - case DPLANE_OP_TC_INSTALL: - case DPLANE_OP_TC_UPDATE: - case DPLANE_OP_TC_DELETE: + case DPLANE_OP_TC_QDISC_INSTALL: + case DPLANE_OP_TC_QDISC_UNINSTALL: + case DPLANE_OP_TC_CLASS_ADD: + case DPLANE_OP_TC_CLASS_DELETE: + case DPLANE_OP_TC_CLASS_UPDATE: + case DPLANE_OP_TC_FILTER_ADD: + case DPLANE_OP_TC_FILTER_DELETE: + case DPLANE_OP_TC_FILTER_UPDATE: break; } } |