DPDK patches and discussions
 help / color / mirror / Atom feed
From: Chaoyong He <chaoyong.he@corigine.com>
To: Maxime Coquelin <maxime.coquelin@redhat.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Cc: oss-drivers <oss-drivers@corigine.com>
Subject: RE: [PATCH v3 00/11] support software live migration
Date: Tue, 18 Jun 2024 07:48:47 +0000	[thread overview]
Message-ID: <SJ0PR13MB5545B710EF3D4890178CF61D9ECE2@SJ0PR13MB5545.namprd13.prod.outlook.com> (raw)
In-Reply-To: <ac58f43d-6631-4ca1-8dac-dd5a4ac9168e@redhat.com>



> -----Original Message-----
> From: Maxime Coquelin <maxime.coquelin@redhat.com>
> Sent: Tuesday, June 18, 2024 3:46 PM
> To: Chaoyong He <chaoyong.he@corigine.com>; dev@dpdk.org
> Cc: oss-drivers <oss-drivers@corigine.com>
> Subject: Re: [PATCH v3 00/11] support software live migration
> 
> Hi,
> 
> The series looks good to me, will apply it shortly.
> 
> For next time, when sending a new revision, could you please apply all the R-
> By tags provided by reviewers on previous revision if the patch did not
> change?

Oh, I got it and will do just as you said for the next time.
Thanks for your kind remind!

> 
> Thanks,
> Maxime
> 
> On 6/17/24 08:26, Chaoyong He wrote:
> > This patch series aims to add the support of software live migration
> > feature for NFP vDPA device.
> >
> > ---
> > v3:
> > * Fix one compile error when using standard atomic.
> > v2:
> > * Adjust some spell in the commit message.
> > * Split out a commit to enable this feature.
> > ---
> >
> > Xinying Yu (11):
> >    mailmap: add new contributor
> >    vdpa/nfp: fix logic in hardware init
> >    vdpa/nfp: fix the logic of reconfiguration
> >    vdpa/nfp: refactor the logic of datapath update
> >    vdpa/nfp: add the live migration logic
> >    vdpa/nfp: add the interrupt logic of vring relay
> >    vdpa/nfp: setup the VF configure
> >    vdpa/nfp: recover the ring index on new host
> >    vdpa/nfp: setup vring relay thread
> >    vdpa/nfp: enable feature bits of live migration
> >    doc: update nfp document
> >
> >   .mailmap                             |   1 +
> >   doc/guides/vdpadevs/nfp.rst          |   9 +
> >   drivers/common/nfp/nfp_common_ctrl.h |  11 +-
> >   drivers/vdpa/nfp/nfp_vdpa.c          | 441 +++++++++++++++++++++++++--
> >   drivers/vdpa/nfp/nfp_vdpa_core.c     | 135 ++++++--
> >   drivers/vdpa/nfp/nfp_vdpa_core.h     |  14 +
> >   6 files changed, 565 insertions(+), 46 deletions(-)
> >


      reply	other threads:[~2024-06-18  7:49 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-26  7:48 [PATCH 00/10] " Chaoyong He
2024-04-26  7:48 ` [PATCH 01/10] mailmap: add new contributor Chaoyong He
2024-04-26  7:48 ` [PATCH 02/10] vdpa/nfp: fix logic in hardware init Chaoyong He
2024-06-13 11:41   ` Maxime Coquelin
2024-04-26  7:48 ` [PATCH 03/10] vdpa/nfp: fix the logic of reconfiguration Chaoyong He
2024-06-13 11:43   ` Maxime Coquelin
2024-06-14  2:30     ` Chaoyong He
2024-04-26  7:48 ` [PATCH 04/10] vdpa/nfp: refactor the logic of datapath update Chaoyong He
2024-06-13 11:45   ` Maxime Coquelin
2024-04-26  7:48 ` [PATCH 05/10] vdpa/nfp: add the live migration logic Chaoyong He
2024-06-13 11:49   ` Maxime Coquelin
2024-06-14  2:32     ` Chaoyong He
2024-04-26  7:48 ` [PATCH 06/10] vdpa/nfp: add the interrupt logic of vring relay Chaoyong He
2024-06-13 11:52   ` Maxime Coquelin
2024-04-26  7:48 ` [PATCH 07/10] vdpa/nfp: setup the VF configure Chaoyong He
2024-06-13 11:58   ` Maxime Coquelin
2024-06-14  2:33     ` Chaoyong He
2024-04-26  7:48 ` [PATCH 08/10] vdpa/nfp: recover the ring index on new host Chaoyong He
2024-06-13 12:00   ` Maxime Coquelin
2024-06-14  6:40     ` Chaoyong He
2024-04-26  7:48 ` [PATCH 09/10] vdpa/nfp: setup vring relay thread Chaoyong He
2024-06-13 12:03   ` Maxime Coquelin
2024-04-26  7:48 ` [PATCH 10/10] doc: update nfp document Chaoyong He
2024-04-26 21:31   ` Patrick Robb
2024-06-13 12:03   ` Maxime Coquelin
2024-05-30  8:51 ` [PATCH 00/10] support software live migration Chaoyong He
2024-06-14  7:01 ` [PATCH v2 00/11] " Chaoyong He
2024-06-14  7:01   ` [PATCH v2 01/11] mailmap: add new contributor Chaoyong He
2024-06-14  7:01   ` [PATCH v2 02/11] vdpa/nfp: fix logic in hardware init Chaoyong He
2024-06-14  7:01   ` [PATCH v2 03/11] vdpa/nfp: fix the logic of reconfiguration Chaoyong He
2024-06-14  7:01   ` [PATCH v2 04/11] vdpa/nfp: refactor the logic of datapath update Chaoyong He
2024-06-14  7:01   ` [PATCH v2 05/11] vdpa/nfp: add the live migration logic Chaoyong He
2024-06-14  7:01   ` [PATCH v2 06/11] vdpa/nfp: add the interrupt logic of vring relay Chaoyong He
2024-06-14  7:01   ` [PATCH v2 07/11] vdpa/nfp: setup the VF configure Chaoyong He
2024-06-14  7:01   ` [PATCH v2 08/11] vdpa/nfp: recover the ring index on new host Chaoyong He
2024-06-14  7:01   ` [PATCH v2 09/11] vdpa/nfp: setup vring relay thread Chaoyong He
2024-06-14  7:01   ` [PATCH v2 10/11] vdpa/nfp: enable feature bits of live migration Chaoyong He
2024-06-14  7:01   ` [PATCH v2 11/11] doc: update nfp document Chaoyong He
2024-06-17  6:26   ` [PATCH v3 00/11] support software live migration Chaoyong He
2024-06-17  6:26     ` [PATCH v3 01/11] mailmap: add new contributor Chaoyong He
2024-06-18  7:43       ` Maxime Coquelin
2024-06-17  6:26     ` [PATCH v3 02/11] vdpa/nfp: fix logic in hardware init Chaoyong He
2024-06-18  7:50       ` Maxime Coquelin
2024-06-17  6:27     ` [PATCH v3 03/11] vdpa/nfp: fix the logic of reconfiguration Chaoyong He
2024-06-18  7:51       ` Maxime Coquelin
2024-06-17  6:27     ` [PATCH v3 04/11] vdpa/nfp: refactor the logic of datapath update Chaoyong He
2024-06-18  8:12       ` Maxime Coquelin
2024-06-17  6:27     ` [PATCH v3 05/11] vdpa/nfp: add the live migration logic Chaoyong He
2024-06-18  8:12       ` Maxime Coquelin
2024-06-17  6:27     ` [PATCH v3 06/11] vdpa/nfp: add the interrupt logic of vring relay Chaoyong He
2024-06-18  8:14       ` Maxime Coquelin
2024-06-17  6:27     ` [PATCH v3 07/11] vdpa/nfp: setup the VF configure Chaoyong He
2024-06-18  8:19       ` Maxime Coquelin
2024-06-17  6:27     ` [PATCH v3 08/11] vdpa/nfp: recover the ring index on new host Chaoyong He
2024-06-18  8:20       ` Maxime Coquelin
2024-06-17  6:27     ` [PATCH v3 09/11] vdpa/nfp: setup vring relay thread Chaoyong He
2024-06-18  8:25       ` Maxime Coquelin
2024-06-17  6:27     ` [PATCH v3 10/11] vdpa/nfp: enable feature bits of live migration Chaoyong He
2024-06-18  8:25       ` Maxime Coquelin
2024-06-17  6:27     ` [PATCH v3 11/11] doc: update nfp document Chaoyong He
2024-06-18  8:25       ` Maxime Coquelin
2024-06-18  7:45     ` [PATCH v3 00/11] support software live migration Maxime Coquelin
2024-06-18  7:48       ` Chaoyong He [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=SJ0PR13MB5545B710EF3D4890178CF61D9ECE2@SJ0PR13MB5545.namprd13.prod.outlook.com \
    --to=chaoyong.he@corigine.com \
    --cc=dev@dpdk.org \
    --cc=maxime.coquelin@redhat.com \
    --cc=oss-drivers@corigine.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).