From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MsYx3-0000J1-T0 for qemu-devel@nongnu.org; Tue, 29 Sep 2009 05:24:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MsYx0-0000C2-1M for qemu-devel@nongnu.org; Tue, 29 Sep 2009 05:24:53 -0400 Received: from [199.232.76.173] (port=50508 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MsYwz-0000Bl-MO for qemu-devel@nongnu.org; Tue, 29 Sep 2009 05:24:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56443) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MsYwz-0004G6-80 for qemu-devel@nongnu.org; Tue, 29 Sep 2009 05:24:49 -0400 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n8T9Omt7004069 for ; Tue, 29 Sep 2009 05:24:48 -0400 Message-ID: <4AC1D25D.3030608@redhat.com> Date: Tue, 29 Sep 2009 11:24:45 +0200 From: Gerd Hoffmann MIME-Version: 1.0 Subject: Re: [Qemu-devel] [RfC PATCH 1/3] net: macaddr tweaks. References: <1253907783-1231-1-git-send-email-kraxel@redhat.com> <1253907783-1231-2-git-send-email-kraxel@redhat.com> <87my4ebsj9.fsf@pike.pond.sub.org> In-Reply-To: <87my4ebsj9.fsf@pike.pond.sub.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Markus Armbruster Cc: qemu-devel@nongnu.org >> +void qemu_macaddr_default_if_unset(macaddr_t macaddr) >> +{ >> + macaddr_t zero = { 0,0,0,0,0,0 }; >> + >> + if (memcmp(macaddr, zero, sizeof(zero)) != 0) >> + return; >> + macaddr[0] = 0x52; >> + macaddr[1] = 0x54; >> + macaddr[2] = 0x00; >> + macaddr[3] = 0x12; >> + macaddr[4] = 0x34; >> + macaddr[5] = 0x56; >> +} >> + > > This will get us the same default MAC address for all NICs, won't it? > The old code provides a different default for each NIC. > > Simply increment the default whenever it is used? Would be an option. Doesn't fully match the old behavior though. Old behavior is to use 0x56 + nic index (i.e. nd_table index) for the last byte, so nic #1 allways has 0x57, no matter whenever for nic #0 a default was specified or not. The problem we have here is that the nics created via -device don't have a nd_table entry and thus no nic index. We have a related issue with pxe boot (-boot n,o,p,q == boot first,second,third,fourth nic). Didn't have a good idea (yet) how to address that. >> +typedef uint8_t macaddr_t[6]; > > Reserved identifier (any POSIX header). Do we care? We should prrobably qemu-ify it to something like MACAddr anyway. cheers, Gerd