X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Finterface_cli.c;h=a2dfc2bb3ed409925b5a93b4f51e28bce3964832;hb=492d7790f;hp=740a8af78ec8c1c320b42ae41385b7b80c58b714;hpb=81bb6fc611d321a92ad2218e1b852db67980768a;p=vpp.git diff --git a/src/vnet/interface_cli.c b/src/vnet/interface_cli.c index 740a8af78ec..a2dfc2bb3ed 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; @@ -2525,6 +2515,12 @@ set_interface_tx_hash_cmd (vlib_main_t *vm, unformat_input_t *input, goto error; } + if (hash_name == 0) + { + error = clib_error_return (0, "hash-name is required"); + goto error; + } + hi = vnet_get_hw_interface (vnm, hw_if_index); ftype = vnet_get_hw_interface_class (vnm, hi->hw_class_index)->tx_hash_fn_type;