diff options
author | Florin Coras <fcoras@cisco.com> | 2019-10-28 13:14:17 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-01-30 18:44:13 +0000 |
commit | 9ace36d0f9b04e2d4db410607ee33a8e72ef00c5 (patch) | |
tree | 999536085643a801b0087332ebf4421d5322966c /src/vcl/vcl_private.h | |
parent | 960e58efde0f11d0c1b8783c104c29dee34ee088 (diff) |
vcl session: propagate cleanup notifications to apps
Type: feature
Change-Id: I7f8e3763d7f8364563a25d0fcc782976b906b325
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vcl/vcl_private.h')
-rw-r--r-- | src/vcl/vcl_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vcl/vcl_private.h b/src/vcl/vcl_private.h index 30d3774fa93..fd9d73c3547 100644 --- a/src/vcl/vcl_private.h +++ b/src/vcl/vcl_private.h @@ -375,6 +375,7 @@ vcl_session_alloc (vcl_worker_t * wrk) static inline void vcl_session_free (vcl_worker_t * wrk, vcl_session_t * s) { + VDBG (0, "session %u [0x%llx] removed", s->session_index, s->vpp_handle); pool_put (wrk->sessions, s); } |