Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1637989

[PATCH] asm-generic/io.h: remove unnecessary #include of <linux/vmalloc.h>

From Tobias Klauser <tklauser@distanz.ch>
Newsgroups linux.kernel
Subject [PATCH] asm-generic/io.h: remove unnecessary #include of <linux/vmalloc.h>
Date 2017-05-09 11:00 +0200
Message-ID <tF99U-7Or-9@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


After commit 1f5307b1e094 ("mm, vmalloc: properly track vmalloc users")
the build for ARCH=nios2 fails with:

In file included from ./include/asm-generic/io.h:767:0,
  		 from ./arch/nios2/include/asm/io.h:61,
		 from ./include/linux/io.h:25,
		 from ./arch/nios2/include/asm/pgtable.h:18,
		 from ./include/linux/mm.h:70,
		 from ./include/linux/pid_namespace.h:6,
		 from ./include/linux/ptrace.h:9,
		 from ./arch/nios2/include/uapi/asm/elf.h:23,
		 from ./arch/nios2/include/asm/elf.h:22,
		 from ./include/linux/elf.h:4,
		 from ./include/linux/module.h:15,
		 from init/main.c:16:
./include/linux/vmalloc.h: In function '__vmalloc_node_flags':
./include/linux/vmalloc.h:99:40: error: 'PAGE_KERNEL' undeclared (first use in this function); did you mean 'GFP_KERNEL'?

which is due to the newly added #include <asm/pgtable.h>, which on nios2
includes <linux/io.h> and thus <asm/io.h> and <asm-generic/io.h> which
again includes <linux/vmalloc.h>.

It turns out the #include <linux/vmalloc.h> in <asm-generic/io.h> isn't
necessary at all since none of it definitions are used there, so remove
it alltogether.

Build tested on
 - nios2: 10m50_defconfig
 - x86: allyesconfig, various randconfigs
 - arm: tegra_defconfig, various randconfigs

Cc: Michal Hocko <mhocko@suse.com>
Cc: Ley Foon Tan <lftan@altera.com>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
---
 include/asm-generic/io.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/include/asm-generic/io.h b/include/asm-generic/io.h
index 7ef015eb3403..fe5e01fbed54 100644
--- a/include/asm-generic/io.h
+++ b/include/asm-generic/io.h
@@ -764,7 +764,6 @@ static inline void iowrite64_rep(volatile void __iomem *addr,
 
 #ifdef __KERNEL__
 
-#include <linux/vmalloc.h>
 #define __io_virt(x) ((void __force *)(x))
 
 #ifndef CONFIG_GENERIC_IOMAP
-- 
2.12.2

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] asm-generic/io.h: remove unnecessary #include of <linux/vmalloc.h> Tobias Klauser <tklauser@distanz.ch> - 2017-05-09 11:00 +0200
  Re: [PATCH] asm-generic/io.h: remove unnecessary #include of  <linux/vmalloc.h> Michal Hocko <mhocko@kernel.org> - 2017-05-09 11:10 +0200
    Re: [PATCH] asm-generic/io.h: remove unnecessary #include of  <linux/vmalloc.h> Tobias Klauser <tklauser@distanz.ch> - 2017-05-09 15:20 +0200
      Re: [PATCH] asm-generic/io.h: remove unnecessary #include of  <linux/vmalloc.h> Michal Hocko <mhocko@kernel.org> - 2017-05-09 15:50 +0200
  Re: [PATCH] asm-generic/io.h: remove unnecessary #include of  <linux/vmalloc.h> kbuild test robot <lkp@intel.com> - 2017-05-09 14:10 +0200

csiph-web