diff options
author | John Lo <loj@cisco.com> | 2019-04-17 23:27:37 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-04-19 15:38:35 +0000 |
commit | a2661649b5e1f3158bd5cc5d710854384f078596 (patch) | |
tree | 9ed76599ad309d8a78144826e771f724d9b4d509 /src/plugins | |
parent | 2309e7a481f64e9dee21c43da4e48974cfee1156 (diff) |
Remove dummy_interface_tx output node from PPPoE plugin
Avoid creating per PPPoE session interface output/tx nodes
which are not used.
Change-Id: I065aa4f9bda6d2557c630bd45e888c999f2f9130
Signed-off-by: John Lo <loj@cisco.com>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/pppoe/pppoe.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/plugins/pppoe/pppoe.c b/src/plugins/pppoe/pppoe.c index 0595767f62f..9f620a21558 100644 --- a/src/plugins/pppoe/pppoe.c +++ b/src/plugins/pppoe/pppoe.c @@ -65,14 +65,6 @@ format_pppoe_name (u8 * s, va_list * args) return format (s, "pppoe_session%d", dev_instance); } -static uword -dummy_interface_tx (vlib_main_t * vm, - vlib_node_runtime_t * node, vlib_frame_t * frame) -{ - clib_warning ("you shouldn't be here, leaking buffers..."); - return frame->n_vectors; -} - static clib_error_t * pppoe_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags) { @@ -87,7 +79,6 @@ pppoe_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags) VNET_DEVICE_CLASS (pppoe_device_class,static) = { .name = "PPPoE", .format_device_name = format_pppoe_name, - .tx_function = dummy_interface_tx, .admin_up_down_function = pppoe_interface_admin_up_down, }; /* *INDENT-ON* */ |