From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=55813 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PsX6Y-00027U-Gz for qemu-devel@nongnu.org; Thu, 24 Feb 2011 04:03:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PsX6X-0001rX-Ic for qemu-devel@nongnu.org; Thu, 24 Feb 2011 04:03:22 -0500 Received: from mx1.redhat.com ([209.132.183.28]:36782) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PsX6X-0001r2-7s for qemu-devel@nongnu.org; Thu, 24 Feb 2011 04:03:21 -0500 From: Juan Quintela In-Reply-To: (Yoshiaki Tamura's message of "Thu, 24 Feb 2011 13:12:01 +0900") References: Date: Thu, 24 Feb 2011 10:01:50 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] Re: [PATCH 21/28] migration: Make state definitions local Reply-To: quintela@redhat.com List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Yoshiaki Tamura Cc: qemu-devel@nongnu.org Yoshiaki Tamura wrote: > 2011/2/24 Juan Quintela : >> >> Signed-off-by: Juan Quintela >> --- >> =C2=A0migration.c | =C2=A0 =C2=A08 ++++++++ >> =C2=A0migration.h | =C2=A0 =C2=A08 -------- >> =C2=A02 files changed, 8 insertions(+), 8 deletions(-) >> >> diff --git a/migration.c b/migration.c >> index 493c2d7..697c74f 100644 >> --- a/migration.c >> +++ b/migration.c >> @@ -31,6 +31,14 @@ >> =C2=A0 =C2=A0 do { } while (0) >> =C2=A0#endif >> >> +enum migration_state { >> + =C2=A0 MIG_STATE_ERROR, > > Would be better to say: > > MIG_STATE_ERROR =3D -1, I thought about it, but basically it shouldn't matter, no? Later, Juan.