From: Shigeru Yoshida Date: Sun, 21 Aug 2022 11:17:31 +0000 (+0900) Subject: fbdev: fbcon: Destroy mutex on freeing struct fb_info X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c3abfd6ce2f3833151a4501e80a48f824b3b5f4d;p=linux.git fbdev: fbcon: Destroy mutex on freeing struct fb_info [ Upstream commit 58559dfc1ebba2ae0c7627dc8f8991ae1984c6e3 ] It's needed to destroy bl_curve_mutex on freeing struct fb_info since the mutex is embedded in the structure and initialized when it's allocated. Signed-off-by: Shigeru Yoshida Signed-off-by: Helge Deller Signed-off-by: Sasha Levin --- diff --git a/drivers/video/fbdev/core/fbsysfs.c b/drivers/video/fbdev/core/fbsysfs.c index ce699396d6bad..09ee27e7fc25f 100644 --- a/drivers/video/fbdev/core/fbsysfs.c +++ b/drivers/video/fbdev/core/fbsysfs.c @@ -84,6 +84,10 @@ void framebuffer_release(struct fb_info *info) if (WARN_ON(refcount_read(&info->count))) return; +#if IS_ENABLED(CONFIG_FB_BACKLIGHT) + mutex_destroy(&info->bl_curve_mutex); +#endif + kfree(info->apertures); kfree(info); }