Lines Matching refs:the

4 In the Linux kernel, "memory policy" determines from which node the kernel will
8 document attempts to describe the concepts and APIs of the 2.6 memory policy
13 which is an administrative mechanism for restricting the nodes from which
16 both cpusets and policies are applied to a task, the restrictions of the cpuset
26 System Default Policy: this policy is "hard coded" into the kernel. It
27 is the policy that governs all page allocations that aren't controlled
28 by one of the more specific policy scopes discussed below. When the
29 system is "up and running", the system default policy will use "local
30 allocation" described below. However, during boot up, the system
32 with "sufficient" memory, so as not to overload the initial boot node
37 on behalf of the task that aren't controlled by a more specific scope.
39 would have been controlled by the task policy "fall back" to the System
42 The task policy applies to the entire address space of a task. Thus,
44 [clone() w/o the CLONE_VM flag] and exec*(). This allows a parent task
45 to establish the task policy for a child task exec()'d from an
46 executable image that has no awareness of memory policy. See the
47 MEMORY POLICY APIS section, below, for an overview of the system call
50 In a multi-threaded task, task policies apply only to the thread
51 [Linux kernel task] that installs the policy and any threads
53 at the time a new task policy is installed retain their current
56 A task policy applies only to pages allocated after the policy is
57 installed. Any pages already faulted in by the task when the task
59 the policy at the time they were allocated.
63 of its virtual address space. See the MEMORY POLICIES APIS section,
64 below, for an overview of the mbind() system call used to set a VMA
67 A VMA policy will govern the allocation of pages that back this region of
68 the address space. Any regions of the task's address space that don't
69 have an explicit VMA policy will fall back to the task policy, which may
70 itself fall back to the System Default Policy.
75 allocated for anonymous segments, such as the task stack and heap, and
76 any regions of the address space mmap()ed with the MAP_ANONYMOUS flag.
78 the mapping used the MAP_SHARED flag. If the file mapping used the
79 MAP_PRIVATE flag, the VMA policy will only be applied when an
80 anonymous page is allocated on an attempt to write to the mapping--
84 space--a.k.a. threads--independent of when the policy is installed; and
86 to a specific region of a task's address space, and because the address
92 mmap()ed region. When this happens, Linux splits the existing virtual
95 By default, VMA policy applies only to pages allocated after the policy
96 is installed. Any pages already faulted into the VMA range remain
97 where they were allocated based on the policy at the time they were
99 the mbind() system call, so that page contents can be moved to match
104 application installs a shared policies the same way as VMA policies--using
105 the mbind() system call specifying a range of virtual addresses that map
106 the shared object. However, unlike VMA policies, which can be considered
108 apply directly to the shared object. Thus, all tasks that attach to the
109 object share the policy, and all pages allocated for the shared object,
110 by any task, will obey the shared policy.
114 policy support was added to Linux, the associated data structures were
115 added to hugetlbfs shmem segments. At the time, hugetlbfs did not
117 shmem segments were never "hooked up" to the shared policy support.
123 policy installed on the virtual address range backed by the shared
125 private mappings that have not yet been written by the task, follow
129 ranges of the shared object. However, Linux still splits the VMA of
130 the task that installs the policy for each range of distinct policy.
133 can be seen by examining the /proc/<pid>/numa_maps of tasks sharing
135 one or more ranges of the region.
140 optional set of nodes. The mode determines the behavior of the policy,
141 the optional mode flags determine the behavior of the mode, and the
142 optional set of nodes can be viewed as the arguments to the policy
147 in context, below, as required to explain the behavior.
149 Linux memory policy supports the following 4 behavioral modes:
151 Default Mode--MPOL_DEFAULT: This mode is only used in the memory
152 policy APIs. Internally, MPOL_DEFAULT is converted to the NULL
155 MPOL_DEFAULT means "fall back to the next most specific policy scope."
157 For example, a NULL or default task policy will fall back to the
159 back to the task policy.
161 When specified in one of the memory policy APIs, the Default mode
162 does not use the optional set of nodes.
164 It is an error for the set of nodes specified for this policy to
167 MPOL_BIND: This mode specifies that memory must come from the
168 set of nodes specified by the policy. Memory will be allocated from
169 the node in the set with sufficient free memory that is closest to
170 the node where the allocation takes place.
172 MPOL_PREFERRED: This mode specifies that the allocation should be
173 attempted from the single node specified in the policy. If that
174 allocation fails, the kernel will search other nodes, in order of
175 increasing distance from the preferred node based on information
176 provided by the platform firmware.
178 Internally, the Preferred policy uses a single node--the
179 preferred_node member of struct mempolicy. When the internal
180 mode flag MPOL_F_LOCAL is set, the preferred_node is ignored and
181 the policy is interpreted as local allocation. "Local" allocation
182 policy can be viewed as a Preferred policy that starts at the node
183 containing the cpu where the allocation takes place.
185 It is possible for the user to specify that local allocation is
187 If an empty nodemask is passed, the policy cannot use the
192 interleaved, on a page granularity, across the nodes specified in
193 the policy. This mode also behaves slightly differently, based on
194 the context where it is used:
197 Interleave mode indexes the set of nodes specified by the policy
198 using the page offset of the faulting address into the segment
199 [VMA] containing the address modulo the number of nodes specified
200 by the policy. It then attempts to allocate a page, starting at
201 the selected node, as if the node had been specified by a Preferred
203 allocation will follow the per node zonelist.
205 For allocation of page cache pages, Interleave mode indexes the set
206 of nodes specified by the policy using a node counter maintained
207 per task. This counter wraps around to the lowest specified node
208 after it reaches the highest specified node. This will tend to
209 spread the pages out over the nodes specified by the policy based
210 on the order in which they are allocated, rather than based on any
212 the temporary interleaved system default policy works in this
215 Linux memory policy supports the following optional mode flags:
217 MPOL_F_STATIC_NODES: This flag specifies that the nodemask passed by
218 the user should not be remapped if the task or VMA's set of allowed
219 nodes changes after the memory policy has been defined.
222 change in the set of allowed nodes, the node (Preferred) or
223 nodemask (Bind, Interleave) is remapped to the new set of
227 With this flag, if the user-specified nodes overlap with the
228 nodes allowed by the task's cpuset, then the memory policy is
229 applied to their intersection. If the two sets of nodes do not
230 overlap, the Default policy is used.
233 mems 1-3 that sets an Interleave policy over the same set. If
234 the cpuset's mems change to 3-5, the Interleave will now occur
236 3 is allowed from the user's nodemask, the "interleave" only
237 occurs over that node. If no nodes from the user's nodemask are
238 now allowed, the Default behavior is used.
240 MPOL_F_STATIC_NODES cannot be combined with the
245 MPOL_F_RELATIVE_NODES: This flag specifies that the nodemask passed
246 by the user will be mapped relative to the set of the task or VMA's
247 set of allowed nodes. The kernel stores the user-passed nodemask,
248 and if the allowed nodes changes, then that original nodemask will
249 be remapped relative to the new set of allowed nodes.
252 mempolicy is rebound because of a change in the set of allowed
253 nodes, the node (Preferred) or nodemask (Bind, Interleave) is
254 remapped to the new set of allowed nodes. That remap may not
255 preserve the relative nature of the user's passed nodemask to its
257 1,3,5 may be remapped to 7-9 and then to 1-3 if the set of
260 With this flag, the remap is done so that the node numbers from
261 the user's passed nodemask are relative to the set of allowed
262 nodes. In other words, if nodes 0, 2, and 4 are set in the user's
263 nodemask, the policy will be effected over the first (and in the
264 Bind or Interleave case, the third and fifth) nodes in the set of
265 allowed nodes. The nodemask passed by the user represents nodes
268 If the user's nodemask includes nodes that are outside the range
269 of the new set of allowed nodes (for example, node 5 is set in
270 the user's nodemask when the set of allowed nodes is only 0-3),
271 then the remap wraps around to the beginning of the nodemask and,
272 if not already set, sets the node in the mempolicy nodemask.
275 mems 2-5 that sets an Interleave policy over the same set with
276 MPOL_F_RELATIVE_NODES. If the cpuset's mems change to 3-7, the
277 interleave now occurs over nodes 3,5-7. If the cpuset's mems
278 then change to 0,2-3,5, then the interleave occurs over nodes
281 Thanks to the consistent remapping, applications preparing
284 and prepare the nodemask as if they were always located on
285 memory nodes 0 to N-1, where N is the number of memory nodes the
286 policy is intended to manage. Let the kernel then remap to the
287 set of memory nodes allowed by the task's cpuset, as that may
290 MPOL_F_RELATIVE_NODES cannot be combined with the
300 the structure back to the mempolicy kmem cache when the reference count
304 to '1', representing the reference held by the task that is installing the
306 structure, another reference is added, as the task's reference will be dropped
307 on completion of the policy installation.
309 During run-time "usage" of the policy, we attempt to minimize atomic operations
310 on the reference count, as this can lead to cache lines bouncing between cpus
311 and NUMA nodes. "Usage" here means one of the following:
313 1) querying of the policy, either by the task itself [using the get_mempolicy()
314 API discussed below] or by another task using the /proc/<pid>/numa_maps
317 2) examination of the policy to determine the policy mode and associated node
319 path". Note that for MPOL_BIND, the "usage" extends across the entire
320 allocation process, which may sleep during page reclaimation, because the
323 We can avoid taking an extra reference during the usages listed above as
326 1) we never need to get/free the system default policy as this is never
327 changed nor freed, once the system is up and running.
329 2) for querying the policy, we do not need to take an extra reference on the
330 target task's task policy nor vma policies because we always acquire the
331 task's mm's mmap_sem for read during the query. The set_mempolicy() and
332 mbind() APIs [see below] always acquire the mmap_sem for write when
337 3) Page allocation usage of task or vma policy occurs in the fault path where
338 we hold them mmap_sem for read. Again, because replacing the task or vma
339 policy requires that the mmap_sem be held for write, the policy can't be
344 querying or allocating a page based on the policy. To resolve this
345 potential race, the shared policy infrastructure adds an extra reference
346 to the shared policy during lookup while holding a spin lock on the shared
348 reference when we're finished "using" the policy. We must drop the
349 extra reference on shared policies in the same query/allocation paths
351 as such, and the extra reference is dropped "conditionally"--i.e., only
356 more expensive to use in the page allocation path. This is especially
360 or by prefaulting the entire shared memory region into memory and locking
366 always affect only the calling task, the calling task's address space, or
367 some shared object mapped into the calling task's address space.
369 Note: the headers that define these APIs and the parameter data types
371 the Linux kernel. The kernel system call interfaces, with the 'sys_'
372 prefix, are defined in <linux/syscalls.h>; the mode and flag
380 Set's the calling task's "task/process memory policy" to mode
381 specified by the 'mode' argument and the set of nodes defined
384 combining the 'mode' argument with the flag (for example:
387 See the set_mempolicy(2) man page for more details
396 Queries the "task/process memory policy" of the calling task, or
397 the policy or location of a specified virtual address, depending
398 on the 'flags' argument.
400 See the get_mempolicy(2) man page for more details
409 mbind() installs the policy specified by (mode, nmask, maxnodes) as
410 a VMA policy for the range of the calling task's address space
411 specified by the 'start' and 'len' arguments. Additional actions
412 may be requested via the 'flags' argument.
414 See the mbind(2) man page for more details.
418 Although not strictly part of the Linux implementation of memory policy,
421 + set the task policy for a specified program via set_mempolicy(2), fork(2) and
424 + set the shared policy for a shared memory segment via mbind(2)
426 The numactl(8) tool is packaged with the run-time version of the library
427 containing the memory policy system call wrappers. Some distributions
428 package the headers and compile-time libraries in a separate development
435 that require a node or set of nodes, the nodes are restricted to the set of
436 nodes whose memories are allowed by the cpuset constraints. If the nodemask
437 specified for the policy contains nodes that are not allowed by the cpuset and
438 MPOL_F_RELATIVE_NODES is not used, the intersection of the set of nodes
439 specified for the policy and the set of nodes with memory is used. If the
440 result is the empty set, the policy is considered invalid and cannot be
441 installed. If MPOL_F_RELATIVE_NODES is used, the policy's nodes are mapped
442 onto and folded into the task's set of allowed nodes as previously described.
446 created by shmget() of mmap() with the MAP_ANONYMOUS and MAP_SHARED flags, and
447 any of the tasks install shared policy on the region, only nodes whose
448 memories are allowed in both cpusets may be used in the policies. Obtaining
449 this information requires "stepping outside" the memory policy APIs to use the
451 be attaching to the shared region. Furthermore, if the cpusets' allowed
452 memory sets are disjoint, "local" allocation is the only valid policy.