Re: [Qemu-devel] [PATCH 2/4] virtio-input: core code base class

2015-03-19 Thread Gerd Hoffmann
Hi, if yes we'll eventually want to take the header from there. Yes, we can do that, for both linux input layer and virtio-input (once merged upstream) headers, then go build this on non-linux hosts too. I'd suggest to do that as incremental patch, after guest driver

Re: [Qemu-devel] [PATCH 2/4] virtio-input: core code base class

2015-03-19 Thread Michael S. Tsirkin
On Thu, Mar 19, 2015 at 08:45:29AM +0100, Gerd Hoffmann wrote: Hi, if yes we'll eventually want to take the header from there. Yes, we can do that, for both linux input layer and virtio-input (once merged upstream) headers, then go build this on non-linux hosts too.

Re: [Qemu-devel] [PATCH 2/4] virtio-input: core code base class

2015-03-19 Thread Gerd Hoffmann
Hi, Adding not-yet upstream files to the list of headers to sync over from linux isn't sane IMHO. cheers, Gerd Of course it isn't. But you can sync it manually. Once it's upstream, add it to list for automated sync. Hmm, well, not that simple, there is no whitelist for

Re: [Qemu-devel] [PATCH 2/4] virtio-input: core code base class

2015-03-19 Thread Michael S. Tsirkin
On Thu, Mar 19, 2015 at 12:33:01PM +0100, Gerd Hoffmann wrote: Hi, Adding not-yet upstream files to the list of headers to sync over from linux isn't sane IMHO. cheers, Gerd Of course it isn't. But you can sync it manually. Once it's upstream, add it to list for

Re: [Qemu-devel] [PATCH 2/4] virtio-input: core code base class

2015-03-19 Thread Gerd Hoffmann
On Do, 2015-03-19 at 12:37 +0100, Michael S. Tsirkin wrote: On Thu, Mar 19, 2015 at 12:33:01PM +0100, Gerd Hoffmann wrote: Hi, Adding not-yet upstream files to the list of headers to sync over from linux isn't sane IMHO. cheers, Gerd Of course it isn't.

Re: [Qemu-devel] [PATCH 2/4] virtio-input: core code base class

2015-03-19 Thread Michael S. Tsirkin
On Thu, Mar 19, 2015 at 03:38:59PM +0100, Gerd Hoffmann wrote: On Do, 2015-03-19 at 12:37 +0100, Michael S. Tsirkin wrote: On Thu, Mar 19, 2015 at 12:33:01PM +0100, Gerd Hoffmann wrote: Hi, Adding not-yet upstream files to the list of headers to sync over from linux isn't

Re: [Qemu-devel] [PATCH 2/4] virtio-input: core code base class

2015-03-18 Thread Michael S. Tsirkin
On Wed, Mar 18, 2015 at 03:00:12PM +0100, Gerd Hoffmann wrote: This patch adds virtio-input support to qemu. It brings a abstract base class providing core support, other classes can build on it to actually implement input devices. virtio-input basically sends linux input layer events

[Qemu-devel] [PATCH 2/4] virtio-input: core code base class

2015-03-18 Thread Gerd Hoffmann
This patch adds virtio-input support to qemu. It brings a abstract base class providing core support, other classes can build on it to actually implement input devices. virtio-input basically sends linux input layer events (evdev) over virtio. Signed-off-by: Gerd Hoffmann kra...@redhat.com ---

Re: [Qemu-devel] [PATCH 2/4] virtio-input: core code base class

2015-03-18 Thread Gerd Hoffmann
On Mi, 2015-03-18 at 15:31 +0100, Michael S. Tsirkin wrote: On Wed, Mar 18, 2015 at 03:00:12PM +0100, Gerd Hoffmann wrote: This patch adds virtio-input support to qemu. It brings a abstract base class providing core support, other classes can build on it to actually implement input

Re: [Qemu-devel] [PATCH 2/4] virtio-input: core code base class

2015-03-18 Thread Michael S. Tsirkin
On Wed, Mar 18, 2015 at 04:31:53PM +0100, Gerd Hoffmann wrote: On Mi, 2015-03-18 at 15:31 +0100, Michael S. Tsirkin wrote: On Wed, Mar 18, 2015 at 03:00:12PM +0100, Gerd Hoffmann wrote: This patch adds virtio-input support to qemu. It brings a abstract base class providing core support,

[Qemu-devel] [PATCH 2/4] virtio-input: core code base class

2014-06-03 Thread Gerd Hoffmann
This patch adds virtio-input support to qemu. It brings a abstract base class providing core support, other classes can build on it to actually implement input devices. virtio-input basically sends linux input layer events (evdev) over virtio. Signed-off-by: Gerd Hoffmann kra...@redhat.com ---