Home
last modified time | relevance | path

Searched refs:huge_fault (Results 1 – 9 of 9) sorted by relevance

/openbmc/linux/Documentation/filesystems/
H A Dlocking.rst644 vm_fault_t (*huge_fault)(struct vm_fault *, unsigned int order);
658 huge_fault: maybe-read
673 ->huge_fault() is called when there is no PUD or PMD entry present. This
677 filesystems should not call filemap_fault() from ->huge_fault().
H A Dporting.rst946 Calling convention for ->huge_fault has changed. It now takes a page
/openbmc/linux/mm/
H A Dmemory.c4908 if (vma->vm_ops->huge_fault) in create_huge_pmd()
4909 return vma->vm_ops->huge_fault(vmf, PMD_ORDER); in create_huge_pmd()
4928 if (vma->vm_ops->huge_fault) { in wp_huge_pmd()
4929 ret = vma->vm_ops->huge_fault(vmf, PMD_ORDER); in wp_huge_pmd()
4949 if (vma->vm_ops->huge_fault) in create_huge_pud()
4950 return vma->vm_ops->huge_fault(vmf, PUD_ORDER); in create_huge_pud()
4966 if (vma->vm_ops->huge_fault) { in wp_huge_pud()
4967 ret = vma->vm_ops->huge_fault(vmf, PUD_ORDER); in wp_huge_pud()
/openbmc/linux/fs/erofs/
H A Ddata.c429 .huge_fault = erofs_dax_huge_fault,
/openbmc/linux/drivers/dax/
H A Ddevice.c282 .huge_fault = dev_dax_huge_fault,
/openbmc/linux/fs/ext4/
H A Dfile.c768 .huge_fault = ext4_dax_huge_fault,
/openbmc/linux/fs/fuse/
H A Ddax.c852 .huge_fault = fuse_dax_huge_fault,
/openbmc/linux/fs/xfs/
H A Dxfs_file.c1454 .huge_fault = xfs_filemap_huge_fault,
/openbmc/linux/include/linux/
H A Dmm.h581 vm_fault_t (*huge_fault)(struct vm_fault *vmf, unsigned int order); member