Commit f19d1e3b authored by Bart Van Assche's avatar Bart Van Assche Committed by Jens Axboe

block: Use pr_info() instead of printk(KERN_INFO ...)

Switch to the modern style of printing kernel messages. Use %u instead
of %d to print unsigned integers.
Reviewed-by: default avatarLuis Chamberlain <mcgrof@kernel.org>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Ming Lei <ming.lei@redhat.com>
Cc: Keith Busch <kbusch@kernel.org>
Signed-off-by: default avatarBart Van Assche <bvanassche@acm.org>
Reviewed-by: default avatarKeith Busch <kbusch@kernel.org>
Link: https://lore.kernel.org/r/20231213194702.90381-1-bvanassche@acm.orgSigned-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 6f64f866
...@@ -127,8 +127,7 @@ void blk_queue_max_hw_sectors(struct request_queue *q, unsigned int max_hw_secto ...@@ -127,8 +127,7 @@ void blk_queue_max_hw_sectors(struct request_queue *q, unsigned int max_hw_secto
if ((max_hw_sectors << 9) < PAGE_SIZE) { if ((max_hw_sectors << 9) < PAGE_SIZE) {
max_hw_sectors = 1 << (PAGE_SHIFT - 9); max_hw_sectors = 1 << (PAGE_SHIFT - 9);
printk(KERN_INFO "%s: set to minimum %d\n", pr_info("%s: set to minimum %u\n", __func__, max_hw_sectors);
__func__, max_hw_sectors);
} }
max_hw_sectors = round_down(max_hw_sectors, max_hw_sectors = round_down(max_hw_sectors,
...@@ -248,8 +247,7 @@ void blk_queue_max_segments(struct request_queue *q, unsigned short max_segments ...@@ -248,8 +247,7 @@ void blk_queue_max_segments(struct request_queue *q, unsigned short max_segments
{ {
if (!max_segments) { if (!max_segments) {
max_segments = 1; max_segments = 1;
printk(KERN_INFO "%s: set to minimum %d\n", pr_info("%s: set to minimum %u\n", __func__, max_segments);
__func__, max_segments);
} }
q->limits.max_segments = max_segments; q->limits.max_segments = max_segments;
...@@ -285,8 +283,7 @@ void blk_queue_max_segment_size(struct request_queue *q, unsigned int max_size) ...@@ -285,8 +283,7 @@ void blk_queue_max_segment_size(struct request_queue *q, unsigned int max_size)
{ {
if (max_size < PAGE_SIZE) { if (max_size < PAGE_SIZE) {
max_size = PAGE_SIZE; max_size = PAGE_SIZE;
printk(KERN_INFO "%s: set to minimum %d\n", pr_info("%s: set to minimum %u\n", __func__, max_size);
__func__, max_size);
} }
/* see blk_queue_virt_boundary() for the explanation */ /* see blk_queue_virt_boundary() for the explanation */
...@@ -740,8 +737,7 @@ void blk_queue_segment_boundary(struct request_queue *q, unsigned long mask) ...@@ -740,8 +737,7 @@ void blk_queue_segment_boundary(struct request_queue *q, unsigned long mask)
{ {
if (mask < PAGE_SIZE - 1) { if (mask < PAGE_SIZE - 1) {
mask = PAGE_SIZE - 1; mask = PAGE_SIZE - 1;
printk(KERN_INFO "%s: set to minimum %lx\n", pr_info("%s: set to minimum %lx\n", __func__, mask);
__func__, mask);
} }
q->limits.seg_boundary_mask = mask; q->limits.seg_boundary_mask = mask;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment