diff options
author | Nick Piggin <nickpiggin@yahoo.com.au> | 2005-09-03 18:54:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@evo.osdl.org> | 2005-09-05 03:05:44 -0400 |
commit | 242e54686257493f0b10ac557e730419d9af7d24 (patch) | |
tree | d68754b32c531141969a09ca0c5df246893c5b1e /mm | |
parent | 9a61c349b28ec5aef7e929236571fd770fdef0bb (diff) |
[PATCH] mm: remove atomic
This bitop does not need to be atomic because it is performed when there will
be no references to the page (ie. the page is being freed).
Signed-off-by: Nick Piggin <npiggin@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/page_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 | /* |