From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Horman Date: Wed, 18 Nov 2015 23:29:45 +0000 Subject: Re: [PATCH] ravb: fix WARNING in __free_irq() Message-Id: <20151118232944.GF21136@verge.net.au> List-Id: References: <4607844.sdhchmu5cM@wasted.cogentembedded.com> In-Reply-To: <4607844.sdhchmu5cM@wasted.cogentembedded.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Sergei Shtylyov Cc: netdev@vger.kernel.org, linux-sh@vger.kernel.org, kazuya.mizuguchi.ks@renesas.com On Thu, Nov 19, 2015 at 01:39:51AM +0300, Sergei Shtylyov wrote: > When the R8A7795 support was added to the driver, little attention was paid > to the ravb_open() error path: free_irq() for the EMAC interrupt was called > uncoditionally, unlike request_irq(), and in a wrong order as well... > As a result, on the R-Car gen2 SoCs I started getting the following in case > of a device opening error: > > WARNING: CPU: 0 PID: 1 at kernel/irq/manage.c:1448 __free_irq+0x8c/0x228() > Trying to free already-free IRQ 0 > Modules linked in: > CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.4.0-rc1-dirty #1005 > Hardware name: Generic R8A7791 (Flattened Device Tree) > Backtrace: > [] (dump_backtrace) from [] (show_stack+0x18/0x1c) > r6:c063cdd6 r5:00000009 r4:00000000 r3:00204140 > [] (show_stack) from [] (dump_stack+0x74/0x90) > [] (dump_stack) from [] (warn_slowpath_common+0x8c/0xb8) > r4:ef04fd38 r3:c0714770 > [] (warn_slowpath_common) from [] (warn_slowpath_fmt+0x38/0x40) > r8:ee8ad800 r7:ef0030a0 r6:00000000 r5:00000000 r4:ef003040 > [] (warn_slowpath_fmt) from [] (__free_irq+0x8c/0x228) > r3:00000000 r2:c063ce9f > [] (__free_irq) from [] (free_irq+0x70/0xa4) > r10:0000016b r8:00000000 r7:00000000 r6:ee8ad800 r5:00000000 r4:ef003040 > [] (free_irq) from [] (ravb_open+0x224/0x274) > r7:fffffffe r6:00000000 r5:fffffffe r4:ee8ad800 > [] (ravb_open) from [] (__dev_open+0x84/0x104) > r7:ee8ad830 r6:c0566334 r5:00000000 r4:ee8ad800 > [] (__dev_open) from [] (__dev_change_flags+0x94/0x13c) > r7:00001002 r6:00000001 r5:00001003 r4:ee8ad800 > [] (__dev_change_flags) from [] (dev_change_flags+0x20/0x50) > r7:c072e6e0 r6:00000138 r5:00001002 r4:ee8ad800 > [] (dev_change_flags) from [] (ip_auto_config+0x174/0xfb8) > r8:00001002 r7:c072e6e0 r6:c0703344 r5:00000001 r4:ee8ad800 r3:00000101 > [] (ip_auto_config) from [] (do_one_initcall+0x100/0x1cc) > r10:c06fb83c r9:00000000 r8:c06ebef8 r7:c0736000 r6:c0710918 r5:c0710918 > r4:ef2f8f80 > [] (do_one_initcall) from [] (kernel_init_freeable+0x11c/0x1 > ec) > r10:c06fb83c r9:00000000 r8:0000009a r7:c0736000 r6:c0706bf0 r5:c06fb834 > r4:00000007 > [] (kernel_init_freeable) from [] (kernel_init+0x14/0xec) > r10:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0514c40 r4:c0736000 > [] (kernel_init) from [] (ret_from_fork+0x14/0x3c) > r4:00000000 r3:ef04e000 > > Fix up the free_irq() call order and add a new label on the error path. > > Fixes: 22d4df8ff3a3 ("ravb: Add support for r8a7795 SoC") > Signed-off-by: Sergei Shtylyov Thanks for fixing my mistake. Acked-by: Simon Horman