From fe97da3203c64461f752e854faa97c69b8d225f4 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Wed, 6 Mar 2019 10:09:04 -0800 Subject: session: cleanup instances of deprecated io evts Change-Id: Iad119e05ae5e570fbfcf66747c95822cee647c99 Signed-off-by: Florin Coras --- src/vnet/tls/tls.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/vnet') diff --git a/src/vnet/tls/tls.c b/src/vnet/tls/tls.c index 373da7b512c..df5a0686715 100644 --- a/src/vnet/tls/tls.c +++ b/src/vnet/tls/tls.c @@ -54,7 +54,7 @@ int tls_add_vpp_q_rx_evt (session_t * s) { if (svm_fifo_set_event (s->rx_fifo)) - session_send_io_evt_to_thread (s->rx_fifo, FIFO_EVENT_APP_RX); + session_send_io_evt_to_thread (s->rx_fifo, SESSION_IO_EVT_RX); return 0; } @@ -62,7 +62,7 @@ int tls_add_vpp_q_builtin_rx_evt (session_t * s) { if (svm_fifo_set_event (s->rx_fifo)) - session_send_io_evt_to_thread (s->rx_fifo, FIFO_EVENT_BUILTIN_RX); + session_send_io_evt_to_thread (s->rx_fifo, SESSION_IO_EVT_BUILTIN_RX); return 0; } @@ -70,7 +70,7 @@ int tls_add_vpp_q_tx_evt (session_t * s) { if (svm_fifo_set_event (s->tx_fifo)) - session_send_io_evt_to_thread (s->tx_fifo, FIFO_EVENT_APP_TX); + session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX); return 0; } @@ -79,14 +79,14 @@ tls_add_vpp_q_builtin_tx_evt (session_t * s) { if (svm_fifo_set_event (s->tx_fifo)) session_send_io_evt_to_thread_custom (s, s->thread_index, - FIFO_EVENT_BUILTIN_TX); + SESSION_IO_EVT_BUILTIN_TX); return 0; } static inline int tls_add_app_q_evt (app_worker_t * app, session_t * app_session) { - return app_worker_lock_and_send_event (app, app_session, FIFO_EVENT_APP_RX); + return app_worker_lock_and_send_event (app, app_session, SESSION_IO_EVT_RX); } u32 -- cgit 1.2.3-korg