19 lines
363 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _SPARC64_MMZONE_H
#define _SPARC64_MMZONE_H
2026-01-29 22:25:33 +08:00
#ifdef CONFIG_NUMA
2026-01-21 18:59:54 +08: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[];
2026-01-29 22:25:33 +08:00
#endif /* CONFIG_NUMA */
2026-01-21 18:59:54 +08:00
#endif /* _SPARC64_MMZONE_H */