fs: ext4: Unmount FS in do_fs_type()
authorMarek Vasut <marek.vasut+renesas@gmail.com>
Wed, 6 Feb 2019 12:19:29 +0000 (13:19 +0100)
committerVagrant Cascadian <vagrant@debian.org>
Tue, 9 Apr 2019 02:47:02 +0000 (03:47 +0100)
commit53d830f8bc52507df44e68a9c7222dc55f78493e
treeed797d077aed08bf54f6b2b5a03c3cfa29b3dac8
parentfb97470890e081f95e92c9b429ccee130d0cb2ea
fs: ext4: Unmount FS in do_fs_type()

Unlike other generic FS accessors, fs_get_info() does not call fs_close()
at the end of it's operation. Thus, using fs_get_info() in do_fs_type()
without calling fs_close() causes potential memory leak by creating new
filesystem structures on each call of do_fs_type().

The test case to trigger this problem is as follows. It is required to
have ext4 filesystem on the first partition of the SDMMC device, since
ext4 requires stateful mount and causes memory allocation.
=> while true ; do mmc rescan ; fstype mmc 1 ; done
Eventually, the mounting of ext4 will fail due to malloc failures
and the filesystem will not be correctly detected.

This patch fixes the problem by adding the missing fs_close().

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
Gbp-Pq: Topic upstream
Gbp-Pq: Name fs-ext4-Unmount-FS-in-do_fs_type.patch
fs/fs.c