diff options
author | Neale Ranns <nranns@cisco.com> | 2019-07-10 01:47:15 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-07-11 17:21:14 +0000 |
commit | 39040a619af4e8750349edba2e93eecb8ce4538b (patch) | |
tree | 0886e63d659fcdb39ebfad8deed5bec6058f2892 /src/vnet/ip/punt.h | |
parent | a4d2431594e492c3243f97881fb3ba66e3b4fd76 (diff) |
ip: Punt node does not free iovecs
Type: fix
Fixes: f7a55ad74c
Change-Id: Ic3474e746887f880a8f6246bebc399715bac8e80
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/ip/punt.h')
-rw-r--r-- | src/vnet/ip/punt.h | 6 |
1 files changed, 6 insertions, 0 deletions
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; |