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

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