From 66593a6a63fe30ed4b8bed96844244d78274e8f2 Mon Sep 17 00:00:00 2001 From: Artem Glazychev Date: Fri, 18 Feb 2022 12:23:20 +0700 Subject: vnet: add set_max_frame_size callbacks for several interfaces This is required after distinguishing between max_frame_size and MTU Type: fix Signed-off-by: Artem Glazychev Change-Id: Ie642bee4e30ca76903bb8be5eeb6914c2c09bf35 --- src/vnet/vxlan/vxlan.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/vnet/vxlan/vxlan.c') diff --git a/src/vnet/vxlan/vxlan.c b/src/vnet/vxlan/vxlan.c index f394b6b7c89..efe629c6eba 100644 --- a/src/vnet/vxlan/vxlan.c +++ b/src/vnet/vxlan/vxlan.c @@ -52,6 +52,14 @@ vxlan_eth_flag_change (vnet_main_t *vnm, vnet_hw_interface_t *hi, u32 flags) return 0; } +static clib_error_t * +vxlan_eth_set_max_frame_size (vnet_main_t *vnm, vnet_hw_interface_t *hw, + u32 frame_size) +{ + /* nothing for now */ + return 0; +} + static u8 * format_decap_next (u8 * s, va_list * args) { @@ -470,6 +478,7 @@ int vnet_vxlan_add_del_tunnel eir.dev_instance = dev_instance; eir.address = hw_addr; eir.cb.flag_change = vxlan_eth_flag_change; + eir.cb.set_max_frame_size = vxlan_eth_set_max_frame_size; t->hw_if_index = vnet_eth_register_interface (vnm, &eir); } -- cgit 1.2.3-korg