diff options
author | Damjan Marion <damarion@cisco.com> | 2020-10-23 21:52:50 +0200 |
---|---|---|
committer | Ole Tr�an <otroan@employees.org> | 2020-10-26 10:45:49 +0000 |
commit | 4d7ad4a6cc08e316d78de5ac7ce3ead4e9bfcb66 (patch) | |
tree | ef4158573a6aea024be7260ef7ebe4f12dfc64a8 /src/plugins/avf/avf.h | |
parent | 340b10a38ed84600ed3336657ef3a104d9ebe877 (diff) |
vlib: add VLIB_REGISTER_LOG_CLASS macro
Type: improvement
Change-Id: Iafcaeb88fa3569e042fb9cb270cf062b145416e2
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/avf/avf.h')
-rw-r--r-- | src/plugins/avf/avf.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/avf/avf.h b/src/plugins/avf/avf.h index 135b5f94eef..57e71263f9e 100644 --- a/src/plugins/avf/avf.h +++ b/src/plugins/avf/avf.h @@ -50,18 +50,20 @@ #define AVF_TXD_CMD_RS AVF_TXD_CMD(1) #define AVF_TXD_CMD_RSV AVF_TXD_CMD(2) +extern vlib_log_class_registration_t avf_log; + #define avf_log_err(dev, f, ...) \ - vlib_log (VLIB_LOG_LEVEL_ERR, avf_main.log_class, "%U: " f, \ + vlib_log (VLIB_LOG_LEVEL_ERR, avf_log.class, "%U: " f, \ format_vlib_pci_addr, &dev->pci_addr, \ ## __VA_ARGS__) #define avf_log_warn(dev, f, ...) \ - vlib_log (VLIB_LOG_LEVEL_WARNING, avf_main.log_class, "%U: " f, \ + vlib_log (VLIB_LOG_LEVEL_WARNING, avf_log.class, "%U: " f, \ format_vlib_pci_addr, &dev->pci_addr, \ ## __VA_ARGS__) #define avf_log_debug(dev, f, ...) \ - vlib_log (VLIB_LOG_LEVEL_DEBUG, avf_main.log_class, "%U: " f, \ + vlib_log (VLIB_LOG_LEVEL_DEBUG, avf_log.class, "%U: " f, \ format_vlib_pci_addr, &dev->pci_addr, \ ## __VA_ARGS__) @@ -245,8 +247,6 @@ typedef struct avf_device_t **devices; avf_per_thread_data_t *per_thread_data; - - vlib_log_class_t log_class; } avf_main_t; extern avf_main_t avf_main; |