Release 4.14 arch/sparc/include/asm/tlbflush_64.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _SPARC64_TLBFLUSH_H
#define _SPARC64_TLBFLUSH_H
#include <asm/mmu_context.h>
/* TSB flush operations. */
#define TLB_BATCH_NR 192
struct tlb_batch {
unsigned int hugepage_shift;
struct mm_struct *mm;
unsigned long tlb_nr;
unsigned long active;
unsigned long vaddrs[TLB_BATCH_NR];
};
void flush_tsb_kernel_range(unsigned long start, unsigned long end);
void flush_tsb_user(struct tlb_batch *tb);
void flush_tsb_user_page(struct mm_struct *mm, unsigned long vaddr,
unsigned int hugepage_shift);
/* TLB flush operations. */
static inline void flush_tlb_mm(struct mm_struct *mm)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 9 | 81.82% | 1 | 50.00% |
Sam Ravnborg | 2 | 18.18% | 1 | 50.00% |
Total | 11 | 100.00% | 2 | 100.00% |
static inline void flush_tlb_page(struct vm_area_struct *vma,
unsigned long vmaddr)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 13 | 86.67% | 1 | 50.00% |
Sam Ravnborg | 2 | 13.33% | 1 | 50.00% |
Total | 15 | 100.00% | 2 | 100.00% |
static inline void flush_tlb_range(struct vm_area_struct *vma,
unsigned long start, unsigned long end)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 11 | 57.89% | 1 | 50.00% |
Sam Ravnborg | 8 | 42.11% | 1 | 50.00% |
Total | 19 | 100.00% | 2 | 100.00% |
void flush_tlb_kernel_range(unsigned long start, unsigned long end);
#define __HAVE_ARCH_ENTER_LAZY_MMU_MODE
void flush_tlb_pending(void);
void arch_enter_lazy_mmu_mode(void);
void arch_leave_lazy_mmu_mode(void);
#define arch_flush_lazy_mmu_mode() do {} while (0)
/* Local cpu only. */
void __flush_tlb_all(void);
void __flush_tlb_page(unsigned long context, unsigned long vaddr);
void __flush_tlb_kernel_range(unsigned long start, unsigned long end);
#ifndef CONFIG_SMP
static inline void global_flush_tlb_page(struct mm_struct *mm, unsigned long vaddr)
{
__flush_tlb_page(CTX_HWBITS(mm->context), vaddr);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 28 | 100.00% | 1 | 100.00% |
Total | 28 | 100.00% | 1 | 100.00% |
#else /* CONFIG_SMP */
void smp_flush_tlb_kernel_range(unsigned long start, unsigned long end);
void smp_flush_tlb_page(struct mm_struct *mm, unsigned long vaddr);
#define global_flush_tlb_page(mm, vaddr) \
smp_flush_tlb_page(mm, vaddr)
#endif /* ! CONFIG_SMP */
#endif /* _SPARC64_TLBFLUSH_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 145 | 53.31% | 2 | 28.57% |
Sam Ravnborg | 91 | 33.46% | 1 | 14.29% |
Peter Zijlstra | 27 | 9.93% | 1 | 14.29% |
Nitin Gupta | 8 | 2.94% | 2 | 28.57% |
Greg Kroah-Hartman | 1 | 0.37% | 1 | 14.29% |
Total | 272 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.