diff options
author | Bob Peterson <rpeterso@redhat.com> | 2013-03-13 10:26:38 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2013-04-08 03:41:04 -0400 |
commit | 20095218fb882139527c0e04b8e63869fa057b14 (patch) | |
tree | 1e170fc64d9d3060ac0d1cc998fe90a6241851fb /fs/gfs2/bmap.c | |
parent | 79ba74808df1132d9ddbf4e87304a4050e667e3e (diff) |
GFS2: Remove vestigial parameter ip from function rs_deltree
The functions that delete block reservations from the rgrp block
reservations rbtree no longer use the ip parameter. This patch
eliminates the parameter.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/bmap.c')
-rw-r--r-- | fs/gfs2/bmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/bmap.c b/fs/gfs2/bmap.c index 5e83657f046e..1dc9a13ce6bb 100644 --- a/fs/gfs2/bmap.c +++ b/fs/gfs2/bmap.c | |||
@@ -787,7 +787,7 @@ static int do_strip(struct gfs2_inode *ip, struct buffer_head *dibh, | |||
787 | goto out_rlist; | 787 | goto out_rlist; |
788 | 788 | ||
789 | if (gfs2_rs_active(ip->i_res)) /* needs to be done with the rgrp glock held */ | 789 | if (gfs2_rs_active(ip->i_res)) /* needs to be done with the rgrp glock held */ |
790 | gfs2_rs_deltree(ip, ip->i_res); | 790 | gfs2_rs_deltree(ip->i_res); |
791 | 791 | ||
792 | error = gfs2_trans_begin(sdp, rg_blocks + RES_DINODE + | 792 | error = gfs2_trans_begin(sdp, rg_blocks + RES_DINODE + |
793 | RES_INDIRECT + RES_STATFS + RES_QUOTA, | 793 | RES_INDIRECT + RES_STATFS + RES_QUOTA, |