]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/asm-x86_64/mmzone.h
[PATCH] Standardize pxx_page macros
[mirror_ubuntu-artful-kernel.git] / include / asm-x86_64 / mmzone.h
CommitLineData
1da177e4
LT
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
1da177e4 7
2b97690f 8#ifdef CONFIG_NUMA
1da177e4
LT
9
10#define VIRTUAL_BUG_ON(x)
11
12#include <asm/smp.h>
13
6fa679fd
AK
14/* Should really switch to dynamic allocation at some point */
15#define NODEMAPSIZE 0x4fff
1da177e4
LT
16
17/* Simple perfect hash to map physical addresses to node numbers */
dcf36bfa
ED
18struct memnode {
19 int shift;
20 u8 map[NODEMAPSIZE];
21} ____cacheline_aligned;
22extern struct memnode memnode;
23#define memnode_shift memnode.shift
24#define memnodemap memnode.map
1da177e4
LT
25
26extern struct pglist_data *node_data[];
27
28static inline __attribute__((pure)) int phys_to_nid(unsigned long addr)
29{
e90f22ed 30 unsigned nid;
1da177e4
LT
31 VIRTUAL_BUG_ON((addr >> memnode_shift) >= NODEMAPSIZE);
32 nid = memnodemap[addr >> memnode_shift];
e90f22ed 33 VIRTUAL_BUG_ON(nid >= MAX_NUMNODES || !node_data[nid]);
1da177e4
LT
34 return nid;
35}
36
1da177e4
LT
37#define NODE_DATA(nid) (node_data[nid])
38
1da177e4
LT
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)
42
2b97690f 43#ifdef CONFIG_DISCONTIGMEM
2b97690f 44#define pfn_to_nid(pfn) phys_to_nid((unsigned long)(pfn) << PAGE_SHIFT)
1da177e4 45
cf050132 46extern int pfn_valid(unsigned long pfn);
1da177e4 47#endif
2b97690f 48
2b97690f 49#endif
1da177e4 50#endif