aboutsummaryrefslogtreecommitdiff
path: root/fs/gfs2/super.c
diff options
context:
space:
mode:
authorGravatar Bob Peterson <rpeterso@redhat.com> 2021-10-05 09:10:51 -0500
committerGravatar Andreas Gruenbacher <agruenba@redhat.com> 2021-10-25 08:42:19 +0200
commitec1d398dd780d42f84d58acdc6cca599d4a12c16 (patch)
tree3ae5ea19703b8c1fcec7a53644b9d0527ebff019 /fs/gfs2/super.c
parentgfs2: fix GL_SKIP node_scope problems (diff)
downloadlinux-ec1d398dd780d42f84d58acdc6cca599d4a12c16.tar.gz
linux-ec1d398dd780d42f84d58acdc6cca599d4a12c16.tar.bz2
linux-ec1d398dd780d42f84d58acdc6cca599d4a12c16.zip
gfs2: Eliminate GIF_INVALID flag
With the addition of the new GLF_INSTANTIATE_NEEDED flag, the GIF_INVALID flag is now redundant. This patch removes it. Since inode_instantiate is only called when instantiation is needed, the check in inode_instantiate is removed too. Signed-off-by: Bob Peterson <rpeterso@redhat.com> Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/super.c')
-rw-r--r--fs/gfs2/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/super.c b/fs/gfs2/super.c
index 26c726580041..5b121371508a 100644
--- a/fs/gfs2/super.c
+++ b/fs/gfs2/super.c
@@ -1244,7 +1244,7 @@ static enum dinode_demise evict_should_delete(struct inode *inode,
if (ret)
return SHOULD_NOT_DELETE_DINODE;
- if (test_bit(GIF_INVALID, &ip->i_flags)) {
+ if (test_bit(GLF_INSTANTIATE_NEEDED, &ip->i_gl->gl_flags)) {
ret = gfs2_instantiate(gh);
if (ret)
return SHOULD_NOT_DELETE_DINODE;