From: Alexey Dobriyan Date: Wed, 17 Oct 2007 06:26:19 +0000 (-0700) Subject: fs/proc/mmu.c: headers butchery X-Git-Tag: firefly_0821_release~25372 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=87400c04753674f546c7779abf536d2a3b5e0b7e;p=firefly-linux-kernel-4.4.55.git fs/proc/mmu.c: headers butchery fs/proc/mmu.c consists of only one function which uses only: 1) struct vmalloc_info * 2) struct vm_struct * 3) struct vmalloc_info 4) vmlist 5) VMALLOC_TOTAL, VMALLOC_START, VMALLOC_END 6) read_lock, read_unlock 7) vmlist_lock 8) struct vm_struct This gives us linux/spinlock.h, asm/pgtable.h, "internal.h", linux/vmalloc.h. asm/pgtable.h uses PKMAP_BASE on i386, for which asm/highmem.h is needed. But, linux/highmem.h is actually used to make it compile everywhere. I'll deal later with this particular i386 surprise. Cross-compile tested on many archs and configs. Signed-off-by: Alexey Dobriyan Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/proc/mmu.c b/fs/proc/mmu.c index 25d2d9c6e329..8ae221dfd010 100644 --- a/fs/proc/mmu.c +++ b/fs/proc/mmu.c @@ -8,27 +8,10 @@ * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include #include -#include +#include #include -#include -#include #include "internal.h" void get_vmalloc_info(struct vmalloc_info *vmi)