From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O5esU-0002q4-5M for qemu-devel@nongnu.org; Sat, 24 Apr 2010 08:54:34 -0400 Received: from [140.186.70.92] (port=56363 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O5esS-0002po-RZ for qemu-devel@nongnu.org; Sat, 24 Apr 2010 08:54:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O5esR-0003vY-EH for qemu-devel@nongnu.org; Sat, 24 Apr 2010 08:54:32 -0400 Received: from e7.ny.us.ibm.com ([32.97.182.137]:41522) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O5esR-0003vJ-BB for qemu-devel@nongnu.org; Sat, 24 Apr 2010 08:54:31 -0400 Received: from d01relay05.pok.ibm.com (d01relay05.pok.ibm.com [9.56.227.237]) by e7.ny.us.ibm.com (8.14.3/8.13.1) with ESMTP id o3OCilFr020169 for ; Sat, 24 Apr 2010 08:44:47 -0400 Received: from d01av02.pok.ibm.com (d01av02.pok.ibm.com [9.56.224.216]) by d01relay05.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id o3OCsToY168218 for ; Sat, 24 Apr 2010 08:54:29 -0400 Received: from d01av02.pok.ibm.com (loopback [127.0.0.1]) by d01av02.pok.ibm.com (8.14.3/8.13.1/NCO v10.0 AVout) with ESMTP id o3OCsTEo028353 for ; Sat, 24 Apr 2010 09:54:29 -0300 Received: from [9.59.241.154] (d941e-10.watson.ibm.com [9.59.241.154]) by d01av02.pok.ibm.com (8.14.3/8.13.1/NCO v10.0 AVin) with ESMTP id o3OCsS9Q028346 for ; Sat, 24 Apr 2010 09:54:28 -0300 From: Stefan Berger Content-Type: text/plain; charset="UTF-8" Date: Sat, 24 Apr 2010 08:54:07 -0400 Message-ID: <1272113647.8527.16.camel@d941e-10> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] Fix the RARP protocol ID List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org 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 --- 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