From: Leon Romanovsky <leon@kernel.org>
To: Emily Deng <Emily.Deng@amd.com>
Cc: bhelgaas@google.com, alex.williamson@redhat.com,
linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org,
kvm@vger.kernel.org, Jerry.Jiang@amd.com, Andy.Zhang@amd.com,
HaiJun.Chang@amd.com, Monk.Liu@amd.com, Horace.Chen@amd.com,
ZhenGuo.Yin@amd.com
Subject: Re: [PATCH 1/2] PCI: Add VF reset notification to PF's VFIO user mode driver
Date: Mon, 5 Feb 2024 11:04:38 +0200 [thread overview]
Message-ID: <20240205090438.GB6294@unreal> (raw)
In-Reply-To: <20240205071538.2665628-1-Emily.Deng@amd.com>
On Mon, Feb 05, 2024 at 03:15:37PM +0800, Emily Deng wrote:
> VF doesn't have the ability to reset itself completely which will cause the
> hardware in unstable state. So notify PF driver when the VF has been reset
> to let the PF resets the VF completely, and remove the VF out of schedule.
I'm sorry but this explanation is not different from the previous
version. Please provide a better explanation of the problem, why it is
needed, which VFs need and can't reset themselves, how and why it worked
before e.t.c.
In addition, please follow kernel submission guidelines, write
changelong, add versions, cover letter e.t.c.
Thanks
>
> How to implement this?
> Add the reset callback function in pci_driver
>
> Implement the callback functin in VFIO_PCI driver.
>
> Add the VF RESET IRQ for user mode driver to let the user mode driver
> know the VF has been reset.
>
> Signed-off-by: Emily Deng <Emily.Deng@amd.com>
> ---
> drivers/pci/pci.c | 8 ++++++++
> include/linux/pci.h | 1 +
> 2 files changed, 9 insertions(+)
>
> diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
> index 60230da957e0..aca937b05531 100644
> --- a/drivers/pci/pci.c
> +++ b/drivers/pci/pci.c
> @@ -4780,6 +4780,14 @@ EXPORT_SYMBOL_GPL(pcie_flr);
> */
> int pcie_reset_flr(struct pci_dev *dev, bool probe)
> {
> + struct pci_dev *pf_dev;
> +
> + if (dev->is_virtfn) {
> + pf_dev = dev->physfn;
> + if (pf_dev->driver->sriov_vf_reset_notification)
> + pf_dev->driver->sriov_vf_reset_notification(pf_dev, dev);
> + }
> +
> if (dev->dev_flags & PCI_DEV_FLAGS_NO_FLR_RESET)
> return -ENOTTY;
>
> diff --git a/include/linux/pci.h b/include/linux/pci.h
> index c69a2cc1f412..4fa31d9b0aa7 100644
> --- a/include/linux/pci.h
> +++ b/include/linux/pci.h
> @@ -926,6 +926,7 @@ struct pci_driver {
> int (*sriov_configure)(struct pci_dev *dev, int num_vfs); /* On PF */
> int (*sriov_set_msix_vec_count)(struct pci_dev *vf, int msix_vec_count); /* On PF */
> u32 (*sriov_get_vf_total_msix)(struct pci_dev *pf);
> + void (*sriov_vf_reset_notification)(struct pci_dev *pf, struct pci_dev *vf);
> const struct pci_error_handlers *err_handler;
> const struct attribute_group **groups;
> const struct attribute_group **dev_groups;
> --
> 2.36.1
>
>
next prev parent reply other threads:[~2024-02-05 9:04 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-05 7:15 [PATCH 1/2] PCI: Add VF reset notification to PF's VFIO user mode driver Emily Deng
2024-02-05 7:15 ` [PATCH 2/2] VFIO/PCI: " Emily Deng
2024-02-05 9:04 ` Leon Romanovsky [this message]
[not found] ` <BL1PR12MB526972B4E7CF6B2C993A2E6984462@BL1PR12MB5269.namprd12.prod.outlook.com>
2024-02-06 20:06 ` [PATCH 1/2] PCI: " Alex Williamson
2024-02-05 16:43 ` Alex Williamson
[not found] ` <BL1PR12MB52695A24DBFFDB9809444D2284462@BL1PR12MB5269.namprd12.prod.outlook.com>
2024-02-06 19:38 ` Alex Williamson
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=20240205090438.GB6294@unreal \
--to=leon@kernel.org \
--cc=Andy.Zhang@amd.com \
--cc=Emily.Deng@amd.com \
--cc=HaiJun.Chang@amd.com \
--cc=Horace.Chen@amd.com \
--cc=Jerry.Jiang@amd.com \
--cc=Monk.Liu@amd.com \
--cc=ZhenGuo.Yin@amd.com \
--cc=alex.williamson@redhat.com \
--cc=bhelgaas@google.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
/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