2023-05-17 21:50:26

by Ira Weiny

[permalink] [raw]
Subject: [PATCH 2/3] cxl/pci: Update comment

The existence of struct cxl_dev_id containing a single member is odd.
The comment made sense when I wrote it but could be clarified.

Update the comment and place it next to the odd looking structure.

Signed-off-by: Ira Weiny <[email protected]>
---
drivers/cxl/pci.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/cxl/pci.c b/drivers/cxl/pci.c
index f7a5b8e9c102..ad7a1276fdc5 100644
--- a/drivers/cxl/pci.c
+++ b/drivers/cxl/pci.c
@@ -469,6 +469,10 @@ static int cxl_alloc_irq_vectors(struct pci_dev *pdev)
return 0;
}

+/*
+ * Threaded irq dev_id's must be globally unique. cxl_dev_id provides a unique
+ * wrapper object for each irq within the same cxlds.
+ */
struct cxl_dev_id {
struct cxl_dev_state *cxlds;
};
@@ -506,7 +510,6 @@ static int cxl_event_req_irq(struct cxl_dev_state *cxlds, u8 setting)
if (FIELD_GET(CXLDEV_EVENT_INT_MODE_MASK, setting) != CXL_INT_MSI_MSIX)
return -ENXIO;

- /* dev_id must be globally unique and must contain the cxlds */
dev_id = devm_kzalloc(dev, sizeof(*dev_id), GFP_KERNEL);
if (!dev_id)
return -ENOMEM;

--
2.40.0



2023-05-17 21:51:17

by Dave Jiang

[permalink] [raw]
Subject: Re: [PATCH 2/3] cxl/pci: Update comment



On 5/17/23 2:28 PM, Ira Weiny wrote:
> The existence of struct cxl_dev_id containing a single member is odd.
> The comment made sense when I wrote it but could be clarified.
>
> Update the comment and place it next to the odd looking structure.
>
> Signed-off-by: Ira Weiny <[email protected]>

Reviewed-by: Dave Jiang <[email protected]>

> ---
> drivers/cxl/pci.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/cxl/pci.c b/drivers/cxl/pci.c
> index f7a5b8e9c102..ad7a1276fdc5 100644
> --- a/drivers/cxl/pci.c
> +++ b/drivers/cxl/pci.c
> @@ -469,6 +469,10 @@ static int cxl_alloc_irq_vectors(struct pci_dev *pdev)
> return 0;
> }
>
> +/*
> + * Threaded irq dev_id's must be globally unique. cxl_dev_id provides a unique
> + * wrapper object for each irq within the same cxlds.
> + */
> struct cxl_dev_id {
> struct cxl_dev_state *cxlds;
> };
> @@ -506,7 +510,6 @@ static int cxl_event_req_irq(struct cxl_dev_state *cxlds, u8 setting)
> if (FIELD_GET(CXLDEV_EVENT_INT_MODE_MASK, setting) != CXL_INT_MSI_MSIX)
> return -ENXIO;
>
> - /* dev_id must be globally unique and must contain the cxlds */
> dev_id = devm_kzalloc(dev, sizeof(*dev_id), GFP_KERNEL);
> if (!dev_id)
> return -ENOMEM;
>

2023-05-18 09:51:14

by Jonathan Cameron

[permalink] [raw]
Subject: Re: [PATCH 2/3] cxl/pci: Update comment

On Wed, 17 May 2023 14:28:11 -0700
Ira Weiny <[email protected]> wrote:

> The existence of struct cxl_dev_id containing a single member is odd.
> The comment made sense when I wrote it but could be clarified.
>
> Update the comment and place it next to the odd looking structure.
>
> Signed-off-by: Ira Weiny <[email protected]>

Reviewed-by: Jonathan Cameron <[email protected]>

> ---
> drivers/cxl/pci.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/cxl/pci.c b/drivers/cxl/pci.c
> index f7a5b8e9c102..ad7a1276fdc5 100644
> --- a/drivers/cxl/pci.c
> +++ b/drivers/cxl/pci.c
> @@ -469,6 +469,10 @@ static int cxl_alloc_irq_vectors(struct pci_dev *pdev)
> return 0;
> }
>
> +/*
> + * Threaded irq dev_id's must be globally unique. cxl_dev_id provides a unique
> + * wrapper object for each irq within the same cxlds.
> + */
> struct cxl_dev_id {
> struct cxl_dev_state *cxlds;
> };
> @@ -506,7 +510,6 @@ static int cxl_event_req_irq(struct cxl_dev_state *cxlds, u8 setting)
> if (FIELD_GET(CXLDEV_EVENT_INT_MODE_MASK, setting) != CXL_INT_MSI_MSIX)
> return -ENXIO;
>
> - /* dev_id must be globally unique and must contain the cxlds */
> dev_id = devm_kzalloc(dev, sizeof(*dev_id), GFP_KERNEL);
> if (!dev_id)
> return -ENOMEM;
>