-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 24284 b: refs/heads/master c: a117e66 h: refs/heads/master v: v3
- Loading branch information
KAMEZAWA Hiroyuki
authored and
Linus Torvalds
committed
Mar 27, 2006
1 parent
9d6b606
commit 59799e1
Showing
5 changed files
with
122 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: b06be912a3ad68c69dba0ed6e92723140020e392 | ||
refs/heads/master: a117e66ed45ac0569c039ea60bd7a9a61e031858 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
#ifndef __ASM_MEMORY_MODEL_H | ||
#define __ASM_MEMORY_MODEL_H | ||
|
||
#ifdef __KERNEL__ | ||
#ifndef __ASSEMBLY__ | ||
|
||
#if defined(CONFIG_FLATMEM) | ||
|
||
#ifndef ARCH_PFN_OFFSET | ||
#define ARCH_PFN_OFFSET (0UL) | ||
#endif | ||
|
||
#elif defined(CONFIG_DISCONTIGMEM) | ||
|
||
#ifndef arch_pfn_to_nid | ||
#define arch_pfn_to_nid(pfn) pfn_to_nid(pfn) | ||
#endif | ||
|
||
#ifndef arch_local_page_offset | ||
#define arch_local_page_offset(pfn, nid) \ | ||
((pfn) - NODE_DATA(nid)->node_start_pfn) | ||
#endif | ||
|
||
#endif /* CONFIG_DISCONTIGMEM */ | ||
|
||
#ifdef CONFIG_OUT_OF_LINE_PFN_TO_PAGE | ||
struct page; | ||
/* this is useful when inlined pfn_to_page is too big */ | ||
extern struct page *pfn_to_page(unsigned long pfn); | ||
extern unsigned long page_to_pfn(struct page *page); | ||
#else | ||
/* | ||
* supports 3 memory models. | ||
*/ | ||
#if defined(CONFIG_FLATMEM) | ||
|
||
#define pfn_to_page(pfn) (mem_map + ((pfn) - ARCH_PFN_OFFSET)) | ||
#define page_to_pfn(page) ((unsigned long)((page) - mem_map) + \ | ||
ARCH_PFN_OFFSET) | ||
#elif defined(CONFIG_DISCONTIGMEM) | ||
|
||
#define pfn_to_page(pfn) \ | ||
({ unsigned long __pfn = (pfn); \ | ||
unsigned long __nid = arch_pfn_to_nid(pfn); \ | ||
NODE_DATA(__nid)->node_mem_map + arch_local_page_offset(__pfn, __nid);\ | ||
}) | ||
|
||
#define page_to_pfn(pg) \ | ||
({ struct page *__pg = (pg); \ | ||
struct zone *__zone = page_zone(__pg); \ | ||
(unsigned long)(__pg - __zone->zone_mem_map) + \ | ||
__zone->zone_start_pfn; \ | ||
}) | ||
|
||
#elif defined(CONFIG_SPARSEMEM) | ||
/* | ||
* Note: section's mem_map is encorded to reflect its start_pfn. | ||
* section[i].section_mem_map == mem_map's address - start_pfn; | ||
*/ | ||
#define page_to_pfn(pg) \ | ||
({ struct page *__pg = (pg); \ | ||
int __sec = page_to_section(__pg); \ | ||
__pg - __section_mem_map_addr(__nr_to_section(__sec)); \ | ||
}) | ||
|
||
#define pfn_to_page(pfn) \ | ||
({ unsigned long __pfn = (pfn); \ | ||
struct mem_section *__sec = __pfn_to_section(__pfn); \ | ||
__section_mem_map_addr(__sec) + __pfn; \ | ||
}) | ||
#endif /* CONFIG_FLATMEM/DISCONTIGMEM/SPARSEMEM */ | ||
#endif /* CONFIG_OUT_OF_LINE_PFN_TO_PAGE */ | ||
|
||
#endif /* __ASSEMBLY__ */ | ||
#endif /* __KERNEL__ */ | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters