Commit b89ebd0b authored by Andi Kleen's avatar Andi Kleen Committed by Andi Kleen

[PATCH] Fix unwinder warning in traps.c

Fix

linux/arch/x86_64/kernel/traps.c: In function 'dump_trace':
linux/arch/x86_64/kernel/traps.c:275: warning: cast to pointer from integer of different size

with allnoconfig

Cc: jbeulich@novell.com
Signed-off-by: default avatarAndi Kleen <ak@suse.de>
parent 0637a70a
...@@ -99,8 +99,8 @@ static inline int arch_unw_user_mode(const struct unwind_frame_info *info) ...@@ -99,8 +99,8 @@ static inline int arch_unw_user_mode(const struct unwind_frame_info *info)
#else #else
#define UNW_PC(frame) ((void)(frame), 0) #define UNW_PC(frame) ((void)(frame), 0UL)
#define UNW_SP(frame) ((void)(frame), 0) #define UNW_SP(frame) ((void)(frame), 0UL)
static inline int arch_unw_user_mode(const void *info) static inline int arch_unw_user_mode(const void *info)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment