Linux Audio

Check our new training course

Loading...
v3.1
 
 1#ifndef _SPARC64_MMZONE_H
 2#define _SPARC64_MMZONE_H
 3
 4#ifdef CONFIG_NEED_MULTIPLE_NODES
 5
 6#include <linux/cpumask.h>
 7
 8extern struct pglist_data *node_data[];
 9
10#define NODE_DATA(nid)		(node_data[nid])
11
12extern int numa_cpu_lookup_table[];
13extern cpumask_t numa_cpumask_lookup_table[];
14
15#endif /* CONFIG_NEED_MULTIPLE_NODES */
16
17#endif /* _SPARC64_MMZONE_H */
v5.14.15
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _SPARC64_MMZONE_H
 3#define _SPARC64_MMZONE_H
 4
 5#ifdef CONFIG_NUMA
 6
 7#include <linux/cpumask.h>
 8
 9extern struct pglist_data *node_data[];
10
11#define NODE_DATA(nid)		(node_data[nid])
12
13extern int numa_cpu_lookup_table[];
14extern cpumask_t numa_cpumask_lookup_table[];
15
16#endif /* CONFIG_NUMA */
17
18#endif /* _SPARC64_MMZONE_H */