[PATCH] mm: less atomic ops
In the page release paths, we can be sure that nobody will mess with our page->flags because the refcount has dropped to 0. So no need for atomic operations here. Signed-off-by: Nick Piggin <npiggin@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:

کامیت شده توسط
Linus Torvalds

والد
4c84cacfa4
کامیت
674539115c
@@ -215,7 +215,7 @@ void fastcall __page_cache_release(struct page *page)
|
||||
|
||||
spin_lock_irqsave(&zone->lru_lock, flags);
|
||||
BUG_ON(!PageLRU(page));
|
||||
ClearPageLRU(page);
|
||||
__ClearPageLRU(page);
|
||||
del_page_from_lru(zone, page);
|
||||
spin_unlock_irqrestore(&zone->lru_lock, flags);
|
||||
}
|
||||
@@ -266,7 +266,7 @@ void release_pages(struct page **pages, int nr, int cold)
|
||||
spin_lock_irq(&zone->lru_lock);
|
||||
}
|
||||
BUG_ON(!PageLRU(page));
|
||||
ClearPageLRU(page);
|
||||
__ClearPageLRU(page);
|
||||
del_page_from_lru(zone, page);
|
||||
}
|
||||
|
||||
|
مرجع در شماره جدید
Block a user