Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-06-02 Thread Peter Maydell
On 2 June 2016 at 16:34, Laurent Vivier wrote: > Le 24/05/2016 à 14:54, Riku Voipio a écrit : >> dropped since the build failed on squeeze. I take the simplest fix is to >> wrap all nl support #ifdef IFLA_PROTO_DOWN since that is the newest >> define available. > What do you think if instead I ad

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-06-02 Thread Peter Maydell
On 2 June 2016 at 16:45, Laurent Vivier wrote: > Le 02/06/2016 à 17:39, Peter Maydell a écrit : >> I don't think we need a command line switch for this -- we should only >> have those for cases where there's a reasonable user decision to >> say "I don't want feature X (even if my host might suppor

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-06-02 Thread Laurent Vivier
Le 02/06/2016 à 17:39, Peter Maydell a écrit : > On 2 June 2016 at 16:34, Laurent Vivier wrote: >> Le 24/05/2016 à 14:54, Riku Voipio a écrit : >>> dropped since the build failed on squeeze. I take the simplest fix is to >>> wrap all nl support #ifdef IFLA_PROTO_DOWN since that is the newest >>>

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-06-02 Thread Laurent Vivier
Le 24/05/2016 à 14:54, Riku Voipio a écrit : > On tiistaina 24. toukokuuta 2016 15.05.08 EEST, Riku Voipio wrote: >> Ok, fair enough, applied. > > dropped since the build failed on squeeze. I take the simplest fix is to > wrap all nl support #ifdef IFLA_PROTO_DOWN since that is the newest > defi

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-05-25 Thread Laurent Vivier
Le 25/05/2016 à 14:31, Peter Maydell a écrit : > On 25 May 2016 at 12:06, Riku Voipio wrote: >> Local docker images - these aren't exactly clean yet. But if people want >> I can look at publishing them in dockerhub. That said, for build testing >> docker images don't add much to plain chroots. >

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-05-25 Thread Peter Maydell
On 25 May 2016 at 12:06, Riku Voipio wrote: > Local docker images - these aren't exactly clean yet. But if people want > I can look at publishing them in dockerhub. That said, for build testing > docker images don't add much to plain chroots. It would be nice to, for instance, run the LTP tests t

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-05-25 Thread Riku Voipio
On Tue, May 24, 2016 at 02:08:14PM +0100, Peter Maydell wrote: > On 24 May 2016 at 13:54, Riku Voipio wrote: > > On tiistaina 24. toukokuuta 2016 15.05.08 EEST, Riku Voipio wrote: > >> > >> Ok, fair enough, applied. > > > > > > dropped since the build failed on squeeze. I take the simplest fix is

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-05-24 Thread Peter Maydell
On 24 May 2016 at 13:54, Riku Voipio wrote: > On tiistaina 24. toukokuuta 2016 15.05.08 EEST, Riku Voipio wrote: >> >> Ok, fair enough, applied. > > > dropped since the build failed on squeeze. I take the simplest fix is to > wrap all nl support #ifdef IFLA_PROTO_DOWN since that is the newest defi

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-05-24 Thread Riku Voipio
On tiistaina 24. toukokuuta 2016 15.05.08 EEST, Riku Voipio wrote: Ok, fair enough, applied. dropped since the build failed on squeeze. I take the simplest fix is to wrap all nl support #ifdef IFLA_PROTO_DOWN since that is the newest define available. /squeeze-container/qemu/linux-user/sysc

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-05-24 Thread Riku Voipio
On Tue, May 24, 2016 at 10:42:01AM +0200, Laurent Vivier wrote: > Le 24/05/2016 à 10:29, Riku Voipio a écrit : > > On Sun, May 22, 2016 at 06:56:18PM +0200, Laurent Vivier wrote: > >> It is now possible to register handlers to a file descriptor > >> to translate a data stream transiting by this fil

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-05-24 Thread Laurent Vivier
Le 24/05/2016 à 10:34, Peter Maydell a écrit : > On 24 May 2016 at 09:29, Riku Voipio wrote: >> On Sun, May 22, 2016 at 06:56:18PM +0200, Laurent Vivier wrote: >>> It is now possible to register handlers to a file descriptor >>> to translate a data stream transiting by this file descriptor. >>>

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-05-24 Thread Laurent Vivier
Le 24/05/2016 à 10:29, Riku Voipio a écrit : > On Sun, May 22, 2016 at 06:56:18PM +0200, Laurent Vivier wrote: >> It is now possible to register handlers to a file descriptor >> to translate a data stream transiting by this file descriptor. >> >> We can now decode netlink information coming from

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-05-24 Thread Peter Maydell
On 24 May 2016 at 09:29, Riku Voipio wrote: > On Sun, May 22, 2016 at 06:56:18PM +0200, Laurent Vivier wrote: >> It is now possible to register handlers to a file descriptor >> to translate a data stream transiting by this file descriptor. >> >> We can now decode netlink information coming from th

Re: [Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-05-24 Thread Riku Voipio
On Sun, May 22, 2016 at 06:56:18PM +0200, Laurent Vivier wrote: > It is now possible to register handlers to a file descriptor > to translate a data stream transiting by this file descriptor. > > We can now decode netlink information coming from the guest > and inject a translated one into the hos

[Qemu-devel] [PATCH v2 0/3] linux-user: netlink support

2016-05-22 Thread Laurent Vivier
Since commit: e36800c linux-user: add signalfd/signalfd4 syscalls It is now possible to register handlers to a file descriptor to translate a data stream transiting by this file descriptor. We can now decode netlink information coming from the guest and inject a translated one into the host, and