[PATCH] x86/pti: hide unused pti_user_pagetable_walk_pte() function

From: Arnd Bergmann
Date: Mon Dec 18 2017 - 11:52:22 EST


The new pti_user_pagetable_walk_pte() function is not referenced when
CONFIG_X86_VSYSCALL_EMULATION is disabled, so we need to either hide
it or make the caller visible to gcc:

arch/x86/mm/pti.c:204:15: error: 'pti_user_pagetable_walk_pte' defined but not used [-Werror=unused-function]

Fixes: 9d2fdd3ff05d ("x86/pti: Map the vsyscall page if needed")
Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx>
---
arch/x86/mm/pti.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/arch/x86/mm/pti.c b/arch/x86/mm/pti.c
index fa22fdc73172..f7c8913d4daa 100644
--- a/arch/x86/mm/pti.c
+++ b/arch/x86/mm/pti.c
@@ -192,6 +192,7 @@ static pmd_t *pti_user_pagetable_walk_pmd(unsigned long address)
return pmd_offset(pud, address);
}

+#ifdef CONFIG_X86_VSYSCALL_EMULATION
/*
* Walk the shadow copy of the page tables (optionally) trying to allocate
* page table pages on the way down. Does not support large pages.
@@ -233,6 +234,7 @@ static pte_t *pti_user_pagetable_walk_pte(unsigned long address)
}
return pte;
}
+#endif

static void __init
pti_clone_pmds(unsigned long start, unsigned long end, pmdval_t clear)
--
2.9.0