[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH PULL 00/18] RDMA queue
From: |
Marcel Apfelbaum |
Subject: |
[Qemu-devel] [PATCH PULL 00/18] RDMA queue |
Date: |
Sat, 16 Mar 2019 16:34:03 +0200 |
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
- [Qemu-devel] [PATCH PULL 00/18] RDMA queue,
Marcel Apfelbaum <=
- [Qemu-devel] [PATCH PULL 01/18] contrib/rdmacm-mux: Fix out-of-bounds risk, Marcel Apfelbaum, 2019/03/16
- [Qemu-devel] [PATCH PULL 03/18] hw/rdma: Introduce protected qlist, Marcel Apfelbaum, 2019/03/16
- [Qemu-devel] [PATCH PULL 04/18] hw/rdma: Protect against concurrent execution of poll_cq, Marcel Apfelbaum, 2019/03/16
- [Qemu-devel] [PATCH PULL 05/18] hw/pvrdma: Collect debugging statistics, Marcel Apfelbaum, 2019/03/16
- [Qemu-devel] [PATCH PULL 07/18] hw/rdma: Free all MAD receive buffers when device is closed, Marcel Apfelbaum, 2019/03/16
- [Qemu-devel] [PATCH PULL 10/18] hw/pvrdma: Delete pvrdma_exit function, Marcel Apfelbaum, 2019/03/16
- [Qemu-devel] [PATCH PULL 11/18] hw/pvrdma: Unregister from shutdown notifier when device goes down, Marcel Apfelbaum, 2019/03/16
- [Qemu-devel] [PATCH PULL 09/18] hw/pvrdma: Delete unneeded function argument, Marcel Apfelbaum, 2019/03/16
- [Qemu-devel] [PATCH PULL 08/18] hw/rdma: Free all receive buffers when QP is destroyed, Marcel Apfelbaum, 2019/03/16
- [Qemu-devel] [PATCH PULL 12/18] hw/pvrdma: Provide correct value to object_get_typename, Marcel Apfelbaum, 2019/03/16