summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2010-02-18 16:24:31 +0100
committerMarkus Armbruster <armbru@redhat.com>2010-03-16 16:55:05 +0100
commit2f7920166d1aa402104d7b30d0225e71588f91f9 (patch)
tree377ab72ba69140c5988ae78dedc0ec419e7c70c2 /net
parent6e4f984cb9474db99bf4e3998ff86cdb9ed02380 (diff)
downloadqemu-2f7920166d1aa402104d7b30d0225e71588f91f9.tar.gz
error: Move qemu_error & friends into their own header
Diffstat (limited to 'net')
-rw-r--r--net/dump.c1
-rw-r--r--net/socket.c2
-rw-r--r--net/tap-linux.c1
-rw-r--r--net/tap.c1
4 files changed, 4 insertions, 1 deletions
diff --git a/net/dump.c b/net/dump.c
index d50b4eeac4..e702830108 100644
--- a/net/dump.c
+++ b/net/dump.c
@@ -25,6 +25,7 @@
#include "dump.h"
#include "qemu-common.h"
#include "sysemu.h"
+#include "qemu-error.h"
#include "qemu-log.h"
typedef struct DumpState {
diff --git a/net/socket.c b/net/socket.c
index 442a9c790c..474d573a47 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -28,9 +28,9 @@
#include "net.h"
#include "qemu-char.h"
#include "qemu-common.h"
+#include "qemu-error.h"
#include "qemu-option.h"
#include "qemu_socket.h"
-#include "sysemu.h"
typedef struct NetSocketState {
VLANClientState nc;
diff --git a/net/tap-linux.c b/net/tap-linux.c
index 6af9e824d3..c5748e631b 100644
--- a/net/tap-linux.c
+++ b/net/tap-linux.c
@@ -31,6 +31,7 @@
#include "sysemu.h"
#include "qemu-common.h"
+#include "qemu-error.h"
int tap_open(char *ifname, int ifname_size, int *vnet_hdr, int vnet_hdr_required)
{
diff --git a/net/tap.c b/net/tap.c
index 7a7320c1a2..9ba9b4a5d4 100644
--- a/net/tap.c
+++ b/net/tap.c
@@ -38,6 +38,7 @@
#include "sysemu.h"
#include "qemu-char.h"
#include "qemu-common.h"
+#include "qemu-error.h"
#include "net/tap-linux.h"