aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Vinciguerra <pvinci@vinciconsulting.com>2019-11-07 17:20:48 -0500
committerAndrew Yourtchenko <ayourtch@gmail.com>2020-08-12 11:16:19 +0000
commite144c1b9d24778e4e4650efe1281dc2a91e6ddee (patch)
treea145814c2174215c17bb87df8526d58781276697
parentffd24e5243a27a9e2638c0e98d9fb3099f30acb7 (diff)
vxlan geneve gtpu: fix short help
Type: fix Change-Id: Id53eb6ed15f270d747b9831a7b585cbafe515dd2 Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com> (cherry picked from commit 5fb2278cb8badbbfe727acbdcaeda008a7fd2833)
-rw-r--r--MAINTAINERS5
-rw-r--r--src/plugins/gtpu/gtpu.c2
-rw-r--r--src/vnet/geneve/geneve.c2
-rw-r--r--src/vnet/vxlan-gbp/vxlan_gbp.c2
-rw-r--r--src/vnet/vxlan-gpe/vxlan_gpe.c2
-rw-r--r--src/vnet/vxlan/vxlan.c2
6 files changed, 10 insertions, 5 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index 0c65e3aea9c..19af788cdb2 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -275,6 +275,11 @@ I: syslog
M: Matus Fabian <matfabia@cisco.com>
F: src/vnet/syslog
+VNET GENEVE
+I: geneve
+M: N/A
+F: src/vnet/geneve/
+
VNET FLOW
I: flow
M: Damjan Marion <damarion@cisco.com>
diff --git a/src/plugins/gtpu/gtpu.c b/src/plugins/gtpu/gtpu.c
index dc5c689f5d3..d3e4502b576 100644
--- a/src/plugins/gtpu/gtpu.c
+++ b/src/plugins/gtpu/gtpu.c
@@ -1090,7 +1090,7 @@ set_ip6_gtpu_bypass (vlib_main_t * vm,
VLIB_CLI_COMMAND (set_interface_ip6_gtpu_bypass_command, static) = {
.path = "set interface ip6 gtpu-bypass",
.function = set_ip6_gtpu_bypass,
- .short_help = "set interface ip gtpu-bypass <interface> [del]",
+ .short_help = "set interface ip6 gtpu-bypass <interface> [del]",
};
/* *INDENT-ON* */
diff --git a/src/vnet/geneve/geneve.c b/src/vnet/geneve/geneve.c
index dcbdb2f6d17..0c551a0545e 100644
--- a/src/vnet/geneve/geneve.c
+++ b/src/vnet/geneve/geneve.c
@@ -1102,7 +1102,7 @@ set_ip6_geneve_bypass (vlib_main_t * vm,
VLIB_CLI_COMMAND (set_interface_ip6_geneve_bypass_command, static) = {
.path = "set interface ip6 geneve-bypass",
.function = set_ip6_geneve_bypass,
- .short_help = "set interface ip geneve-bypass <interface> [del]",
+ .short_help = "set interface ip6 geneve-bypass <interface> [del]",
};
/* *INDENT-ON* */
diff --git a/src/vnet/vxlan-gbp/vxlan_gbp.c b/src/vnet/vxlan-gbp/vxlan_gbp.c
index 3b6f1665a1a..80eecb46c10 100644
--- a/src/vnet/vxlan-gbp/vxlan_gbp.c
+++ b/src/vnet/vxlan-gbp/vxlan_gbp.c
@@ -1132,7 +1132,7 @@ set_ip6_vxlan_gbp_bypass (vlib_main_t * vm,
VLIB_CLI_COMMAND (set_interface_ip6_vxlan_gbp_bypass_command, static) = {
.path = "set interface ip6 vxlan-gbp-bypass",
.function = set_ip6_vxlan_gbp_bypass,
- .short_help = "set interface ip vxlan-gbp-bypass <interface> [del]",
+ .short_help = "set interface ip6 vxlan-gbp-bypass <interface> [del]",
};
/* *INDENT-ON* */
diff --git a/src/vnet/vxlan-gpe/vxlan_gpe.c b/src/vnet/vxlan-gpe/vxlan_gpe.c
index fda98538bc2..86157c0b519 100644
--- a/src/vnet/vxlan-gpe/vxlan_gpe.c
+++ b/src/vnet/vxlan-gpe/vxlan_gpe.c
@@ -1215,7 +1215,7 @@ set_ip6_vxlan_gpe_bypass (vlib_main_t * vm,
VLIB_CLI_COMMAND (set_interface_ip6_vxlan_gpe_bypass_command, static) = {
.path = "set interface ip6 vxlan-gpe-bypass",
.function = set_ip6_vxlan_gpe_bypass,
- .short_help = "set interface ip vxlan-gpe-bypass <interface> [del]",
+ .short_help = "set interface ip6 vxlan-gpe-bypass <interface> [del]",
};
/* *INDENT-ON* */
diff --git a/src/vnet/vxlan/vxlan.c b/src/vnet/vxlan/vxlan.c
index 7deb362cfcc..2b852511325 100644
--- a/src/vnet/vxlan/vxlan.c
+++ b/src/vnet/vxlan/vxlan.c
@@ -1117,7 +1117,7 @@ set_ip6_vxlan_bypass (vlib_main_t * vm,
VLIB_CLI_COMMAND (set_interface_ip6_vxlan_bypass_command, static) = {
.path = "set interface ip6 vxlan-bypass",
.function = set_ip6_vxlan_bypass,
- .short_help = "set interface ip vxlan-bypass <interface> [del]",
+ .short_help = "set interface ip6 vxlan-bypass <interface> [del]",
};
/* *INDENT-ON* */