mirror of https://gitee.com/openkylin/linux.git
UML: add kernel.h include to signal.c
Commit 814f75ec5a
("UML: Drop private round_down definition") dropped
the private round_down() macro and makes signal.c use the one from kernel.h
instead.
kernel.h is implicitly included through uaccess.h -> sched.h -> kernel.h
but we'd rather make this dependency explicit.
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
40f0a5d0a1
commit
0df6e9402e
|
@ -6,6 +6,7 @@
|
|||
|
||||
#include <linux/personality.h>
|
||||
#include <linux/ptrace.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <asm/unistd.h>
|
||||
#include <asm/uaccess.h>
|
||||
#include <asm/ucontext.h>
|
||||
|
|
Loading…
Reference in New Issue