1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _LINUX_MEMORY_HOTPLUG_H 3 #define _LINUX_MEMORY_HOTPLUG_H 4 5 #include <linux/numa.h> 6 #include <linux/pfn.h> 7 #include <linux/cache.h> 8 #include <linux/types.h> 9 10 extern bool movable_node_enabled; 11 12 static inline bool movable_node_is_enabled(void) 13 { 14 return movable_node_enabled; 15 } 16 17 #endif 18
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.