OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
arch
/
um
/
include
/
asm
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:16 AM
rwxr-xr-x
📄
Kbuild
702 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
a.out-core.h
695 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
bugs.h
111 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
cache.h
483 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
common.lds.S
1.76 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
dma.h
180 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
fixmap.h
1.63 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
hardirq.h
558 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
io.h
339 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
irq.h
493 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
irqflags.h
865 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
kmap_types.h
219 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
kvm_para.h
34 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mmu.h
558 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mmu_context.h
1.87 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
page.h
3.15 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
pgalloc.h
1.46 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
pgtable-2level.h
1.32 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
pgtable-3level.h
2.88 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
pgtable.h
9.88 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
processor-generic.h
1.87 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ptrace-generic.h
1.13 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sections.h
219 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
setup.h
273 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
smp.h
121 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
stacktrace.h
1.06 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
syscall-generic.h
2.67 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sysrq.h
182 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
thread_info.h
2.15 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
timex.h
151 bytes
11/01/2022 04:52:05 PM
rw-r--r--
📄
tlb.h
4.23 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
tlbflush.h
978 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
uaccess.h
1.65 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
unwind.h
213 bytes
01/28/2018 09:20:33 PM
rw-r--r--
Editing: tlb.h
Close
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __UM_TLB_H #define __UM_TLB_H #include <linux/pagemap.h> #include <linux/swap.h> #include <asm/percpu.h> #include <asm/pgalloc.h> #include <asm/tlbflush.h> #define tlb_start_vma(tlb, vma) do { } while (0) #define tlb_end_vma(tlb, vma) do { } while (0) #define tlb_flush(tlb) flush_tlb_mm((tlb)->mm) /* struct mmu_gather is an opaque type used by the mm code for passing around * any data needed by arch specific code for tlb_remove_page. */ struct mmu_gather { struct mm_struct *mm; unsigned int need_flush; /* Really unmapped some ptes? */ unsigned long start; unsigned long end; unsigned int fullmm; /* non-zero means full mm flush */ }; static inline void __tlb_remove_tlb_entry(struct mmu_gather *tlb, pte_t *ptep, unsigned long address) { if (tlb->start > address) tlb->start = address; if (tlb->end < address + PAGE_SIZE) tlb->end = address + PAGE_SIZE; } static inline void init_tlb_gather(struct mmu_gather *tlb) { tlb->need_flush = 0; tlb->start = TASK_SIZE; tlb->end = 0; if (tlb->fullmm) { tlb->start = 0; tlb->end = TASK_SIZE; } } static inline void arch_tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm, unsigned long start, unsigned long end) { tlb->mm = mm; tlb->start = start; tlb->end = end; tlb->fullmm = !(start | (end+1)); init_tlb_gather(tlb); } extern void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start, unsigned long end); static inline void tlb_flush_mmu_tlbonly(struct mmu_gather *tlb) { flush_tlb_mm_range(tlb->mm, tlb->start, tlb->end); } static inline void tlb_flush_mmu_free(struct mmu_gather *tlb) { init_tlb_gather(tlb); } static inline void tlb_flush_mmu(struct mmu_gather *tlb) { if (!tlb->need_flush) return; tlb_flush_mmu_tlbonly(tlb); tlb_flush_mmu_free(tlb); } /* arch_tlb_finish_mmu * Called at the end of the shootdown operation to free up any resources * that were required. */ static inline void arch_tlb_finish_mmu(struct mmu_gather *tlb, unsigned long start, unsigned long end, bool force) { if (force) { tlb->start = start; tlb->end = end; tlb->need_flush = 1; } tlb_flush_mmu(tlb); /* keep the page table cache within bounds */ check_pgt_cache(); } /* tlb_remove_page * Must perform the equivalent to __free_pte(pte_get_and_clear(ptep)), * while handling the additional races in SMP caused by other CPUs * caching valid mappings in their TLBs. */ static inline int __tlb_remove_page(struct mmu_gather *tlb, struct page *page) { tlb->need_flush = 1; free_page_and_swap_cache(page); return false; /* avoid calling tlb_flush_mmu */ } static inline void tlb_remove_page(struct mmu_gather *tlb, struct page *page) { __tlb_remove_page(tlb, page); } static inline bool __tlb_remove_page_size(struct mmu_gather *tlb, struct page *page, int page_size) { return __tlb_remove_page(tlb, page); } static inline void tlb_remove_page_size(struct mmu_gather *tlb, struct page *page, int page_size) { return tlb_remove_page(tlb, page); } static inline void tlb_flush_pmd_range(struct mmu_gather *tlb, unsigned long address, unsigned long size) { tlb->need_flush = 1; if (tlb->start > address) tlb->start = address; if (tlb->end < address + size) tlb->end = address + size; } /** * tlb_remove_tlb_entry - remember a pte unmapping for later tlb invalidation. * * Record the fact that pte's were really umapped in ->need_flush, so we can * later optimise away the tlb invalidate. This helps when userspace is * unmapping already-unmapped pages, which happens quite a lot. */ #define tlb_remove_tlb_entry(tlb, ptep, address) \ do { \ tlb->need_flush = 1; \ __tlb_remove_tlb_entry(tlb, ptep, address); \ } while (0) #define tlb_remove_huge_tlb_entry(h, tlb, ptep, address) \ tlb_remove_tlb_entry(tlb, ptep, address) #define tlb_remove_check_page_size_change tlb_remove_check_page_size_change static inline void tlb_remove_check_page_size_change(struct mmu_gather *tlb, unsigned int page_size) { } #define pte_free_tlb(tlb, ptep, addr) __pte_free_tlb(tlb, ptep, addr) #define pud_free_tlb(tlb, pudp, addr) __pud_free_tlb(tlb, pudp, addr) #define pmd_free_tlb(tlb, pmdp, addr) __pmd_free_tlb(tlb, pmdp, addr) #define tlb_migrate_finish(mm) do {} while (0) #endif