On Sat, Oct 04, 2025 at 11:30:44AM +0200, Loïc Molinari wrote: > -static vm_fault_t drm_gem_shmem_fault(struct vm_fault *vmf) > +static vm_fault_t drm_gem_shmem_huge_fault(struct vm_fault *vmf, > + unsigned int order)
>From the mm side, we'd much rather you implemented ->map_pages than ->huge_fault. It's far more flexible; for example it'll support ARM's contpte which ->huge_fault() doesn't.
