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

Marcel Apfelbaum posted 15 patches 7 years, 2 months ago
Failed in applying to current master (apply log)
Test checkpatch passed
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test docker-quick@centos7 passed
There is a newer version of this series
configure                   |  55 ++++++++++++++-
hw/rdma/Makefile.objs       |   2 +-
hw/rdma/rdma_backend.c      | 105 +++++++++++++++++++++------
hw/rdma/rdma_backend.h      |   4 +-
hw/rdma/rdma_backend_defs.h |   3 +-
hw/rdma/rdma_rm.c           |  63 ++++++++---------
hw/rdma/rdma_rm_defs.h      |  10 +--
hw/rdma/rdma_utils.c        |   4 ++
hw/rdma/rdma_utils.h        |  16 +++--
hw/rdma/vmw/pvrdma.h        |   3 +
hw/rdma/vmw/pvrdma_cmd.c    |   9 +--
hw/rdma/vmw/pvrdma_main.c   | 137 +++++++++++++++++++++---------------
hw/rdma/vmw/pvrdma_qp_ops.c |   5 +-
13 files changed, 280 insertions(+), 136 deletions(-)
[Qemu-devel] [PATCH PULL 00/15] RDMA queue
Posted by Marcel Apfelbaum 7 years, 2 months ago
The following changes since commit 0abaa41d936becd914a16ee1fe2a981d96d19428:

  Merge remote-tracking branch 'remotes/ehabkost/tags/x86-next-pull-request' into staging (2018-08-17 09:46:00 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 21ab34c9543fe1b6d31b3edbd01a397e7e090d00:

  config: split PVRDMA from RDMA (2018-08-18 18:01:34 +0300)

----------------------------------------------------------------
Various pvrdma fixes
Split pvrdma from rdma in config

----------------------------------------------------------------
Marcel Apfelbaum (2):
  hw/pvrdma: remove not needed include
  config: split PVRDMA from RDMA

Yuval Shaia (13):
  hw/rdma: Make distinction between device init and start modes
  hw/pvrdma: Bugfix - provide the correct attr_mask to query_qp
  hw/rdma: Modify debug macros
  hw/pvrdma: Clean CQE before use
  hw/pvrdma: Make default pkey 0xFFFF
  hw/rdma: Delete useless structure RdmaRmUserMR
  hw/rdma: Do not allocate memory for non-dma MR
  hw/rdma: Reorder resource cleanup
  hw/pvrdma: Cosmetic change - indent right
  hw/rdma: Cosmetic change - move to generic function
  hw/rdma: Print backend QP number in hex format
  hw/rdma: Bugfix - Support non-aligned buffers
  hw/rdma: Add reference to pci_dev in backend_dev

 configure                   |  55 ++++++++++++++-
 hw/rdma/Makefile.objs       |   2 +-
 hw/rdma/rdma_backend.c      | 105 +++++++++++++++++++++------
 hw/rdma/rdma_backend.h      |   4 +-
 hw/rdma/rdma_backend_defs.h |   3 +-
 hw/rdma/rdma_rm.c           |  63 ++++++++---------
 hw/rdma/rdma_rm_defs.h      |  10 +--
 hw/rdma/rdma_utils.c        |   4 ++
 hw/rdma/rdma_utils.h        |  16 +++--
 hw/rdma/vmw/pvrdma.h        |   3 +
 hw/rdma/vmw/pvrdma_cmd.c    |   9 +--
 hw/rdma/vmw/pvrdma_main.c   | 137 +++++++++++++++++++++---------------
 hw/rdma/vmw/pvrdma_qp_ops.c |   5 +-
 13 files changed, 280 insertions(+), 136 deletions(-)

-- 
2.17.1


Re: [Qemu-devel] [PATCH PULL 00/15] RDMA queue
Posted by Peter Maydell 7 years, 2 months ago
On 19 August 2018 at 21:22, Marcel Apfelbaum <marcel.apfelbaum@gmail.com> wrote:
> The following changes since commit 0abaa41d936becd914a16ee1fe2a981d96d19428:
>
>   Merge remote-tracking branch 'remotes/ehabkost/tags/x86-next-pull-request' into staging (2018-08-17 09:46:00 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/marcel-apf/qemu tags/rdma-pull-request
>
> for you to fetch changes up to 21ab34c9543fe1b6d31b3edbd01a397e7e090d00:
>
>   config: split PVRDMA from RDMA (2018-08-18 18:01:34 +0300)
>
> ----------------------------------------------------------------
> Various pvrdma fixes
> Split pvrdma from rdma in config
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM