45 lines
1.6 KiB
Diff
45 lines
1.6 KiB
Diff
|
From 9c291ca8624318613ede6e4174d08cf45aae8384 Mon Sep 17 00:00:00 2001
|
||
|
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
|
||
|
Date: Mon, 27 Jan 2020 19:02:01 +0100
|
||
|
Subject: [PATCH 090/116] virtiofsd: fix incorrect error handling in
|
||
|
lo_do_lookup
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
||
|
Message-id: <20200127190227.40942-87-dgilbert@redhat.com>
|
||
|
Patchwork-id: 93543
|
||
|
O-Subject: [RHEL-AV-8.2 qemu-kvm PATCH 086/112] virtiofsd: fix incorrect error handling in lo_do_lookup
|
||
|
Bugzilla: 1694164
|
||
|
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
|
||
|
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
||
|
RH-Acked-by: Sergio Lopez Pascual <slp@redhat.com>
|
||
|
|
||
|
From: Eric Ren <renzhen@linux.alibaba.com>
|
||
|
|
||
|
Signed-off-by: Eric Ren <renzhen@linux.alibaba.com>
|
||
|
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
|
||
|
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
||
|
(cherry picked from commit fc3f0041b43b6c64aa97b3558a6abe1a10028354)
|
||
|
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
||
|
---
|
||
|
tools/virtiofsd/passthrough_ll.c | 1 -
|
||
|
1 file changed, 1 deletion(-)
|
||
|
|
||
|
diff --git a/tools/virtiofsd/passthrough_ll.c b/tools/virtiofsd/passthrough_ll.c
|
||
|
index e8dc5c7..05b5f89 100644
|
||
|
--- a/tools/virtiofsd/passthrough_ll.c
|
||
|
+++ b/tools/virtiofsd/passthrough_ll.c
|
||
|
@@ -814,7 +814,6 @@ static int lo_do_lookup(fuse_req_t req, fuse_ino_t parent, const char *name,
|
||
|
close(newfd);
|
||
|
newfd = -1;
|
||
|
} else {
|
||
|
- saverr = ENOMEM;
|
||
|
inode = calloc(1, sizeof(struct lo_inode));
|
||
|
if (!inode) {
|
||
|
goto out_err;
|
||
|
--
|
||
|
1.8.3.1
|
||
|
|