diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2019-04-05 07:18:23 -0400 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2019-05-07 17:39:14 -0400 |
commit | fbb27873f21d5fb9bf556edcaa67e9891636e5d4 (patch) | |
tree | 344f3b0fef695f9721aebd9e21efbe6369967d9d /fs/gfs2/dir.c | |
parent | a5b1d3fc503164bb04e2b720054ab07d8a0004fc (diff) |
gfs2: Rename gfs2_trans_{add_unrevoke => remove_revoke}
Rename gfs2_trans_add_unrevoke to gfs2_trans_remove_revoke: there is no
such thing as an "unrevoke" object; all this function does is remove
existing revoke objects plus some bookkeeping.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/dir.c')
-rw-r--r-- | fs/gfs2/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/dir.c b/fs/gfs2/dir.c index daa14ab4e31b..db9a05244a35 100644 --- a/fs/gfs2/dir.c +++ b/fs/gfs2/dir.c | |||
@@ -883,7 +883,7 @@ static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, | |||
883 | if (!bh) | 883 | if (!bh) |
884 | return NULL; | 884 | return NULL; |
885 | 885 | ||
886 | gfs2_trans_add_unrevoke(GFS2_SB(inode), bn, 1); | 886 | gfs2_trans_remove_revoke(GFS2_SB(inode), bn, 1); |
887 | gfs2_trans_add_meta(ip->i_gl, bh); | 887 | gfs2_trans_add_meta(ip->i_gl, bh); |
888 | gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF); | 888 | gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF); |
889 | leaf = (struct gfs2_leaf *)bh->b_data; | 889 | leaf = (struct gfs2_leaf *)bh->b_data; |