diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-x86_64/mmzone.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/asm-x86_64/mmzone.h')
-rw-r--r-- | include/asm-x86_64/mmzone.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/include/asm-x86_64/mmzone.h b/include/asm-x86_64/mmzone.h new file mode 100644 index 000000000000..d95b7c240831 --- /dev/null +++ b/include/asm-x86_64/mmzone.h | |||
@@ -0,0 +1,63 @@ | |||
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 | ||
6 | |||
7 | #include <linux/config.h> | ||
8 | |||
9 | #ifdef CONFIG_DISCONTIGMEM | ||
10 | |||
11 | #define VIRTUAL_BUG_ON(x) | ||
12 | |||
13 | #include <asm/smp.h> | ||
14 | |||
15 | #define NODEMAPSIZE 0xff | ||
16 | |||
17 | /* Simple perfect hash to map physical addresses to node numbers */ | ||
18 | extern int memnode_shift; | ||
19 | extern u8 memnodemap[NODEMAPSIZE]; | ||
20 | extern int maxnode; | ||
21 | |||
22 | extern struct pglist_data *node_data[]; | ||
23 | |||
24 | static inline __attribute__((pure)) int phys_to_nid(unsigned long addr) | ||
25 | { | ||
26 | int nid; | ||
27 | VIRTUAL_BUG_ON((addr >> memnode_shift) >= NODEMAPSIZE); | ||
28 | nid = memnodemap[addr >> memnode_shift]; | ||
29 | VIRTUAL_BUG_ON(nid > maxnode); | ||
30 | return nid; | ||
31 | } | ||
32 | |||
33 | #define pfn_to_nid(pfn) phys_to_nid((unsigned long)(pfn) << PAGE_SHIFT) | ||
34 | |||
35 | #define kvaddr_to_nid(kaddr) phys_to_nid(__pa(kaddr)) | ||
36 | #define NODE_DATA(nid) (node_data[nid]) | ||
37 | |||
38 | #define node_mem_map(nid) (NODE_DATA(nid)->node_mem_map) | ||
39 | |||
40 | #define node_mem_map(nid) (NODE_DATA(nid)->node_mem_map) | ||
41 | #define node_start_pfn(nid) (NODE_DATA(nid)->node_start_pfn) | ||
42 | #define node_end_pfn(nid) (NODE_DATA(nid)->node_start_pfn + \ | ||
43 | NODE_DATA(nid)->node_spanned_pages) | ||
44 | |||
45 | #define local_mapnr(kvaddr) \ | ||
46 | ( (__pa(kvaddr) >> PAGE_SHIFT) - node_start_pfn(kvaddr_to_nid(kvaddr)) ) | ||
47 | |||
48 | /* AK: this currently doesn't deal with invalid addresses. We'll see | ||
49 | if the 2.5 kernel doesn't pass them | ||
50 | (2.4 used to). */ | ||
51 | #define pfn_to_page(pfn) ({ \ | ||
52 | int nid = phys_to_nid(((unsigned long)(pfn)) << PAGE_SHIFT); \ | ||
53 | ((pfn) - node_start_pfn(nid)) + node_mem_map(nid); \ | ||
54 | }) | ||
55 | |||
56 | #define page_to_pfn(page) \ | ||
57 | (long)(((page) - page_zone(page)->zone_mem_map) + page_zone(page)->zone_start_pfn) | ||
58 | |||
59 | #define pfn_valid(pfn) ((pfn) >= num_physpages ? 0 : \ | ||
60 | ({ u8 nid__ = pfn_to_nid(pfn); \ | ||
61 | nid__ != 0xff && (pfn) >= node_start_pfn(nid__) && (pfn) <= node_end_pfn(nid__); })) | ||
62 | #endif | ||
63 | #endif | ||