diff options
author | Bart Van Assche <bvanassche@acm.org> | 2024-12-12 22:29:41 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2024-12-13 16:09:43 +0100 |
commit | a6fe7b70513fbf11ffa5e85f7b6ba444497a5a3d (patch) | |
tree | 7792be67f3b638125107dfe22b1d3d8b221e831b /block | |
parent | blk-mq: Clean up blk_mq_requeue_work() (diff) | |
download | linux-a6fe7b70513fbf11ffa5e85f7b6ba444497a5a3d.tar.xz linux-a6fe7b70513fbf11ffa5e85f7b6ba444497a5a3d.zip |
block: Fix queue_iostats_passthrough_show()
Make queue_iostats_passthrough_show() report 0/1 in sysfs instead of 0/4.
This patch fixes the following sparse warning:
block/blk-sysfs.c:266:31: warning: incorrect type in argument 1 (different base types)
block/blk-sysfs.c:266:31: expected unsigned long var
block/blk-sysfs.c:266:31: got restricted blk_flags_t
Cc: Keith Busch <kbusch@kernel.org>
Cc: Christoph Hellwig <hch@lst.de>
Fixes: 110234da18ab ("block: enable passthrough command statistics")
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Link: https://lore.kernel.org/r/20241212212941.1268662-4-bvanassche@acm.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block')
-rw-r--r-- | block/blk-sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c index 4241aea84161..767598e719ab 100644 --- a/block/blk-sysfs.c +++ b/block/blk-sysfs.c @@ -263,7 +263,7 @@ static ssize_t queue_nr_zones_show(struct gendisk *disk, char *page) static ssize_t queue_iostats_passthrough_show(struct gendisk *disk, char *page) { - return queue_var_show(blk_queue_passthrough_stat(disk->queue), page); + return queue_var_show(!!blk_queue_passthrough_stat(disk->queue), page); } static ssize_t queue_iostats_passthrough_store(struct gendisk *disk, |