From 39040a619af4e8750349edba2e93eecb8ce4538b Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Wed, 10 Jul 2019 01:47:15 -0700 Subject: ip: Punt node does not free iovecs Type: fix Fixes: f7a55ad74c Change-Id: Ic3474e746887f880a8f6246bebc399715bac8e80 Signed-off-by: Neale Ranns --- src/vnet/ip/punt.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/vnet/ip/punt.h') diff --git a/src/vnet/ip/punt.h b/src/vnet/ip/punt.h index 8835f3eb9d9..33124846ba6 100644 --- a/src/vnet/ip/punt.h +++ b/src/vnet/ip/punt.h @@ -111,6 +111,11 @@ typedef struct punt_client_db_t_ void *clients_by_ip_proto; } punt_client_db_t; +typedef struct punt_thread_data_t_ +{ + struct iovec *iovecs; +} punt_thread_data_t; + typedef struct { int socket_fd; @@ -122,6 +127,7 @@ typedef struct vlib_node_t *interface_output_node; u32 *ready_fds; u32 *rx_buffers; + punt_thread_data_t *thread_data; vlib_punt_hdl_t hdl; } punt_main_t; -- cgit 1.2.3-korg