Hi Juuso, You're absolutely right. I had an implicit assumption that both irq_work and tx_work cannot run concurrently, since they're on the same work queue. The reason cancel_work_sync was called in the first place was to minimize the number of times tx_work is being called without any work to do. While the impact of simply not cancelling tx_work is quite minor, v2 will include an alternative implementation which tries to achieve the above goal without calling cancel_work_sync(). Thanks, Ido. On Mon, Oct 11, 2010 at 12:56:58PM +0300, Juuso Oikarinen wrote: > On Mon, 2010-10-11 at 10:48 +0200, ext Ido Yariv wrote: > > While wl1271_irq_work handles RX directly (by calling wl1271_rx), a different > > work is queued for transmitting packets. The IRQ work might handle more than > > one interrupt during a single call, including multiple TX completion > > interrupts. This might starve TX, since no packets are transmitted until all > > interrupts are handled. > > > > Fix this by calling the TX work function directly, instead of deferring > > it. > > > > Signed-off-by: Ido Yariv <ido@xxxxxxxxxx> > > --- > > drivers/net/wireless/wl12xx/wl1271_main.c | 19 +++++++++++++------ > > drivers/net/wireless/wl12xx/wl1271_tx.c | 12 ++++++++---- > > drivers/net/wireless/wl12xx/wl1271_tx.h | 1 + > > 3 files changed, 22 insertions(+), 10 deletions(-) > > > > *snip* > > > > @@ -537,6 +533,17 @@ static void wl1271_irq_work(struct work_struct *work) > > (wl->tx_results_count & 0xff)) > > wl1271_tx_complete(wl); > > > > + /* Check if any tx blocks were freed */ > > + if ((wl->tx_blocks_available > prev_tx_blocks) && > > + !skb_queue_empty(&wl->tx_queue)) { > > + /* > > + * In order to avoid starvation of the TX path, > > + * call the work function directly. > > + */ > > + cancel_work_sync(&wl->tx_work); > > Hmm, isn't this causing a theoretical potential for a dead-lock? The > tx_work could be waiting in mutex-lock already when cancel_work_sync is > called, in which case cancel_work_sync would lock forever. > > IIRC the irq_work and tx_work currently run in the same queue, so this > may work with the current driver. Smells like a hazard anyway, and > changing the workqueues for each work could easily lead to dead locks > here. So at minimum I'd like to see it documented in the comment why > this cannot cause a deadlock. > > > + wl1271_tx_work_locked(wl); > > + } > > + > > wl1271_rx(wl, wl->fw_status); > > } > > > > diff --git a/drivers/net/wireless/wl12xx/wl1271_tx.c b/drivers/net/wireless/wl12xx/wl1271_tx.c > > index 63bc52c..90a8909 100644 > > > -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html