diff options
author | Bob Peterson <rpeterso@redhat.com> | 2014-01-16 08:52:16 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2014-01-16 09:22:12 -0500 |
commit | 8b127d0494890ced4e35fb8eca6d6b57564ee1c6 (patch) | |
tree | f6c783591e887a54818df5ecb7b23b7066767b36 /fs/gfs2 | |
parent | ac3beb6a5de048e7c0676f630ad2048a7b37b305 (diff) |
GFS2: Small cleanup
This is a small cleanup to function gfs2_rgrp_go_lock so that it
uses rgd instead of its more complicated twin.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/rgrp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c index e14e8877db96..a1da21349235 100644 --- a/fs/gfs2/rgrp.c +++ b/fs/gfs2/rgrp.c | |||
@@ -1199,7 +1199,7 @@ int gfs2_rgrp_go_lock(struct gfs2_holder *gh) | |||
1199 | 1199 | ||
1200 | if (gh->gh_flags & GL_SKIP && sdp->sd_args.ar_rgrplvb) | 1200 | if (gh->gh_flags & GL_SKIP && sdp->sd_args.ar_rgrplvb) |
1201 | return 0; | 1201 | return 0; |
1202 | return gfs2_rgrp_bh_get((struct gfs2_rgrpd *)gh->gh_gl->gl_object); | 1202 | return gfs2_rgrp_bh_get(rgd); |
1203 | } | 1203 | } |
1204 | 1204 | ||
1205 | /** | 1205 | /** |