diff options
author | 2023-12-11 14:15:35 -0500 | |
---|---|---|
committer | 2023-12-20 19:26:31 -0500 | |
commit | 959d8dc8046186ffea5410f51fcb309880f0dfaa (patch) | |
tree | 7e67231bf290cdcee7b06949277abfd85cdc7052 | |
parent | Split out irqflags_types.h (diff) | |
download | wireguard-linux-959d8dc8046186ffea5410f51fcb309880f0dfaa.tar.xz wireguard-linux-959d8dc8046186ffea5410f51fcb309880f0dfaa.zip |
mm_types_task.h: Trim dependencies
more sched.h header dependency trimming
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | include/linux/mm_types_task.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/linux/mm_types_task.h b/include/linux/mm_types_task.h index aa44fff8bb9d..a2f6179b672b 100644 --- a/include/linux/mm_types_task.h +++ b/include/linux/mm_types_task.h @@ -9,9 +9,6 @@ */ #include <linux/types.h> -#include <linux/threads.h> -#include <linux/atomic.h> -#include <linux/cpumask.h> #include <asm/page.h> @@ -36,6 +33,8 @@ enum { NR_MM_COUNTERS }; +struct page; + struct page_frag { struct page *page; #if (BITS_PER_LONG > 32) || (PAGE_SIZE >= 65536) |