]> Git Repo - linux.git/commitdiff
arch: Add generic Kconfig option indicating page size smaller than 64k
authorGuenter Roeck <[email protected]>
Sat, 27 Nov 2021 15:44:40 +0000 (07:44 -0800)
committerLinus Torvalds <[email protected]>
Sat, 27 Nov 2021 22:34:41 +0000 (14:34 -0800)
NTFS_RW and VMXNET3 require a page size smaller than 64kB.  Add generic
Kconfig option for use outside architecture code to avoid architecture
specific Kconfig options in that code.

Suggested-by: Michael Ellerman <[email protected]>
Signed-off-by: Guenter Roeck <[email protected]>
Cc: Anton Altaparmakov <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
arch/Kconfig

index 26b8ed11639da464ef30f035a960302eaf162f1e..d3c4ab249e9c2758d2bc917556b2039a4e16c5c9 100644 (file)
@@ -991,6 +991,16 @@ config HAVE_ARCH_COMPAT_MMAP_BASES
          and vice-versa 32-bit applications to call 64-bit mmap().
          Required for applications doing different bitness syscalls.
 
+config PAGE_SIZE_LESS_THAN_64KB
+       def_bool y
+       depends on !ARM64_64K_PAGES
+       depends on !IA64_PAGE_SIZE_64KB
+       depends on !PAGE_SIZE_64KB
+       depends on !PARISC_PAGE_SIZE_64KB
+       depends on !PPC_64K_PAGES
+       depends on !PPC_256K_PAGES
+       depends on !PAGE_SIZE_256KB
+
 # This allows to use a set of generic functions to determine mmap base
 # address by giving priority to top-down scheme only if the process
 # is not in legacy mode (compat task, unlimited stack size or
This page took 0.060761 seconds and 4 git commands to generate.