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