blob: 2a4d89508fece0518558567ca71cccae1477bfd8 [file] [log] [blame]
David Howells607ca462012-10-13 10:46:48 +01001/*
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
8#include <linux/errno.h>
9
10
11/*
12 * Both the MPOL_* mempolicy mode and the MPOL_F_* optional mode flags are
13 * passed by the user to either set_mempolicy() or mbind() in an 'int' actual.
14 * The MPOL_MODE_FLAGS macro determines the legal set of optional mode flags.
15 */
16
17/* Policies */
18enum {
19 MPOL_DEFAULT,
20 MPOL_PREFERRED,
21 MPOL_BIND,
22 MPOL_INTERLEAVE,
Peter Zijlstra479e2802012-10-25 14:16:28 +020023 MPOL_LOCAL,
David Howells607ca462012-10-13 10:46:48 +010024 MPOL_MAX, /* always last member of enum */
25};
26
David Howells607ca462012-10-13 10:46:48 +010027/* Flags for set_mempolicy */
28#define MPOL_F_STATIC_NODES (1 << 15)
29#define MPOL_F_RELATIVE_NODES (1 << 14)
30
31/*
32 * MPOL_MODE_FLAGS is the union of all possible optional mode flags passed to
33 * either set_mempolicy() or mbind().
34 */
35#define MPOL_MODE_FLAGS (MPOL_F_STATIC_NODES | MPOL_F_RELATIVE_NODES)
36
37/* Flags for get_mempolicy */
38#define MPOL_F_NODE (1<<0) /* return next IL mode instead of node mask */
39#define MPOL_F_ADDR (1<<1) /* look up vma using address */
40#define MPOL_F_MEMS_ALLOWED (1<<2) /* return allowed memories */
41
42/* Flags for mbind */
43#define MPOL_MF_STRICT (1<<0) /* Verify existing pages in the mapping */
Lee Schermerhornb24f53a2012-10-25 14:16:32 +020044#define MPOL_MF_MOVE (1<<1) /* Move pages owned by this process to conform
45 to policy */
46#define MPOL_MF_MOVE_ALL (1<<2) /* Move every page to conform to policy */
47#define MPOL_MF_LAZY (1<<3) /* Modifies '_MOVE: lazy migrate on fault */
48#define MPOL_MF_INTERNAL (1<<4) /* Internal flags start here */
49
50#define MPOL_MF_VALID (MPOL_MF_STRICT | \
51 MPOL_MF_MOVE | \
Mel Gormana7200942012-11-16 09:37:58 +000052 MPOL_MF_MOVE_ALL)
David Howells607ca462012-10-13 10:46:48 +010053
54/*
55 * Internal flags that share the struct mempolicy flags word with
56 * "mode flags". These flags are allocated from bit 0 up, as they
57 * are never OR'ed into the mode in mempolicy API arguments.
58 */
59#define MPOL_F_SHARED (1 << 0) /* identify shared policies */
60#define MPOL_F_LOCAL (1 << 1) /* preferred local allocation */
Lee Schermerhorn771fb4d2012-10-25 14:16:30 +020061#define MPOL_F_MOF (1 << 3) /* this policy wants migrate on fault */
Mel Gorman8a0516e2015-02-12 14:58:22 -080062#define MPOL_F_MORON (1 << 4) /* Migrate On protnone Reference On Node */
David Howells607ca462012-10-13 10:46:48 +010063
64
65#endif /* _UAPI_LINUX_MEMPOLICY_H */