aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/nodemask.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/nodemask.h')
-rw-r--r--include/linux/nodemask.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/linux/nodemask.h b/include/linux/nodemask.h
index 583e6b843d2a..ccee962f3559 100644
--- a/include/linux/nodemask.h
+++ b/include/linux/nodemask.h
@@ -341,8 +341,14 @@ static inline void __nodes_remap(nodemask_t *dstp, const nodemask_t *srcp,
341 * Bitmasks that are kept for all the nodes. 341 * Bitmasks that are kept for all the nodes.
342 */ 342 */
343enum node_states { 343enum node_states {
344 N_POSSIBLE, /* The node could become online at some point */ 344 N_POSSIBLE, /* The node could become online at some point */
345 N_ONLINE, /* The node is online */ 345 N_ONLINE, /* The node is online */
346 N_NORMAL_MEMORY, /* The node has regular memory */
347#ifdef CONFIG_HIGHMEM
348 N_HIGH_MEMORY, /* The node has regular or high memory */
349#else
350 N_HIGH_MEMORY = N_NORMAL_MEMORY,
351#endif
346 NR_NODE_STATES 352 NR_NODE_STATES
347}; 353};
348 354