mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Johannes Weiner <hannes@cmpxchg.org>
To: Xiaotian Feng <dfeng@redhat.com>
Cc: axboe@kernel.dk, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] block: sysfs fix mismatched queue_var_{store,show} in 64bit kernel
Date: Tue, 14 Jul 2009 16:10:28 +0200	[thread overview]
Message-ID: <20090714141028.GB18146@cmpxchg.org> (raw)
In-Reply-To: <1247572618-24073-1-git-send-email-dfeng@redhat.com>

On Tue, Jul 14, 2009 at 07:56:58PM +0800, Xiaotian Feng wrote:
> 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
> 
> Signed-off-by: Xiaotian Feng <dfeng@redhat.com>
> ---
>  block/blk-sysfs.c |   13 +++++++------
>  1 files changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c
> index b1cd040..e177eb3 100644
> --- a/block/blk-sysfs.c
> +++ b/block/blk-sysfs.c
> @@ -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);

%lu, I guess?

  parent reply	other threads:[~2009-07-14 14:11 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-14 11:56 Xiaotian Feng
2009-07-14 13:53 ` Américo Wang
2009-07-14 15:00   ` Danny Feng
2009-07-14 14:10 ` Johannes Weiner [this message]
2009-07-14 14:15 ` [PATCH V2] " Xiaotian Feng
2009-07-17  6:48   ` Tejun Heo
2009-07-17  7:39     ` Danny Feng
2009-07-17  7:53       ` Tejun Heo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090714141028.GB18146@cmpxchg.org \
    --to=hannes@cmpxchg.org \
    --cc=axboe@kernel.dk \
    --cc=dfeng@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®