aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/nodemask_types.h
blob: 6b28d97ea6ed0274c00f360facd9add53cead9c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __LINUX_NODEMASK_TYPES_H
#define __LINUX_NODEMASK_TYPES_H

#include <linux/bitops.h>
#include <linux/numa.h>

typedef struct { DECLARE_BITMAP(bits, MAX_NUMNODES); } nodemask_t;

#endif /* __LINUX_NODEMASK_TYPES_H */