-
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: 10874 b: refs/heads/master c: 1be7d99 h: refs/heads/master v: v3
- Loading branch information
Bob Picco
authored and
Tony Luck
committed
Oct 4, 2005
1 parent
4c71487
commit 3692c2b
Showing
6 changed files
with
34 additions
and
10 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: c678796cab4b5288ad578802a54cb1480ae20a08 | ||
refs/heads/master: 1be7d9935b9c7fb9bd5964bfaf3ac543381277db |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#ifndef _ASM_IA64_SPARSEMEM_H | ||
#define _ASM_IA64_SPARSEMEM_H | ||
|
||
#ifdef CONFIG_SPARSEMEM | ||
/* | ||
* SECTION_SIZE_BITS 2^N: how big each section will be | ||
* MAX_PHYSMEM_BITS 2^N: how much memory we can have in that space | ||
*/ | ||
|
||
#define SECTION_SIZE_BITS (30) | ||
#define MAX_PHYSMEM_BITS (50) | ||
#ifdef CONFIG_FORCE_MAX_ZONEORDER | ||
#if ((CONFIG_FORCE_MAX_ZONEORDER - 1 + PAGE_SHIFT) > SECTION_SIZE_BITS) | ||
#undef SECTION_SIZE_BITS | ||
#define SECTION_SIZE_BITS (CONFIG_FORCE_MAX_ZONEORDER - 1 + PAGE_SHIFT) | ||
#endif | ||
#endif | ||
|
||
#endif /* CONFIG_SPARSEMEM */ | ||
#endif /* _ASM_IA64_SPARSEMEM_H */ |