* [PATCH v2 0/2] Fixup changes to pci_epf_type_add_cfs()
@ 2023-05-15 7:43 Damien Le Moal
2023-05-15 7:43 ` [PATCH v2 1/2] PCI: endpoint: Improve pci_epf_type_add_cfs() Damien Le Moal
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Damien Le Moal @ 2023-05-15 7:43 UTC (permalink / raw)
To: linux-pci, Bjorn Helgaas, Lorenzo Pieralisi,
Kishon Vijay Abraham I, Manivannan Sadhasivami
A couple of patches to improve and document the changes to
pci_epf_type_add_cfs() done with patch
893f14fed7d3 ("PCI: endpoint: Move pci_epf_type_add_cfs() code").
Changes from v1:
- Changed error from EINVAL to ENODEV in patch 1
- Removed spurious line in kdoc comment in patch 2
Damien Le Moal (2):
PCI: endpoint: Improve pci_epf_type_add_cfs()
PCI: endpoint: Add kdoc description of pci_epf_type_add_cfs()
drivers/pci/endpoint/pci-ep-cfs.c | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
--
2.40.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2 1/2] PCI: endpoint: Improve pci_epf_type_add_cfs()
2023-05-15 7:43 [PATCH v2 0/2] Fixup changes to pci_epf_type_add_cfs() Damien Le Moal
@ 2023-05-15 7:43 ` Damien Le Moal
2023-05-17 7:41 ` Manivannan Sadhasivami
2023-05-15 7:43 ` [PATCH v2 2/2] PCI: endpoint: Add kdoc description of pci_epf_type_add_cfs() Damien Le Moal
2023-05-29 15:46 ` [PATCH v2 0/2] Fixup changes to pci_epf_type_add_cfs() Lorenzo Pieralisi
2 siblings, 1 reply; 6+ messages in thread
From: Damien Le Moal @ 2023-05-15 7:43 UTC (permalink / raw)
To: linux-pci, Bjorn Helgaas, Lorenzo Pieralisi,
Kishon Vijay Abraham I, Manivannan Sadhasivami
pci_epf_type_add_cfs() should not be called with an unbound EPF device,
that is, an epf device with epf->driver not set. For such case, replace
the NULL return in pci_epf_type_add_cfs() with a clear ERR_PTR(-ENODEV)
pointer error return.
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
---
drivers/pci/endpoint/pci-ep-cfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pci/endpoint/pci-ep-cfs.c b/drivers/pci/endpoint/pci-ep-cfs.c
index 0fb6c376166f..0bf5be986e9b 100644
--- a/drivers/pci/endpoint/pci-ep-cfs.c
+++ b/drivers/pci/endpoint/pci-ep-cfs.c
@@ -516,7 +516,7 @@ static struct config_group *pci_epf_type_add_cfs(struct pci_epf *epf,
if (!epf->driver) {
dev_err(&epf->dev, "epf device not bound to driver\n");
- return NULL;
+ return ERR_PTR(-ENODEV);
}
if (!epf->driver->ops->add_cfs)
--
2.40.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v2 2/2] PCI: endpoint: Add kdoc description of pci_epf_type_add_cfs()
2023-05-15 7:43 [PATCH v2 0/2] Fixup changes to pci_epf_type_add_cfs() Damien Le Moal
2023-05-15 7:43 ` [PATCH v2 1/2] PCI: endpoint: Improve pci_epf_type_add_cfs() Damien Le Moal
@ 2023-05-15 7:43 ` Damien Le Moal
2023-05-17 7:45 ` Manivannan Sadhasivami
2023-05-29 15:46 ` [PATCH v2 0/2] Fixup changes to pci_epf_type_add_cfs() Lorenzo Pieralisi
2 siblings, 1 reply; 6+ messages in thread
From: Damien Le Moal @ 2023-05-15 7:43 UTC (permalink / raw)
To: linux-pci, Bjorn Helgaas, Lorenzo Pieralisi,
Kishon Vijay Abraham I, Manivannan Sadhasivami
Restore an improve the kdoc function description for
pci_epf_type_add_cfs() that was removed with commit
893f14fed7d3 ("PCI: endpoint: Move pci_epf_type_add_cfs() code").
Fixes: 893f14fed7d3 ("PCI: endpoint: Move pci_epf_type_add_cfs() code")
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
---
drivers/pci/endpoint/pci-ep-cfs.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/pci/endpoint/pci-ep-cfs.c b/drivers/pci/endpoint/pci-ep-cfs.c
index 0bf5be986e9b..be042c3f50b5 100644
--- a/drivers/pci/endpoint/pci-ep-cfs.c
+++ b/drivers/pci/endpoint/pci-ep-cfs.c
@@ -509,6 +509,22 @@ static const struct config_item_type pci_epf_type = {
.ct_owner = THIS_MODULE,
};
+/**
+ * pci_epf_type_add_cfs() - Help function drivers to expose function specific
+ * attributes in configfs
+ * @epf: the EPF device that has to be configured using configfs
+ * @group: the parent configfs group (corresponding to entries in
+ * pci_epf_device_id)
+ *
+ * Invoke to expose function specific attributes in configfs.
+ *
+ * Return: A pointer to a config_group structure or NULL if the function driver
+ * does not have anything to expose (attributes configured by user) or if the
+ * the function driver does not implement the add_cfs() method.
+ *
+ * Returns an error pointer if this function is called for an unbound EPF device
+ * or if the EPF driver add_cfs() method fails.
+ */
static struct config_group *pci_epf_type_add_cfs(struct pci_epf *epf,
struct config_group *group)
{
--
2.40.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v2 1/2] PCI: endpoint: Improve pci_epf_type_add_cfs()
2023-05-15 7:43 ` [PATCH v2 1/2] PCI: endpoint: Improve pci_epf_type_add_cfs() Damien Le Moal
@ 2023-05-17 7:41 ` Manivannan Sadhasivami
0 siblings, 0 replies; 6+ messages in thread
From: Manivannan Sadhasivami @ 2023-05-17 7:41 UTC (permalink / raw)
To: Damien Le Moal
Cc: linux-pci, Bjorn Helgaas, Lorenzo Pieralisi,
Kishon Vijay Abraham I
On Mon, May 15, 2023 at 04:43:47PM +0900, Damien Le Moal wrote:
> pci_epf_type_add_cfs() should not be called with an unbound EPF device,
> that is, an epf device with epf->driver not set. For such case, replace
> the NULL return in pci_epf_type_add_cfs() with a clear ERR_PTR(-ENODEV)
> pointer error return.
>
> Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Manivannan Sadhasivami <manivannan.sadhasivam@linaro.org>
- Mani
> ---
> drivers/pci/endpoint/pci-ep-cfs.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/pci/endpoint/pci-ep-cfs.c b/drivers/pci/endpoint/pci-ep-cfs.c
> index 0fb6c376166f..0bf5be986e9b 100644
> --- a/drivers/pci/endpoint/pci-ep-cfs.c
> +++ b/drivers/pci/endpoint/pci-ep-cfs.c
> @@ -516,7 +516,7 @@ static struct config_group *pci_epf_type_add_cfs(struct pci_epf *epf,
>
> if (!epf->driver) {
> dev_err(&epf->dev, "epf device not bound to driver\n");
> - return NULL;
> + return ERR_PTR(-ENODEV);
> }
>
> if (!epf->driver->ops->add_cfs)
> --
> 2.40.1
>
--
மணிவண்ணன் சதாசிவம்
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2 2/2] PCI: endpoint: Add kdoc description of pci_epf_type_add_cfs()
2023-05-15 7:43 ` [PATCH v2 2/2] PCI: endpoint: Add kdoc description of pci_epf_type_add_cfs() Damien Le Moal
@ 2023-05-17 7:45 ` Manivannan Sadhasivami
0 siblings, 0 replies; 6+ messages in thread
From: Manivannan Sadhasivami @ 2023-05-17 7:45 UTC (permalink / raw)
To: Damien Le Moal
Cc: linux-pci, Bjorn Helgaas, Lorenzo Pieralisi,
Kishon Vijay Abraham I
On Mon, May 15, 2023 at 04:43:48PM +0900, Damien Le Moal wrote:
> Restore an improve the kdoc function description for
> pci_epf_type_add_cfs() that was removed with commit
> 893f14fed7d3 ("PCI: endpoint: Move pci_epf_type_add_cfs() code").
>
> Fixes: 893f14fed7d3 ("PCI: endpoint: Move pci_epf_type_add_cfs() code")
> Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Manivannan Sadhasivami <manivannan.sadhasivam@linaro.org>
- Mani
> ---
> drivers/pci/endpoint/pci-ep-cfs.c | 16 ++++++++++++++++
> 1 file changed, 16 insertions(+)
>
> diff --git a/drivers/pci/endpoint/pci-ep-cfs.c b/drivers/pci/endpoint/pci-ep-cfs.c
> index 0bf5be986e9b..be042c3f50b5 100644
> --- a/drivers/pci/endpoint/pci-ep-cfs.c
> +++ b/drivers/pci/endpoint/pci-ep-cfs.c
> @@ -509,6 +509,22 @@ static const struct config_item_type pci_epf_type = {
> .ct_owner = THIS_MODULE,
> };
>
> +/**
> + * pci_epf_type_add_cfs() - Help function drivers to expose function specific
> + * attributes in configfs
> + * @epf: the EPF device that has to be configured using configfs
> + * @group: the parent configfs group (corresponding to entries in
> + * pci_epf_device_id)
> + *
> + * Invoke to expose function specific attributes in configfs.
> + *
> + * Return: A pointer to a config_group structure or NULL if the function driver
> + * does not have anything to expose (attributes configured by user) or if the
> + * the function driver does not implement the add_cfs() method.
> + *
> + * Returns an error pointer if this function is called for an unbound EPF device
> + * or if the EPF driver add_cfs() method fails.
> + */
> static struct config_group *pci_epf_type_add_cfs(struct pci_epf *epf,
> struct config_group *group)
> {
> --
> 2.40.1
>
--
மணிவண்ணன் சதாசிவம்
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2 0/2] Fixup changes to pci_epf_type_add_cfs()
2023-05-15 7:43 [PATCH v2 0/2] Fixup changes to pci_epf_type_add_cfs() Damien Le Moal
2023-05-15 7:43 ` [PATCH v2 1/2] PCI: endpoint: Improve pci_epf_type_add_cfs() Damien Le Moal
2023-05-15 7:43 ` [PATCH v2 2/2] PCI: endpoint: Add kdoc description of pci_epf_type_add_cfs() Damien Le Moal
@ 2023-05-29 15:46 ` Lorenzo Pieralisi
2 siblings, 0 replies; 6+ messages in thread
From: Lorenzo Pieralisi @ 2023-05-29 15:46 UTC (permalink / raw)
To: linux-pci, Bjorn Helgaas, Kishon Vijay Abraham I,
Manivannan Sadhasivam, Damien Le Moal
Cc: Lorenzo Pieralisi
On Mon, 15 May 2023 16:43:46 +0900, Damien Le Moal wrote:
> A couple of patches to improve and document the changes to
> pci_epf_type_add_cfs() done with patch
> 893f14fed7d3 ("PCI: endpoint: Move pci_epf_type_add_cfs() code").
>
> Changes from v1:
> - Changed error from EINVAL to ENODEV in patch 1
> - Removed spurious line in kdoc comment in patch 2
>
> [...]
Squashed second patch with the patch it was fixing and
applied [1/2] to controller/endpoint, thanks!
[1/2] PCI: endpoint: Improve pci_epf_type_add_cfs()
https://git.kernel.org/pci/pci/c/de22e068e9bb
//
Thanks,
Lorenzo
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-05-29 15:46 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-15 7:43 [PATCH v2 0/2] Fixup changes to pci_epf_type_add_cfs() Damien Le Moal
2023-05-15 7:43 ` [PATCH v2 1/2] PCI: endpoint: Improve pci_epf_type_add_cfs() Damien Le Moal
2023-05-17 7:41 ` Manivannan Sadhasivami
2023-05-15 7:43 ` [PATCH v2 2/2] PCI: endpoint: Add kdoc description of pci_epf_type_add_cfs() Damien Le Moal
2023-05-17 7:45 ` Manivannan Sadhasivami
2023-05-29 15:46 ` [PATCH v2 0/2] Fixup changes to pci_epf_type_add_cfs() Lorenzo Pieralisi
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).