[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH V5 17/25] vfio-pci: cpr part 2
|
From: |
Alex Williamson |
|
Subject: |
Re: [PATCH V5 17/25] vfio-pci: cpr part 2 |
|
Date: |
Fri, 16 Jul 2021 14:51:33 -0600 |
On Wed, 7 Jul 2021 10:20:26 -0700
Steve Sistare <steven.sistare@oracle.com> wrote:
> Finish cpr for vfio-pci by preserving eventfd's and vector state.
>
> Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
> ---
> hw/vfio/pci.c | 118
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 116 insertions(+), 2 deletions(-)
>
> diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
> index 0f5c542..07bd360 100644
> --- a/hw/vfio/pci.c
> +++ b/hw/vfio/pci.c
...
> @@ -3295,14 +3329,91 @@ static void vfio_merge_config(VFIOPCIDevice
*vdev)
> g_free(phys_config);
> }
>
> +static int vfio_pci_pre_save(void *opaque)
> +{
> + VFIOPCIDevice *vdev = opaque;
> + PCIDevice *pdev = &vdev->pdev;
> + int i;
> +
> + if (vfio_pci_read_config(pdev, PCI_INTERRUPT_PIN, 1)) {
> + error_report("%s: cpr does not support vfio-pci INTX",
> + vdev->vbasedev.name);
> + }
You're not only not supporting INTx, but devices that support INTx, so
this only works on VFs. Why? Is this just out of scope or is there
something fundamentally difficult about it?
This makes me suspect there's a gap in INTx routing setup if it's more
than just another eventfd to store and setup. If we hot-add a device
using INTx after cpr restart, are we going to find problems? Thanks,
Alex
- Re: [PATCH V5 20/25] chardev: cpr framework, (continued)
[PATCH V5 16/25] vfio-pci: cpr part 1, Steve Sistare, 2021/07/07
[PATCH V5 17/25] vfio-pci: cpr part 2, Steve Sistare, 2021/07/07
- Re: [PATCH V5 17/25] vfio-pci: cpr part 2,
Alex Williamson <=
- Re: [PATCH V5 17/25] vfio-pci: cpr part 2, Steven Sistare, 2021/07/19
- Re: [PATCH V5 17/25] vfio-pci: cpr part 2, Alex Williamson, 2021/07/19
- Re: [PATCH V5 17/25] vfio-pci: cpr part 2, Steven Sistare, 2021/07/19
- Re: [PATCH V5 17/25] vfio-pci: cpr part 2, Zheng Chuan, 2021/07/28
- Re: [PATCH V5 17/25] vfio-pci: cpr part 2, Steven Sistare, 2021/07/30
- Re: [PATCH V5 17/25] vfio-pci: cpr part 2, Zheng Chuan, 2021/07/31
[PATCH V5 14/25] pci: export functions for cpr, Steve Sistare, 2021/07/07
[PATCH V5 15/25] vfio-pci: refactor for cpr, Steve Sistare, 2021/07/07
[PATCH V5 18/25] vhost: reset vhost devices upon cprsave, Steve Sistare, 2021/07/07
[PATCH V5 24/25] cpr: only-cpr-capable option, Steve Sistare, 2021/07/07