Message ID | 1251406807-31495-12-git-send-email-luciano.coelho@nokia.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
On Thu, Aug 27, 2009 at 2:00 PM, Luciano Coelho<luciano.coelho@nokia.com> wrote: > From: Juuso Oikarinen <juuso.oikarinen@nokia.com> > > Use the workqueue provided by the mac80211 stack instead of the system > default queue. You mean ieee80211_queue_work() ? This patch seems to be based on an old wireless-testing. Luis -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
ext Luis R. Rodriguez wrote: > On Thu, Aug 27, 2009 at 2:00 PM, Luciano Coelho<luciano.coelho@nokia.com> wrote: > >> From: Juuso Oikarinen <juuso.oikarinen@nokia.com> >> >> Use the workqueue provided by the mac80211 stack instead of the system >> default queue. >> > > You mean ieee80211_queue_work() ? This patch seems to be based on an > old wireless-testing. > Oops! It seems like I have sent the wrong series of patches. I'll have to review and resend tomorrow.
diff --git a/drivers/net/wireless/wl12xx/wl1271_main.c b/drivers/net/wireless/wl12xx/wl1271_main.c index 416fd9c..a97d434 100644 --- a/drivers/net/wireless/wl12xx/wl1271_main.c +++ b/drivers/net/wireless/wl12xx/wl1271_main.c @@ -107,7 +107,7 @@ static void wl1271_fw_status(struct wl1271 *wl, struct wl1271_fw_status *status) /* if more blocks are available now, schedule some tx work */ if (total && !skb_queue_empty(&wl->tx_queue)) - schedule_work(&wl->tx_work); + queue_work(wl->hw->workqueue, &wl->tx_work); /* update the host-chipset time offset */ wl->time_offset = jiffies_to_usecs(jiffies) - status->fw_localtime; @@ -205,7 +205,7 @@ static irqreturn_t wl1271_irq(int irq, void *cookie) wl->elp_compl = NULL; } - schedule_work(&wl->irq_work); + queue_work(wl->hw->workqueue, &wl->irq_work); spin_unlock_irqrestore(&wl->wl_lock, flags); return IRQ_HANDLED; @@ -480,7 +480,7 @@ static int wl1271_op_tx(struct ieee80211_hw *hw, struct sk_buff *skb) * before that, the tx_work will not be initialized! */ - schedule_work(&wl->tx_work); + queue_work(wl->hw->workqueue, &wl->tx_work); /* * The workqueue is slow to process the tx_queue and we need stop