diff options
| author | Mark Stapp <mjs@labn.net> | 2022-12-13 17:02:29 -0500 |
|---|---|---|
| committer | Mark Stapp <mjs@labn.net> | 2022-12-13 17:02:29 -0500 |
| commit | 3edb3a644d2d70c457e02a076817f6fa4c371ee6 (patch) | |
| tree | dffddf8a4b3d4df96c715b602190539db1540867 /zebra/debug.h | |
| parent | a2f9eb5ccab03677c54f517d4e74dd3c1d30d377 (diff) | |
zebra: fix flags used for debug dpdk
Use the correct flags for debug zebra dataplane dpdk options.
Signed-off-by: Mark Stapp <mjs@labn.net>
Diffstat (limited to 'zebra/debug.h')
| -rw-r--r-- | zebra/debug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/debug.h b/zebra/debug.h index e0c6a9e2b9..514827707a 100644 --- a/zebra/debug.h +++ b/zebra/debug.h @@ -111,9 +111,9 @@ extern "C" { (zebra_debug_dplane & ZEBRA_DEBUG_DPLANE_DETAILED) #define IS_ZEBRA_DEBUG_DPLANE_DPDK \ - (zebra_debug_dplane & ZEBRA_DEBUG_DPLANE_DPDK) + (zebra_debug_dplane_dpdk & ZEBRA_DEBUG_DPLANE_DPDK) #define IS_ZEBRA_DEBUG_DPLANE_DPDK_DETAIL \ - (zebra_debug_dplane & ZEBRA_DEBUG_DPLANE_DPDK_DETAIL) + (zebra_debug_dplane_dpdk & ZEBRA_DEBUG_DPLANE_DPDK_DETAIL) #define IS_ZEBRA_DEBUG_MLAG (zebra_debug_mlag & ZEBRA_DEBUG_MLAG) |
