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/vnet/interface_cli.c | |
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/vnet/interface_cli.c')
-rw-r--r-- | src/vnet/interface_cli.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/vnet/interface_cli.c b/src/vnet/interface_cli.c index 740a8af78ec..b6d38578714 100644 --- a/src/vnet/interface_cli.c +++ b/src/vnet/interface_cli.c @@ -1167,21 +1167,11 @@ mtu_cmd (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) * Change physical MTU on interface. Only supported for Ethernet * interfaces */ - vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); ethernet_interface_t *eif = ethernet_get_interface (em, hw_if_index); if (!eif) return clib_error_return (0, "not supported"); - if (mtu < hi->min_supported_packet_bytes) - return clib_error_return (0, "Invalid mtu (%d): " - "must be >= min pkt bytes (%d)", mtu, - hi->min_supported_packet_bytes); - - if (mtu > hi->max_supported_packet_bytes) - return clib_error_return (0, "Invalid mtu (%d): must be <= (%d)", mtu, - hi->max_supported_packet_bytes); - err = vnet_hw_interface_set_mtu (vnm, hw_if_index, mtu); if (err) return err; |