mbox series

[v3,00/11] support software live migration

Message ID 20240617062708.2932037-1-chaoyong.he@corigine.com (mailing list archive)
Headers
Series support software live migration |

Message

Chaoyong He June 17, 2024, 6:26 a.m. UTC
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(-)
  

Comments

Maxime Coquelin June 18, 2024, 7:45 a.m. UTC | #1
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?

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(-)
>
  
Chaoyong He June 18, 2024, 7:48 a.m. UTC | #2
> -----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(-)
> >