diff options
| author | Kent Overstreet <[email protected]> | 2023-12-11 11:52:02 -0500 |
|---|---|---|
| committer | Kent Overstreet <[email protected]> | 2023-12-20 19:26:30 -0500 |
| commit | 50d91c76582513852e38eb80491f54d44cfb51fc (patch) | |
| tree | 94e2f71470caa912fd789cd313053ae6dd9e0d1f /include/linux/sched.h | |
| parent | 2e346b19aab9ee40e5e429667a0a515f1d68b714 (diff) | |
hrtimers: Split out hrtimer_types.h
We need to reduce the scope of what's included in sched.h: task_struct
includes a hrtimer, so split out the core types into their own header.
Signed-off-by: Kent Overstreet <[email protected]>
Cc: Thomas Gleixner <[email protected]>
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 7501a3451a20..3762809652da 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -17,7 +17,7 @@ #include <linux/kmsan_types.h> #include <linux/mutex.h> #include <linux/plist.h> -#include <linux/hrtimer.h> +#include <linux/hrtimer_types.h> #include <linux/irqflags.h> #include <linux/seccomp.h> #include <linux/nodemask_types.h> |