From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O8zDO-0000d5-GG for qemu-devel@nongnu.org; Mon, 03 May 2010 13:13:54 -0400 Received: from [140.186.70.92] (port=41474 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O8zDN-0000cG-7h for qemu-devel@nongnu.org; Mon, 03 May 2010 13:13:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O8zDL-0001B3-0q for qemu-devel@nongnu.org; Mon, 03 May 2010 13:13:52 -0400 Received: from mail-gw0-f45.google.com ([74.125.83.45]:40441) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O8zDK-0001Ay-UT for qemu-devel@nongnu.org; Mon, 03 May 2010 13:13:50 -0400 Received: by gwb15 with SMTP id 15so1257802gwb.4 for ; Mon, 03 May 2010 10:13:50 -0700 (PDT) Message-ID: <4BDF0444.4000209@codemonkey.ws> Date: Mon, 03 May 2010 12:13:40 -0500 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH] Fix the RARP protocol ID References: <1272113647.8527.16.camel@d941e-10> In-Reply-To: <1272113647.8527.16.camel@d941e-10> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Berger Cc: qemu-devel@nongnu.org On 04/24/2010 07:54 AM, Stefan Berger wrote: > The packet(s) sent out after migration are supposed to be RAPR type of > packets. If they are supposed to go anywhere useful, the RAPR ethernet > identifier needs to be fix. > > Also see http://www.iana.org/assignments/ethernet-numbers for 0x8035 for > RARP. > > Signed-off-by: Stefan Berger > Applied. Thanks. Regards, Anthony Liguori > --- > savevm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > Index: qemu-git/savevm.c > =================================================================== > --- qemu-git.orig/savevm.c > +++ qemu-git/savevm.c > @@ -89,7 +89,7 @@ static BlockDriverState *bs_snapshots; > #define SELF_ANNOUNCE_ROUNDS 5 > > #ifndef ETH_P_RARP > -#define ETH_P_RARP 0x0835 > +#define ETH_P_RARP 0x8035 > #endif > #define ARP_HTYPE_ETH 0x0001 > #define ARP_PTYPE_IP 0x0800 > > > > >