diff options
author | Mark Stapp <mjs@labn.net> | 2022-12-13 23:02:29 +0100 |
---|---|---|
committer | Mark Stapp <mjs@labn.net> | 2022-12-13 23:02:29 +0100 |
commit | 3edb3a644d2d70c457e02a076817f6fa4c371ee6 (patch) | |
tree | dffddf8a4b3d4df96c715b602190539db1540867 /zebra/debug.h | |
parent | Merge pull request #12496 from opensourcerouting/ldpd-memleak-plug (diff) | |
download | frr-3edb3a644d2d70c457e02a076817f6fa4c371ee6.tar.xz frr-3edb3a644d2d70c457e02a076817f6fa4c371ee6.zip |
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 '')
-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 e0c6a9e2b..514827707 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) |