diff options
author | Jouni Malinen <j@w1.fi> | 2008-10-30 10:59:23 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-11-10 15:17:39 -0500 |
commit | 1e898ff83c31c303f73c3893d1ac519e4d9b59e5 (patch) | |
tree | 26e2c6df58022d3f929a4046e8a69930d59d436e /drivers/net/wireless/mac80211_hwsim.c | |
parent | 90c97a040d6b08cc4890328aa262fdc37336ab01 (diff) |
mac80211_hwsim: Debug info for TX queue parameters
Provide detailed information on TX queue parameter changes to make it
easier to debug mac80211 functionality.
Signed-off-by: Jouni Malinen <jouni.malinen@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/mac80211_hwsim.c')
-rw-r--r-- | drivers/net/wireless/mac80211_hwsim.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/net/wireless/mac80211_hwsim.c b/drivers/net/wireless/mac80211_hwsim.c index 6671592fd81f..2b07d4b865ae 100644 --- a/drivers/net/wireless/mac80211_hwsim.c +++ b/drivers/net/wireless/mac80211_hwsim.c | |||
@@ -476,6 +476,17 @@ static int mac80211_hwsim_set_tim(struct ieee80211_hw *hw, | |||
476 | return 0; | 476 | return 0; |
477 | } | 477 | } |
478 | 478 | ||
479 | static int mac80211_hwsim_conf_tx( | ||
480 | struct ieee80211_hw *hw, u16 queue, | ||
481 | const struct ieee80211_tx_queue_params *params) | ||
482 | { | ||
483 | printk(KERN_DEBUG "%s:%s (queue=%d txop=%d cw_min=%d cw_max=%d " | ||
484 | "aifs=%d)\n", | ||
485 | wiphy_name(hw->wiphy), __func__, queue, | ||
486 | params->txop, params->cw_min, params->cw_max, params->aifs); | ||
487 | return 0; | ||
488 | } | ||
489 | |||
479 | static const struct ieee80211_ops mac80211_hwsim_ops = | 490 | static const struct ieee80211_ops mac80211_hwsim_ops = |
480 | { | 491 | { |
481 | .tx = mac80211_hwsim_tx, | 492 | .tx = mac80211_hwsim_tx, |
@@ -489,6 +500,7 @@ static const struct ieee80211_ops mac80211_hwsim_ops = | |||
489 | .bss_info_changed = mac80211_hwsim_bss_info_changed, | 500 | .bss_info_changed = mac80211_hwsim_bss_info_changed, |
490 | .sta_notify = mac80211_hwsim_sta_notify, | 501 | .sta_notify = mac80211_hwsim_sta_notify, |
491 | .set_tim = mac80211_hwsim_set_tim, | 502 | .set_tim = mac80211_hwsim_set_tim, |
503 | .conf_tx = mac80211_hwsim_conf_tx, | ||
492 | }; | 504 | }; |
493 | 505 | ||
494 | 506 | ||