Skip to content

Commit

Permalink
block: sysfs fix mismatched queue_var_{store,show} in 64bit kernel
Browse files Browse the repository at this point in the history
In blk-sysfs.c, queue_var_store uses unsigned long to store data,
but queue_var_show uses unsigned int to show data.  This causes,

	# echo 70000000000 > /sys/block/<dev>/queue/read_ahead_kb
	# cat /sys/block/<dev>/queue/read_ahead_kb => get wrong value

Fix it by using unsigned long.

While at it, convert queue_rq_affinity_show() such that it uses bool
variable instead of explicit != 0 testing.

Signed-off-by: Xiaotian Feng <dfeng@redhat.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
  • Loading branch information
Xiaotian Feng authored and htejun committed Jul 17, 2009
1 parent 8f47428 commit 9cb308c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions block/blk-sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ struct queue_sysfs_entry {
};

static ssize_t
queue_var_show(unsigned int var, char *page)
queue_var_show(unsigned long var, char *page)
{
return sprintf(page, "%d\n", var);
return sprintf(page, "%lu\n", var);
}

static ssize_t
Expand Down Expand Up @@ -77,7 +77,8 @@ queue_requests_store(struct request_queue *q, const char *page, size_t count)

static ssize_t queue_ra_show(struct request_queue *q, char *page)
{
int ra_kb = q->backing_dev_info.ra_pages << (PAGE_CACHE_SHIFT - 10);
unsigned long ra_kb = q->backing_dev_info.ra_pages <<
(PAGE_CACHE_SHIFT - 10);

return queue_var_show(ra_kb, (page));
}
Expand Down Expand Up @@ -189,9 +190,9 @@ static ssize_t queue_nomerges_store(struct request_queue *q, const char *page,

static ssize_t queue_rq_affinity_show(struct request_queue *q, char *page)
{
unsigned int set = test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags);
bool set = test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags);

return queue_var_show(set != 0, page);
return queue_var_show(set, page);
}

static ssize_t
Expand Down

0 comments on commit 9cb308c

Please sign in to comment.