diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2020-09-25 15:36:19 +0200 |
---|---|---|
committer | Beno�t Ganne <bganne@cisco.com> | 2020-09-28 12:32:16 +0000 |
commit | 1017a1d360cc1c38e2aee4b5f19ff1f2869a8cd9 (patch) | |
tree | c1e962d553c993afd0ddf582ff838f7ed9be0371 /src/vnet/devices/tap | |
parent | 2fca85b3a171db19e0517a7a43c8029f5d24e6fa (diff) |
virtio: fix the gro enable/disable on tx-vrings
Type: fix
Change-Id: I96c30baaf34fe7b0cd899966a507501e58cde934
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Diffstat (limited to 'src/vnet/devices/tap')
-rw-r--r-- | src/vnet/devices/tap/cli.c | 2 | ||||
-rw-r--r-- | src/vnet/devices/tap/tap.c | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/vnet/devices/tap/cli.c b/src/vnet/devices/tap/cli.c index 7580d920061..89b2ff091b0 100644 --- a/src/vnet/devices/tap/cli.c +++ b/src/vnet/devices/tap/cli.c @@ -142,7 +142,7 @@ VLIB_CLI_COMMAND (tap_create_command, static) = { "[host-ip4-addr <ip4addr/mask>] [host-ip6-addr <ip6-addr>] " "[host-ip4-gw <ip4-addr>] [host-ip6-gw <ip6-addr>] " "[host-mac-addr <host-mac-address>] [host-if-name <name>] " - "[host-mtu-size <size>] [no-gso|gso|csum-offload|gro-coalesce] " + "[host-mtu-size <size>] [no-gso|gso [gro-coalesce]|csum-offload] " "[persist] [attach] [tun] [packed] [in-order]", .function = tap_create_command_fn, }; diff --git a/src/vnet/devices/tap/tap.c b/src/vnet/devices/tap/tap.c index 77c15ce0524..040ec1f1ea5 100644 --- a/src/vnet/devices/tap/tap.c +++ b/src/vnet/devices/tap/tap.c @@ -731,7 +731,6 @@ tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args) if ((args->tap_flags & TAP_FLAG_GSO) && (args->tap_flags & TAP_FLAG_GRO_COALESCE)) { - vif->packet_coalesce = 1; virtio_set_packet_coalesce (vif); } vnet_hw_interface_set_input_node (vnm, vif->hw_if_index, @@ -900,7 +899,6 @@ tap_gso_enable_disable (vlib_main_t * vm, u32 sw_if_index, int enable_disable, } if (is_packet_coalesce) { - vif->packet_coalesce = 1; virtio_set_packet_coalesce (vif); } } |