[Qemu-devel] [PULL 0/7] Input 20190513 v2 patches

Gerd Hoffmann posted 7 patches 4 years, 11 months ago
Test asan passed
Test docker-clang@ubuntu passed
Test checkpatch passed
Test docker-mingw@fedora passed
Failed in applying to current master (apply log)
include/hw/virtio/virtio-input.h      |  14 ++
include/sysemu/vhost-user-backend.h   |  57 +++++++
backends/vhost-user.c                 | 209 ++++++++++++++++++++++++++
contrib/libvhost-user/libvhost-user.c |  10 +-
hw/input/vhost-user-input.c           | 129 ++++++++++++++++
hw/virtio/vhost-user-input-pci.c      |  50 ++++++
hw/virtio/virtio-input-host-pci.c     |   7 +-
util/qemu-sockets.c                   |  18 +--
MAINTAINERS                           |   3 +
backends/Makefile.objs                |   2 +
hw/input/Kconfig                      |   7 +-
hw/input/Makefile.objs                |   5 +-
hw/virtio/Makefile.objs               |   1 +
13 files changed, 484 insertions(+), 28 deletions(-)
create mode 100644 include/sysemu/vhost-user-backend.h
create mode 100644 backends/vhost-user.c
create mode 100644 hw/input/vhost-user-input.c
create mode 100644 hw/virtio/vhost-user-input-pci.c
[Qemu-devel] [PULL 0/7] Input 20190513 v2 patches
Posted by Gerd Hoffmann 4 years, 11 months ago
The following changes since commit 812b835fb4d23dd108b2f9802158472d50b73579:

  Merge remote-tracking branch 'remotes/maxreitz/tags/pull-block-2019-05-07' into staging (2019-05-09 16:31:12 +0100)

are available in the Git repository at:

  git://git.kraxel.org/qemu tags/input-20190513-v2-pull-request

for you to fetch changes up to 503591cb6c28c3ddbe38ea50cab2f0dd3d6cd929:

  virtio-input: fix Kconfig dependency and Makefile (2019-05-13 08:49:30 +0200)

----------------------------------------------------------------
input: add vhost-user-input, virtio-input fixes.

----------------------------------------------------------------

Gerd Hoffmann (2):
  virtio-input-host-pci: cleanup types
  virtio-input: fix Kconfig dependency and Makefile

Marc-André Lureau (5):
  libvhost-user: fix -Waddress-of-packed-member
  libvhost-user: add PROTOCOL_F_CONFIG if {set, get}_config
  Add vhost-user-backend
  Add vhost-user-input-pci
  util: simplify unix_listen()

 include/hw/virtio/virtio-input.h      |  14 ++
 include/sysemu/vhost-user-backend.h   |  57 +++++++
 backends/vhost-user.c                 | 209 ++++++++++++++++++++++++++
 contrib/libvhost-user/libvhost-user.c |  10 +-
 hw/input/vhost-user-input.c           | 129 ++++++++++++++++
 hw/virtio/vhost-user-input-pci.c      |  50 ++++++
 hw/virtio/virtio-input-host-pci.c     |   7 +-
 util/qemu-sockets.c                   |  18 +--
 MAINTAINERS                           |   3 +
 backends/Makefile.objs                |   2 +
 hw/input/Kconfig                      |   7 +-
 hw/input/Makefile.objs                |   5 +-
 hw/virtio/Makefile.objs               |   1 +
 13 files changed, 484 insertions(+), 28 deletions(-)
 create mode 100644 include/sysemu/vhost-user-backend.h
 create mode 100644 backends/vhost-user.c
 create mode 100644 hw/input/vhost-user-input.c
 create mode 100644 hw/virtio/vhost-user-input-pci.c

-- 
2.18.1


Re: [Qemu-devel] [PULL 0/7] Input 20190513 v2 patches
Posted by Peter Maydell 4 years, 11 months ago
On Mon, 13 May 2019 at 08:13, Gerd Hoffmann <kraxel@redhat.com> wrote:
>
> The following changes since commit 812b835fb4d23dd108b2f9802158472d50b73579:
>
>   Merge remote-tracking branch 'remotes/maxreitz/tags/pull-block-2019-05-07' into staging (2019-05-09 16:31:12 +0100)
>
> are available in the Git repository at:
>
>   git://git.kraxel.org/qemu tags/input-20190513-v2-pull-request
>
> for you to fetch changes up to 503591cb6c28c3ddbe38ea50cab2f0dd3d6cd929:
>
>   virtio-input: fix Kconfig dependency and Makefile (2019-05-13 08:49:30 +0200)
>
> ----------------------------------------------------------------
> input: add vhost-user-input, virtio-input fixes.
>
> ----------------------------------------------------------------

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.1
for any user-visible changes.

-- PMM