From: Donald Sharp Date: Tue, 13 Dec 2022 20:11:05 +0000 (-0500) Subject: zebra: Remove badly backported TC code X-Git-Tag: docker/8.4.2~10^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=272686633b651cd57adcca00b5b6b4e7181b6b1d;p=matthieu%2Ffrr.git zebra: Remove badly backported TC code Some TC code for the dplane got backported that should not have been. Remove it. Signed-off-by: Donald Sharp --- diff --git a/zebra/zebra_script.c b/zebra/zebra_script.c index 5c67ad4f16..e9e8857a09 100644 --- a/zebra/zebra_script.c +++ b/zebra/zebra_script.c @@ -417,17 +417,12 @@ void lua_pushzebra_dplane_ctx(lua_State *L, const struct zebra_dplane_ctx *ctx) case DPLANE_OP_INTF_INSTALL: case DPLANE_OP_INTF_UPDATE: case DPLANE_OP_INTF_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: /* Not currently handled */ case DPLANE_OP_INTF_NETCONFIG: /*NYI*/ case DPLANE_OP_NONE: + case DPLANE_OP_TC_INSTALL: + case DPLANE_OP_TC_UPDATE: + case DPLANE_OP_TC_DELETE: break; } /* Dispatch by op code */ }