diff options
author | Johannes Berg <johannes.berg@intel.com> | 2013-02-13 15:11:00 +0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-03-18 23:15:03 +0400 |
commit | 39ecc01d1bbe3de2cf5f01a81e176ea5160d3b95 (patch) | |
tree | 1a75bf065c61f0870ff4d63eac6130998834748c /drivers/net/wireless/ath/ar5523 | |
parent | a0ca796c460259bc079631d2d148ffff1d1fc736 (diff) | |
download | linux-39ecc01d1bbe3de2cf5f01a81e176ea5160d3b95.tar.xz |
mac80211: pass queue bitmap to flush operation
There are a number of situations in which mac80211 only
really needs to flush queues for one virtual interface,
and in fact during this frames might be transmitted on
other virtual interfaces. Calculate and pass a queue
bitmap to the driver so it knows which queues to flush.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net/wireless/ath/ar5523')
-rw-r--r-- | drivers/net/wireless/ath/ar5523/ar5523.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ar5523/ar5523.c b/drivers/net/wireless/ath/ar5523/ar5523.c index 7157f7d311c5..afd1e36d308f 100644 --- a/drivers/net/wireless/ath/ar5523/ar5523.c +++ b/drivers/net/wireless/ath/ar5523/ar5523.c @@ -1091,7 +1091,7 @@ static int ar5523_set_rts_threshold(struct ieee80211_hw *hw, u32 value) return ret; } -static void ar5523_flush(struct ieee80211_hw *hw, bool drop) +static void ar5523_flush(struct ieee80211_hw *hw, u32 queues, bool drop) { struct ar5523 *ar = hw->priv; |