1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __LINUX_NODEMASK_TYPES_H 3 #define __LINUX_NODEMASK_TYPES_H 4 5 #include <linux/bitops.h> 6 #include <linux/numa.h> 7 8 typedef struct { DECLARE_BITMAP(bits, MAX_NUMNODES); } nodemask_t; 9 10 #endif /* __LINUX_NODEMASK_TYPES_H */ 11