From: Andrey Ryabinin <aryabinin@virtuozzo.com> To: Nicolas Iooss <nicolas.iooss_linux@m4x.org>, Andrew Morton <akpm@linux-foundation.org> Cc: <linux-kernel@vger.kernel.org> Subject: Re: [PATCH 1/1] UBSAN: use uppercase K to format a kernel pointer Date: Fri, 29 Jul 2016 16:07:36 +0300 [thread overview] Message-ID: <579B5518.1020407@virtuozzo.com> (raw) In-Reply-To: <20160729111053.21306-1-nicolas.iooss_linux@m4x.org> On 07/29/2016 02:10 PM, Nicolas Iooss wrote: > handle_object_size_mismatch() used %pk to format a kernel pointer in > pr_err(). This seems to be a misspelling for %pK. > > Fixes: c6d308534aef ("UBSAN: run-time undefined behavior sanity checker") > Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@m4x.org> > --- > lib/ubsan.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/ubsan.c b/lib/ubsan.c > index 8799ae5e2e42..d57d1e7e98a3 100644 > --- a/lib/ubsan.c > +++ b/lib/ubsan.c > @@ -308,7 +308,7 @@ static void handle_object_size_mismatch(struct type_mismatch_data *data, > return; > > ubsan_prologue(&data->location, &flags); > - pr_err("%s address %pk with insufficient space\n", > + pr_err("%s address %pK with insufficient space\n", I don't see much sense in using %pK here. It should be fine to use just '%p' here as we already use it in handle_missaligned_access(). > type_check_kinds[data->type_check_kind], > (void *) ptr); > pr_err("for an object of type %s\n", data->type->type_name); >
next prev parent reply other threads:[~2016-07-29 15:40 UTC|newest] Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top 2016-07-29 11:10 Nicolas Iooss 2016-07-29 13:07 ` Andrey Ryabinin [this message] 2016-07-29 19:53 ` Joe Perches 2016-07-30 8:26 ` Nicolas Iooss 2016-07-30 8:30 ` [PATCH 1/1] UBSAN: fix typo in format string Nicolas Iooss 2016-08-01 11:47 ` Andrey Ryabinin
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=579B5518.1020407@virtuozzo.com \ --to=aryabinin@virtuozzo.com \ --cc=akpm@linux-foundation.org \ --cc=linux-kernel@vger.kernel.org \ --cc=nicolas.iooss_linux@m4x.org \ --subject='Re: [PATCH 1/1] UBSAN: use uppercase K to format a kernel pointer' \ /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
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.