brintos

brintos / linux-shallow public Read only

0
0
Text · 328 B · dabe2c5 Raw
18 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef _LINUX_MEMORY_HOTPLUG_H3#define _LINUX_MEMORY_HOTPLUG_H4 5#include <linux/numa.h>6#include <linux/pfn.h>7#include <linux/cache.h>8#include <linux/types.h>9 10extern bool movable_node_enabled;11 12static inline bool movable_node_is_enabled(void)13{14	return movable_node_enabled;15}16 17#endif18