diff options
author | Sven Eckelmann <sven@narfation.org> | 2016-07-16 21:30:20 +0200 |
---|---|---|
committer | Simon Wunderlich <sw@simonwunderlich.de> | 2016-10-17 16:11:56 +0200 |
commit | 611b975b5c868639b7cb0e89e22d1c8c561bf3a1 (patch) | |
tree | 88d8f51cbcffedfdee671104413c8b61ba7a54a8 /net/batman-adv/log.h | |
parent | 9ca488dd53088d4fcc97258aeeccf21f63b7da1e (diff) |
batman-adv: Add BATADV_DBG_TP_METER to BATADV_DBG_ALL
The BATADV_DBG_ALL has to contain the bit of BATADV_DBG_TP_METER to really
support all available debug messages.
Fixes: 33a3bb4a3345 ("batman-adv: throughput meter implementation")
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
Diffstat (limited to 'net/batman-adv/log.h')
-rw-r--r-- | net/batman-adv/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/log.h b/net/batman-adv/log.h index e0e1a88c3e58..d2905a855d1b 100644 --- a/net/batman-adv/log.h +++ b/net/batman-adv/log.h @@ -63,7 +63,7 @@ enum batadv_dbg_level { BATADV_DBG_NC = BIT(5), BATADV_DBG_MCAST = BIT(6), BATADV_DBG_TP_METER = BIT(7), - BATADV_DBG_ALL = 127, + BATADV_DBG_ALL = 255, }; #ifdef CONFIG_BATMAN_ADV_DEBUG |