git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
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 */
|