qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 066/104] virtiofsd: passthrough_ll: add renameat2 support


From: Dr. David Alan Gilbert
Subject: Re: [PATCH 066/104] virtiofsd: passthrough_ll: add renameat2 support
Date: Fri, 10 Jan 2020 09:52:28 +0000
User-agent: Mutt/1.13.0 (2019-11-30)

* Daniel P. Berrangé (address@hidden) wrote:
> On Thu, Dec 12, 2019 at 04:38:26PM +0000, Dr. David Alan Gilbert (git) wrote:
> > From: Miklos Szeredi <address@hidden>
> > 
> > No glibc support yet, so use syscall().
> 
> It exists in glibc in my Fedora 31 install.
> 
> Presumably this is related to an older version
> 
> > Signed-off-by: Miklos Szeredi <address@hidden>
> > ---
> >  tools/virtiofsd/passthrough_ll.c | 10 ++++++++++
> >  1 file changed, 10 insertions(+)
> > 
> > diff --git a/tools/virtiofsd/passthrough_ll.c 
> > b/tools/virtiofsd/passthrough_ll.c
> > index 91d3120033..bed2270141 100644
> > --- a/tools/virtiofsd/passthrough_ll.c
> > +++ b/tools/virtiofsd/passthrough_ll.c
> > @@ -1083,7 +1083,17 @@ static void lo_rename(fuse_req_t req, fuse_ino_t 
> > parent, const char *name,
> >      }
> >  
> >      if (flags) {
> > +#ifndef SYS_renameat2
> >          fuse_reply_err(req, EINVAL);
> > +#else
> > +        res = syscall(SYS_renameat2, lo_fd(req, parent), name,
> > +                      lo_fd(req, newparent), newname, flags);
> > +        if (res == -1 && errno == ENOSYS) {
> > +            fuse_reply_err(req, EINVAL);
> > +        } else {
> > +            fuse_reply_err(req, res == -1 ? errno : 0);
> > +        }
> > +#endif
> 
> We should use the formal API if available as first choice

OK, done - I've kept the 'ifndef SYS_renameat2' that drops back to an
error for truly ancient cases; although I doubt everything else will
build on something that old.

Dave

> 
> Regards,
> Daniel
> -- 
> |: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
> |: https://libvirt.org         -o-            https://fstop138.berrange.com :|
> |: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|
--
Dr. David Alan Gilbert / address@hidden / Manchester, UK




reply via email to

[Prev in Thread] Current Thread [Next in Thread]