diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2017-08-30 07:46:24 -0500 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2017-08-30 08:14:27 -0500 |
commit | 7023a0b16f66a2f1358c95989d23142d8191fd6e (patch) | |
tree | 9b067f4f1198d6c5852ef581df065d4c57353081 /fs/gfs2 | |
parent | 27c3b415f6ffe6d29a95c8187e35436fcc9638b6 (diff) | |
download | linux-7023a0b16f66a2f1358c95989d23142d8191fd6e.tar.bz2 |
GFS2: Fix gl_object warnings
The following cleanup is needed to avoid spilling the syslog with
false warnings.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Bob Peterson <rpeterso@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 29fbeee36fa6..95b2a57ded33 100644 --- a/fs/gfs2/rgrp.c +++ b/fs/gfs2/rgrp.c @@ -705,7 +705,7 @@ void gfs2_clear_rgrpd(struct gfs2_sbd *sdp) rb_erase(n, &sdp->sd_rindex_tree); if (gl) { - glock_set_object(gl, NULL); + glock_clear_object(gl, rgd); gfs2_glock_put(gl); } |