All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] usb: dwc3: gadget: Clear wait flag on dequeue
@ 2021-01-05  6:42 Thinh Nguyen
  2021-01-05 12:58 ` Felipe Balbi
  0 siblings, 1 reply; 4+ messages in thread
From: Thinh Nguyen @ 2021-01-05  6:42 UTC (permalink / raw)
  To: Felipe Balbi, Greg Kroah-Hartman, linux-usb
  Cc: John Youn, Thinh Nguyen, stable

If an active transfer is dequeued, then the endpoint is freed to start a
new transfer. Make sure to clear the endpoint's transfer wait flag for
this case.

Cc: stable@vger.kernel.org
Fixes: e0d19563eb6c ("usb: dwc3: gadget: Wait for transfer completion")
Signed-off-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
---
 Changes in v2:
 - Only clear the wait flag if the selected request is of an active transfer.
   Otherwise, any dequeue will change the endpoint's state even if it's for
   some random request.

 drivers/usb/dwc3/gadget.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
index 78cb4db8a6e4..9a00dcaca010 100644
--- a/drivers/usb/dwc3/gadget.c
+++ b/drivers/usb/dwc3/gadget.c
@@ -1763,6 +1763,8 @@ static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
 			list_for_each_entry_safe(r, t, &dep->started_list, list)
 				dwc3_gadget_move_cancelled_request(r);
 
+			dep->flags &= ~DWC3_EP_WAIT_TRANSFER_COMPLETE;
+
 			goto out;
 		}
 	}

base-commit: 2edc7af892d0913bf06f5b35e49ec463f03d5ed8
-- 
2.28.0


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

* Re: [PATCH v2] usb: dwc3: gadget: Clear wait flag on dequeue
  2021-01-05  6:42 [PATCH v2] usb: dwc3: gadget: Clear wait flag on dequeue Thinh Nguyen
@ 2021-01-05 12:58 ` Felipe Balbi
  2021-01-05 13:29   ` Thinh Nguyen
  0 siblings, 1 reply; 4+ messages in thread
From: Felipe Balbi @ 2021-01-05 12:58 UTC (permalink / raw)
  To: Thinh Nguyen, Greg Kroah-Hartman, linux-usb
  Cc: John Youn, Thinh Nguyen, stable


Hi,

Thinh Nguyen <Thinh.Nguyen@synopsys.com> writes:
> If an active transfer is dequeued, then the endpoint is freed to start a
> new transfer. Make sure to clear the endpoint's transfer wait flag for
> this case.
>
> Cc: stable@vger.kernel.org
> Fixes: e0d19563eb6c ("usb: dwc3: gadget: Wait for transfer completion")
> Signed-off-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
> ---
>  Changes in v2:
>  - Only clear the wait flag if the selected request is of an active transfer.
>    Otherwise, any dequeue will change the endpoint's state even if it's for
>    some random request.
>
>  drivers/usb/dwc3/gadget.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
> index 78cb4db8a6e4..9a00dcaca010 100644
> --- a/drivers/usb/dwc3/gadget.c
> +++ b/drivers/usb/dwc3/gadget.c
> @@ -1763,6 +1763,8 @@ static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
>  			list_for_each_entry_safe(r, t, &dep->started_list, list)
>  				dwc3_gadget_move_cancelled_request(r);
>  
> +			dep->flags &= ~DWC3_EP_WAIT_TRANSFER_COMPLETE;

I'm not sure this is correct. This could create a race condition between
clearing this bit and getting the transfer complete interrupt. It also
seems to break the assumptions made by
dwc3_gadget_endpoint_trbs_complete() (actually its users), specially
regarding ISOC endpoints.

Have you verified all transfer types with this commit?

-- 
balbi

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

* Re: [PATCH v2] usb: dwc3: gadget: Clear wait flag on dequeue
  2021-01-05 12:58 ` Felipe Balbi
@ 2021-01-05 13:29   ` Thinh Nguyen
  2021-01-05 13:35     ` Felipe Balbi
  0 siblings, 1 reply; 4+ messages in thread
From: Thinh Nguyen @ 2021-01-05 13:29 UTC (permalink / raw)
  To: Felipe Balbi, Thinh Nguyen, Greg Kroah-Hartman, linux-usb
  Cc: John Youn, stable

Hi Felipe,

Felipe Balbi wrote:
> Hi,
>
> Thinh Nguyen <Thinh.Nguyen@synopsys.com> writes:
>> If an active transfer is dequeued, then the endpoint is freed to start a
>> new transfer. Make sure to clear the endpoint's transfer wait flag for
>> this case.
>>
>> Cc: stable@vger.kernel.org
>> Fixes: e0d19563eb6c ("usb: dwc3: gadget: Wait for transfer completion")
>> Signed-off-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
>> ---
>>  Changes in v2:
>>  - Only clear the wait flag if the selected request is of an active transfer.
>>    Otherwise, any dequeue will change the endpoint's state even if it's for
>>    some random request.
>>
>>  drivers/usb/dwc3/gadget.c | 2 ++
>>  1 file changed, 2 insertions(+)
>>
>> diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
>> index 78cb4db8a6e4..9a00dcaca010 100644
>> --- a/drivers/usb/dwc3/gadget.c
>> +++ b/drivers/usb/dwc3/gadget.c
>> @@ -1763,6 +1763,8 @@ static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
>>  			list_for_each_entry_safe(r, t, &dep->started_list, list)
>>  				dwc3_gadget_move_cancelled_request(r);
>>  
>> +			dep->flags &= ~DWC3_EP_WAIT_TRANSFER_COMPLETE;
> I'm not sure this is correct. This could create a race condition between
> clearing this bit and getting the transfer complete interrupt. It also
> seems to break the assumptions made by
> dwc3_gadget_endpoint_trbs_complete() (actually its users), specially
> regarding ISOC endpoints.
>
> Have you verified all transfer types with this commit?
>

It shouldn't race. It's protected by the spinlock irq and it doesn't
matter whether dwc3_gadget_endpoint_trbs_complete() or this dequeue
function clears it first. The flag DWC3_EP_WAIT_TRANSFER_COMPLETE is
only applicable to stream transfer as the driver needs to wait for 1
stream to finish before starting another.

This is verified with our test environment (which includes UASP CV and
others).

BR,
Thinh


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

* Re: [PATCH v2] usb: dwc3: gadget: Clear wait flag on dequeue
  2021-01-05 13:29   ` Thinh Nguyen
@ 2021-01-05 13:35     ` Felipe Balbi
  0 siblings, 0 replies; 4+ messages in thread
From: Felipe Balbi @ 2021-01-05 13:35 UTC (permalink / raw)
  To: Thinh Nguyen, Thinh Nguyen, Greg Kroah-Hartman, linux-usb
  Cc: John Youn, stable


Hi,

Thinh Nguyen <Thinh.Nguyen@synopsys.com> writes:
>> Thinh Nguyen <Thinh.Nguyen@synopsys.com> writes:
>>> If an active transfer is dequeued, then the endpoint is freed to start a
>>> new transfer. Make sure to clear the endpoint's transfer wait flag for
>>> this case.
>>>
>>> Cc: stable@vger.kernel.org
>>> Fixes: e0d19563eb6c ("usb: dwc3: gadget: Wait for transfer completion")
>>> Signed-off-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
>>> ---
>>>  Changes in v2:
>>>  - Only clear the wait flag if the selected request is of an active transfer.
>>>    Otherwise, any dequeue will change the endpoint's state even if it's for
>>>    some random request.
>>>
>>>  drivers/usb/dwc3/gadget.c | 2 ++
>>>  1 file changed, 2 insertions(+)
>>>
>>> diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
>>> index 78cb4db8a6e4..9a00dcaca010 100644
>>> --- a/drivers/usb/dwc3/gadget.c
>>> +++ b/drivers/usb/dwc3/gadget.c
>>> @@ -1763,6 +1763,8 @@ static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
>>>  			list_for_each_entry_safe(r, t, &dep->started_list, list)
>>>  				dwc3_gadget_move_cancelled_request(r);
>>>  
>>> +			dep->flags &= ~DWC3_EP_WAIT_TRANSFER_COMPLETE;
>> I'm not sure this is correct. This could create a race condition between
>> clearing this bit and getting the transfer complete interrupt. It also
>> seems to break the assumptions made by
>> dwc3_gadget_endpoint_trbs_complete() (actually its users), specially
>> regarding ISOC endpoints.
>>
>> Have you verified all transfer types with this commit?
>>
>
> It shouldn't race. It's protected by the spinlock irq and it doesn't
> matter whether dwc3_gadget_endpoint_trbs_complete() or this dequeue
> function clears it first. The flag DWC3_EP_WAIT_TRANSFER_COMPLETE is
> only applicable to stream transfer as the driver needs to wait for 1
> stream to finish before starting another.
>
> This is verified with our test environment (which includes UASP CV and
> others).

Fair enough, I'll take your word for it :-)

Acked-by: Felipe Balbi <balbi@kernel.org>

-- 
balbi

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

end of thread, other threads:[~2021-01-05 13:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-05  6:42 [PATCH v2] usb: dwc3: gadget: Clear wait flag on dequeue Thinh Nguyen
2021-01-05 12:58 ` Felipe Balbi
2021-01-05 13:29   ` Thinh Nguyen
2021-01-05 13:35     ` Felipe Balbi

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.