Skip to content

Commit 7ab22b5

Browse files
davidhildenbrandchenhuacai
authored andcommitted
LoongArch: Fix a build error due to __tlb_remove_tlb_entry()
With LLVM=1 and W=1 we get: ./include/asm-generic/tlb.h:629:10: error: parameter 'ptep' set but not used [-Werror,-Wunused-but-set-parameter] We fixed a similar issue via Arnd in the introducing commit, missed the LoongArch variant. Turns out, there is no need for LoongArch to have a custom variant, so let's just drop it and rely on the asm-generic one. Fixes: 4d5bf0b ("mm/mmu_gather: add tlb_remove_tlb_entries()") Closes: https://lkml.kernel.org/r/CANiq72mQh3O9S4umbvrKBgMMorty48UMwS01U22FR0mRyd3cyQ@mail.gmail.com Reported-by: Miguel Ojeda <[email protected]> Reviewed-by: Miguel Ojeda <[email protected]> Tested-by: Miguel Ojeda <[email protected]> Tested-by: Arnd Bergmann <[email protected]> Signed-off-by: David Hildenbrand <[email protected]> Signed-off-by: Huacai Chen <[email protected]>
1 parent 697f334 commit 7ab22b5

File tree

1 file changed

+0
-2
lines changed
  • arch/loongarch/include/asm

1 file changed

+0
-2
lines changed

arch/loongarch/include/asm/tlb.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,6 @@ static __always_inline void invtlb_all(u32 op, u32 info, u64 addr)
132132
);
133133
}
134134

135-
#define __tlb_remove_tlb_entry(tlb, ptep, address) do { } while (0)
136-
137135
static void tlb_flush(struct mmu_gather *tlb);
138136

139137
#define tlb_flush tlb_flush

0 commit comments

Comments
 (0)