ocfs2: clean up unused parameter 'count' in o2hb_read_block_input()
Clean up unused parameter 'count' in o2hb_read_block_input(). Signed-off-by: Jun Piao <piaojun@huawei.com> Reviewed-by: Joseph Qi <joseph.qi@huawei.com> Cc: Mark Fasheh <mfasheh@suse.de> Cc: Joel Becker <jlbec@evilplan.org> Cc: Junxiao Bi <junxiao.bi@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
c14688ea24
commit
aa6913dbd2
|
@ -1456,7 +1456,6 @@ static void o2hb_region_release(struct config_item *item)
|
||||||
|
|
||||||
static int o2hb_read_block_input(struct o2hb_region *reg,
|
static int o2hb_read_block_input(struct o2hb_region *reg,
|
||||||
const char *page,
|
const char *page,
|
||||||
size_t count,
|
|
||||||
unsigned long *ret_bytes,
|
unsigned long *ret_bytes,
|
||||||
unsigned int *ret_bits)
|
unsigned int *ret_bits)
|
||||||
{
|
{
|
||||||
|
@ -1499,8 +1498,8 @@ static ssize_t o2hb_region_block_bytes_store(struct config_item *item,
|
||||||
if (reg->hr_bdev)
|
if (reg->hr_bdev)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
status = o2hb_read_block_input(reg, page, count,
|
status = o2hb_read_block_input(reg, page, &block_bytes,
|
||||||
&block_bytes, &block_bits);
|
&block_bits);
|
||||||
if (status)
|
if (status)
|
||||||
return status;
|
return status;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue