Linux Audio

Check our new training course

Loading...
v6.2
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _ASM_X86_TLB_H
 3#define _ASM_X86_TLB_H
 4
 5#define tlb_flush tlb_flush
 6static inline void tlb_flush(struct mmu_gather *tlb);
 7
 8#include <asm-generic/tlb.h>
 9
10static inline void tlb_flush(struct mmu_gather *tlb)
11{
12	unsigned long start = 0UL, end = TLB_FLUSH_ALL;
13	unsigned int stride_shift = tlb_get_unmap_shift(tlb);
14
15	if (!tlb->fullmm && !tlb->need_flush_all) {
16		start = tlb->start;
17		end = tlb->end;
18	}
19
20	flush_tlb_mm_range(tlb->mm, start, end, stride_shift, tlb->freed_tables);
21}
22
23/*
24 * While x86 architecture in general requires an IPI to perform TLB
25 * shootdown, enablement code for several hypervisors overrides
26 * .flush_tlb_others hook in pv_mmu_ops and implements it by issuing
27 * a hypercall. To keep software pagetable walkers safe in this case we
28 * switch to RCU based table free (MMU_GATHER_RCU_TABLE_FREE). See the comment
29 * below 'ifdef CONFIG_MMU_GATHER_RCU_TABLE_FREE' in include/asm-generic/tlb.h
30 * for more details.
31 */
32static inline void __tlb_remove_table(void *table)
33{
34	free_page_and_swap_cache(table);
35}
36
37#endif /* _ASM_X86_TLB_H */
v4.6
 
 1#ifndef _ASM_X86_TLB_H
 2#define _ASM_X86_TLB_H
 3
 4#define tlb_start_vma(tlb, vma) do { } while (0)
 5#define tlb_end_vma(tlb, vma) do { } while (0)
 6#define __tlb_remove_tlb_entry(tlb, ptep, address) do { } while (0)
 7
 8#define tlb_flush(tlb)							\
 9{									\
10	if (!tlb->fullmm && !tlb->need_flush_all) 			\
11		flush_tlb_mm_range(tlb->mm, tlb->start, tlb->end, 0UL);	\
12	else								\
13		flush_tlb_mm_range(tlb->mm, 0UL, TLB_FLUSH_ALL, 0UL);	\
 
 
 
 
 
 
14}
15
16#include <asm-generic/tlb.h>
 
 
 
 
 
 
 
 
 
 
 
 
17
18#endif /* _ASM_X86_TLB_H */