aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/page-flags.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/page-flags.h')
-rw-r--r--include/linux/page-flags.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h
index da71d63df465..76c7ffdd0424 100644
--- a/include/linux/page-flags.h
+++ b/include/linux/page-flags.h
@@ -328,8 +328,8 @@ extern void __mod_page_state_offset(unsigned long offset, unsigned long delta);
328#define TestClearPageReclaim(page) test_and_clear_bit(PG_reclaim, &(page)->flags) 328#define TestClearPageReclaim(page) test_and_clear_bit(PG_reclaim, &(page)->flags)
329 329
330#define PageCompound(page) test_bit(PG_compound, &(page)->flags) 330#define PageCompound(page) test_bit(PG_compound, &(page)->flags)
331#define SetPageCompound(page) set_bit(PG_compound, &(page)->flags) 331#define __SetPageCompound(page) __set_bit(PG_compound, &(page)->flags)
332#define ClearPageCompound(page) clear_bit(PG_compound, &(page)->flags) 332#define __ClearPageCompound(page) __clear_bit(PG_compound, &(page)->flags)
333 333
334#ifdef CONFIG_SWAP 334#ifdef CONFIG_SWAP
335#define PageSwapCache(page) test_bit(PG_swapcache, &(page)->flags) 335#define PageSwapCache(page) test_bit(PG_swapcache, &(page)->flags)