From: Stefan Weil Date: Wed, 11 Jan 2012 18:34:30 +0000 (+0100) Subject: virtfs-proxy-helper: Clean include files X-Git-Tag: v1.1-rc0~594^2~2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=e7e4a6ccae023ab4b9650aed6af369088ef08e3b;p=qemu.git virtfs-proxy-helper: Clean include files The common standard include files are already included via qemu-common.h, and for the socket related include files there is qemu_socket.h, so the code can be reduced by some lines. Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- diff --git a/fsdev/virtfs-proxy-helper.c b/fsdev/virtfs-proxy-helper.c index ce7eb79d7..21e9b160c 100644 --- a/fsdev/virtfs-proxy-helper.c +++ b/fsdev/virtfs-proxy-helper.c @@ -8,31 +8,20 @@ * This work is licensed under the terms of the GNU GPL, version 2. See * the COPYING file in the top-level directory. */ -#include -#include -#include -#include -#include -#include -#include -#include + #include -#include #include -#include #include #include #include -#include -#include #include -#include #include #include #ifdef CONFIG_LINUX_MAGIC_H #include #endif #include "qemu-common.h" +#include "qemu_socket.h" #include "qemu-xattr.h" #include "virtio-9p-marshal.h" #include "hw/9pfs/virtio-9p-proxy.h"