diff mbox series

f_midi_complete to call tasklet_hi_schedule

Message ID CAArt=Lib_PiR1z07hb1E3tqq-PG=KVKU9CZP3cPsQE5ciokLVw@mail.gmail.com (mailing list archive)
State Superseded
Headers show
Series f_midi_complete to call tasklet_hi_schedule | expand

Commit Message

Jill Donahue Feb. 6, 2025, 7:32 p.m. UTC
From 9cb2628740d9f55f6f3faa5cce2de5eb8590f434 Mon Sep 17 00:00:00 2001
From: Jill Donahue <jilliandonahue58@gmail.com>
Date: Thu, 6 Feb 2025 10:18:05 -0700
Subject: [PATCH] f_midi_complete to call tasklet_hi_schedule

When using USB MIDI, a lock is attempted to be acquired twice through a
re-entrant call to f_midi_transmit, causing a deadlock.

Fix it by using tasklet_hi_schedule() to schedule the inner
f_midi_transmit() via a tasklet from the completion handler.

Link: https://lore.kernel.org/all/CAArt=LjxU0fUZOj06X+5tkeGT+6RbXzpWg1h4t4Fwa_KGVAX6g@mail.gmail.com/

Fixes: d5daf49b58661 ("USB: gadget: midi: add midi function driver")
Signed-off-by: Jill Donahue <jilliandonahue58@gmail.com>
---
 drivers/usb/gadget/function/f_midi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Greg Kroah-Hartman Feb. 7, 2025, 9:35 a.m. UTC | #1
On Thu, Feb 06, 2025 at 12:32:14PM -0700, Jillian Donahue wrote:
> >From 9cb2628740d9f55f6f3faa5cce2de5eb8590f434 Mon Sep 17 00:00:00 2001
> From: Jill Donahue <jilliandonahue58@gmail.com>
> Date: Thu, 6 Feb 2025 10:18:05 -0700
> Subject: [PATCH] f_midi_complete to call tasklet_hi_schedule

This all shouldn't be in the body of the email, please do not use web
email clients.  The kernel documentation should show you how to use git
send-email or other tools.

> 
> When using USB MIDI, a lock is attempted to be acquired twice through a
> re-entrant call to f_midi_transmit, causing a deadlock.
> 
> Fix it by using tasklet_hi_schedule() to schedule the inner
> f_midi_transmit() via a tasklet from the completion handler.
> 
> Link: https://lore.kernel.org/all/CAArt=LjxU0fUZOj06X+5tkeGT+6RbXzpWg1h4t4Fwa_KGVAX6g@mail.gmail.com/
> 
> Fixes: d5daf49b58661 ("USB: gadget: midi: add midi function driver")

No Cc: stable?

No blank line between Link: and Fixes: please

> Signed-off-by: Jill Donahue <jilliandonahue58@gmail.com>
> ---
>  drivers/usb/gadget/function/f_midi.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

And this is a v2 patch, right?

> 
> diff --git a/drivers/usb/gadget/function/f_midi.c
> b/drivers/usb/gadget/function/f_midi.c
> index 837fcdfa3..37d438e5d 100644
> --- a/drivers/usb/gadget/function/f_midi.c
> +++ b/drivers/usb/gadget/function/f_midi.c
> @@ -283,7 +283,7 @@ f_midi_complete(struct usb_ep *ep, struct usb_request *req)
>                         /* Our transmit completed. See if there's more to go.
>                          * f_midi_transmit eats req, don't queue it again. */
>                         req->length = 0;
> -                       f_midi_transmit(midi);
> +                       tasklet_hi_schedule(&midi->tasklet);
>                         return;
>                 }

Your whitespace is all damaged and this can't be applied :(

thanks,

greg k-h
Jill Donahue Feb. 7, 2025, 4:10 p.m. UTC | #2
On Fri, Feb 7, 2025 at 2:35 AM Greg KH <gregkh@linuxfoundation.org> wrote:
>   The kernel documentation should show you how to use git
> send-email or other tools.

ok, I will use this when I resubmit.

> No Cc: stable?

Cc: stable@vger.kernel.org
Like so? I just emailed the 3 from the maintainer script.

> And this is a v2 patch, right?

I have sent a few out because I cannot seem to get it right. I can add
v2 to the next one, if that helps.

> greg k-h
Jill
Greg Kroah-Hartman Feb. 7, 2025, 4:32 p.m. UTC | #3
On Fri, Feb 07, 2025 at 09:10:50AM -0700, Jillian Donahue wrote:
> On Fri, Feb 7, 2025 at 2:35 AM Greg KH <gregkh@linuxfoundation.org> wrote:
> >   The kernel documentation should show you how to use git
> > send-email or other tools.
> 
> ok, I will use this when I resubmit.
> 
> > No Cc: stable?
> 
> Cc: stable@vger.kernel.org
> Like so? I just emailed the 3 from the maintainer script.

Yes.  See:
    https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
for what that means.

> > And this is a v2 patch, right?
> 
> I have sent a few out because I cannot seem to get it right. I can add
> v2 to the next one, if that helps.

You have to, the Documentation says to :)

thanks,

greg k-h
Sebastian Andrzej Siewior Feb. 7, 2025, 4:36 p.m. UTC | #4
On 2025-02-07 09:10:50 [-0700], Jillian Donahue wrote:
> > No Cc: stable?
> 
> Cc: stable@vger.kernel.org
> Like so? I just emailed the 3 from the maintainer script.

Yes, in the body before the sign-off and so on.

> > And this is a v2 patch, right?
> 
> I have sent a few out because I cannot seem to get it right. I can add
> v2 to the next one, if that helps.

This was v2. The next one will be v3.

> > greg k-h
> Jill

Sebastian
diff mbox series

Patch

diff --git a/drivers/usb/gadget/function/f_midi.c
b/drivers/usb/gadget/function/f_midi.c
index 837fcdfa3..37d438e5d 100644
--- a/drivers/usb/gadget/function/f_midi.c
+++ b/drivers/usb/gadget/function/f_midi.c
@@ -283,7 +283,7 @@  f_midi_complete(struct usb_ep *ep, struct usb_request *req)
                        /* Our transmit completed. See if there's more to go.
                         * f_midi_transmit eats req, don't queue it again. */
                        req->length = 0;
-                       f_midi_transmit(midi);
+                       tasklet_hi_schedule(&midi->tasklet);
                        return;
                }
                break;