All of lore.kernel.org
 help / color / mirror / Atom feed
From: Fabien Chouteau <chouteau@adacore.com>
To: Corey Bryant <coreyb@linux.vnet.ibm.com>
Cc: markmc@redhat.com, aliguori@us.ibm.com,
	rmarwah@linux.vnet.ibm.com, qemu-devel@nongnu.org,
	pbonzini@redhat.com, afaerber@suse.de
Subject: Re: [Qemu-devel] [PATCH] net: Add interface to bridge when SIOCBRADDIF isn't available
Date: Fri, 13 Jul 2012 17:16:21 +0200	[thread overview]
Message-ID: <50003BC5.2000200@adacore.com> (raw)
In-Reply-To: <1342099471-4993-1-git-send-email-coreyb@linux.vnet.ibm.com>

On 07/12/2012 03:24 PM, Corey Bryant wrote:
> The bridge helper uses the SIOCBRADDIF ioctl to add an inteface to
> a bridge.  SIOCBRADDIF is not available on old Linux versions.  This
> patch adds support to use the SIOCDEVPRIVATE ioctl with BRCTL_ADD_IF
> if SIOCBRADDIF is not available.
> 

I don't have time to test it, but the code looks good and in compiles.

Acked-by: Fabien Chouteau <chouteau@adacore.com>

> Reported-by: Fabien Chouteau <chouteau@adacore.com>
> Signed-off-by: Corey Bryant <coreyb@linux.vnet.ibm.com>
> ---
>  qemu-bridge-helper.c |   24 +++++++++++++++++++++---
>  1 file changed, 21 insertions(+), 3 deletions(-)
> 
> diff --git a/qemu-bridge-helper.c b/qemu-bridge-helper.c
> index aec5008..652eec9 100644
> --- a/qemu-bridge-helper.c
> +++ b/qemu-bridge-helper.c
> @@ -35,6 +35,10 @@
>  
>  #include <linux/sockios.h>
>  
> +#ifndef SIOCBRADDIF
> +#include <linux/if_bridge.h>
> +#endif
> +
>  #include "qemu-queue.h"
>  
>  #include "net/tap-linux.h"
> @@ -221,6 +225,10 @@ static int drop_privileges(void)
>  int main(int argc, char **argv)
>  {
>      struct ifreq ifr;
> +#ifndef SIOCBRADDIF
> +    unsigned long ifargs[4];
> +#endif
> +    int ifindex;
>      int fd, ctlfd, unixfd = -1;
>      int use_vnet = 0;
>      int mtu;
> @@ -361,9 +369,19 @@ int main(int argc, char **argv)
>  
>      /* add the interface to the bridge */
>      prep_ifreq(&ifr, bridge);
> -    ifr.ifr_ifindex = if_nametoindex(iface);
> -
> -    if (ioctl(ctlfd, SIOCBRADDIF, &ifr) == -1) {
> +    ifindex = if_nametoindex(iface);
> +#ifndef SIOCBRADDIF
> +    ifargs[0] = BRCTL_ADD_IF;
> +    ifargs[1] = ifindex;
> +    ifargs[2] = 0;
> +    ifargs[3] = 0;
> +    ifr.ifr_data = (void *)ifargs;
> +    ret = ioctl(ctlfd, SIOCDEVPRIVATE, &ifr);
> +#else
> +    ifr.ifr_ifindex = ifindex;
> +    ret = ioctl(ctlfd, SIOCBRADDIF, &ifr);
> +#endif
> +    if (ret == -1) {
>          fprintf(stderr, "failed to add interface `%s' to bridge `%s': %s\n",
>                  iface, bridge, strerror(errno));
>          ret = EXIT_FAILURE;
> 


-- 
Fabien Chouteau

  reply	other threads:[~2012-07-13 15:16 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-12 13:24 [Qemu-devel] [PATCH] net: Add interface to bridge when SIOCBRADDIF isn't available Corey Bryant
2012-07-13 15:16 ` Fabien Chouteau [this message]
2012-07-24 11:20 ` Paolo Bonzini
2012-07-24 16:03 ` Stefan Hajnoczi

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=50003BC5.2000200@adacore.com \
    --to=chouteau@adacore.com \
    --cc=afaerber@suse.de \
    --cc=aliguori@us.ibm.com \
    --cc=coreyb@linux.vnet.ibm.com \
    --cc=markmc@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rmarwah@linux.vnet.ibm.com \
    /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.