]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ext4: add missing brelse() in add_new_gdb_meta_bg()
authorLukas Czerner <lczerner@redhat.com>
Fri, 15 Mar 2019 04:15:32 +0000 (00:15 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 20 Apr 2019 07:15:00 +0000 (09:15 +0200)
commit7a82651d06cbaf2447f4f1193f4a7b325c1ab53a
tree578e29b545e07577e1d41500ccd5842b20b26885
parent103eb70cf4eb7fb263d1e337811217e2e4c53731
ext4: add missing brelse() in add_new_gdb_meta_bg()

[ Upstream commit d64264d6218e6892edd832dc3a5a5857c2856c53 ]

Currently in add_new_gdb_meta_bg() there is a missing brelse of gdb_bh
in case ext4_journal_get_write_access() fails.
Additionally kvfree() is missing in the same error path. Fix it by
moving the ext4_journal_get_write_access() before the ext4 sb update as
Ted suggested and release n_group_desc and gdb_bh in case it fails.

Fixes: 61a9c11e5e7a ("ext4: add missing brelse() add_new_gdb_meta_bg()'s error path")
Signed-off-by: Lukas Czerner <lczerner@redhat.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/ext4/resize.c