]> git.baikalelectronics.ru Git - kernel.git/commit
gfs2: Prevent double iput for journal on error
authorBob Peterson <rpeterso@redhat.com>
Thu, 18 Aug 2022 18:32:36 +0000 (13:32 -0500)
committerAndreas Gruenbacher <agruenba@redhat.com>
Thu, 25 Aug 2022 15:10:59 +0000 (17:10 +0200)
commit8ad384074676f87bd0cb3d66cc25d3985f2677c6
tree87c33d5a8aff04a8e114e280fd14d139f2029416
parentfec62d75052a4a8c767ed0822c1b76db43093cd5
gfs2: Prevent double iput for journal on error

When a gfs2 file system is withdrawn it does iput on its journal to
allow recovery from another cluster node. If it's unable to get a
replacement inode for whatever reason, the journal descriptor would
still be pointing at the evicted inode. So when unmount clears out the
list of journals, it would do a second iput referencing the pointer.
To avoid this, set the inode pointer to NULL.

Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
fs/gfs2/util.c