You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
497 B
18 lines
497 B
#ifndef _ASM_X86_TLB_H |
|
#define _ASM_X86_TLB_H |
|
|
|
#define tlb_start_vma(tlb, vma) do { } while (0) |
|
#define tlb_end_vma(tlb, vma) do { } while (0) |
|
#define __tlb_remove_tlb_entry(tlb, ptep, address) do { } while (0) |
|
|
|
#define tlb_flush(tlb) \ |
|
{ \ |
|
if (!tlb->fullmm && !tlb->need_flush_all) \ |
|
flush_tlb_mm_range(tlb->mm, tlb->start, tlb->end, 0UL); \ |
|
else \ |
|
flush_tlb_mm_range(tlb->mm, 0UL, TLB_FLUSH_ALL, 0UL); \ |
|
} |
|
|
|
#include <asm-generic/tlb.h> |
|
|
|
#endif /* _ASM_X86_TLB_H */
|
|
|