diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2022-12-06 14:32:23 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-12-20 19:26:30 -0500 |
commit | bea32141764bc76db2d75c9484b71ded56119ab4 (patch) | |
tree | 2d6fb200da445be349d369cf03e57a54be60bdfd /include/linux/sched.h | |
parent | ea115c248a478ce1acbf4776e4666fb663285b2f (diff) | |
download | linux-bea32141764bc76db2d75c9484b71ded56119ab4.tar.gz linux-bea32141764bc76db2d75c9484b71ded56119ab4.tar.bz2 linux-bea32141764bc76db2d75c9484b71ded56119ab4.zip |
nodemask: Split out include/linux/nodemask_types.h
sched.h, which defines task_struct, needs nodemask_t - but sched.h is a
frequently used header and ideally shouldn't be pulling in any more code
that it needs to.
This splits out nodemask_types.h which has the definition sched.h needs,
which will avoid a circular header dependency in the alloc tagging patch
series, and as a bonus should speed up kernel build times.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Signed-off-by: Suren Baghdasaryan <surenb@google.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
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 292c31697248..5a5b7b122682 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -20,7 +20,7 @@ #include <linux/hrtimer.h> #include <linux/irqflags.h> #include <linux/seccomp.h> -#include <linux/nodemask.h> +#include <linux/nodemask_types.h> #include <linux/rcupdate.h> #include <linux/refcount.h> #include <linux/resource.h> |