From: Stafford Horne Date: Sat, 5 Feb 2022 22:55:12 +0000 (+0900) Subject: openrisc/fault: Fix symbol scope warnings X-Git-Tag: for-5.19/block-exec-2022-06-02~19^2~2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=d8fee3f6fa5a49b338d9149cf498d58e024e27f9;p=linux-2.6-block.git openrisc/fault: Fix symbol scope warnings Sparse reported the following warning: arch/openrisc/mm/fault.c:27:15: warning: symbol 'pte_misses' was not declared. Should it be static? arch/openrisc/mm/fault.c:28:15: warning: symbol 'pte_errors' was not declared. Should it be static? arch/openrisc/mm/fault.c:33:16: warning: symbol 'current_pgd' was not declared. Should it be static? This patch fixes these by: - Remove unused pte_misses and pte_errors counters which are no longer used. - Add asm/mmu_context.h include to provide the current_pgd declaration. Signed-off-by: Stafford Horne --- diff --git a/arch/openrisc/mm/fault.c b/arch/openrisc/mm/fault.c index 860da58d7509..53b760af3bb7 100644 --- a/arch/openrisc/mm/fault.c +++ b/arch/openrisc/mm/fault.c @@ -18,15 +18,13 @@ #include #include +#include #include #include #define NUM_TLB_ENTRIES 64 #define TLB_OFFSET(add) (((add) >> PAGE_SHIFT) & (NUM_TLB_ENTRIES-1)) -unsigned long pte_misses; /* updated by do_page_fault() */ -unsigned long pte_errors; /* updated by do_page_fault() */ - /* __PHX__ :: - check the vmalloc_fault in do_page_fault() * - also look into include/asm/mmu_context.h */