From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38862) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgbBZ-0004BE-T3 for qemu-devel@nongnu.org; Thu, 06 Dec 2012 08:08:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TgbBT-00054i-Et for qemu-devel@nongnu.org; Thu, 06 Dec 2012 08:08:17 -0500 Received: from mail-ie0-f181.google.com ([209.85.223.181]:37136) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgbBT-00054K-7B for qemu-devel@nongnu.org; Thu, 06 Dec 2012 08:08:11 -0500 Received: by mail-ie0-f181.google.com with SMTP id 16so10113130iea.40 for ; Thu, 06 Dec 2012 05:08:09 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Thu, 6 Dec 2012 14:06:51 +0100 Message-Id: <1354799230-30904-14-git-send-email-pbonzini@redhat.com> In-Reply-To: <1354799230-30904-1-git-send-email-pbonzini@redhat.com> References: <1354799230-30904-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 13/32] net: move net.c to net/ List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, afaerber@suse.de Acked-by: Paolo Bonzini Signed-off-by: Paolo Bonzini --- Makefile.objs | 2 +- net/Makefile.objs | 2 +- net.c => net/net.c | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) rename net.c => net/net.c (99%) diff --git a/Makefile.objs b/Makefile.objs index 0fb3904..569d834 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -66,7 +66,7 @@ endif # single QEMU executable should support all CPUs and machines. common-obj-y = $(block-obj-y) blockdev.o blockdev-nbd.o block/ -common-obj-y += net.o net/ +common-obj-y += net/ common-obj-y += qom/ common-obj-y += readline.o console.o cursor.o common-obj-y += qemu-pixman.o diff --git a/net/Makefile.objs b/net/Makefile.objs index cf04187..a08cd14 100644 --- a/net/Makefile.objs +++ b/net/Makefile.objs @@ -1,4 +1,4 @@ -common-obj-y = queue.o checksum.o util.o hub.o +common-obj-y = net.o queue.o checksum.o util.o hub.o common-obj-y += socket.o common-obj-y += dump.o common-obj-$(CONFIG_POSIX) += tap.o diff --git a/net.c b/net/net.c similarity index 99% rename from net.c rename to net/net.c index 4f3d642..7b1600f 100644 --- a/net.c +++ b/net/net.c @@ -24,10 +24,10 @@ #include "config-host.h" #include "net.h" -#include "net/clients.h" -#include "net/hub.h" -#include "net/slirp.h" -#include "net/util.h" +#include "clients.h" +#include "hub.h" +#include "slirp.h" +#include "util.h" #include "monitor.h" #include "qemu-common.h" -- 1.7.1