From: Corey Bryant <coreyb@linux.vnet.ibm.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: qemu-devel@nongnu.org, qemu-stable@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] qemu-bridge-helper: force usage of a very high MAC address for the bridge
Date: Mon, 25 Mar 2013 09:25:09 -0400 [thread overview]
Message-ID: <51505035.6090503@linux.vnet.ibm.com> (raw)
In-Reply-To: <1363971468-21154-1-git-send-email-pbonzini@redhat.com>
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 <pbonzini@redhat.com>
> ---
> 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 <coreyb@linux.vnet.ibm.com>
--
Regards,
Corey Bryant
next prev parent reply other threads:[~2013-03-25 13:25 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-22 16:57 [Qemu-devel] [PATCH] qemu-bridge-helper: force usage of a very high MAC address for the bridge Paolo Bonzini
2013-03-22 21:37 ` Corey Bryant
2013-03-22 22:09 ` Paolo Bonzini
2013-03-25 13:22 ` Corey Bryant
2013-03-25 13:25 ` Corey Bryant [this message]
2013-04-01 20:48 ` Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51505035.6090503@linux.vnet.ibm.com \
--to=coreyb@linux.vnet.ibm.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.