diff options
author | Eliad Peller <eliad@wizery.com> | 2011-06-07 11:50:46 +0200 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2011-06-27 12:56:14 +0200 |
commit | 92ef8960aee2f840c6a54c968d40199843f015c0 (patch) | |
tree | 3554b6b9684c7fe5cfabdb9ea15a9dd2d3640f50 /drivers/net/wireless/wl12xx/rx.c | |
parent | wl12xx: use _ni version of ieee80211_tx_status (diff) | |
download | linux-92ef8960aee2f840c6a54c968d40199843f015c0.tar.xz linux-92ef8960aee2f840c6a54c968d40199843f015c0.zip |
wl12xx: use freezable workqueue for netstack_work
When resuming (after wowlan), we want the rx packets (which is
usually the wake-up packet itself) to be passed to mac80211 only
after the resume notifier was completed, and mac80211 is up and
running (otherwise, the packets will be dropped).
By enqueueing the netstack_work to a freezable workqueue, we can
guarantee the rx processing to occur only after mac80211 was resumed.
Signed-off-by: Eliad Peller <eliad@wizery.com>
Signed-off-by: Ido Yariv <ido@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/rx.c')
-rw-r--r-- | drivers/net/wireless/wl12xx/rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/rx.c b/drivers/net/wireless/wl12xx/rx.c index db230a503bf7..9357695340cf 100644 --- a/drivers/net/wireless/wl12xx/rx.c +++ b/drivers/net/wireless/wl12xx/rx.c @@ -150,7 +150,7 @@ static int wl1271_rx_handle_data(struct wl1271 *wl, u8 *data, u32 length) skb_trim(skb, skb->len - desc->pad_len); skb_queue_tail(&wl->deferred_rx_queue, skb); - ieee80211_queue_work(wl->hw, &wl->netstack_work); + queue_work(wl->freezable_wq, &wl->netstack_work); return is_data; } |