mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-27 17:11:46 +00:00
[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:
parent
4c84cacfa4
commit
674539115c
3 changed files with 5 additions and 3 deletions
|
@ -32,7 +32,7 @@ del_page_from_lru(struct zone *zone, struct page *page)
|
|||
{
|
||||
list_del(&page->lru);
|
||||
if (PageActive(page)) {
|
||||
ClearPageActive(page);
|
||||
__ClearPageActive(page);
|
||||
zone->nr_active--;
|
||||
} else {
|
||||
zone->nr_inactive--;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue