lkml.org 
[lkml]   [2013]   [Nov]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH net v4 3/4] r8152: support stopping/waking tx queue
From
From: hayeswang <hayeswang@realtek.com>
Date: Wed, 20 Nov 2013 11:28:46 +0800

> David Miller [mailto:davem@davemloft.net]
> [...]
>> This is racy.
>>
>> You have nothing which synchronizes r8152_tx_agg_fill() and
>> rtl8152_start_xmit(),
>> therefore:
>>
>> > + if (netif_queue_stopped(tp->netdev))
>> > + netif_wake_queue(tp->netdev);
>> > +
>>
>> A netif_stop_queue() can occur right after the
>> netif_queue_stopped() check,
>> meaning you can end up with the queue being stopped forever
>> and the TX queue
>> stuck.
>
> If the situation occurs, it means there is no tx buffer at that time. If the
> netif_wake_queue() is called, only one more packet would be queued and the tx
> queue would be stopped again after calling rtl8152_start_xmit(). That is, it
> is not necessary to wake the queue. Besides, after the tx is completed, another
> tasklet would be scheduled if there is any packet which is queued in the list.
> That is, the r8152_tx_agg_fill() would be called and the netif_queue_stopped()
> would be check againg, so the tx queue would not be stopped forever.

Then the queue can be woken when in fact r8152_start_xmit() is not able to
actually queue packets. It is just as equally problematic.

You have to synchronize this state, somehow.

tg3 driver does this by taking netif tx queue lock during the wake
test sequence in TX reclaim. This works because ->ndo_start_xmit() is
run with this lock held.


\
 
 \ /
  Last update: 2013-11-20 07:01    [W:0.047 / U:0.156 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site