[Qemu-devel] [PATCH PULL 00/18] RDMA queue

Marcel Apfelbaum posted 18 patches 5 years, 1 month ago
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test checkpatch passed
Test asan passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190316143421.8194-1-marcel.apfelbaum@gmail.com
Maintainers: "Dr. David Alan Gilbert" <dgilbert@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Yuval Shaia <yuval.shaia@oracle.com>
There is a newer version of this series
contrib/rdmacm-mux/main.c     |  35 ++-
hmp-commands-info.hx          |  14 ++
hmp.c                         |  27 +++
hmp.h                         |   1 +
hw/rdma/Makefile.objs         |   2 +-
hw/rdma/rdma.c                |  30 +++
hw/rdma/rdma_backend.c        | 518 +++++++++++++++++++++---------------------
hw/rdma/rdma_backend.h        |   7 +-
hw/rdma/rdma_backend_defs.h   |  10 +-
hw/rdma/rdma_rm.c             | 196 +++++++++-------
hw/rdma/rdma_rm.h             |  11 +-
hw/rdma/rdma_rm_defs.h        |  32 ++-
hw/rdma/rdma_utils.c          |  83 ++++++-
hw/rdma/rdma_utils.h          |  61 ++---
hw/rdma/trace-events          |  34 ++-
hw/rdma/vmw/pvrdma.h          |  12 +-
hw/rdma/vmw/pvrdma_cmd.c      | 121 +++-------
hw/rdma/vmw/pvrdma_dev_ring.c |  26 +--
hw/rdma/vmw/pvrdma_main.c     | 182 +++++++--------
hw/rdma/vmw/pvrdma_qp_ops.c   |  54 ++---
hw/rdma/vmw/trace-events      |  18 +-
include/hw/rdma/rdma.h        |  40 ++++
22 files changed, 865 insertions(+), 649 deletions(-)
create mode 100644 hw/rdma/rdma.c
create mode 100644 include/hw/rdma/rdma.h
[Qemu-devel] [PATCH PULL 00/18] RDMA queue
Posted by Marcel Apfelbaum 5 years, 1 month ago
The following changes since commit 8b088d3f8ab5642020d28fa0c2a8d938bc5f3592:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20190315' into staging (2019-03-15 11:39:42 +0000)

are available in the Git repository at:

  https://github.com/marcel-apf/qemu tags/rdma-pull-request

for you to fetch changes up to cb42a5867e7677a9fa1885a8436d3e7e8cbeeee9:

  hw/rdma: Fix the error prints in create_qp_rings() (2019-03-16 15:52:44 +0200)

----------------------------------------------------------------
RDMA queue

 * Another Clang compilation fix
 * Collect pvrdma debugging statistics
 * Various fixes for the pvrdma device

----------------------------------------------------------------
Kamal Heib (5):
      hw/rdma: Fix broken paths to docs/devel/tracing.txt
      hw/rdma: Remove unused parameter from rdma_poll_cq()
      hw/rdma: Use {} instead of {0}
      hw/pvrdma: Fix zero-initialization of resp in {query/modify}_qp
      hw/rdma: Fix the error prints in create_qp_rings()

Marcel Apfelbaum (1):
      hw/rdma: another clang compilation fix

Yuval Shaia (12):
      contrib/rdmacm-mux: Fix out-of-bounds risk
      hw/rdma: Switch to generic error reporting way
      hw/rdma: Introduce protected qlist
      hw/rdma: Protect against concurrent execution of poll_cq
      hw/pvrdma: Collect debugging statistics
      {hmp, hw/pvrdma}: Expose device internals via monitor interface
      hw/rdma: Free all MAD receive buffers when device is closed
      hw/rdma: Free all receive buffers when QP is destroyed
      hw/pvrdma: Delete unneeded function argument
      hw/pvrdma: Delete pvrdma_exit function
      hw/pvrdma: Unregister from shutdown notifier when device goes down
      hw/pvrdma: Provide correct value to object_get_typename

 contrib/rdmacm-mux/main.c     |  35 ++-
 hmp-commands-info.hx          |  14 ++
 hmp.c                         |  27 +++
 hmp.h                         |   1 +
 hw/rdma/Makefile.objs         |   2 +-
 hw/rdma/rdma.c                |  30 +++
 hw/rdma/rdma_backend.c        | 518 +++++++++++++++++++++---------------------
 hw/rdma/rdma_backend.h        |   7 +-
 hw/rdma/rdma_backend_defs.h   |  10 +-
 hw/rdma/rdma_rm.c             | 196 +++++++++-------
 hw/rdma/rdma_rm.h             |  11 +-
 hw/rdma/rdma_rm_defs.h        |  32 ++-
 hw/rdma/rdma_utils.c          |  83 ++++++-
 hw/rdma/rdma_utils.h          |  61 ++---
 hw/rdma/trace-events          |  34 ++-
 hw/rdma/vmw/pvrdma.h          |  12 +-
 hw/rdma/vmw/pvrdma_cmd.c      | 121 +++-------
 hw/rdma/vmw/pvrdma_dev_ring.c |  26 +--
 hw/rdma/vmw/pvrdma_main.c     | 182 +++++++--------
 hw/rdma/vmw/pvrdma_qp_ops.c   |  54 ++---
 hw/rdma/vmw/trace-events      |  18 +-
 include/hw/rdma/rdma.h        |  40 ++++
 22 files changed, 865 insertions(+), 649 deletions(-)
 create mode 100644 hw/rdma/rdma.c
 create mode 100644 include/hw/rdma/rdma.h

-- 
2.17.1


Re: [Qemu-devel] [PATCH PULL 00/18] RDMA queue
Posted by Peter Maydell 5 years, 1 month ago
On Sat, 16 Mar 2019 at 14:34, Marcel Apfelbaum
<marcel.apfelbaum@gmail.com> wrote:
>
> The following changes since commit 8b088d3f8ab5642020d28fa0c2a8d938bc5f3592:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20190315' into staging (2019-03-15 11:39:42 +0000)
>
> are available in the Git repository at:
>
>   https://github.com/marcel-apf/qemu tags/rdma-pull-request
>
> for you to fetch changes up to cb42a5867e7677a9fa1885a8436d3e7e8cbeeee9:
>
>   hw/rdma: Fix the error prints in create_qp_rings() (2019-03-16 15:52:44 +0200)
>
> ----------------------------------------------------------------
> RDMA queue
>
>  * Another Clang compilation fix
>  * Collect pvrdma debugging statistics
>  * Various fixes for the pvrdma device
>
> ----------------------------------------------------------------

Applied, thanks.

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

-- PMM