Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.12-rc3 18 lines 497 B view raw
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 */