diff options
author | Neale Ranns <nranns@cisco.com> | 2019-02-22 12:56:14 +0000 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-02-22 14:50:19 +0000 |
commit | ba94462c42a27f7447e10ca55a3b212970448ceb (patch) | |
tree | 9f84cb4611ba4ef04d65f48b61b8806753bc68f8 /src/plugins | |
parent | 533220058344d0dadc05ec82f7de6dbbf8b8b397 (diff) |
GBP: include sclass in format EPG
Change-Id: I6cbc7dafcc59aa67d79c718d88f67d71ee97b4b6
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/gbp/gbp_endpoint_group.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/gbp/gbp_endpoint_group.c b/src/plugins/gbp/gbp_endpoint_group.c index cefdbea3652..a2922716e42 100644 --- a/src/plugins/gbp/gbp_endpoint_group.c +++ b/src/plugins/gbp/gbp_endpoint_group.c @@ -326,8 +326,9 @@ format_gbp_endpoint_group (u8 * s, va_list * args) vnet_main_t *vnm = vnet_get_main (); if (NULL != gg) - s = format (s, "%d, bd:[%d,%d], rd:[%d] uplink:%U locks:%d", + s = format (s, "%d, sclass:%d bd:[%d,%d], rd:[%d] uplink:%U locks:%d", gg->gg_id, + gg->gg_sclass, gbp_endpoint_group_get_bd_id(gg), gg->gg_bd_index, gg->gg_rd, format_vnet_sw_if_index_name, vnm, gg->gg_uplink_sw_if_index, |