[PATCH 02/16] device/dax: update devdax to use mmap_prepare
Lorenzo Stoakes
lorenzo.stoakes at oracle.com
Mon Sep 8 08:28:36 PDT 2025
On Mon, Sep 08, 2025 at 05:03:54PM +0200, David Hildenbrand wrote:
> On 08.09.25 13:10, Lorenzo Stoakes wrote:
> > The devdax driver does nothing special in its f_op->mmap hook, so
> > straightforwardly update it to use the mmap_prepare hook instead.
> >
> > Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes at oracle.com>
> > ---
> > drivers/dax/device.c | 32 +++++++++++++++++++++-----------
> > 1 file changed, 21 insertions(+), 11 deletions(-)
> >
> > diff --git a/drivers/dax/device.c b/drivers/dax/device.c
> > index 2bb40a6060af..c2181439f925 100644
> > --- a/drivers/dax/device.c
> > +++ b/drivers/dax/device.c
> > @@ -13,8 +13,9 @@
> > #include "dax-private.h"
> > #include "bus.h"
> > -static int check_vma(struct dev_dax *dev_dax, struct vm_area_struct *vma,
> > - const char *func)
> > +static int __check_vma(struct dev_dax *dev_dax, vm_flags_t vm_flags,
> > + unsigned long start, unsigned long end, struct file *file,
> > + const char *func)
>
> In general
>
> Acked-by: David Hildenbrand <david at redhat.com>
Thanks!
>
> The only thing that bugs me is __check_vma() that does not check a vma.
Ah yeah, you're right.
>
> Maybe something along the lines of
>
> "check_vma_properties"
maybe check_vma_desc()?
>
> Not sure.
>
> --
> Cheers
>
> David / dhildenb
>
Cheers, Lorenzo
More information about the kexec
mailing list