]> git.baikalelectronics.ru Git - kernel.git/commit
ocfs2: fix crash when initialize filecheck kobj fails
authorJoseph Qi <joseph.qi@linux.alibaba.com>
Wed, 16 Mar 2022 23:15:09 +0000 (16:15 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 17 Mar 2022 18:02:13 +0000 (11:02 -0700)
commitf425c112834fc5d88cccce796b885eb9c0b8fcb7
treede8c2748936244e4f181009872e3c67b7287467c
parentf4219df3c3d34fafd976db15ef7ea66f75382b80
ocfs2: fix crash when initialize filecheck kobj fails

Once s_root is set, genric_shutdown_super() will be called if
fill_super() fails.  That means, we will call ocfs2_dismount_volume()
twice in such case, which can lead to kernel crash.

Fix this issue by initializing filecheck kobj before setting s_root.

Link: https://lkml.kernel.org/r/20220310081930.86305-1-joseph.qi@linux.alibaba.com
Fixes: 2b4fefa9896a ("ocfs2: add kobject for online file check")
Signed-off-by: Joseph Qi <joseph.qi@linux.alibaba.com>
Cc: Mark Fasheh <mark@fasheh.com>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Junxiao Bi <junxiao.bi@oracle.com>
Cc: Changwei Ge <gechangwei@live.cn>
Cc: Gang He <ghe@suse.com>
Cc: Jun Piao <piaojun@huawei.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/ocfs2/super.c