diff options
author | Damjan Marion <damarion@cisco.com> | 2022-01-17 14:49:17 +0100 |
---|---|---|
committer | Ole Tr�an <otroan@employees.org> | 2022-01-18 13:20:21 +0000 |
commit | 1cd0e5dd533f4209dde453eaa43215e52cd42985 (patch) | |
tree | 88ed4b47252cfe27c13ac0f85a6cfc86a7052d5b /src/plugins/rdma | |
parent | 49378f206b8e780a898e632f7dd8db912b9b118e (diff) |
vnet: distinguish between max_frame_size and MTU
Type: improvement
Change-Id: I3659de6599f402c92e3855e3bf0e5e3388f2bea0
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/rdma')
-rw-r--r-- | src/plugins/rdma/device.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/rdma/device.c b/src/plugins/rdma/device.c index 167a23213cc..3fdc399a4e3 100644 --- a/src/plugins/rdma/device.c +++ b/src/plugins/rdma/device.c @@ -184,7 +184,8 @@ rdma_mac_change (vnet_hw_interface_t * hw, const u8 * old, const u8 * new) } static clib_error_t * -rdma_set_mtu (vnet_main_t *vnm, vnet_hw_interface_t *hw, u32 mtu) +rdma_set_max_frame_size (vnet_main_t *vnm, vnet_hw_interface_t *hw, + u32 frame_size) { return vnet_error (VNET_ERR_UNSUPPORTED, 0); } @@ -358,7 +359,7 @@ rdma_register_interface (vnet_main_t * vnm, rdma_device_t * rd) eir.dev_instance = rd->dev_instance; eir.address = rd->hwaddr.bytes; eir.cb.flag_change = rdma_flag_change; - eir.cb.set_mtu = rdma_set_mtu; + eir.cb.set_max_frame_size = rdma_set_max_frame_size; rd->hw_if_index = vnet_eth_register_interface (vnm, &eir); /* Indicate ability to support L3 DMAC filtering and * initialize interface to L3 non-promisc mode */ |