Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fcab1e51 authored by Nick Piggin's avatar Nick Piggin Committed by Linus Torvalds
Browse files

[PATCH] sparc64: fix set_page_count merge clash



Merge clash will have broken sparc64. Synch up its online_page
implementation with powerpc, which was identical until the
set_page_count removal.

Signed-off-by: default avatarNick Piggin <npiggin@suse.de>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 2e6e33ba
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1828,8 +1828,8 @@ void __flush_tlb_all(void)
void online_page(struct page *page)
{
	ClearPageReserved(page);
	set_page_count(page, 0);
	free_cold_page(page);
	init_page_count(page);
	__free_page(page);
	totalram_pages++;
	num_physpages++;
}