UBSAN: fix typo in format string
authorNicolas Iooss <nicolas.iooss_linux@m4x.org>
Tue, 2 Aug 2016 21:03:10 +0000 (14:03 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 2 Aug 2016 21:31:41 +0000 (17:31 -0400)
commit901d805c33fc4c029fc6b2d94ee5fb7d30278045
tree2a39b3f85d6038c28bd7b074fe6f161624d2b33a
parent9b24fef9f0410fb5364245d6cc2bd044cc064007
UBSAN: fix typo in format string

handle_object_size_mismatch() used %pk to format a kernel pointer with
pr_err().  This seemed to be a misspelling for %pK, but using this to
format a kernel pointer does not make much sence here.

Therefore use %p instead, like in handle_missaligned_access().

Link: http://lkml.kernel.org/r/20160730083010.11569-1-nicolas.iooss_linux@m4x.org
Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@m4x.org>
Acked-by: Andrey Ryabinin <aryabinin@virtuozzo.com>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
lib/ubsan.c
This page took 0.036837 seconds and 5 git commands to generate.