mempolicy.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * NUMA memory policies for Linux.
  3. * Copyright 2003,2004 Andi Kleen SuSE Labs
  4. */
  5. #ifndef _UAPI_LINUX_MEMPOLICY_H
  6. #define _UAPI_LINUX_MEMPOLICY_H
  7. #include <linux/errno.h>
  8. /*
  9. * Both the MPOL_* mempolicy mode and the MPOL_F_* optional mode flags are
  10. * passed by the user to either set_mempolicy() or mbind() in an 'int' actual.
  11. * The MPOL_MODE_FLAGS macro determines the legal set of optional mode flags.
  12. */
  13. /* Policies */
  14. enum {
  15. MPOL_DEFAULT,
  16. MPOL_PREFERRED,
  17. MPOL_BIND,
  18. MPOL_INTERLEAVE,
  19. MPOL_MAX, /* always last member of enum */
  20. };
  21. enum mpol_rebind_step {
  22. MPOL_REBIND_ONCE, /* do rebind work at once(not by two step) */
  23. MPOL_REBIND_STEP1, /* first step(set all the newly nodes) */
  24. MPOL_REBIND_STEP2, /* second step(clean all the disallowed nodes)*/
  25. MPOL_REBIND_NSTEP,
  26. };
  27. /* Flags for set_mempolicy */
  28. #define MPOL_F_STATIC_NODES (1 << 15)
  29. #define MPOL_F_RELATIVE_NODES (1 << 14)
  30. /*
  31. * MPOL_MODE_FLAGS is the union of all possible optional mode flags passed to
  32. * either set_mempolicy() or mbind().
  33. */
  34. #define MPOL_MODE_FLAGS (MPOL_F_STATIC_NODES | MPOL_F_RELATIVE_NODES)
  35. /* Flags for get_mempolicy */
  36. #define MPOL_F_NODE (1<<0) /* return next IL mode instead of node mask */
  37. #define MPOL_F_ADDR (1<<1) /* look up vma using address */
  38. #define MPOL_F_MEMS_ALLOWED (1<<2) /* return allowed memories */
  39. /* Flags for mbind */
  40. #define MPOL_MF_STRICT (1<<0) /* Verify existing pages in the mapping */
  41. #define MPOL_MF_MOVE (1<<1) /* Move pages owned by this process to conform to mapping */
  42. #define MPOL_MF_MOVE_ALL (1<<2) /* Move every page to conform to mapping */
  43. #define MPOL_MF_INTERNAL (1<<3) /* Internal flags start here */
  44. /*
  45. * Internal flags that share the struct mempolicy flags word with
  46. * "mode flags". These flags are allocated from bit 0 up, as they
  47. * are never OR'ed into the mode in mempolicy API arguments.
  48. */
  49. #define MPOL_F_SHARED (1 << 0) /* identify shared policies */
  50. #define MPOL_F_LOCAL (1 << 1) /* preferred local allocation */
  51. #define MPOL_F_REBINDING (1 << 2) /* identify policies in rebinding */
  52. #endif /* _UAPI_LINUX_MEMPOLICY_H */