Re: [Qemu-devel] [PATCH] net: Add interface to bridge when SIOCBRADDIF isn't available

2012-07-24 Thread Stefan Hajnoczi
On Thu, Jul 12, 2012 at 09:24:31AM -0400, 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 av

Re: [Qemu-devel] [PATCH] net: Add interface to bridge when SIOCBRADDIF isn't available

2012-07-24 Thread Paolo Bonzini
Il 12/07/2012 15:24, Corey Bryant ha scritto: > 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. > > Re

Re: [Qemu-devel] [PATCH] net: Add interface to bridge when SIOCBRADDIF isn't available

2012-07-13 Thread Fabien Chouteau
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

[Qemu-devel] [PATCH] net: Add interface to bridge when SIOCBRADDIF isn't available

2012-07-12 Thread Corey Bryant
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. Reported-by: Fabien Chouteau Signed-off-by: Corey Bryant -