All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC] mt76: usb: reduce locking in mt76u_tx_tasklet
       [not found] <cover.1552907276.git.lorenzo@kernel.org>
@ 2019-03-18 11:09 ` Lorenzo Bianconi
  2019-03-19 11:07   ` Stanislaw Gruszka
  0 siblings, 1 reply; 8+ messages in thread
From: Lorenzo Bianconi @ 2019-03-18 11:09 UTC (permalink / raw)
  To: nbd; +Cc: linux-wireless, lorenzo.bianconi, sgruszka

Similar to pci counterpart, reduce locking in mt76u_tx_tasklet since
q->head is managed just in mt76u_tx_tasklet and q->queued is updated
holding q->lock

Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
---
 drivers/net/wireless/mediatek/mt76/usb.c | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/drivers/net/wireless/mediatek/mt76/usb.c b/drivers/net/wireless/mediatek/mt76/usb.c
index ac03acdae279..8cd70c32d77a 100644
--- a/drivers/net/wireless/mediatek/mt76/usb.c
+++ b/drivers/net/wireless/mediatek/mt76/usb.c
@@ -634,29 +634,33 @@ static void mt76u_tx_tasklet(unsigned long data)
 	int i;
 
 	for (i = 0; i < IEEE80211_NUM_ACS; i++) {
+		u32 n_queued = 0, n_sw_queued = 0;
+
 		sq = &dev->q_tx[i];
 		q = sq->q;
 
-		spin_lock_bh(&q->lock);
-		while (true) {
+		while (q->queued > n_queued) {
 			buf = &q->entry[q->head].ubuf;
-			if (!buf->done || !q->queued)
+			if (!buf->done)
 				break;
 
 			if (q->entry[q->head].schedule) {
 				q->entry[q->head].schedule = false;
-				sq->swq_queued--;
+				n_sw_queued++;
 			}
 
 			entry = q->entry[q->head];
 			q->head = (q->head + 1) % q->ndesc;
-			q->queued--;
+			n_queued++;
 
-			spin_unlock_bh(&q->lock);
 			dev->drv->tx_complete_skb(dev, i, &entry);
-			spin_lock_bh(&q->lock);
 		}
 
+		spin_lock_bh(&q->lock);
+
+		sq->swq_queued -= n_sw_queued;
+		q->queued -= n_queued;
+
 		wake = q->stopped && q->queued < q->ndesc - 8;
 		if (wake)
 			q->stopped = false;
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [RFC] mt76: usb: reduce locking in mt76u_tx_tasklet
  2019-03-18 11:09 ` [RFC] mt76: usb: reduce locking in mt76u_tx_tasklet Lorenzo Bianconi
@ 2019-03-19 11:07   ` Stanislaw Gruszka
  2019-03-19 12:58     ` Lorenzo Bianconi
  0 siblings, 1 reply; 8+ messages in thread
From: Stanislaw Gruszka @ 2019-03-19 11:07 UTC (permalink / raw)
  To: Lorenzo Bianconi; +Cc: nbd, linux-wireless, lorenzo.bianconi

On Mon, Mar 18, 2019 at 12:09:32PM +0100, Lorenzo Bianconi wrote:
> Similar to pci counterpart, reduce locking in mt76u_tx_tasklet since
> q->head is managed just in mt76u_tx_tasklet and q->queued is updated
> holding q->lock
> 
> Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> ---
>  drivers/net/wireless/mediatek/mt76/usb.c | 18 +++++++++++-------
>  1 file changed, 11 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/net/wireless/mediatek/mt76/usb.c b/drivers/net/wireless/mediatek/mt76/usb.c
> index ac03acdae279..8cd70c32d77a 100644
> --- a/drivers/net/wireless/mediatek/mt76/usb.c
> +++ b/drivers/net/wireless/mediatek/mt76/usb.c
> @@ -634,29 +634,33 @@ static void mt76u_tx_tasklet(unsigned long data)
>  	int i;
>  
>  	for (i = 0; i < IEEE80211_NUM_ACS; i++) {
> +		u32 n_queued = 0, n_sw_queued = 0;
> +
>  		sq = &dev->q_tx[i];
>  		q = sq->q;
>  
> -		spin_lock_bh(&q->lock);
> -		while (true) {
> +		while (q->queued > n_queued) {
>  			buf = &q->entry[q->head].ubuf;
> -			if (!buf->done || !q->queued)
> +			if (!buf->done)
>  				break;

I'm still thinking if this is safe or not. Is somewhat tricky to
read variable outside the lock because in such case there is no time
guarantee when variable written on one CPU gets updated value on
different CPU. And for USB is not only q->queued but also buf->done.
 
Stanislaw


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC] mt76: usb: reduce locking in mt76u_tx_tasklet
  2019-03-19 11:07   ` Stanislaw Gruszka
@ 2019-03-19 12:58     ` Lorenzo Bianconi
  2019-03-19 16:04       ` Stanislaw Gruszka
  0 siblings, 1 reply; 8+ messages in thread
From: Lorenzo Bianconi @ 2019-03-19 12:58 UTC (permalink / raw)
  To: Stanislaw Gruszka; +Cc: Lorenzo Bianconi, nbd, linux-wireless

[-- Attachment #1: Type: text/plain, Size: 1748 bytes --]

> On Mon, Mar 18, 2019 at 12:09:32PM +0100, Lorenzo Bianconi wrote:
> > Similar to pci counterpart, reduce locking in mt76u_tx_tasklet since
> > q->head is managed just in mt76u_tx_tasklet and q->queued is updated
> > holding q->lock
> > 
> > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> > ---
> >  drivers/net/wireless/mediatek/mt76/usb.c | 18 +++++++++++-------
> >  1 file changed, 11 insertions(+), 7 deletions(-)
> > 
> > diff --git a/drivers/net/wireless/mediatek/mt76/usb.c b/drivers/net/wireless/mediatek/mt76/usb.c
> > index ac03acdae279..8cd70c32d77a 100644
> > --- a/drivers/net/wireless/mediatek/mt76/usb.c
> > +++ b/drivers/net/wireless/mediatek/mt76/usb.c
> > @@ -634,29 +634,33 @@ static void mt76u_tx_tasklet(unsigned long data)
> >  	int i;
> >  
> >  	for (i = 0; i < IEEE80211_NUM_ACS; i++) {
> > +		u32 n_queued = 0, n_sw_queued = 0;
> > +
> >  		sq = &dev->q_tx[i];
> >  		q = sq->q;
> >  
> > -		spin_lock_bh(&q->lock);
> > -		while (true) {
> > +		while (q->queued > n_queued) {
> >  			buf = &q->entry[q->head].ubuf;
> > -			if (!buf->done || !q->queued)
> > +			if (!buf->done)
> >  				break;
> 
> I'm still thinking if this is safe or not. Is somewhat tricky to
> read variable outside the lock because in such case there is no time
> guarantee when variable written on one CPU gets updated value on
> different CPU. And for USB is not only q->queued but also buf->done.

Hi Stanislaw,

I was wondering if this is safe as well, but q->queued is updated holding q->lock
and I guess it will ensure to not overlap tx and status code path.
Regarding buf->done, it is already updated without holding the lock in mt76u_complete_tx

Regards,
Lorenzo

>  
> Stanislaw
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC] mt76: usb: reduce locking in mt76u_tx_tasklet
  2019-03-19 12:58     ` Lorenzo Bianconi
@ 2019-03-19 16:04       ` Stanislaw Gruszka
  2019-03-19 16:23         ` Lorenzo Bianconi
  0 siblings, 1 reply; 8+ messages in thread
From: Stanislaw Gruszka @ 2019-03-19 16:04 UTC (permalink / raw)
  To: Lorenzo Bianconi; +Cc: Lorenzo Bianconi, nbd, linux-wireless

On Tue, Mar 19, 2019 at 01:58:13PM +0100, Lorenzo Bianconi wrote:
> > On Mon, Mar 18, 2019 at 12:09:32PM +0100, Lorenzo Bianconi wrote:
> > > Similar to pci counterpart, reduce locking in mt76u_tx_tasklet since
> > > q->head is managed just in mt76u_tx_tasklet and q->queued is updated
> > > holding q->lock
> > > 
> > > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> > > ---
> > >  drivers/net/wireless/mediatek/mt76/usb.c | 18 +++++++++++-------
> > >  1 file changed, 11 insertions(+), 7 deletions(-)
> > > 
> > > diff --git a/drivers/net/wireless/mediatek/mt76/usb.c b/drivers/net/wireless/mediatek/mt76/usb.c
> > > index ac03acdae279..8cd70c32d77a 100644
> > > --- a/drivers/net/wireless/mediatek/mt76/usb.c
> > > +++ b/drivers/net/wireless/mediatek/mt76/usb.c
> > > @@ -634,29 +634,33 @@ static void mt76u_tx_tasklet(unsigned long data)
> > >  	int i;
> > >  
> > >  	for (i = 0; i < IEEE80211_NUM_ACS; i++) {
> > > +		u32 n_queued = 0, n_sw_queued = 0;
> > > +
> > >  		sq = &dev->q_tx[i];
> > >  		q = sq->q;
> > >  
> > > -		spin_lock_bh(&q->lock);
> > > -		while (true) {
> > > +		while (q->queued > n_queued) {
> > >  			buf = &q->entry[q->head].ubuf;
> > > -			if (!buf->done || !q->queued)
> > > +			if (!buf->done)
> > >  				break;
> > 
> > I'm still thinking if this is safe or not. Is somewhat tricky to
> > read variable outside the lock because in such case there is no time
> > guarantee when variable written on one CPU gets updated value on
> > different CPU. And for USB is not only q->queued but also buf->done.
> 
> Hi Stanislaw,
> 
> I was wondering if this is safe as well, but q->queued is updated holding q->lock
> and I guess it will ensure to not overlap tx and status code path.

Overlap will not happen, at worst what can happen is q->queued will be
smaller on tx_tasklet than on tx_queue_skb.

> Regarding buf->done, it is already updated without holding the lock in mt76u_complete_tx

That's actually a bug, but it's not important, if tx_tasklet will not
see updated buf->done <- true value by mt76u_complete_tx on different
cpu, it will not complete skb. It will be done on next tx_tasklet iteration.
Worse thing would be opposite situation.

Stanislaw

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC] mt76: usb: reduce locking in mt76u_tx_tasklet
  2019-03-19 16:04       ` Stanislaw Gruszka
@ 2019-03-19 16:23         ` Lorenzo Bianconi
  2019-03-20  8:11           ` Stanislaw Gruszka
  0 siblings, 1 reply; 8+ messages in thread
From: Lorenzo Bianconi @ 2019-03-19 16:23 UTC (permalink / raw)
  To: Stanislaw Gruszka; +Cc: Lorenzo Bianconi, nbd, linux-wireless

[-- Attachment #1: Type: text/plain, Size: 2457 bytes --]

> On Tue, Mar 19, 2019 at 01:58:13PM +0100, Lorenzo Bianconi wrote:
> > > On Mon, Mar 18, 2019 at 12:09:32PM +0100, Lorenzo Bianconi wrote:
> > > > Similar to pci counterpart, reduce locking in mt76u_tx_tasklet since
> > > > q->head is managed just in mt76u_tx_tasklet and q->queued is updated
> > > > holding q->lock
> > > > 
> > > > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> > > > ---
> > > >  drivers/net/wireless/mediatek/mt76/usb.c | 18 +++++++++++-------
> > > >  1 file changed, 11 insertions(+), 7 deletions(-)
> > > > 
> > > > diff --git a/drivers/net/wireless/mediatek/mt76/usb.c b/drivers/net/wireless/mediatek/mt76/usb.c
> > > > index ac03acdae279..8cd70c32d77a 100644
> > > > --- a/drivers/net/wireless/mediatek/mt76/usb.c
> > > > +++ b/drivers/net/wireless/mediatek/mt76/usb.c
> > > > @@ -634,29 +634,33 @@ static void mt76u_tx_tasklet(unsigned long data)
> > > >  	int i;
> > > >  
> > > >  	for (i = 0; i < IEEE80211_NUM_ACS; i++) {
> > > > +		u32 n_queued = 0, n_sw_queued = 0;
> > > > +
> > > >  		sq = &dev->q_tx[i];
> > > >  		q = sq->q;
> > > >  
> > > > -		spin_lock_bh(&q->lock);
> > > > -		while (true) {
> > > > +		while (q->queued > n_queued) {
> > > >  			buf = &q->entry[q->head].ubuf;
> > > > -			if (!buf->done || !q->queued)
> > > > +			if (!buf->done)
> > > >  				break;
> > > 
> > > I'm still thinking if this is safe or not. Is somewhat tricky to
> > > read variable outside the lock because in such case there is no time
> > > guarantee when variable written on one CPU gets updated value on
> > > different CPU. And for USB is not only q->queued but also buf->done.
> > 
> > Hi Stanislaw,
> > 
> > I was wondering if this is safe as well, but q->queued is updated holding q->lock
> > and I guess it will ensure to not overlap tx and status code path.
> 
> Overlap will not happen, at worst what can happen is q->queued will be
> smaller on tx_tasklet than on tx_queue_skb.

Yes, that is the point :)

> 
> > Regarding buf->done, it is already updated without holding the lock in mt76u_complete_tx
> 
> That's actually a bug, but it's not important, if tx_tasklet will not
> see updated buf->done <- true value by mt76u_complete_tx on different
> cpu, it will not complete skb. It will be done on next tx_tasklet iteration.
> Worse thing would be opposite situation.

Can this really occur? (since queued is update holding the lock)

> 
> Stanislaw

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC] mt76: usb: reduce locking in mt76u_tx_tasklet
  2019-03-19 16:23         ` Lorenzo Bianconi
@ 2019-03-20  8:11           ` Stanislaw Gruszka
  2019-03-21  9:02             ` Lorenzo Bianconi
  0 siblings, 1 reply; 8+ messages in thread
From: Stanislaw Gruszka @ 2019-03-20  8:11 UTC (permalink / raw)
  To: Lorenzo Bianconi; +Cc: Lorenzo Bianconi, nbd, linux-wireless

On Tue, Mar 19, 2019 at 05:23:25PM +0100, Lorenzo Bianconi wrote:
> > On Tue, Mar 19, 2019 at 01:58:13PM +0100, Lorenzo Bianconi wrote:
> > > > On Mon, Mar 18, 2019 at 12:09:32PM +0100, Lorenzo Bianconi wrote:
> > > > > Similar to pci counterpart, reduce locking in mt76u_tx_tasklet since
> > > > > q->head is managed just in mt76u_tx_tasklet and q->queued is updated
> > > > > holding q->lock
> > > > > 
> > > > > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> > > > > ---
> > > > >  drivers/net/wireless/mediatek/mt76/usb.c | 18 +++++++++++-------
> > > > >  1 file changed, 11 insertions(+), 7 deletions(-)
> > > > > 
> > > > > diff --git a/drivers/net/wireless/mediatek/mt76/usb.c b/drivers/net/wireless/mediatek/mt76/usb.c
> > > > > index ac03acdae279..8cd70c32d77a 100644
> > > > > --- a/drivers/net/wireless/mediatek/mt76/usb.c
> > > > > +++ b/drivers/net/wireless/mediatek/mt76/usb.c
> > > > > @@ -634,29 +634,33 @@ static void mt76u_tx_tasklet(unsigned long data)
> > > > >  	int i;
> > > > >  
> > > > >  	for (i = 0; i < IEEE80211_NUM_ACS; i++) {
> > > > > +		u32 n_queued = 0, n_sw_queued = 0;
> > > > > +
> > > > >  		sq = &dev->q_tx[i];
> > > > >  		q = sq->q;
> > > > >  
> > > > > -		spin_lock_bh(&q->lock);
> > > > > -		while (true) {
> > > > > +		while (q->queued > n_queued) {
> > > > >  			buf = &q->entry[q->head].ubuf;
> > > > > -			if (!buf->done || !q->queued)
> > > > > +			if (!buf->done)
> > > > >  				break;
> > > > 
> > > > I'm still thinking if this is safe or not. Is somewhat tricky to
> > > > read variable outside the lock because in such case there is no time
> > > > guarantee when variable written on one CPU gets updated value on
> > > > different CPU. And for USB is not only q->queued but also buf->done.
> > > 
> > > Hi Stanislaw,
> > > 
> > > I was wondering if this is safe as well, but q->queued is updated holding q->lock
> > > and I guess it will ensure to not overlap tx and status code path.
> > 
> > Overlap will not happen, at worst what can happen is q->queued will be
> > smaller on tx_tasklet than on tx_queue_skb.
> 
> Yes, that is the point :)
> 
> > 
> > > Regarding buf->done, it is already updated without holding the lock in mt76u_complete_tx
> > 
> > That's actually a bug, but it's not important, if tx_tasklet will not
> > see updated buf->done <- true value by mt76u_complete_tx on different
> > cpu, it will not complete skb. It will be done on next tx_tasklet iteration.
> > Worse thing would be opposite situation.
> 
> Can this really occur?
I was thinking about that and yes it can occur. If q->queued and
buf->done writes/read will be reordered by CPUs. To prevent that you 
will need to use smp_wmb/smp_rmb pair, but it's just simpler and more
convenient to use lock.

> (since queued is update holding the lock)
Holding the lock on one thread without holding it on concurrent thread
is irrelevant, it's the same as not holding any lock at all.

Stanislaw

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC] mt76: usb: reduce locking in mt76u_tx_tasklet
  2019-03-20  8:11           ` Stanislaw Gruszka
@ 2019-03-21  9:02             ` Lorenzo Bianconi
  2019-03-21  9:10               ` Felix Fietkau
  0 siblings, 1 reply; 8+ messages in thread
From: Lorenzo Bianconi @ 2019-03-21  9:02 UTC (permalink / raw)
  To: Stanislaw Gruszka; +Cc: Lorenzo Bianconi, nbd, linux-wireless

[-- Attachment #1: Type: text/plain, Size: 3196 bytes --]

> On Tue, Mar 19, 2019 at 05:23:25PM +0100, Lorenzo Bianconi wrote:
> > > On Tue, Mar 19, 2019 at 01:58:13PM +0100, Lorenzo Bianconi wrote:
> > > > > On Mon, Mar 18, 2019 at 12:09:32PM +0100, Lorenzo Bianconi wrote:
> > > > > > Similar to pci counterpart, reduce locking in mt76u_tx_tasklet since
> > > > > > q->head is managed just in mt76u_tx_tasklet and q->queued is updated
> > > > > > holding q->lock
> > > > > > 
> > > > > > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> > > > > > ---
> > > > > >  drivers/net/wireless/mediatek/mt76/usb.c | 18 +++++++++++-------
> > > > > >  1 file changed, 11 insertions(+), 7 deletions(-)
> > > > > > 
> > > > > > diff --git a/drivers/net/wireless/mediatek/mt76/usb.c b/drivers/net/wireless/mediatek/mt76/usb.c
> > > > > > index ac03acdae279..8cd70c32d77a 100644
> > > > > > --- a/drivers/net/wireless/mediatek/mt76/usb.c
> > > > > > +++ b/drivers/net/wireless/mediatek/mt76/usb.c
> > > > > > @@ -634,29 +634,33 @@ static void mt76u_tx_tasklet(unsigned long data)
> > > > > >  	int i;
> > > > > >  
> > > > > >  	for (i = 0; i < IEEE80211_NUM_ACS; i++) {
> > > > > > +		u32 n_queued = 0, n_sw_queued = 0;
> > > > > > +
> > > > > >  		sq = &dev->q_tx[i];
> > > > > >  		q = sq->q;
> > > > > >  
> > > > > > -		spin_lock_bh(&q->lock);
> > > > > > -		while (true) {
> > > > > > +		while (q->queued > n_queued) {
> > > > > >  			buf = &q->entry[q->head].ubuf;
> > > > > > -			if (!buf->done || !q->queued)
> > > > > > +			if (!buf->done)
> > > > > >  				break;
> > > > > 
> > > > > I'm still thinking if this is safe or not. Is somewhat tricky to
> > > > > read variable outside the lock because in such case there is no time
> > > > > guarantee when variable written on one CPU gets updated value on
> > > > > different CPU. And for USB is not only q->queued but also buf->done.
> > > > 
> > > > Hi Stanislaw,
> > > > 
> > > > I was wondering if this is safe as well, but q->queued is updated holding q->lock
> > > > and I guess it will ensure to not overlap tx and status code path.
> > > 
> > > Overlap will not happen, at worst what can happen is q->queued will be
> > > smaller on tx_tasklet than on tx_queue_skb.
> > 
> > Yes, that is the point :)
> > 
> > > 
> > > > Regarding buf->done, it is already updated without holding the lock in mt76u_complete_tx
> > > 
> > > That's actually a bug, but it's not important, if tx_tasklet will not
> > > see updated buf->done <- true value by mt76u_complete_tx on different
> > > cpu, it will not complete skb. It will be done on next tx_tasklet iteration.
> > > Worse thing would be opposite situation.
> > 
> > Can this really occur?
> I was thinking about that and yes it can occur. If q->queued and
> buf->done writes/read will be reordered by CPUs. To prevent that you 
> will need to use smp_wmb/smp_rmb pair, but it's just simpler and more
> convenient to use lock.

good point, I will go through it.

Regards,
Lorenzo

> 
> > (since queued is update holding the lock)
> Holding the lock on one thread without holding it on concurrent thread
> is irrelevant, it's the same as not holding any lock at all.
> 
> Stanislaw

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC] mt76: usb: reduce locking in mt76u_tx_tasklet
  2019-03-21  9:02             ` Lorenzo Bianconi
@ 2019-03-21  9:10               ` Felix Fietkau
  0 siblings, 0 replies; 8+ messages in thread
From: Felix Fietkau @ 2019-03-21  9:10 UTC (permalink / raw)
  To: Lorenzo Bianconi, Stanislaw Gruszka; +Cc: Lorenzo Bianconi, linux-wireless

On 2019-03-21 10:02, Lorenzo Bianconi wrote:
>> On Tue, Mar 19, 2019 at 05:23:25PM +0100, Lorenzo Bianconi wrote:
>> > > On Tue, Mar 19, 2019 at 01:58:13PM +0100, Lorenzo Bianconi wrote:
>> > > > > On Mon, Mar 18, 2019 at 12:09:32PM +0100, Lorenzo Bianconi wrote:
>> > > > > > Similar to pci counterpart, reduce locking in mt76u_tx_tasklet since
>> > > > > > q->head is managed just in mt76u_tx_tasklet and q->queued is updated
>> > > > > > holding q->lock
>> > > > > > 
>> > > > > > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
>> > > > > > ---
>> > > > > >  drivers/net/wireless/mediatek/mt76/usb.c | 18 +++++++++++-------
>> > > > > >  1 file changed, 11 insertions(+), 7 deletions(-)
>> > > > > > 
>> > > > > > diff --git a/drivers/net/wireless/mediatek/mt76/usb.c b/drivers/net/wireless/mediatek/mt76/usb.c
>> > > > > > index ac03acdae279..8cd70c32d77a 100644
>> > > > > > --- a/drivers/net/wireless/mediatek/mt76/usb.c
>> > > > > > +++ b/drivers/net/wireless/mediatek/mt76/usb.c
>> > > > > > @@ -634,29 +634,33 @@ static void mt76u_tx_tasklet(unsigned long data)
>> > > > > >  	int i;
>> > > > > >  
>> > > > > >  	for (i = 0; i < IEEE80211_NUM_ACS; i++) {
>> > > > > > +		u32 n_queued = 0, n_sw_queued = 0;
>> > > > > > +
>> > > > > >  		sq = &dev->q_tx[i];
>> > > > > >  		q = sq->q;
>> > > > > >  
>> > > > > > -		spin_lock_bh(&q->lock);
>> > > > > > -		while (true) {
>> > > > > > +		while (q->queued > n_queued) {
>> > > > > >  			buf = &q->entry[q->head].ubuf;
>> > > > > > -			if (!buf->done || !q->queued)
>> > > > > > +			if (!buf->done)
>> > > > > >  				break;
>> > > > > 
>> > > > > I'm still thinking if this is safe or not. Is somewhat tricky to
>> > > > > read variable outside the lock because in such case there is no time
>> > > > > guarantee when variable written on one CPU gets updated value on
>> > > > > different CPU. And for USB is not only q->queued but also buf->done.
>> > > > 
>> > > > Hi Stanislaw,
>> > > > 
>> > > > I was wondering if this is safe as well, but q->queued is updated holding q->lock
>> > > > and I guess it will ensure to not overlap tx and status code path.
>> > > 
>> > > Overlap will not happen, at worst what can happen is q->queued will be
>> > > smaller on tx_tasklet than on tx_queue_skb.
>> > 
>> > Yes, that is the point :)
>> > 
>> > > 
>> > > > Regarding buf->done, it is already updated without holding the lock in mt76u_complete_tx
>> > > 
>> > > That's actually a bug, but it's not important, if tx_tasklet will not
>> > > see updated buf->done <- true value by mt76u_complete_tx on different
>> > > cpu, it will not complete skb. It will be done on next tx_tasklet iteration.
>> > > Worse thing would be opposite situation.
>> > 
>> > Can this really occur?
>> I was thinking about that and yes it can occur. If q->queued and
>> buf->done writes/read will be reordered by CPUs. To prevent that you 
>> will need to use smp_wmb/smp_rmb pair, but it's just simpler and more
>> convenient to use lock.
> 
> good point, I will go through it.
Another simple solution would be to set buf->done = false in
mt76u_tx_tasklet after tx_complete_skb instead of doing it at enqueue time.

- Felix

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-03-21  9:11 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <cover.1552907276.git.lorenzo@kernel.org>
2019-03-18 11:09 ` [RFC] mt76: usb: reduce locking in mt76u_tx_tasklet Lorenzo Bianconi
2019-03-19 11:07   ` Stanislaw Gruszka
2019-03-19 12:58     ` Lorenzo Bianconi
2019-03-19 16:04       ` Stanislaw Gruszka
2019-03-19 16:23         ` Lorenzo Bianconi
2019-03-20  8:11           ` Stanislaw Gruszka
2019-03-21  9:02             ` Lorenzo Bianconi
2019-03-21  9:10               ` Felix Fietkau

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.