Blame SOURCES/kvm-virtiofsd-passthrough_ll-add-renameat2-support.patch

22c213
From 86b4f2865f2ebd7e6b3d85beb66a9390eb46eb96 Mon Sep 17 00:00:00 2001
22c213
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
22c213
Date: Mon, 27 Jan 2020 19:01:45 +0100
22c213
Subject: [PATCH 074/116] virtiofsd: passthrough_ll: add renameat2 support
22c213
MIME-Version: 1.0
22c213
Content-Type: text/plain; charset=UTF-8
22c213
Content-Transfer-Encoding: 8bit
22c213
22c213
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
Message-id: <20200127190227.40942-71-dgilbert@redhat.com>
22c213
Patchwork-id: 93531
22c213
O-Subject: [RHEL-AV-8.2 qemu-kvm PATCH 070/112] virtiofsd: passthrough_ll: add renameat2 support
22c213
Bugzilla: 1694164
22c213
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
22c213
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
22c213
RH-Acked-by: Sergio Lopez Pascual <slp@redhat.com>
22c213
22c213
From: Miklos Szeredi <mszeredi@redhat.com>
22c213
22c213
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
22c213
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
(cherry picked from commit f0ab7d6f78a7d3c1c19fd81a91c9b1199f56c4f6)
22c213
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
22c213
---
22c213
 tools/virtiofsd/passthrough_ll.c | 10 ++++++++++
22c213
 1 file changed, 10 insertions(+)
22c213
22c213
diff --git a/tools/virtiofsd/passthrough_ll.c b/tools/virtiofsd/passthrough_ll.c
22c213
index 98114a3..18d69ab 100644
22c213
--- a/tools/virtiofsd/passthrough_ll.c
22c213
+++ b/tools/virtiofsd/passthrough_ll.c
22c213
@@ -1099,7 +1099,17 @@ static void lo_rename(fuse_req_t req, fuse_ino_t parent, const char *name,
22c213
     }
22c213
 
22c213
     if (flags) {
22c213
+#ifndef SYS_renameat2
22c213
         fuse_reply_err(req, EINVAL);
22c213
+#else
22c213
+        res = syscall(SYS_renameat2, lo_fd(req, parent), name,
22c213
+                       lo_fd(req, newparent), newname, flags);
22c213
+        if (res == -1 && errno == ENOSYS) {
22c213
+            fuse_reply_err(req, EINVAL);
22c213
+        } else {
22c213
+            fuse_reply_err(req, res == -1 ? errno : 0);
22c213
+        }
22c213
+#endif
22c213
         return;
22c213
     }
22c213
 
22c213
-- 
22c213
1.8.3.1
22c213