OSDN Git Service

block: Fix type mismatch in ssize_t_blk_mq_tag_sysfs_show
authorMasanari Iida <standby24x7@gmail.com>
Mon, 10 Feb 2014 17:39:18 +0000 (10:39 -0700)
committerJens Axboe <axboe@fb.com>
Mon, 10 Feb 2014 17:39:53 +0000 (10:39 -0700)
cppcheck detected following format string mismatch.
[blk-mq-tag.c:201]: (warning) %u in format string (no. 1) requires
'unsigned int' but the argument type is 'int'.

Change "cpu" from int to unsigned int, because the cpu
never become minus value.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
block/blk-mq-tag.c

index d64a02f..4025050 100644 (file)
@@ -182,7 +182,7 @@ void blk_mq_free_tags(struct blk_mq_tags *tags)
 ssize_t blk_mq_tag_sysfs_show(struct blk_mq_tags *tags, char *page)
 {
        char *orig_page = page;
-       int cpu;
+       unsigned int cpu;
 
        if (!tags)
                return 0;