Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rules/vpp.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ VPP_VERSION_BASE = 2606
# https://packages.buildkite.com/sonic-vpp/vpp; if the suffix isn't bumped,
# downstream sonic-buildimage builds will silently pull stale debs that
# pre-date the new patch series and end up with VPP/SAI CRC drift.
VPP_VERSION = $(VPP_VERSION_BASE)-0.3
VPP_VERSION = $(VPP_VERSION_BASE)-0.5
VPP_VERSION_SONIC = $(VPP_VERSION)+b1sonic1
VPP_SRC_PATH = platform/vpp/vppbld

Expand Down
1 change: 1 addition & 0 deletions vppbld/plugins/sonic_ext/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ add_vpp_plugin(sonic_ext
sonic_ext.c
capture_node.c
aggr_tap_redirect_node.c
glean_redirect_node.c
host_xc_node.c
l2_trap_fixup_node.c
cli.c
Expand Down
1 change: 1 addition & 0 deletions vppbld/plugins/sonic_ext/cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ show_sonic_ext_command_fn (vlib_main_t *vm, unformat_input_t *input,
sem->host_xc ? "on" : "off");
vlib_cli_output (vm, " captures : %llu", sem->captures);
vlib_cli_output (vm, " aggr-tap redir : %llu", sem->aggr_tap_redirects);
vlib_cli_output (vm, " glean redirect : %llu", sem->glean_redirects);
vlib_cli_output (vm, " host-xc direct : %llu", sem->host_xc_direct);
vlib_cli_output (vm, " l2 trap fixups : %llu", sem->l2_trap_fixups);
return 0;
Expand Down
Loading