From: Damien Le Moal <dlemoal@kernel.org>
To: "Christian Heusel" <christian@heusel.eu>,
"Jens Axboe" <axboe@kernel.dk>,
"Dave Chinner" <dchinner@redhat.com>, "Jan Kara" <jack@suse.cz>,
"Thomas Weißschuh" <linux@weissschuh.net>,
"Christian Brauner" <brauner@kernel.org>,
"Min Li" <min15.li@samsung.com>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
linux-block@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: dan.carpenter@linaro.org, kernel-janitors@vger.kernel.org
Subject: Re: [PATCH] block: print symbolic error name instead of error code
Date: Fri, 12 Jan 2024 08:37:23 +0900 [thread overview]
Message-ID: <ecf3adb2-596b-471b-8e35-b8f8124167f2@kernel.org> (raw)
In-Reply-To: <20240111231521.1596838-1-christian@heusel.eu>
On 1/12/24 08:15, Christian Heusel wrote:
> 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/92972476-0b1f-4d0a-9951-af3fc8bc6e65@suswa.mountain/
>
> Signed-off-by: Christian Heusel <christian@heusel.eu>
> ---
> block/partitions/core.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/block/partitions/core.c b/block/partitions/core.c
> index f47ffcfdfcec..932df4db76f1 100644
> --- a/block/partitions/core.c
> +++ b/block/partitions/core.c
> @@ -570,8 +570,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);
pr_err() ?
> return true;
> }
>
--
Damien Le Moal
Western Digital Research
next prev parent reply other threads:[~2024-01-11 23:37 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-11 23:15 [PATCH] block: print symbolic error name instead of error code Christian Heusel
2024-01-11 23:37 ` Damien Le Moal [this message]
2024-01-11 23:56 ` Christian Heusel
2024-01-12 0:12 ` Jens Axboe
2024-01-12 4:34 ` Chaitanya Kulkarni
2024-01-12 16:08 ` Jens Axboe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ecf3adb2-596b-471b-8e35-b8f8124167f2@kernel.org \
--to=dlemoal@kernel.org \
--cc=axboe@kernel.dk \
--cc=brauner@kernel.org \
--cc=christian@heusel.eu \
--cc=dan.carpenter@linaro.org \
--cc=dchinner@redhat.com \
--cc=gregkh@linuxfoundation.org \
--cc=jack@suse.cz \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@weissschuh.net \
--cc=min15.li@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox