diff options
author | Damjan Marion <damarion@cisco.com> | 2021-05-11 09:39:24 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2021-05-27 20:54:20 +0000 |
commit | c0d9ca7fe1db7a6bd55972364d4292a9668b7c24 (patch) | |
tree | dc63abfea96cd7f5eb03875d085c57c39df8cb7b /src/vlib/threads_cli.c | |
parent | 7cf80af582a12fba4b547b1f2b01c27b8295f84c (diff) |
vlib: handoff rework
Type: improvement
Change-Id: I1e199ae31e969154319e94c5cd286b8d8adc6660
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vlib/threads_cli.c')
-rw-r--r-- | src/vlib/threads_cli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vlib/threads_cli.c b/src/vlib/threads_cli.c index bcb85ec69fb..d14e9c50e27 100644 --- a/src/vlib/threads_cli.c +++ b/src/vlib/threads_cli.c @@ -290,8 +290,8 @@ show_frame_queue_internal (vlib_main_t * vm, vlib_cli_output (vm, " vector-threshold %d ring size %d in use %d\n", fqt->threshold, fqt->nelts, fqt->n_in_use); - vlib_cli_output (vm, " head %12d head_hint %12d tail %12d\n", - fqt->head, fqt->head_hint, fqt->tail); + vlib_cli_output (vm, " head %12d tail %12d\n", fqt->head, + fqt->tail); vlib_cli_output (vm, " %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d\n", fqt->n_vectors[0], fqt->n_vectors[1], |