qemu-devel
[Top][All Lists]
Advanced

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

[PULL 014/111] vitriofsd/passthrough_ll: fix fallocate() ifdefs


From: Dr. David Alan Gilbert (git)
Subject: [PULL 014/111] vitriofsd/passthrough_ll: fix fallocate() ifdefs
Date: Thu, 23 Jan 2020 11:57:04 +0000

From: Xiao Yang <address@hidden>

1) Use correct CONFIG_FALLOCATE macro to check if fallocate() is supported.(i.e 
configure
   script sets CONFIG_FALLOCATE intead of HAVE_FALLOCATE if fallocate() is 
supported)
2) Replace HAVE_POSIX_FALLOCATE with CONFIG_POSIX_FALLOCATE.

Signed-off-by: Xiao Yang <address@hidden>
Signed-off-by: Dr. David Alan Gilbert <address@hidden>
  Merged from two of Xiao Yang's patches
---
 tools/virtiofsd/passthrough_ll.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/virtiofsd/passthrough_ll.c b/tools/virtiofsd/passthrough_ll.c
index 322a889cdf..6c4da18075 100644
--- a/tools/virtiofsd/passthrough_ll.c
+++ b/tools/virtiofsd/passthrough_ll.c
@@ -975,13 +975,13 @@ static void lo_fallocate(fuse_req_t req, fuse_ino_t ino, 
int mode, off_t offset,
     int err = EOPNOTSUPP;
     (void)ino;
 
-#ifdef HAVE_FALLOCATE
+#ifdef CONFIG_FALLOCATE
     err = fallocate(fi->fh, mode, offset, length);
     if (err < 0) {
         err = errno;
     }
 
-#elif defined(HAVE_POSIX_FALLOCATE)
+#elif defined(CONFIG_POSIX_FALLOCATE)
     if (mode) {
         fuse_reply_err(req, EOPNOTSUPP);
         return;
-- 
2.24.1




reply via email to

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