Lines Matching full:node
5 /sys/devices/system/node/node*/numastat
11 is incremented on the preferred node, otherwise numa_foreign is incremented on
12 the preferred node and numa_miss on the node where allocation succeeded.
14 Usually preferred node is the one local to the CPU where the process executes,
16 counters based on CPU local node. local_node is similar to numa_hit and is
17 incremented on allocation from a node by CPU on the same node. other_node is
18 similar to numa_miss and is incremented on the node where allocation succeeds
19 from a CPU from a different node. Note there is no counter analogical to
25 numa_hit A process wanted to allocate memory from this node,
28 numa_miss A process wanted to allocate memory from another node,
29 but ended up with memory from this node.
31 numa_foreign A process wanted to allocate on this node,
32 but ended up with memory from another node.
34 local_node A process ran on this node's CPU,
35 and got memory from this node.
37 other_node A process ran on a different node's CPU
38 and got memory from this node.
40 interleave_hit Interleaving wanted to allocate from this node
48 Note that on systems with memoryless nodes (where a node has CPUs but no
51 memoryless node (i.e. because it is running on one of its local CPU), the
53 preferred node. As a result, such allocation will not increase the numa_foreign
54 counter on the memoryless node, and will skew the numa_hit, numa_miss and
55 numa_foreign statistics of the nearest node.