Return-path: Received: from hostap.isc.org ([149.20.54.63]:45179 "EHLO hostap.isc.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754041AbYJ2Rx6 (ORCPT ); Wed, 29 Oct 2008 13:53:58 -0400 Message-Id: <20081029175254.540859084@localhost> (sfid-20081029_185400_541262_EB0B95F8) References: <20081029174934.817700763@localhost> Date: Wed, 29 Oct 2008 19:49:37 +0200 From: Jouni Malinen To: "John W. Linville" Cc: Johannes Berg , linux-wireless@vger.kernel.org Subject: [PATCH 3/4] mac80211_hwsim: Debug info for TX queue parameters Sender: linux-wireless-owner@vger.kernel.org List-ID: Provide detailed information on TX queue parameter changes to make it easier to debug mac80211 functionality. Signed-off-by: Jouni Malinen Index: wireless-testing/drivers/net/wireless/mac80211_hwsim.c =================================================================== --- wireless-testing.orig/drivers/net/wireless/mac80211_hwsim.c 2008-10-29 13:27:50.000000000 +0200 +++ wireless-testing/drivers/net/wireless/mac80211_hwsim.c 2008-10-29 13:36:20.000000000 +0200 @@ -468,6 +468,17 @@ return 0; } +static int mac80211_hwsim_conf_tx( + struct ieee80211_hw *hw, u16 queue, + const struct ieee80211_tx_queue_params *params) +{ + printk(KERN_DEBUG "%s:%s (queue=%d txop=%d cw_min=%d cw_max=%d " + "aifs=%d)\n", + wiphy_name(hw->wiphy), __func__, queue, + params->txop, params->cw_min, params->cw_max, params->aifs); + return 0; +} + static const struct ieee80211_ops mac80211_hwsim_ops = { .tx = mac80211_hwsim_tx, @@ -481,6 +492,7 @@ .bss_info_changed = mac80211_hwsim_bss_info_changed, .sta_notify = mac80211_hwsim_sta_notify, .set_tim = mac80211_hwsim_set_tim, + .conf_tx = mac80211_hwsim_conf_tx, }; -- -- Jouni Malinen PGP id EFC895FA