~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/uapi/linux/mempolicy.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2 /*
  3  * NUMA memory policies for Linux.
  4  * Copyright 2003,2004 Andi Kleen SuSE Labs
  5  */
  6 #ifndef _UAPI_LINUX_MEMPOLICY_H
  7 #define _UAPI_LINUX_MEMPOLICY_H
  8 
  9 #include <linux/errno.h>
 10 
 11 
 12 /*
 13  * Both the MPOL_* mempolicy mode and the MPOL_F_* optional mode flags are
 14  * passed by the user to either set_mempolicy() or mbind() in an 'int' actual.
 15  * The MPOL_MODE_FLAGS macro determines the legal set of optional mode flags.
 16  */
 17 
 18 /* Policies */
 19 enum {
 20         MPOL_DEFAULT,
 21         MPOL_PREFERRED,
 22         MPOL_BIND,
 23         MPOL_INTERLEAVE,
 24         MPOL_LOCAL,
 25         MPOL_PREFERRED_MANY,
 26         MPOL_WEIGHTED_INTERLEAVE,
 27         MPOL_MAX,       /* always last member of enum */
 28 };
 29 
 30 /* Flags for set_mempolicy */
 31 #define MPOL_F_STATIC_NODES     (1 << 15)
 32 #define MPOL_F_RELATIVE_NODES   (1 << 14)
 33 #define MPOL_F_NUMA_BALANCING   (1 << 13) /* Optimize with NUMA balancing if possible */
 34 
 35 /*
 36  * MPOL_MODE_FLAGS is the union of all possible optional mode flags passed to
 37  * either set_mempolicy() or mbind().
 38  */
 39 #define MPOL_MODE_FLAGS                                                 \
 40         (MPOL_F_STATIC_NODES | MPOL_F_RELATIVE_NODES | MPOL_F_NUMA_BALANCING)
 41 
 42 /* Flags for get_mempolicy */
 43 #define MPOL_F_NODE     (1<<0)  /* return next IL mode instead of node mask */
 44 #define MPOL_F_ADDR     (1<<1)  /* look up vma using address */
 45 #define MPOL_F_MEMS_ALLOWED (1<<2) /* return allowed memories */
 46 
 47 /* Flags for mbind */
 48 #define MPOL_MF_STRICT  (1<<0)  /* Verify existing pages in the mapping */
 49 #define MPOL_MF_MOVE     (1<<1) /* Move pages owned by this process to conform
 50                                    to policy */
 51 #define MPOL_MF_MOVE_ALL (1<<2) /* Move every page to conform to policy */
 52 #define MPOL_MF_LAZY     (1<<3) /* UNSUPPORTED FLAG: Lazy migrate on fault */
 53 #define MPOL_MF_INTERNAL (1<<4) /* Internal flags start here */
 54 
 55 #define MPOL_MF_VALID   (MPOL_MF_STRICT   |     \
 56                          MPOL_MF_MOVE     |     \
 57                          MPOL_MF_MOVE_ALL)
 58 
 59 /*
 60  * Internal flags that share the struct mempolicy flags word with
 61  * "mode flags".  These flags are allocated from bit 0 up, as they
 62  * are never OR'ed into the mode in mempolicy API arguments.
 63  */
 64 #define MPOL_F_SHARED  (1 << 0) /* identify shared policies */
 65 #define MPOL_F_MOF      (1 << 3) /* this policy wants migrate on fault */
 66 #define MPOL_F_MORON    (1 << 4) /* Migrate On protnone Reference On Node */
 67 
 68 /*
 69  * These bit locations are exposed in the vm.zone_reclaim_mode sysctl
 70  * ABI.  New bits are OK, but existing bits can never change.
 71  */
 72 #define RECLAIM_ZONE    (1<<0)  /* Run shrink_inactive_list on the zone */
 73 #define RECLAIM_WRITE   (1<<1)  /* Writeout pages during reclaim */
 74 #define RECLAIM_UNMAP   (1<<2)  /* Unmap pages during reclaim */
 75 
 76 #endif /* _UAPI_LINUX_MEMPOLICY_H */
 77 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php