-
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: 356562 b: refs/heads/master c: bbeae5b h: refs/heads/master v: v3
- Loading branch information
Peter Zijlstra
authored and
Linus Torvalds
committed
Feb 24, 2013
1 parent
afdb07a
commit c2ffbbf
Showing
5 changed files
with
74 additions
and
62 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: 3c0ff4689630b280704666833e9539d84cddc373 | ||
refs/heads/master: bbeae5b05ef6e40bf54db05ceb8635824153b9e2 |
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,71 @@ | ||
#ifndef PAGE_FLAGS_LAYOUT_H | ||
#define PAGE_FLAGS_LAYOUT_H | ||
|
||
#include <linux/numa.h> | ||
#include <generated/bounds.h> | ||
|
||
/* | ||
* When a memory allocation must conform to specific limitations (such | ||
* as being suitable for DMA) the caller will pass in hints to the | ||
* allocator in the gfp_mask, in the zone modifier bits. These bits | ||
* are used to select a priority ordered list of memory zones which | ||
* match the requested limits. See gfp_zone() in include/linux/gfp.h | ||
*/ | ||
#if MAX_NR_ZONES < 2 | ||
#define ZONES_SHIFT 0 | ||
#elif MAX_NR_ZONES <= 2 | ||
#define ZONES_SHIFT 1 | ||
#elif MAX_NR_ZONES <= 4 | ||
#define ZONES_SHIFT 2 | ||
#else | ||
#error ZONES_SHIFT -- too many zones configured adjust calculation | ||
#endif | ||
|
||
#ifdef CONFIG_SPARSEMEM | ||
#include <asm/sparsemem.h> | ||
|
||
/* SECTION_SHIFT #bits space required to store a section # */ | ||
#define SECTIONS_SHIFT (MAX_PHYSMEM_BITS - SECTION_SIZE_BITS) | ||
|
||
#endif /* CONFIG_SPARSEMEM */ | ||
|
||
/* | ||
* page->flags layout: | ||
* | ||
* There are three possibilities for how page->flags get | ||
* laid out. The first is for the normal case, without | ||
* sparsemem. The second is for sparsemem when there is | ||
* plenty of space for node and section. The last is when | ||
* we have run out of space and have to fall back to an | ||
* alternate (slower) way of determining the node. | ||
* | ||
* No sparsemem or sparsemem vmemmap: | NODE | ZONE | ... | FLAGS | | ||
* classic sparse with space for node:| SECTION | NODE | ZONE | ... | FLAGS | | ||
* classic sparse no space for node: | SECTION | ZONE | ... | FLAGS | | ||
*/ | ||
#if defined(CONFIG_SPARSEMEM) && !defined(CONFIG_SPARSEMEM_VMEMMAP) | ||
#define SECTIONS_WIDTH SECTIONS_SHIFT | ||
#else | ||
#define SECTIONS_WIDTH 0 | ||
#endif | ||
|
||
#define ZONES_WIDTH ZONES_SHIFT | ||
|
||
#if SECTIONS_WIDTH+ZONES_WIDTH+NODES_SHIFT <= BITS_PER_LONG - NR_PAGEFLAGS | ||
#define NODES_WIDTH NODES_SHIFT | ||
#else | ||
#ifdef CONFIG_SPARSEMEM_VMEMMAP | ||
#error "Vmemmap: No space for nodes field in page flags" | ||
#endif | ||
#define NODES_WIDTH 0 | ||
#endif | ||
|
||
/* | ||
* We are going to use the flags for the page to node mapping if its in | ||
* there. This includes the case where there is no node, so it is implicit. | ||
*/ | ||
#if !(NODES_WIDTH > 0 || NODES_SHIFT == 0) | ||
#define NODE_NOT_IN_PAGE_FLAGS | ||
#endif | ||
|
||
#endif /* _LINUX_PAGE_FLAGS_LAYOUT */ |