1
0
Fork 0

fs: fixup warning part_discard_alignment_show()

Stephen reports:

-----

After merging the block tree, today's linux-next build (x86_64
allmodconfig) produced this warning:

fs/partitions/check.c: In function 'part_discard_alignment_show':
fs/partitions/check.c:263: warning: format '%u' expects type 'unsigned int', but argument 3 has type 'long long unsigned int'

Introduced by commit  ("block: Remove extra discard_alignment from
hd_struct")

-----

Fix it up by just removing the cast, we return an int already.

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
hifive-unleashed-5.1
Jens Axboe 2011-05-09 08:28:13 +02:00
parent 23ceb5b771
commit bbdd304cf6
1 changed files with 1 additions and 2 deletions

View File

@ -258,8 +258,7 @@ ssize_t part_discard_alignment_show(struct device *dev,
struct gendisk *disk = dev_to_disk(dev);
return sprintf(buf, "%u\n",
(unsigned long long)queue_limit_discard_alignment(
&disk->queue->limits,
queue_limit_discard_alignment(&disk->queue->limits,
p->start_sect));
}