[Qemu-devel] [PULL v2 00/27] vhost-user patches

Marc-André Lureau posted 27 patches 6 years, 5 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20171010213506.22989-1-marcandre.lureau@redhat.com
Test checkpatch passed
Test docker passed
Test s390x passed
contrib/libvhost-user/libvhost-user-glib.h |  32 ++
contrib/libvhost-user/libvhost-user.h      |   3 +-
include/glib-compat.h                      |   7 +
contrib/libvhost-user/libvhost-user-glib.c | 154 +++++++
contrib/libvhost-user/libvhost-user.c      |  29 +-
contrib/vhost-user-scsi/vhost-user-scsi.c  | 629 +++++------------------------
Makefile                                   |   3 +-
Makefile.objs                              |   1 -
contrib/libvhost-user/Makefile.objs        |   2 +-
tests/Makefile.include                     |   2 +-
10 files changed, 315 insertions(+), 547 deletions(-)
create mode 100644 contrib/libvhost-user/libvhost-user-glib.h
create mode 100644 contrib/libvhost-user/libvhost-user-glib.c
[Qemu-devel] [PULL v2 00/27] vhost-user patches
Posted by Marc-André Lureau 6 years, 5 months ago
The following changes since commit 567d0a19c7998fa366598b83d5a6e5f0759d3ea9:

  Merge remote-tracking branch 'remotes/ehabkost/tags/x86-and-machine-pull-request' into staging (2017-10-10 13:25:46 +0100)

are available in the Git repository at:

  https://github.com/elmarco/qemu.git tags/vus-pull-request

for you to fetch changes up to 53a2e1b523e9015423583e431f4229a0ad35e6cd:

  vhost-user-scsi: remove server_sock from VusDev (2017-10-10 23:31:09 +0200)

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

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

Marc-André Lureau (27):
  glib-compat: move G_SOURCE_CONTINUE/REMOVE there
  build-sys: fix libvhost-user.a build
  build-sys: make vhost-user-scsi depend on libvhost-user.a
  libvhost-user: drop dependency on glib
  libvhost-user: improve vu_queue_pop() doc
  vhost-user-scsi: use g_strdup()
  vhost-user-scsi: connect unix socket before allocating
  vhost-user-scsi: code style fixes
  vhost-user-scsi: use glib allocation
  vhost-user-scsi: glib calls that allocate don't return NULL
  vhost-user-scsi: also free the gtree
  vhost-user-scsi: remove vdev_scsi_find_by_vu()
  vhost-user-scsi: simplify unix path cleanup
  vhost-user-scsi: use NULL pointer
  vhost-user-scsi: assert() in iscsi_add_lun()
  vhost-user-scsi: remove vdev_scsi_add_iscsi_lun()
  vhost-user-scsi: remove VUS_MAX_LUNS
  vhost-user-scsi: remove unimplemented functions
  vhost-user-scsi: rename VUS types
  vhost-user-scsi: avoid use of iscsi_ namespace
  vhost-user-scsi: don't copy iscsi/scsi-lowlevel.h
  vhost-user-scsi: drop extra callback pointer
  vhost-user-scsi: simplify source handling
  vhost-user-scsi: use glib logging
  libvhost-user: add glib source helper
  vhost-user-scsi: use libvhost-user glib helper
  vhost-user-scsi: remove server_sock from VusDev

 contrib/libvhost-user/libvhost-user-glib.h |  32 ++
 contrib/libvhost-user/libvhost-user.h      |   3 +-
 include/glib-compat.h                      |   7 +
 contrib/libvhost-user/libvhost-user-glib.c | 154 +++++++
 contrib/libvhost-user/libvhost-user.c      |  29 +-
 contrib/vhost-user-scsi/vhost-user-scsi.c  | 629 +++++------------------------
 Makefile                                   |   3 +-
 Makefile.objs                              |   1 -
 contrib/libvhost-user/Makefile.objs        |   2 +-
 tests/Makefile.include                     |   2 +-
 10 files changed, 315 insertions(+), 547 deletions(-)
 create mode 100644 contrib/libvhost-user/libvhost-user-glib.h
 create mode 100644 contrib/libvhost-user/libvhost-user-glib.c

-- 
2.15.0.rc0.40.gaefcc5f6f


Re: [Qemu-devel] [PULL v2 00/27] vhost-user patches
Posted by Peter Maydell 6 years, 5 months ago
On 10 October 2017 at 22:34, Marc-André Lureau
<marcandre.lureau@redhat.com> wrote:
> The following changes since commit 567d0a19c7998fa366598b83d5a6e5f0759d3ea9:
>
>   Merge remote-tracking branch 'remotes/ehabkost/tags/x86-and-machine-pull-request' into staging (2017-10-10 13:25:46 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/elmarco/qemu.git tags/vus-pull-request
>
> for you to fetch changes up to 53a2e1b523e9015423583e431f4229a0ad35e6cd:
>
>   vhost-user-scsi: remove server_sock from VusDev (2017-10-10 23:31:09 +0200)
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM