[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20200422155328.27473-1-zhengdejin5@gmail.com>
Date: Wed, 22 Apr 2020 23:53:28 +0800
From: Dejin Zheng <zhengdejin5@...il.com>
To: b.zolnierkie@...sung.com, tglx@...utronix.de,
gregkh@...uxfoundation.org, tsbogend@...ha.franken.de,
FlorianSchandinat@....de, ralf@...ux-mips.org,
dri-devel@...ts.freedesktop.org, linux-fbdev@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, Dejin Zheng <zhengdejin5@...il.com>,
Andy Shevchenko <andy.shevchenko@...il.com>
Subject: [PATCH v1] console: fix an issue about ioremap leak.
if do_take_over_console() return an error in the newport_probe(),
due to the io virtual address is not released, it will cause a leak.
Fixes: e84de0c6190503 ("MIPS: GIO bus support for SGI IP22/28")
CC: Andy Shevchenko <andy.shevchenko@...il.com>
Signed-off-by: Dejin Zheng <zhengdejin5@...il.com>
---
drivers/video/console/newport_con.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/video/console/newport_con.c b/drivers/video/console/newport_con.c
index 00dddf6e08b0..6bfc8e3ffd4a 100644
--- a/drivers/video/console/newport_con.c
+++ b/drivers/video/console/newport_con.c
@@ -720,6 +720,9 @@ static int newport_probe(struct gio_device *dev,
console_lock();
err = do_take_over_console(&newport_con, 0, MAX_NR_CONSOLES - 1, 1);
console_unlock();
+
+ if (err)
+ iounmap((void *)npregs);
return err;
}
--
2.25.0
Powered by blists - more mailing lists