2021-05-26 19:09:36 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _SPARC64_MMZONE_H
|
|
|
|
#define _SPARC64_MMZONE_H
|
|
|
|
|
2021-07-20 16:20:39 +00:00
|
|
|
#ifdef CONFIG_NUMA
|
2021-05-26 19:09:36 +00:00
|
|
|
|
|
|
|
#include <linux/cpumask.h>
|
|
|
|
|
|
|
|
extern struct pglist_data *node_data[];
|
|
|
|
|
|
|
|
#define NODE_DATA(nid) (node_data[nid])
|
|
|
|
|
|
|
|
extern int numa_cpu_lookup_table[];
|
|
|
|
extern cpumask_t numa_cpumask_lookup_table[];
|
|
|
|
|
2021-07-20 16:20:39 +00:00
|
|
|
#endif /* CONFIG_NUMA */
|
2021-05-26 19:09:36 +00:00
|
|
|
|
|
|
|
#endif /* _SPARC64_MMZONE_H */
|