2005-04-16 15:20:36 -07: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-22 22:26:29 -07:00
|
|
|
#ifndef _ASM_X86_MMZONE_64_H
|
|
|
|
#define _ASM_X86_MMZONE_64_H
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-06-23 00:08:06 -07:00
|
|
|
#ifdef CONFIG_NUMA
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2008-06-12 04:56:40 -07:00
|
|
|
#include <linux/mmdebug.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <asm/smp.h>
|
|
|
|
|
|
|
|
extern struct pglist_data *node_data[];
|
|
|
|
|
|
|
|
#define NODE_DATA(nid) (node_data[nid])
|
|
|
|
|
2005-06-23 00:08:06 -07:00
|
|
|
#endif
|
2008-10-22 22:26:29 -07:00
|
|
|
#endif /* _ASM_X86_MMZONE_64_H */
|