diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2013-10-02 09:47:02 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2013-10-02 09:47:02 -0400 |
commit | 26e43a15d44a02e380904ac6113fe0f2f1ddea8a (patch) | |
tree | 54c4d8e2138ebc2bf4f96072150090697a26eb5b /fs/gfs2/util.c | |
parent | 9e07f2cb3d7a93f4b1b18fc6e4dd6911dcba2442 (diff) |
GFS2: Move gfs2_icbit_munge into quota.c
This function is only called twice, and both callers are
quota related, so lets move this function into quota.c and
make it static.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/util.c')
-rw-r--r-- | fs/gfs2/util.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/fs/gfs2/util.c b/fs/gfs2/util.c index 6402fb69d71b..f7109f689e61 100644 --- a/fs/gfs2/util.c +++ b/fs/gfs2/util.c | |||
@@ -268,23 +268,3 @@ int gfs2_io_error_bh_i(struct gfs2_sbd *sdp, struct buffer_head *bh, | |||
268 | return rv; | 268 | return rv; |
269 | } | 269 | } |
270 | 270 | ||
271 | void gfs2_icbit_munge(struct gfs2_sbd *sdp, unsigned char **bitmap, | ||
272 | unsigned int bit, int new_value) | ||
273 | { | ||
274 | unsigned int c, o, b = bit; | ||
275 | int old_value; | ||
276 | |||
277 | c = b / (8 * PAGE_SIZE); | ||
278 | b %= 8 * PAGE_SIZE; | ||
279 | o = b / 8; | ||
280 | b %= 8; | ||
281 | |||
282 | old_value = (bitmap[c][o] & (1 << b)); | ||
283 | gfs2_assert_withdraw(sdp, !old_value != !new_value); | ||
284 | |||
285 | if (new_value) | ||
286 | bitmap[c][o] |= 1 << b; | ||
287 | else | ||
288 | bitmap[c][o] &= ~(1 << b); | ||
289 | } | ||
290 | |||