From: Hongjun Ni Date: Tue, 7 Jun 2016 17:07:12 +0000 (+0800) Subject: Add vxlan-gpe tunnel to sw_interface_dump X-Git-Tag: v16.09-rc1~303 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F25%2F1425%2F3;p=vpp.git Add vxlan-gpe tunnel to sw_interface_dump Patchset 2: rebuild Change-Id: I3375d6c9c7e18ab46896552614369b9d77ee6004 Signed-off-by: Hongjun Ni --- diff --git a/vpp-api-test/vat/api_format.c b/vpp-api-test/vat/api_format.c index 410bab50b31..086c888c465 100644 --- a/vpp-api-test/vat/api_format.c +++ b/vpp-api-test/vat/api_format.c @@ -3116,6 +3116,13 @@ int api_sw_interface_dump (vat_main_t * vam) strncpy ((char *) mp->name_filter, "lo", sizeof(mp->name_filter)-1); S; + + /* and vxlan-gpe tunnel interfaces */ + M(SW_INTERFACE_DUMP, sw_interface_dump); + mp->name_filter_valid = 1; + strncpy ((char *) mp->name_filter, "vxlan_gpe", sizeof(mp->name_filter)-1); + S; + /* and vxlan tunnel interfaces */ M(SW_INTERFACE_DUMP, sw_interface_dump); mp->name_filter_valid = 1;