mempolicy.h 2.5 KB

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