parisc: Fix vmap memory leak in ioremap()/iounmap()
authorHelge Deller <deller@gmx.de>
Fri, 4 Oct 2019 17:23:37 +0000 (19:23 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 29 Oct 2019 08:15:24 +0000 (09:15 +0100)
commit088f75885bb41dd587af216f0b4b070f239dc0bf
treed7cfb750d5203370c21b5d845fe595bbdd40d92e
parent8d53ef7bc7fa151e4e23c3ff92cfcdb226de9fda
parisc: Fix vmap memory leak in ioremap()/iounmap()

commit 513f7f747e1cba81f28a436911fba0b485878ebd upstream.

Sven noticed that calling ioremap() and iounmap() multiple times leads
to a vmap memory leak:
vmap allocation for size 4198400 failed:
use vmalloc=<size> to increase size

It seems we missed calling vunmap() in iounmap().

Signed-off-by: Helge Deller <deller@gmx.de>
Noticed-by: Sven Schnelle <svens@stackframe.org>
Cc: <stable@vger.kernel.org> # v3.16+
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/parisc/mm/ioremap.c