Blame SOURCES/kvm-virtiofsd-Fix-common-header-and-define-for-QEMU-buil.patch

22c213
From 6d41fc549198e140f38fddcb02975098df040ae1 Mon Sep 17 00:00:00 2001
22c213
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
22c213
Date: Mon, 27 Jan 2020 19:00:50 +0100
22c213
Subject: [PATCH 019/116] virtiofsd: Fix common header and define for QEMU
22c213
 builds
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-16-dgilbert@redhat.com>
22c213
Patchwork-id: 93470
22c213
O-Subject: [RHEL-AV-8.2 qemu-kvm PATCH 015/112] virtiofsd: Fix common header and define for QEMU builds
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: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
22c213
22c213
All of the fuse files include config.h and define GNU_SOURCE
22c213
where we don't have either under our build - remove them.
22c213
Fixup path to the kernel's fuse.h in the QEMUs world.
22c213
22c213
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
22c213
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
22c213
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
(cherry picked from commit 09863ebc7e32a107235b3c815ad54d26cc64f07a)
22c213
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
22c213
---
22c213
 tools/virtiofsd/buffer.c         | 4 +---
22c213
 tools/virtiofsd/fuse_i.h         | 3 +++
22c213
 tools/virtiofsd/fuse_log.c       | 1 +
22c213
 tools/virtiofsd/fuse_lowlevel.c  | 6 ++----
22c213
 tools/virtiofsd/fuse_opt.c       | 2 +-
22c213
 tools/virtiofsd/fuse_signals.c   | 2 +-
22c213
 tools/virtiofsd/helper.c         | 1 +
22c213
 tools/virtiofsd/passthrough_ll.c | 8 ++------
22c213
 8 files changed, 12 insertions(+), 15 deletions(-)
22c213
22c213
diff --git a/tools/virtiofsd/buffer.c b/tools/virtiofsd/buffer.c
22c213
index 4d507f3..772efa9 100644
22c213
--- a/tools/virtiofsd/buffer.c
22c213
+++ b/tools/virtiofsd/buffer.c
22c213
@@ -9,9 +9,7 @@
22c213
  * See the file COPYING.LIB
22c213
  */
22c213
 
22c213
-#define _GNU_SOURCE
22c213
-
22c213
-#include "config.h"
22c213
+#include "qemu/osdep.h"
22c213
 #include "fuse_i.h"
22c213
 #include "fuse_lowlevel.h"
22c213
 #include <assert.h>
22c213
diff --git a/tools/virtiofsd/fuse_i.h b/tools/virtiofsd/fuse_i.h
22c213
index e63cb58..bae0699 100644
22c213
--- a/tools/virtiofsd/fuse_i.h
22c213
+++ b/tools/virtiofsd/fuse_i.h
22c213
@@ -6,6 +6,9 @@
22c213
  * See the file COPYING.LIB
22c213
  */
22c213
 
22c213
+#define FUSE_USE_VERSION 31
22c213
+
22c213
+
22c213
 #include "fuse.h"
22c213
 #include "fuse_lowlevel.h"
22c213
 
22c213
diff --git a/tools/virtiofsd/fuse_log.c b/tools/virtiofsd/fuse_log.c
22c213
index 11345f9..c301ff6 100644
22c213
--- a/tools/virtiofsd/fuse_log.c
22c213
+++ b/tools/virtiofsd/fuse_log.c
22c213
@@ -8,6 +8,7 @@
22c213
  * See the file COPYING.LIB
22c213
  */
22c213
 
22c213
+#include "qemu/osdep.h"
22c213
 #include "fuse_log.h"
22c213
 
22c213
 #include <stdarg.h>
22c213
diff --git a/tools/virtiofsd/fuse_lowlevel.c b/tools/virtiofsd/fuse_lowlevel.c
22c213
index 3da80de..07fb8a6 100644
22c213
--- a/tools/virtiofsd/fuse_lowlevel.c
22c213
+++ b/tools/virtiofsd/fuse_lowlevel.c
22c213
@@ -9,11 +9,9 @@
22c213
  * See the file COPYING.LIB
22c213
  */
22c213
 
22c213
-#define _GNU_SOURCE
22c213
-
22c213
-#include "config.h"
22c213
+#include "qemu/osdep.h"
22c213
 #include "fuse_i.h"
22c213
-#include "fuse_kernel.h"
22c213
+#include "standard-headers/linux/fuse.h"
22c213
 #include "fuse_misc.h"
22c213
 #include "fuse_opt.h"
22c213
 
22c213
diff --git a/tools/virtiofsd/fuse_opt.c b/tools/virtiofsd/fuse_opt.c
22c213
index edd36f4..2892236 100644
22c213
--- a/tools/virtiofsd/fuse_opt.c
22c213
+++ b/tools/virtiofsd/fuse_opt.c
22c213
@@ -9,8 +9,8 @@
22c213
  * See the file COPYING.LIB
22c213
  */
22c213
 
22c213
+#include "qemu/osdep.h"
22c213
 #include "fuse_opt.h"
22c213
-#include "config.h"
22c213
 #include "fuse_i.h"
22c213
 #include "fuse_misc.h"
22c213
 
22c213
diff --git a/tools/virtiofsd/fuse_signals.c b/tools/virtiofsd/fuse_signals.c
22c213
index 19d6791..dc7c8ac 100644
22c213
--- a/tools/virtiofsd/fuse_signals.c
22c213
+++ b/tools/virtiofsd/fuse_signals.c
22c213
@@ -8,7 +8,7 @@
22c213
  * See the file COPYING.LIB
22c213
  */
22c213
 
22c213
-#include "config.h"
22c213
+#include "qemu/osdep.h"
22c213
 #include "fuse_i.h"
22c213
 #include "fuse_lowlevel.h"
22c213
 
22c213
diff --git a/tools/virtiofsd/helper.c b/tools/virtiofsd/helper.c
22c213
index d9227d7..9333691 100644
22c213
--- a/tools/virtiofsd/helper.c
22c213
+++ b/tools/virtiofsd/helper.c
22c213
@@ -10,6 +10,7 @@
22c213
  * See the file COPYING.LIB.
22c213
  */
22c213
 
22c213
+#include "qemu/osdep.h"
22c213
 #include "fuse_i.h"
22c213
 #include "fuse_lowlevel.h"
22c213
 #include "fuse_misc.h"
22c213
diff --git a/tools/virtiofsd/passthrough_ll.c b/tools/virtiofsd/passthrough_ll.c
22c213
index 126a56c..322a889 100644
22c213
--- a/tools/virtiofsd/passthrough_ll.c
22c213
+++ b/tools/virtiofsd/passthrough_ll.c
22c213
@@ -35,15 +35,11 @@
22c213
  * \include passthrough_ll.c
22c213
  */
22c213
 
22c213
-#define _GNU_SOURCE
22c213
-#define FUSE_USE_VERSION 31
22c213
-
22c213
-#include "config.h"
22c213
-
22c213
+#include "qemu/osdep.h"
22c213
+#include "fuse_lowlevel.h"
22c213
 #include <assert.h>
22c213
 #include <dirent.h>
22c213
 #include <errno.h>
22c213
-#include <fuse_lowlevel.h>
22c213
 #include <inttypes.h>
22c213
 #include <limits.h>
22c213
 #include <pthread.h>
22c213
-- 
22c213
1.8.3.1
22c213