diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-12-11 22:25:40 +0300 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-12-21 03:26:31 +0300 |
commit | 55b899aa3e7d0dc02ff9075b883d29eb2d0cb49a (patch) | |
tree | f2069c7b5534bd619235fc8a35a68fdb2833bba0 /include/linux/sched.h | |
parent | 959d8dc8046186ffea5410f51fcb309880f0dfaa (diff) | |
download | linux-55b899aa3e7d0dc02ff9075b883d29eb2d0cb49a.tar.xz |
syscall_user_dispatch.h: split out *_types.h
thread_info.h pulls in a lot of junk that sched.h that we don't need; in
particular, this helps to kill the printk.h dependency.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r-- | include/linux/sched.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 026390e6fe59..925711edd7f7 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -28,7 +28,7 @@ #include <linux/sched/prio.h> #include <linux/sched/types.h> #include <linux/signal_types.h> -#include <linux/syscall_user_dispatch.h> +#include <linux/syscall_user_dispatch_types.h> #include <linux/mm_types_task.h> #include <linux/task_io_accounting.h> #include <linux/posix-timers_types.h> |