From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:33908) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UK7On-0002UV-6t for qemu-devel@nongnu.org; Mon, 25 Mar 2013 09:25:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UK7Ok-0000NW-Dg for qemu-devel@nongnu.org; Mon, 25 Mar 2013 09:25:17 -0400 Received: from e7.ny.us.ibm.com ([32.97.182.137]:60418) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UK7Ok-0000NF-9Y for qemu-devel@nongnu.org; Mon, 25 Mar 2013 09:25:14 -0400 Received: from /spool/local by e7.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 25 Mar 2013 09:25:12 -0400 Message-ID: <51505035.6090503@linux.vnet.ibm.com> Date: Mon, 25 Mar 2013 09:25:09 -0400 From: Corey Bryant MIME-Version: 1.0 References: <1363971468-21154-1-git-send-email-pbonzini@redhat.com> In-Reply-To: <1363971468-21154-1-git-send-email-pbonzini@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] qemu-bridge-helper: force usage of a very high MAC address for the bridge List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: qemu-devel@nongnu.org, qemu-stable@nongnu.org On 03/22/2013 12:57 PM, Paolo Bonzini wrote: > Linux uses the lowest enslaved MAC address as the MAC address of > the bridge. Set MAC address to a high value so that it does not > affect the MAC address of the bridge. > > Changing the MAC address of the bridge could cause a few seconds > of network downtime. > > Cc: qemu-stable@nongnu.org > Signed-off-by: Paolo Bonzini > --- > qemu-bridge-helper.c | 18 ++++++++++++++++++ > 1 file changed, 18 insertions(+) > > diff --git a/qemu-bridge-helper.c b/qemu-bridge-helper.c > index 287bfd5..6a0974e 100644 > --- a/qemu-bridge-helper.c > +++ b/qemu-bridge-helper.c > @@ -367,6 +367,24 @@ int main(int argc, char **argv) > goto cleanup; > } > > + /* Linux uses the lowest enslaved MAC address as the MAC address of > + * the bridge. Set MAC address to a high value so that it doesn't > + * affect the MAC address of the bridge. > + */ > + if (ioctl(ctlfd, SIOCGIFHWADDR, &ifr) < 0) { > + fprintf(stderr, "failed to get MAC address of device `%s': %s\n", > + iface, strerror(errno)); > + ret = EXIT_FAILURE; > + goto cleanup; > + } > + ifr.ifr_hwaddr.sa_data[0] = 0xFE; > + if (ioctl(ctlfd, SIOCSIFHWADDR, &ifr) < 0) { > + fprintf(stderr, "failed to set MAC address of device `%s': %s\n", > + iface, strerror(errno)); > + ret = EXIT_FAILURE; > + goto cleanup; > + } > + > /* add the interface to the bridge */ > prep_ifreq(&ifr, bridge); > ifindex = if_nametoindex(iface); > Reviewed-by: Corey Bryant -- Regards, Corey Bryant