diff options
-rw-r--r-- | include/linux/page-flags.h | 1 | ||||
-rw-r--r-- | mm/page_alloc.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index f5a6695d4d21..99f7cc495065 100644 --- a/include/linux/page-flags.h +++ b/include/linux/page-flags.h | |||
@@ -194,6 +194,7 @@ extern void __mod_page_state(unsigned long offset, unsigned long delta); | |||
194 | #define SetPageDirty(page) set_bit(PG_dirty, &(page)->flags) | 194 | #define SetPageDirty(page) set_bit(PG_dirty, &(page)->flags) |
195 | #define TestSetPageDirty(page) test_and_set_bit(PG_dirty, &(page)->flags) | 195 | #define TestSetPageDirty(page) test_and_set_bit(PG_dirty, &(page)->flags) |
196 | #define ClearPageDirty(page) clear_bit(PG_dirty, &(page)->flags) | 196 | #define ClearPageDirty(page) clear_bit(PG_dirty, &(page)->flags) |
197 | #define __ClearPageDirty(page) __clear_bit(PG_dirty, &(page)->flags) | ||
197 | #define TestClearPageDirty(page) test_and_clear_bit(PG_dirty, &(page)->flags) | 198 | #define TestClearPageDirty(page) test_and_clear_bit(PG_dirty, &(page)->flags) |
198 | 199 | ||
199 | #define SetPageLRU(page) set_bit(PG_lru, &(page)->flags) | 200 | #define SetPageLRU(page) set_bit(PG_lru, &(page)->flags) |
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 8d088371196a..620aa11b24eb 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -329,7 +329,7 @@ static inline void free_pages_check(const char *function, struct page *page) | |||
329 | 1 << PG_writeback ))) | 329 | 1 << PG_writeback ))) |
330 | bad_page(function, page); | 330 | bad_page(function, page); |
331 | if (PageDirty(page)) | 331 | if (PageDirty(page)) |
332 | ClearPageDirty(page); | 332 | __ClearPageDirty(page); |
333 | } | 333 | } |
334 | 334 | ||
335 | /* | 335 | /* |