From d88fc0fcedb402e3dc82cb44280d4567a6a13266 Mon Sep 17 00:00:00 2001 From: Mohsin Kazmi Date: Thu, 30 Apr 2020 19:05:56 +0200 Subject: tap: refactor existing flags Type: refactor This patch refactor the existing flags and also add a new flag for packet coalescing. Change-Id: Ic826e4c81313f26d87c475cdf666b06cbed60a3a Signed-off-by: Mohsin Kazmi --- src/vat/api_format.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'src/vat/api_format.c') diff --git a/src/vat/api_format.c b/src/vat/api_format.c index c3441eb6986..d443239a940 100644 --- a/src/vat/api_format.c +++ b/src/vat/api_format.c @@ -7360,15 +7360,19 @@ api_tap_create_v2 (vat_main_t * vam) else if (unformat (i, "host-mtu-size %u", &host_mtu_size)) host_mtu_set = 1; else if (unformat (i, "no-gso")) - tap_flags &= ~TAP_FLAG_GSO; + tap_flags &= ~TAP_API_FLAG_GSO; else if (unformat (i, "gso")) - tap_flags |= TAP_FLAG_GSO; + tap_flags |= TAP_API_FLAG_GSO; else if (unformat (i, "csum-offload")) - tap_flags |= TAP_FLAG_CSUM_OFFLOAD; + tap_flags |= TAP_API_FLAG_CSUM_OFFLOAD; else if (unformat (i, "persist")) - tap_flags |= TAP_FLAG_PERSIST; + tap_flags |= TAP_API_FLAG_PERSIST; else if (unformat (i, "attach")) - tap_flags |= TAP_FLAG_ATTACH; + tap_flags |= TAP_API_FLAG_ATTACH; + else if (unformat (i, "tun")) + tap_flags |= TAP_API_FLAG_TUN; + else if (unformat (i, "gro-coalesce")) + tap_flags |= TAP_API_FLAG_GRO_COALESCE; else break; } @@ -20587,7 +20591,7 @@ _(l2_flags, \ _(bridge_flags, \ "bd_id [learn] [forward] [uu-flood] [flood] [arp-term] [disable]\n") \ _(tap_create_v2, \ - "id [hw-addr ] [host-if-name ] [host-ns ] [num-rx-queues ] [rx-ring-size ] [tx-ring-size ] [host-bridge ] [host-mac-addr ] [host-ip4-addr ] [host-ip6-addr ] [host-mtu-size ] [gso | no-gso | csum-offload] [persist] [attach]") \ + "id [hw-addr ] [host-if-name ] [host-ns ] [num-rx-queues ] [rx-ring-size ] [tx-ring-size ] [host-bridge ] [host-mac-addr ] [host-ip4-addr ] [host-ip6-addr ] [host-mtu-size ] [gso | no-gso | csum-offload | gro-coalesce] [persist] [attach] [tun]") \ _(tap_delete_v2, \ " | sw_if_index ") \ _(sw_interface_tap_v2_dump, "") \ -- cgit 1.2.3-korg