From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48795) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dB1Ru-0004Gd-81 for qemu-devel@nongnu.org; Wed, 17 May 2017 12:05:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dB1Ro-0007Wo-5C for qemu-devel@nongnu.org; Wed, 17 May 2017 12:05:18 -0400 Received: from mx1.redhat.com ([209.132.183.28]:53262) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dB1Rn-0007WN-UR for qemu-devel@nongnu.org; Wed, 17 May 2017 12:05:12 -0400 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id D76F85D688 for ; Wed, 17 May 2017 16:05:10 +0000 (UTC) Date: Wed, 17 May 2017 17:05:04 +0100 From: "Dr. David Alan Gilbert" Message-ID: <20170517160504.GD2196@work-vm> References: <20170517154756.22079-1-quintela@redhat.com> <20170517154756.22079-6-quintela@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170517154756.22079-6-quintela@redhat.com> Subject: Re: [Qemu-devel] [PATCH 5/9] migration: Move qjson.h to migration/ List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Juan Quintela Cc: qemu-devel@nongnu.org, lvivier@redhat.com, peterx@redhat.com * Juan Quintela (quintela@redhat.com) wrote: > It is only used for migration code. > > Signed-off-by: Juan Quintela Reviewed-by: Dr. David Alan Gilbert > --- > migration/qjson.c | 2 +- > {include/migration => migration}/qjson.h | 0 > migration/vmstate.c | 2 +- > 3 files changed, 2 insertions(+), 2 deletions(-) > rename {include/migration => migration}/qjson.h (100%) > > diff --git a/migration/qjson.c b/migration/qjson.c > index f345904..9d7f6eb 100644 > --- a/migration/qjson.c > +++ b/migration/qjson.c > @@ -25,7 +25,7 @@ > > #include "qemu/osdep.h" > #include "qapi/qmp/qstring.h" > -#include "migration/qjson.h" > +#include "qjson.h" > > struct QJSON { > QString *str; > diff --git a/include/migration/qjson.h b/migration/qjson.h > similarity index 100% > rename from include/migration/qjson.h > rename to migration/qjson.h > diff --git a/migration/vmstate.c b/migration/vmstate.c > index 7b4a607..66c50ee 100644 > --- a/migration/vmstate.c > +++ b/migration/vmstate.c > @@ -7,7 +7,7 @@ > #include "qemu/error-report.h" > #include "qemu/queue.h" > #include "trace.h" > -#include "migration/qjson.h" > +#include "qjson.h" > > static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd, > void *opaque, QJSON *vmdesc); > -- > 2.9.3 > -- Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK