Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull core fixes from Ingo Molnar:
"Fix an objtool warning plus fix a u64_to_user_ptr() macro expansion
bug"

* 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
objtool: Add rewind_stack_do_exit() to the noreturn list
linux/kernel.h: Use parentheses around argument in u64_to_user_ptr()

+3 -2
+2 -2
include/linux/kernel.h
··· 47 47 48 48 #define u64_to_user_ptr(x) ( \ 49 49 { \ 50 - typecheck(u64, x); \ 51 - (void __user *)(uintptr_t)x; \ 50 + typecheck(u64, (x)); \ 51 + (void __user *)(uintptr_t)(x); \ 52 52 } \ 53 53 ) 54 54
+1
tools/objtool/check.c
··· 165 165 "fortify_panic", 166 166 "usercopy_abort", 167 167 "machine_real_restart", 168 + "rewind_stack_do_exit", 168 169 }; 169 170 170 171 if (func->bind == STB_WEAK)