[GFS2] Align all labels against LH side

This makes everything consistent.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
This commit is contained in:
Steven Whitehouse
2006-09-04 12:04:26 -04:00
parent 75d3b817a0
commit a91ea69ffd
19 changed files with 129 additions and 245 deletions

View File

@@ -81,31 +81,27 @@ static int gfs2_drevalidate(struct dentry *dentry, struct nameidata *nd)
goto fail_gunlock;
}
valid_gunlock:
valid_gunlock:
gfs2_glock_dq_uninit(&d_gh);
valid:
valid:
dput(parent);
return 1;
invalid_gunlock:
invalid_gunlock:
gfs2_glock_dq_uninit(&d_gh);
invalid:
invalid:
if (inode && S_ISDIR(inode->i_mode)) {
if (have_submounts(dentry))
goto valid;
shrink_dcache_parent(dentry);
}
d_drop(dentry);
dput(parent);
return 0;
fail_gunlock:
fail_gunlock:
gfs2_glock_dq_uninit(&d_gh);
fail:
fail:
dput(parent);
return 0;
}