diff options
Diffstat (limited to 'include/linux/pageblock-flags.h')
| -rw-r--r-- | include/linux/pageblock-flags.h | 33 |
1 files changed, 13 insertions, 20 deletions
diff --git a/include/linux/pageblock-flags.h b/include/linux/pageblock-flags.h index c08730c10c7a..2baeee12f48e 100644 --- a/include/linux/pageblock-flags.h +++ b/include/linux/pageblock-flags.h | |||
| @@ -65,33 +65,26 @@ extern int pageblock_order; | |||
| 65 | /* Forward declaration */ | 65 | /* Forward declaration */ |
| 66 | struct page; | 66 | struct page; |
| 67 | 67 | ||
| 68 | unsigned long get_pageblock_flags_mask(struct page *page, | 68 | unsigned long get_pfnblock_flags_mask(struct page *page, |
| 69 | unsigned long pfn, | ||
| 69 | unsigned long end_bitidx, | 70 | unsigned long end_bitidx, |
| 70 | unsigned long mask); | 71 | unsigned long mask); |
| 71 | void set_pageblock_flags_mask(struct page *page, | 72 | |
| 73 | void set_pfnblock_flags_mask(struct page *page, | ||
| 72 | unsigned long flags, | 74 | unsigned long flags, |
| 75 | unsigned long pfn, | ||
| 73 | unsigned long end_bitidx, | 76 | unsigned long end_bitidx, |
| 74 | unsigned long mask); | 77 | unsigned long mask); |
| 75 | 78 | ||
| 76 | /* Declarations for getting and setting flags. See mm/page_alloc.c */ | 79 | /* Declarations for getting and setting flags. See mm/page_alloc.c */ |
| 77 | static inline unsigned long get_pageblock_flags_group(struct page *page, | 80 | #define get_pageblock_flags_group(page, start_bitidx, end_bitidx) \ |
| 78 | int start_bitidx, int end_bitidx) | 81 | get_pfnblock_flags_mask(page, page_to_pfn(page), \ |
| 79 | { | 82 | end_bitidx, \ |
| 80 | unsigned long nr_flag_bits = end_bitidx - start_bitidx + 1; | 83 | (1 << (end_bitidx - start_bitidx + 1)) - 1) |
| 81 | unsigned long mask = (1 << nr_flag_bits) - 1; | 84 | #define set_pageblock_flags_group(page, flags, start_bitidx, end_bitidx) \ |
| 82 | 85 | set_pfnblock_flags_mask(page, flags, page_to_pfn(page), \ | |
| 83 | return get_pageblock_flags_mask(page, end_bitidx, mask); | 86 | end_bitidx, \ |
| 84 | } | 87 | (1 << (end_bitidx - start_bitidx + 1)) - 1) |
| 85 | |||
| 86 | static inline void set_pageblock_flags_group(struct page *page, | ||
| 87 | unsigned long flags, | ||
| 88 | int start_bitidx, int end_bitidx) | ||
| 89 | { | ||
| 90 | unsigned long nr_flag_bits = end_bitidx - start_bitidx + 1; | ||
| 91 | unsigned long mask = (1 << nr_flag_bits) - 1; | ||
| 92 | |||
| 93 | set_pageblock_flags_mask(page, flags, end_bitidx, mask); | ||
| 94 | } | ||
| 95 | 88 | ||
| 96 | #ifdef CONFIG_COMPACTION | 89 | #ifdef CONFIG_COMPACTION |
| 97 | #define get_pageblock_skip(page) \ | 90 | #define get_pageblock_skip(page) \ |
