diff options
author | Reinette Chatre <reinette.chatre@intel.com> | 2009-08-07 18:41:37 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-08-14 09:13:46 -0400 |
commit | 3d816c77ecb05d3a3e974a205e53392e5353553e (patch) | |
tree | d86eb434ea830d5ec43ee0a6d6aa1251fbcd67a5 /drivers/net/wireless/iwlwifi/iwl-rx.c | |
parent | 34b921cf6fb4014e0e8d414492959a4725049000 (diff) |
iwlwifi: re-introduce per device debugging
Commit "iwlwifi: make debug level more user friendly" cleaned up the
debug level handling. In doing so it created a single global debug
level for all devices. Some setups do consits of more that one iwlwifi
device and in these setups there is a requirement that debug levels
should be unique per device.
We now re-introduce the per device debugging while maintaining the
cleanup effort of the previous patch.
The maintain the global debug level and now introduce a per-device debug
level that will be used if it (the per-device debug level) is set. The
per-device debug level can be controlled via the debug_level sysfs file
while the global debug level is controlled by the debug module parameter.
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Acked-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-rx.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-rx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-rx.c b/drivers/net/wireless/iwlwifi/iwl-rx.c index e002c8b56c4..98f014276e6 100644 --- a/drivers/net/wireless/iwlwifi/iwl-rx.c +++ b/drivers/net/wireless/iwlwifi/iwl-rx.c | |||
@@ -645,7 +645,7 @@ static void iwl_dbg_report_frame(struct iwl_priv *priv, | |||
645 | u32 tsf_low; | 645 | u32 tsf_low; |
646 | int rssi; | 646 | int rssi; |
647 | 647 | ||
648 | if (likely(!(iwl_debug_level & IWL_DL_RX))) | 648 | if (likely(!(iwl_get_debug_level(priv) & IWL_DL_RX))) |
649 | return; | 649 | return; |
650 | 650 | ||
651 | /* MAC header */ | 651 | /* MAC header */ |
@@ -741,7 +741,7 @@ static void iwl_dbg_report_frame(struct iwl_priv *priv, | |||
741 | } | 741 | } |
742 | } | 742 | } |
743 | if (print_dump) | 743 | if (print_dump) |
744 | iwl_print_hex_dump(IWL_DL_RX, header, length); | 744 | iwl_print_hex_dump(priv, IWL_DL_RX, header, length); |
745 | } | 745 | } |
746 | #endif | 746 | #endif |
747 | 747 | ||
@@ -1060,7 +1060,7 @@ void iwl_rx_reply_rx(struct iwl_priv *priv, | |||
1060 | 1060 | ||
1061 | /* Set "1" to report good data frames in groups of 100 */ | 1061 | /* Set "1" to report good data frames in groups of 100 */ |
1062 | #ifdef CONFIG_IWLWIFI_DEBUG | 1062 | #ifdef CONFIG_IWLWIFI_DEBUG |
1063 | if (unlikely(iwl_debug_level & IWL_DL_RX)) | 1063 | if (unlikely(iwl_get_debug_level(priv) & IWL_DL_RX)) |
1064 | iwl_dbg_report_frame(priv, rx_start, len, header, 1); | 1064 | iwl_dbg_report_frame(priv, rx_start, len, header, 1); |
1065 | #endif | 1065 | #endif |
1066 | IWL_DEBUG_STATS_LIMIT(priv, "Rssi %d, noise %d, qual %d, TSF %llu\n", | 1066 | IWL_DEBUG_STATS_LIMIT(priv, "Rssi %d, noise %d, qual %d, TSF %llu\n", |