mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 12:56:41 +07:00
1a2db30034
Attempt to get the memory and CPU NUMA node via of_numa. If that fails, default the dummy NUMA node and map all memory and CPUs to node 0. Tested-by: Shannon Zhao <shannon.zhao@linaro.org> Reviewed-by: Robert Richter <rrichter@cavium.com> Signed-off-by: Ganapatrao Kulkarni <gkulkarni@caviumnetworks.com> Signed-off-by: David Daney <david.daney@cavium.com> Signed-off-by: Will Deacon <will.deacon@arm.com>
13 lines
227 B
C
13 lines
227 B
C
#ifndef __ASM_MMZONE_H
|
|
#define __ASM_MMZONE_H
|
|
|
|
#ifdef CONFIG_NUMA
|
|
|
|
#include <asm/numa.h>
|
|
|
|
extern struct pglist_data *node_data[];
|
|
#define NODE_DATA(nid) (node_data[(nid)])
|
|
|
|
#endif /* CONFIG_NUMA */
|
|
#endif /* __ASM_MMZONE_H */
|