powerpc: hook up the splice syscall
[linux-2.6/libata-dev.git] / include / asm-x86_64 / mmzone.h
blob6b18cd8f293d731d4908e52799131e1ff3bcc645
1 /* K8 NUMA support */
2 /* Copyright 2002,2003 by Andi Kleen, SuSE Labs */
3 /* 2.5 Version loosely based on the NUMAQ Code by Pat Gaughen. */
4 #ifndef _ASM_X86_64_MMZONE_H
5 #define _ASM_X86_64_MMZONE_H 1
7 #include <linux/config.h>
9 #ifdef CONFIG_NUMA
11 #define VIRTUAL_BUG_ON(x)
13 #include <asm/smp.h>
15 #define NODEMAPSIZE 0xfff
17 /* Simple perfect hash to map physical addresses to node numbers */
18 struct memnode {
19 int shift;
20 u8 map[NODEMAPSIZE];
21 } ____cacheline_aligned;
22 extern struct memnode memnode;
23 #define memnode_shift memnode.shift
24 #define memnodemap memnode.map
26 extern struct pglist_data *node_data[];
28 static inline __attribute__((pure)) int phys_to_nid(unsigned long addr)
30 unsigned nid;
31 VIRTUAL_BUG_ON((addr >> memnode_shift) >= NODEMAPSIZE);
32 nid = memnodemap[addr >> memnode_shift];
33 VIRTUAL_BUG_ON(nid >= MAX_NUMNODES || !node_data[nid]);
34 return nid;
37 #define NODE_DATA(nid) (node_data[nid])
39 #define node_start_pfn(nid) (NODE_DATA(nid)->node_start_pfn)
40 #define node_end_pfn(nid) (NODE_DATA(nid)->node_start_pfn + \
41 NODE_DATA(nid)->node_spanned_pages)
43 #ifdef CONFIG_DISCONTIGMEM
44 #define pfn_to_nid(pfn) phys_to_nid((unsigned long)(pfn) << PAGE_SHIFT)
45 #define kvaddr_to_nid(kaddr) phys_to_nid(__pa(kaddr))
47 extern int pfn_valid(unsigned long pfn);
48 #endif
50 #endif
51 #endif