Browse Source

sys/mman.h: add MAP_HUGE_16KB from linux v5.10

see

  linux commit e47168f3d1b14af5281cf50c59561d59d28201f9
  powerpc/8xx: Support 16k hugepages with 4k pages
Szabolcs Nagy 4 years ago
parent
commit
d7210f0c12
1 changed files with 1 additions and 0 deletions
  1. 1 0
      include/sys/mman.h

+ 1 - 0
include/sys/mman.h

@@ -40,6 +40,7 @@ extern "C" {
 
 #define MAP_HUGE_SHIFT 26
 #define MAP_HUGE_MASK  0x3f
+#define MAP_HUGE_16KB  (14 << 26)
 #define MAP_HUGE_64KB  (16 << 26)
 #define MAP_HUGE_512KB (19 << 26)
 #define MAP_HUGE_1MB   (20 << 26)