From mboxrd@z Thu Jan 1 00:00:00 1970 From: k.kozlowski@samsung.com (Krzysztof Kozlowski) Date: Tue, 3 May 2016 12:15:09 +0200 Subject: [PATCH v2] s5p-mfc: Don't try to put pm->clock if lookup failed In-Reply-To: <1462216462-32665-1-git-send-email-javier@osg.samsung.com> References: <1462216462-32665-1-git-send-email-javier@osg.samsung.com> Message-ID: <20160503101509.GB3956@kozik-lap> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Mon, May 02, 2016 at 03:14:22PM -0400, Javier Martinez Canillas wrote: > Failing to get the struct s5p_mfc_pm .clock is a non-fatal error so the > clock field can have a errno pointer value. But s5p_mfc_final_pm() only > checks if .clock is not NULL before attempting to unprepare and put it. > > This leads to the following warning in clk_put() due s5p_mfc_final_pm(): > > WARNING: CPU: 3 PID: 1023 at drivers/clk/clk.c:2814 s5p_mfc_final_pm+0x48/0x74 [s5p_mfc] > CPU: 3 PID: 1023 Comm: rmmod Tainted: G W 4.6.0-rc6-next-20160502-00005-g5a15a49106bc #9 > Hardware name: SAMSUNG EXYNOS (Flattened Device Tree) > [] (unwind_backtrace) from [] (show_stack+0x10/0x14) > [] (show_stack) from [] (dump_stack+0x88/0x9c) > [] (dump_stack) from [] (__warn+0xe8/0x100) > [] (__warn) from [] (warn_slowpath_null+0x20/0x28) > [] (warn_slowpath_null) from [] (s5p_mfc_final_pm+0x48/0x74 [s5p_mfc]) > [] (s5p_mfc_final_pm [s5p_mfc]) from [] (s5p_mfc_remove+0x8c/0x94 [s5p_mfc]) > [] (s5p_mfc_remove [s5p_mfc]) from [] (platform_drv_remove+0x24/0x3c) > [] (platform_drv_remove) from [] (__device_release_driver+0x84/0x110) > [] (__device_release_driver) from [] (driver_detach+0xac/0xb0) > [] (driver_detach) from [] (bus_remove_driver+0x4c/0xa0) > [] (bus_remove_driver) from [] (SyS_delete_module+0x174/0x1b8) > [] (SyS_delete_module) from [] (ret_fast_syscall+0x0/0x3c) > > Assign the pointer to NULL in case of a lookup failure to fix the issue. > > Signed-off-by: Javier Martinez Canillas > > --- > > Changes in v2: > - Set the clock pointer to NULL instead of checking for !IS_ERR_OR_NULL(). > Suggested by Arnd Bergmann. > > drivers/media/platform/s5p-mfc/s5p_mfc_pm.c | 1 + > 1 file changed, 1 insertion(+) This is a fix for bug, so for statistics: Fixes: d19f405a5a8d ("[media] s5p-mfc: Fix selective sclk_mfc init") ... and although not fatal, but annoying so I think this deserves: Cc: Anyway: Reviewed-by: Krzysztof Kozlowski Best regards, Krzysztof