diff options
author | Johannes Berg <johannes.berg@intel.com> | 2010-06-10 04:21:49 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-06-14 15:39:28 -0400 |
commit | 85ad181ea78861f69b007599cec9e6ba33fcdf8a (patch) | |
tree | ea92b4f7aa6d09ee11ee865a11f6426e809468ba /net/mac80211/driver-ops.h | |
parent | cfcdbde35e2b621cf56bedc38a3a81e8c28addb9 (diff) |
mac80211: allow drivers to sleep in ampdu_action
Allow drivers to sleep, and indicate this in
the documentation. ath9k has some locking I
don't understand, so keep it safe and disable
BHs in it, all other drivers look fine with
the context change.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/driver-ops.h')
-rw-r--r-- | net/mac80211/driver-ops.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/mac80211/driver-ops.h b/net/mac80211/driver-ops.h index 7e86c6f89be9..a4fcbcc4f458 100644 --- a/net/mac80211/driver-ops.h +++ b/net/mac80211/driver-ops.h | |||
@@ -352,11 +352,10 @@ static inline int drv_ampdu_action(struct ieee80211_local *local, | |||
352 | 352 | ||
353 | might_sleep(); | 353 | might_sleep(); |
354 | 354 | ||
355 | local_bh_disable(); | ||
356 | if (local->ops->ampdu_action) | 355 | if (local->ops->ampdu_action) |
357 | ret = local->ops->ampdu_action(&local->hw, &sdata->vif, action, | 356 | ret = local->ops->ampdu_action(&local->hw, &sdata->vif, action, |
358 | sta, tid, ssn); | 357 | sta, tid, ssn); |
359 | local_bh_enable(); | 358 | |
360 | trace_drv_ampdu_action(local, sdata, action, sta, tid, ssn, ret); | 359 | trace_drv_ampdu_action(local, sdata, action, sta, tid, ssn, ret); |
361 | return ret; | 360 | return ret; |
362 | } | 361 | } |