diff options
| author | Stephen Worley <sworley@nvidia.com> | 2021-06-11 15:31:20 -0400 |
|---|---|---|
| committer | Stephen Worley <sworley@nvidia.com> | 2023-02-13 18:12:05 -0500 |
| commit | 24acbd9c7f6fe5737c2c05827c9926e45c0a8434 (patch) | |
| tree | 5c56536e80d7daabc84cc4a9284c85ada5060fa0 /zebra/zebra_vxlan.c | |
| parent | 582bb29ac724f46af35516ecfee6cf11a69e3f7a (diff) | |
zebra: make next-hop svd command hidden for now
The `show evpn next-hop svd *` command doesn't provide much
for users right now. Make it hidden so we can still debug
the tables with it.
Also remove SVD output from `show evpn next-hop vni all`.
Signed-off-by: Stephen Worley <sworley@nvidia.com>
Diffstat (limited to 'zebra/zebra_vxlan.c')
| -rw-r--r-- | zebra/zebra_vxlan.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index 7e151e01c8..f4090b6d20 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -653,11 +653,6 @@ static void zl3vni_print_nh_all_table(struct hash *nh_table, vni_t vni, json_object_object_add(json, vni_str, json_evpn); } -static void svd_print_nh_all_table(struct vty *vty, json_object *json) -{ - zl3vni_print_nh_all_table(svd_nh_table, 0, vty, json); -} - static void zl3vni_print_nh_hash_all_vni(struct hash_bucket *bucket, void **args) { @@ -2836,9 +2831,6 @@ void zebra_vxlan_print_nh_all_l3vni(struct vty *vty, bool use_json) void *))zl3vni_print_nh_hash_all_vni, args); - /* Global svd table */ - svd_print_nh_all_table(vty, json); - if (use_json) vty_json(vty, json); } |
