OSDN Git Service

x86/MCE: Fix build warning introduced by "x86: do not use print_symbol()"
authorBorislav Petkov <bp@suse.de>
Sat, 10 Feb 2018 14:53:14 +0000 (15:53 +0100)
committerIngo Molnar <mingo@kernel.org>
Sun, 11 Feb 2018 10:37:39 +0000 (11:37 +0100)
commitc80c5ec1b2fa8d3675fc2a6807a64771ea156698
tree4dfc65112c703e0f24147a8d04638494539fbef3
parent7980033bea8a74692fdb987c44ec91b0be8e752b
x86/MCE: Fix build warning introduced by "x86: do not use print_symbol()"

The following commit:

  7b6061627eb8 ("x86: do not use print_symbol()")

... introduced a new build warning on 32-bit x86:

  arch/x86/kernel/cpu/mcheck/mce.c:237:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
      pr_cont("{%pS}", (void *)m->ip);
                       ^

Fix the type mismatch between the 'void *' expected by %pS and the mce->ip
field which is u64 by casting to long.

Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Tony Luck <tony.luck@intel.com>
Cc: linux-kernel@vger.kernel.org
Fixes: 7b6061627eb8 ("x86: do not use print_symbol()")
Link: http://lkml.kernel.org/r/20180210145314.22174-1-bp@alien8.de
[ Cleaned up the changelog. ]
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/kernel/cpu/mcheck/mce.c