summaryrefslogtreecommitdiffstats
path: root/zebra/debug.h
diff options
context:
space:
mode:
authorMark Stapp <mjs@labn.net>2022-12-13 23:02:29 +0100
committerMark Stapp <mjs@labn.net>2022-12-13 23:02:29 +0100
commit3edb3a644d2d70c457e02a076817f6fa4c371ee6 (patch)
treedffddf8a4b3d4df96c715b602190539db1540867 /zebra/debug.h
parentMerge pull request #12496 from opensourcerouting/ldpd-memleak-plug (diff)
downloadfrr-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.h4
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)