From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bin Liu Subject: Re: [PATCH] usb: musb: Fix trying to free already-free IRQ 4 Date: Tue, 29 Nov 2016 15:53:03 -0600 Message-ID: <20161129215243.GC23192@uda0271908> References: <20161123165127.1795-1-tony@atomide.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Return-path: Content-Disposition: inline In-Reply-To: <20161123165127.1795-1-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> Sender: linux-usb-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Tony Lindgren Cc: Boris Brezillon , Greg Kroah-Hartman , Andreas Kemnade , Felipe Balbi , Kishon Vijay Abraham I , Ivaylo Dimitrov , Johan Hovold , Ladislav Michl , Laurent Pinchart , Sergei Shtylyov , linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: linux-omap@vger.kernel.org On Wed, Nov 23, 2016 at 08:51:27AM -0800, Tony Lindgren wrote: > When unloading omap2430, we can get the following splat: > > WARNING: CPU: 1 PID: 295 at kernel/irq/manage.c:1478 __free_irq+0xa8/0x2c8 > Trying to free already-free IRQ 4 > ... > [] (free_irq) from [] > (musbhs_dma_controller_destroy+0x28/0xb0 [musb_hdrc]) > [] (musbhs_dma_controller_destroy [musb_hdrc]) from > [] (musb_remove+0xf0/0x12c [musb_hdrc]) > [] (musb_remove [musb_hdrc]) from [] > (platform_drv_remove+0x24/0x3c) > ... > > This is because the irq number in use is 260 nowadays, and the dma > controller is using u8 instead of int. > > Signed-off-by: Tony Lindgren Applied. Thanks. -Bin. > --- > > Found one more issue.. This has been around for years so can probably > wait until after v4.10-rc1. Probably should be tagged stable to avoid > multiple people debugging this over and over. > > --- > drivers/usb/musb/musbhsdma.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/usb/musb/musbhsdma.h b/drivers/usb/musb/musbhsdma.h > --- a/drivers/usb/musb/musbhsdma.h > +++ b/drivers/usb/musb/musbhsdma.h > @@ -157,5 +157,5 @@ struct musb_dma_controller { > void __iomem *base; > u8 channel_count; > u8 used_channels; > - u8 irq; > + int irq; > }; > -- > 2.10.2 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html