diff options
author | Neale Ranns <nranns@cisco.com> | 2019-07-10 01:47:15 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-07-12 06:54:27 +0000 |
commit | c2c090a4e36e5015fb806e8233f3e57275b60147 (patch) | |
tree | 9ff19d25e690d7c7e4ca51ed6ebc8979b7e94130 /src/vnet/ip/punt.h | |
parent | 822dadf4788e2e6d7cf0b3ec22ebc99f81859f67 (diff) |
ip: Punt node does not free iovecs
Type: fix
Fixes: f7a55ad74c
Change-Id: Ic3474e746887f880a8f6246bebc399715bac8e80
Signed-off-by: Neale Ranns <nranns@cisco.com>
(cherry picked from commit 13a6ddf353261fd0439646b71c832f4f44c9de71)
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 0518b2b91ef..2d7a0f84665 100644 --- a/src/vnet/ip/punt.h +++ b/src/vnet/ip/punt.h @@ -69,6 +69,11 @@ typedef struct struct sockaddr_un caddr; } punt_client_t; +typedef struct punt_thread_data_t_ +{ + struct iovec *iovecs; +} punt_thread_data_t; + typedef struct { int socket_fd; @@ -80,6 +85,7 @@ typedef struct vlib_node_t *interface_output_node; u32 *ready_fds; u32 *rx_buffers; + punt_thread_data_t *thread_data; } punt_main_t; extern punt_main_t punt_main; |