diff options
author | Florin Coras <fcoras@cisco.com> | 2018-09-17 22:09:02 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-09-20 10:05:48 +0000 |
commit | 0e88e851e058f4fb7cc690dbbdb19216ab360d1c (patch) | |
tree | 94b6117dfd76cc7a6da2ee344f676d7765d086e3 /src/vcl/vcl_debug.h | |
parent | 008dbe109ce2714be69ffb6549a0c0198a07f7d0 (diff) |
session/svm: add want_tx_event flag to fifo
Have applications use explicit flag to request events from vpp when it
transmits from a full fifo.
Change-Id: I687c8f050a066bd5ce739d880eaec1f286038d95
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vcl/vcl_debug.h')
-rw-r--r-- | src/vcl/vcl_debug.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vcl/vcl_debug.h b/src/vcl/vcl_debug.h index 52a3d94b63f..7b284166503 100644 --- a/src/vcl/vcl_debug.h +++ b/src/vcl/vcl_debug.h @@ -19,9 +19,10 @@ #include <vppinfra/elog.h> #define VCL_ELOG 0 +#define VCL_DBG_ON 1 #define VDBG(_lvl, _fmt, _args...) \ - if (vcm->debug > _lvl) \ + if (VCL_DBG_ON && vcm->debug > _lvl) \ clib_warning ("vcl<w%d>: " _fmt, __vcl_worker_index, ##_args) #define foreach_vcl_dbg_evt \ |