Signed-off-by: Bob Peterson <rpeterso@redhat.com>
---
From: Bob Peterson <rpeterso@redhat.com>
Date: Mon, 12 Mar 2012 13:03:22 -0500
Subject: [PATCH 4/5] GFS2: Eliminate offset parameter to gfs2_setbit
Since we are now passing the bitmap pointer to function gfs2_setbit
we no longer need to pass the bi_offset. We can reference it
directly. This patch implements that, plus fixes the parameter
comments.
---
fs/gfs2/rgrp.c | 23 ++++++++++++-----------
1 files changed, 12 insertions(+), 11 deletions(-)
/**
* gfs2_setbit - Set a bit in the bitmaps
- * @buffer: the buffer that holds the bitmaps
- * @buflen: the length (in bytes) of the buffer
+ * @rgd: the resource group descriptor
+ * @buf1: the primary buffer that holds the bitmaps
+ * @buf2: the clone buffer that holds the bitmaps
+ * @bi: the bitmap structure
* @block: the block to set
* @new_state: the new state of the block
*
*/