summaryrefslogtreecommitdiffstats
path: root/isisd/isisd.h
diff options
context:
space:
mode:
authorChristian Franke <chris@opensourcerouting.org>2018-11-08 20:30:55 +0100
committerChristian Franke <chris@opensourcerouting.org>2018-11-08 20:30:55 +0100
commit26687d255dfe1a16309edcfc6a6e8f7254c24f65 (patch)
tree55e5914bce15b98f55bf1ae552d5ccdddee1e55a /isisd/isisd.h
parentMerge pull request #3290 from rubenk/configure-ac-fix-typo-in-error-message (diff)
downloadfrr-26687d255dfe1a16309edcfc6a6e8f7254c24f65.tar.xz
frr-26687d255dfe1a16309edcfc6a6e8f7254c24f65.zip
isisd: Remove unused debug flags
Signed-off-by: Christian Franke <chris@opensourcerouting.org>
Diffstat (limited to 'isisd/isisd.h')
-rw-r--r--isisd/isisd.h28
1 files changed, 11 insertions, 17 deletions
diff --git a/isisd/isisd.h b/isisd/isisd.h
index 51b359aad..fe9abff93 100644
--- a/isisd/isisd.h
+++ b/isisd/isisd.h
@@ -204,22 +204,16 @@ int isis_area_passwd_hmac_md5_set(struct isis_area *area, int level,
extern struct thread_master *master;
#define DEBUG_ADJ_PACKETS (1<<0)
-#define DEBUG_CHECKSUM_ERRORS (1<<1)
-#define DEBUG_LOCAL_UPDATES (1<<2)
-#define DEBUG_PROTOCOL_ERRORS (1<<3)
-#define DEBUG_SNP_PACKETS (1<<4)
-#define DEBUG_UPDATE_PACKETS (1<<5)
-#define DEBUG_SPF_EVENTS (1<<6)
-#define DEBUG_SPF_STATS (1<<7)
-#define DEBUG_SPF_TRIGGERS (1<<8)
-#define DEBUG_RTE_EVENTS (1<<9)
-#define DEBUG_EVENTS (1<<10)
-#define DEBUG_ZEBRA (1<<11)
-#define DEBUG_PACKET_DUMP (1<<12)
-#define DEBUG_LSP_GEN (1<<13)
-#define DEBUG_LSP_SCHED (1<<14)
-#define DEBUG_FABRICD_FLOODING (1<<15)
-#define DEBUG_BFD (1<<16)
+#define DEBUG_SNP_PACKETS (1<<1)
+#define DEBUG_UPDATE_PACKETS (1<<2)
+#define DEBUG_SPF_EVENTS (1<<3)
+#define DEBUG_RTE_EVENTS (1<<4)
+#define DEBUG_EVENTS (1<<5)
+#define DEBUG_PACKET_DUMP (1<<6)
+#define DEBUG_LSP_GEN (1<<7)
+#define DEBUG_LSP_SCHED (1<<8)
+#define DEBUG_FABRICD_FLOODING (1<<9)
+#define DEBUG_BFD (1<<10)
#define lsp_debug(...) \
do { \
@@ -233,7 +227,7 @@ extern struct thread_master *master;
zlog_debug(__VA_ARGS__); \
} while (0)
-#define DEBUG_TE (1<<13)
+#define DEBUG_TE DEBUG_LSP_GEN
#define IS_DEBUG_ISIS(x) (isis->debugs & x)