]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
Use #include "..." for our own headers, <...> for others
authorMarkus Armbruster <armbru@redhat.com>
Fri, 15 Mar 2019 14:51:16 +0000 (15:51 +0100)
committerMarkus Armbruster <armbru@redhat.com>
Mon, 13 May 2019 06:58:55 +0000 (08:58 +0200)
Also delete a few redundant #include.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190315145123.28030-2-armbru@redhat.com>

contrib/rdmacm-mux/main.c
contrib/rdmacm-mux/rdmacm-mux.h
hw/rdma/rdma_utils.h
target/i386/whp-dispatch.h
target/i386/whpx-all.c

index 21cc804367177a0a98ed98b815041f7c157fe94f..30c7052651b46bf9502d715dd504341177c50339 100644 (file)
  */
 
 #include "qemu/osdep.h"
-#include "sys/poll.h"
-#include "sys/ioctl.h"
-#include "pthread.h"
-#include "syslog.h"
-
-#include "infiniband/verbs.h"
-#include "infiniband/umad.h"
-#include "infiniband/umad_types.h"
-#include "infiniband/umad_sa.h"
-#include "infiniband/umad_cm.h"
+#include <sys/poll.h>
+#include <sys/ioctl.h>
+#include <pthread.h>
+#include <syslog.h>
+
+#include <infiniband/verbs.h>
+#include <infiniband/umad.h>
+#include <infiniband/umad_types.h>
+#include <infiniband/umad_sa.h>
+#include <infiniband/umad_cm.h>
 
 #include "rdmacm-mux.h"
 
index 942a802c47863d616fd9095ad857cacb873aa7ec..07a472291370f2cf0c3bba8b82ab9287dc6a67fa 100644 (file)
@@ -17,9 +17,9 @@
 #define RDMACM_MUX_H
 
 #include "linux/if.h"
-#include "infiniband/verbs.h"
-#include "infiniband/umad.h"
-#include "rdma/rdma_user_cm.h"
+#include <infiniband/verbs.h>
+#include <infiniband/umad.h>
+#include <rdma/rdma_user_cm.h>
 
 typedef enum RdmaCmMuxMsgType {
     RDMACM_MUX_MSG_TYPE_REQ   = 0,
index 2d4224969158906594b8e8b1da465e811529ab13..e7babe96cb8b1bbae01d4def7195dd155d068310 100644 (file)
@@ -20,7 +20,6 @@
 #include "qemu/error-report.h"
 #include "hw/pci/pci.h"
 #include "sysemu/dma.h"
-#include "stdio.h"
 
 #define rdma_error_report(fmt, ...) \
     error_report("%s: " fmt, "rdma", ## __VA_ARGS__)
index 4ae3cc8fa516eaf1f6d7542e3240f2216fc2be44..a23fb33a298434f3781bddf0f7fd24e3ca6851d1 100644 (file)
@@ -1,4 +1,4 @@
-#include "windows.h"
+#include <windows.h>
 
 #include <WinHvPlatform.h>
 #include <WinHvEmulation.h>
index 57e53e1f1f40936a93dc1485543636358d56c68f..31d47320e45c5a55457fe8db395531c9b3dc3450 100644 (file)
@@ -13,7 +13,6 @@
 #include "exec/address-spaces.h"
 #include "exec/ioport.h"
 #include "qemu-common.h"
-#include "strings.h"
 #include "sysemu/accel.h"
 #include "sysemu/whpx.h"
 #include "sysemu/sysemu.h"