2005-04-17 06:20:36 +08:00
|
|
|
/* K8 NUMA support */
|
|
|
|
/* Copyright 2002,2003 by Andi Kleen, SuSE Labs */
|
|
|
|
/* 2.5 Version loosely based on the NUMAQ Code by Pat Gaughen. */
|
2008-10-23 13:26:29 +08:00
|
|
|
#ifndef _ASM_X86_MMZONE_64_H
|
|
|
|
#define _ASM_X86_MMZONE_64_H
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-06-23 15:08:06 +08:00
|
|
|
#ifdef CONFIG_NUMA
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-06-12 19:56:40 +08:00
|
|
|
#include <linux/mmdebug.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/smp.h>
|
|
|
|
|
|
|
|
extern struct pglist_data *node_data[];
|
|
|
|
|
|
|
|
#define NODE_DATA(nid) (node_data[nid])
|
|
|
|
|
2005-06-23 15:08:06 +08:00
|
|
|
#endif
|
2008-10-23 13:26:29 +08:00
|
|
|
#endif /* _ASM_X86_MMZONE_64_H */
|