diff options
Diffstat (limited to 'src/vnet/devices/af_packet/af_packet.h')
-rw-r--r-- | src/vnet/devices/af_packet/af_packet.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vnet/devices/af_packet/af_packet.h b/src/vnet/devices/af_packet/af_packet.h index 18822f838db..1136be6b871 100644 --- a/src/vnet/devices/af_packet/af_packet.h +++ b/src/vnet/devices/af_packet/af_packet.h @@ -19,6 +19,8 @@ #include <vppinfra/lock.h> +#include <vlib/log.h> + typedef struct { CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); @@ -54,6 +56,9 @@ typedef struct /* hash of host interface names */ mhash_t if_index_by_host_if_name; + + /** log class */ + vlib_log_class_t log_class; } af_packet_main_t; extern af_packet_main_t af_packet_main; |