Commit 36257d55 authored by Helge Deller's avatar Helge Deller
Browse files

parisc: soft_offline_page() now takes the pfn



Switch page deallocation table (pdt) driver to use pfn instead of a page
pointer in soft_offline_page().

Fixes: feec24a6 ("mm, soft-offline: convert parameter to pfn")
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent aeea5eae
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -327,8 +327,7 @@ static int pdt_mainloop(void *unused)
			    ((pde & PDT_ADDR_SINGLE_ERR) == 0))
				memory_failure(pde >> PAGE_SHIFT, 0);
			else
				soft_offline_page(
					pfn_to_page(pde >> PAGE_SHIFT), 0);
				soft_offline_page(pde >> PAGE_SHIFT, 0);
#else
			pr_crit("PDT: memory error at 0x%lx ignored.\n"
				"Rebuild kernel with CONFIG_MEMORY_FAILURE=y "