]> git.baikalelectronics.ru Git - kernel.git/commit
x86/uaccess: Allow access_ok() in irq context if pagefault_disabled
authorMasami Hiramatsu <mhiramat@kernel.org>
Wed, 15 May 2019 05:38:06 +0000 (14:38 +0900)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Sun, 26 May 2019 03:04:42 +0000 (23:04 -0400)
commit308b7e62adb46912c62b70c6df67f1520c538c81
tree234b6d283e668d1a30772670e3e99af779a699cf
parent43115a68a70544cbb0c5ad1a0992d569dbb2daa2
x86/uaccess: Allow access_ok() in irq context if pagefault_disabled

WARN_ON_IN_IRQ() assumes that the access_ok() and following
user memory access can sleep. But this assumption is not
always correct; when the pagefault is disabled, following
memory access will just returns -EFAULT and never sleep.

Add pagefault_disabled() check in WARN_ON_ONCE() so that
it can ignore the case we call it with disabling pagefault.
For this purpose, this modified pagefault_disabled() as
an inline function.

Link: http://lkml.kernel.org/r/155789868664.26965.7932665824135793317.stgit@devnote2
Acked-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
arch/x86/include/asm/uaccess.h
include/linux/uaccess.h