[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20141006.152526.965519223260573233.davem@davemloft.net>
Date: Mon, 06 Oct 2014 15:25:26 -0400 (EDT)
From: David Miller <davem@...emloft.net>
To: sowmini.varadhan@...cle.com
Cc: raghuram.kothakota@...cle.com, netdev@...r.kernel.org
Subject: Re: [PATCH net-next 0/2] sunvnet: Packet processing in
non-interrupt context.
From: Sowmini Varadhan <sowmini.varadhan@...cle.com>
Date: Mon, 6 Oct 2014 12:04:18 -0400
>> I think you should be able to get rid of all of the in-driver
>> locking in the fast paths.
>>
>> NAPI ->poll() is non-reentrant, so all RX processing occurs
>> strictly in a serialized environment.
>>
>> Once you do TX reclaim in NAPI context, then all you have to do is
>> take the generic netdev TX queue lock during the evaluation of whether
>> to wakeup the TX queue or not. Worst case you need to hold the
>> TX netdev queue lock across the whole TX reclaim operation.
>>
>> The VIO lock really ought to be entirely superfluous in the data
>> paths.
>
> A few clarifications, since there are more driver-examples using NAPI for
> Rx than for Tx reclaim
Those drivers fully go against our recommendations, we always say that
TX reclaim should also run from NAPI because it liberates SKBs that
therefore become available for RX processing.
> But we still need to hold the vio lock around the ldc_write
> (and also around dring write) in vnet_start_xmit, right?
You might be able to avoid it, you're fully serialized by the TX queue
lock.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists