qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Yuval Shaia <yuval.shaia@oracle.com>
To: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Cc: dmitry.fleytman@gmail.com, jasowang@redhat.com,
	eblake@redhat.com, armbru@redhat.com, pbonzini@redhat.com,
	qemu-devel@nongnu.org, shamir.rabinovitch@oracle.com,
	cohuck@redhat.com, yuval.shaia@oracle.com
Subject: Re: [Qemu-devel] [PATCH v8 00/23] Add support for RDMA MAD
Date: Fri, 21 Dec 2018 16:43:43 +0200	[thread overview]
Message-ID: <20181221144342.GA5107@lap1> (raw)
In-Reply-To: <9265e109-6adc-0380-582c-f1038b7d3683@gmail.com>

On Fri, Dec 21, 2018 at 03:53:21PM +0200, Marcel Apfelbaum wrote:
> 
> 
> On 12/17/18 8:45 PM, Yuval Shaia wrote:
> > Hi all.
> 
> Hi Yuval,
> The series does not apply on master anymore,
> can you please rebase it and send ii again?
> 
> Thanks,
> Marcel

Yeah, conflict is because of a change made to qmp shutdown message in
commit ecd7a0d5bbf ("qmp: Add reason to SHUTDOWN and RESET events").

v9 sent.

Thanks
Yuval

> 
> > This is a major enhancement to the pvrdma device to allow it to work with
> > state of the art applications such as MPI.
> > 
> > As described in patch #5, MAD packets are management packets that are used
> > for many purposes including but not limited to communication layer above IB
> > verbs API.
> > 
> > Patch 1 exposes new external executable (under contrib) that aims to
> > address a specific limitation in the RDMA usrespace MAD stack.
> > 
> > This patch-set mainly present MAD enhancement but during the work on it i
> > came across some bugs and enhancement needed to be implemented before doing
> > any MAD coding. This is the role of patches 2 to 4, 7 to 9 and 15 to 17.
> > 
> > Patches 6 and 18 are cosmetic changes while not relevant to this patchset
> > still introduce with it since (at least for 6) hard to decouple.
> > 
> > Patches 12 to 15 couple pvrdma device with vmxnet3 device as this is the
> > configuration enforced by pvrdma driver in guest - a vmxnet3 device in
> > function 0 and pvrdma device in function 1 in the same PCI slot. Patch 12
> > moves needed code from vmxnet3 device to a new header file that can be used
> > by pvrdma code while Patches 13 to 15 use of it.
> > 
> > Along with this patch-set there is a parallel patch posted to libvirt to
> > apply the change needed there as part of the process implemented in patches
> > 10 and 11. This change is needed so that guest would be able to configure
> > any IP to the Ethernet function of the pvrdma device.
> > https://www.redhat.com/archives/libvir-list/2018-November/msg00135.html
> > 
> > Since we maintain external resources such as GIDs on host GID table we need
> > to do some cleanup before going down. This is the job of patches 19 and 20.
> > 
> > Patches 21 to 22 contain a fixes for bugs detected during the work on
> > processing VM shutdown notification.
> > 
> > Patch 23 fixes documentation.
> > 
> > Optional second review is welcome for:
> > [10] qapi: Define new QMP message for pvrdma
> > [17] hw/pvrdma: Fill error code in command's response
> > 
> > v1 -> v2:
> >      * Fix compilation issue detected when compiling for mingw.
> >      * Address comment from Eric Blake re version of QEMU in json
> >        message.
> >      * Fix example from QMP message in json file.
> >      * Fix case where a VM tries to remove an invalid GID from GID table.
> >      * rdmacm-mux: Cleanup entries in socket-gids table when socket is
> >        closed.
> >      * Cleanup resources (GIDs, QPs etc) when VM goes down.
> > 
> > v2 -> v3:
> >      * Address comment from Cornelia Huck for patch #19.
> >      * Add some R-Bs from Marcel Apfelbaum and Dmitry Fleytman.
> >      * Update docs/pvrdma.txt with the changes made by this patchset.
> >      * Address comments from Shamir Rabinovitch for UMAD multiplexer.
> > 
> > v3 -> v4:
> >      * Address some comments from Marcel.
> >      * Add some R-Bs from Cornelia Huck and Shamir Rabinovitch.
> > 
> > v4 -> v5:
> >      * Add one more patch that deletes code that performs unneeded (and
> >        buggy) cleanup of resources during VM shutdown.
> >      * Fix race condition that might happen when MAD response arrive before
> >        ack for the send is received.
> >      * Based qapi patch on Eric Blake's patch "qapi: Reduce Makefile
> >        boilerplate" per Markus Armbruster's suggestion.
> >        Please note that this will cause build error until Eric's patch will
> >        be applied.
> >      * Add some debug log messages to rdmacm-mux.
> > 
> > v5 -> v6
> >      * Add some R-Bs from Marcel.
> >      * Set hop_limit to 0xFF in mad_send.
> >      * Accept comment from Marcel re clearing response in execute_command.
> >      * Change version for QMP message per Eric Blake comment.
> >      * Add some notes to docs/pvrdma.txt as suggested by Marcel.
> >      * in rdmacm-mux, do not default to rxe0.
> > 
> > v6 -> v7:
> >      * Fix formating (checkpatch) in patch #17.
> >      * Undo wrong setting done in patch #17 (found after testing with
> >        Prasad's patchset).
> >      * Add Marcel's r-b for patches #11 and #17.
> > 
> > v7 -> v8:
> >      * Accept Eric's comments for patch 10 and 11
> > 
> > Thanks,
> > Yuval
> > 
> > Yuval Shaia (23):
> >    contrib/rdmacm-mux: Add implementation of RDMA User MAD multiplexer
> >    hw/rdma: Add ability to force notification without re-arm
> >    hw/rdma: Return qpn 1 if ibqp is NULL
> >    hw/rdma: Abort send-op if fail to create addr handler
> >    hw/rdma: Add support for MAD packets
> >    hw/pvrdma: Make function reset_device return void
> >    hw/pvrdma: Make default pkey 0xFFFF
> >    hw/pvrdma: Set the correct opcode for recv completion
> >    hw/pvrdma: Set the correct opcode for send completion
> >    qapi: Define new QMP message for pvrdma
> >    hw/pvrdma: Add support to allow guest to configure GID table
> >    vmxnet3: Move some definitions to header file
> >    hw/pvrdma: Make sure PCI function 0 is vmxnet3
> >    hw/rdma: Initialize node_guid from vmxnet3 mac address
> >    hw/pvrdma: Make device state depend on Ethernet function state
> >    hw/pvrdma: Fill all CQE fields
> >    hw/pvrdma: Fill error code in command's response
> >    hw/rdma: Remove unneeded code that handles more that one port
> >    vl: Introduce shutdown_notifiers
> >    hw/pvrdma: Clean device's resource when system is shutdown
> >    hw/rdma: Do not use bitmap_zero_extend to free bitmap
> >    hw/rdma: Do not call rdma_backend_del_gid on an empty gid
> >    docs: Update pvrdma device documentation
> > 
> >   MAINTAINERS                      |   2 +
> >   Makefile                         |   3 +
> >   Makefile.objs                    |   4 +-
> >   contrib/rdmacm-mux/Makefile.objs |   4 +
> >   contrib/rdmacm-mux/main.c        | 798 +++++++++++++++++++++++++++++++
> >   contrib/rdmacm-mux/rdmacm-mux.h  |  61 +++
> >   docs/pvrdma.txt                  | 126 ++++-
> >   hw/net/vmxnet3.c                 | 116 +----
> >   hw/net/vmxnet3_defs.h            | 133 ++++++
> >   hw/rdma/rdma_backend.c           | 515 +++++++++++++++++---
> >   hw/rdma/rdma_backend.h           |  28 +-
> >   hw/rdma/rdma_backend_defs.h      |  19 +-
> >   hw/rdma/rdma_rm.c                | 120 ++++-
> >   hw/rdma/rdma_rm.h                |  17 +-
> >   hw/rdma/rdma_rm_defs.h           |  21 +-
> >   hw/rdma/rdma_utils.h             |  25 +
> >   hw/rdma/vmw/pvrdma.h             |  10 +-
> >   hw/rdma/vmw/pvrdma_cmd.c         | 225 ++++-----
> >   hw/rdma/vmw/pvrdma_main.c        |  61 ++-
> >   hw/rdma/vmw/pvrdma_qp_ops.c      |  62 ++-
> >   include/sysemu/sysemu.h          |   1 +
> >   qapi/qapi-schema.json            |   1 +
> >   qapi/rdma.json                   |  38 ++
> >   vl.c                             |  15 +-
> >   24 files changed, 2022 insertions(+), 383 deletions(-)
> >   create mode 100644 contrib/rdmacm-mux/Makefile.objs
> >   create mode 100644 contrib/rdmacm-mux/main.c
> >   create mode 100644 contrib/rdmacm-mux/rdmacm-mux.h
> >   create mode 100644 hw/net/vmxnet3_defs.h
> >   create mode 100644 qapi/rdma.json
> > 
> 

      reply	other threads:[~2018-12-21 14:44 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-17 18:45 [Qemu-devel] [PATCH v8 00/23] Add support for RDMA MAD Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 01/23] contrib/rdmacm-mux: Add implementation of RDMA User MAD multiplexer Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 02/23] hw/rdma: Add ability to force notification without re-arm Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 03/23] hw/rdma: Return qpn 1 if ibqp is NULL Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 04/23] hw/rdma: Abort send-op if fail to create addr handler Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 05/23] hw/rdma: Add support for MAD packets Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 06/23] hw/pvrdma: Make function reset_device return void Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 07/23] hw/pvrdma: Make default pkey 0xFFFF Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 08/23] hw/pvrdma: Set the correct opcode for recv completion Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 09/23] hw/pvrdma: Set the correct opcode for send completion Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 10/23] qapi: Define new QMP message for pvrdma Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 11/23] hw/pvrdma: Add support to allow guest to configure GID table Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 12/23] vmxnet3: Move some definitions to header file Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 13/23] hw/pvrdma: Make sure PCI function 0 is vmxnet3 Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 14/23] hw/rdma: Initialize node_guid from vmxnet3 mac address Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 15/23] hw/pvrdma: Make device state depend on Ethernet function state Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 16/23] hw/pvrdma: Fill all CQE fields Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 17/23] hw/pvrdma: Fill error code in command's response Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 18/23] hw/rdma: Remove unneeded code that handles more that one port Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 19/23] vl: Introduce shutdown_notifiers Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 20/23] hw/pvrdma: Clean device's resource when system is shutdown Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 21/23] hw/rdma: Do not use bitmap_zero_extend to free bitmap Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 22/23] hw/rdma: Do not call rdma_backend_del_gid on an empty gid Yuval Shaia
2018-12-17 18:45 ` [Qemu-devel] [PATCH v8 23/23] docs: Update pvrdma device documentation Yuval Shaia
2018-12-21 13:53 ` [Qemu-devel] [PATCH v8 00/23] Add support for RDMA MAD Marcel Apfelbaum
2018-12-21 14:43   ` Yuval Shaia [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20181221144342.GA5107@lap1 \
    --to=yuval.shaia@oracle.com \
    --cc=armbru@redhat.com \
    --cc=cohuck@redhat.com \
    --cc=dmitry.fleytman@gmail.com \
    --cc=eblake@redhat.com \
    --cc=jasowang@redhat.com \
    --cc=marcel.apfelbaum@gmail.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=shamir.rabinovitch@oracle.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).