Lines Matching defs:vm_fault
528 struct vm_fault { struct
530 unsigned int sequence;
531 pmd_t orig_pmd; /* value of PMD at the time of fault */
533 const struct {
539 unsigned int flags; /* FAULT_FLAG_xxx flags
541 pmd_t *pmd; /* Pointer to pmd entry matching
543 pud_t *pud; /* Pointer to pud entry matching
546 pte_t orig_pte; /* Value of PTE at the time of fault */
548 struct page *cow_page; /* Page handler may use for COW fault */
549 struct page *page; /* ->fault handlers should return a
555 pte_t *pte; /* Pointer to pte entry matching
559 spinlock_t *ptl; /* Page table lock.
563 pgtable_t prealloc_pte; /* Pre-allocated pte page table.
596 vm_fault_t (*fault)(struct vm_fault *vmf); argument
3040 static inline int vm_fault_to_errno(vm_fault_t vm_fault, int foll_flags) in vm_fault_to_errno()