On Mon, Sep 08, 2025 at 12:10:37PM +0100, Lorenzo Stoakes wrote: > We have introduced the f_op->mmap_prepare hook to allow for setting up a > VMA far earlier in the process of mapping memory, reducing problematic > error handling paths, but this does not provide what all > drivers/filesystems need. > > In order to supply this, and to be able to move forward with removing > f_op->mmap altogether, introduce f_op->mmap_complete. > > This hook is called once the VMA is fully mapped and everything is done, > however with the mmap write lock and VMA write locks held. > > The hook is then provided with a fully initialised VMA which it can do what > it needs with, though the mmap and VMA write locks must remain held > throughout. > > It is not intended that the VMA be modified at this point, attempts to do > so will end in tears. The commit message should call out if this has fixed the race condition with unmap mapping range and prepopulation in mmap().. > @@ -793,6 +793,11 @@ struct vm_area_desc { > /* Write-only fields. */ > const struct vm_operations_struct *vm_ops; > void *private_data; > + /* > + * A user-defined field, value will be passed to mmap_complete, > + * mmap_abort. > + */ > + void *mmap_context; Seem strange, private_data and mmap_context? Something actually needs both? Jason