Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _LINUX_MEMORY_HOTPLUG_H
0003 #define _LINUX_MEMORY_HOTPLUG_H
0004 
0005 #include <linux/numa.h>
0006 #include <linux/pfn.h>
0007 #include <linux/cache.h>
0008 #include <linux/types.h>
0009 
0010 extern bool movable_node_enabled;
0011 
0012 static inline bool movable_node_is_enabled(void)
0013 {
0014     return movable_node_enabled;
0015 }
0016 
0017 #endif