aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Heusel <[email protected]>2024-01-12 00:15:18 +0100
committerJens Axboe <[email protected]>2024-01-12 09:07:46 -0700
commit25c1772a0493463408489b1fae65cf77fe46cac1 (patch)
tree72142844722afe3e86aa59f1e7d64d18a318c8a4
parent5266caaf5660529e3da53004b8b7174cab6374ed (diff)
block: print symbolic error name instead of error code
Utilize the %pe print specifier to get the symbolic error name as a string (i.e "-ENOMEM") in the log message instead of the error code to increase its readablility. This change was suggested in https://lore.kernel.org/all/[email protected]/ Signed-off-by: Christian Heusel <[email protected]> Reviewed-by: Chaitanya Kulkarni <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r--block/partitions/core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block/partitions/core.c b/block/partitions/core.c
index e6ac73617f3e..cab0d76a828e 100644
--- a/block/partitions/core.c
+++ b/block/partitions/core.c
@@ -562,8 +562,8 @@ static bool blk_add_partition(struct gendisk *disk,
part = add_partition(disk, p, from, size, state->parts[p].flags,
&state->parts[p].info);
if (IS_ERR(part) && PTR_ERR(part) != -ENXIO) {
- printk(KERN_ERR " %s: p%d could not be added: %ld\n",
- disk->disk_name, p, -PTR_ERR(part));
+ printk(KERN_ERR " %s: p%d could not be added: %pe\n",
+ disk->disk_name, p, part);
return true;
}