[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241126155724.0000634c@huawei.com>
Date: Tue, 26 Nov 2024 15:57:24 +0000
From: Jonathan Cameron <Jonathan.Cameron@...wei.com>
To: Smita Koralahalli <Smita.KoralahalliChannabasappa@....com>
CC: <linux-efi@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<linux-cxl@...r.kernel.org>, Ard Biesheuvel <ardb@...nel.org>, "Alison
Schofield" <alison.schofield@...el.com>, Vishal Verma
<vishal.l.verma@...el.com>, Ira Weiny <ira.weiny@...el.com>, Dan Williams
<dan.j.williams@...el.com>, Yazen Ghannam <yazen.ghannam@....com>, "Terry
Bowman" <terry.bowman@....com>
Subject: Re: [PATCH v3 5/7] acpi/ghes, cxl: Refactor work registration
functions to support multiple workqueues
On Tue, 19 Nov 2024 00:39:13 +0000
Smita Koralahalli <Smita.KoralahalliChannabasappa@....com> wrote:
> Refactor the work registration and unregistration functions in GHES to
> enable reuse across different workqueues. This update lays the foundation
> for integrating additional workqueues in the CXL subsystem for better
> modularity and code reuse.
>
> Signed-off-by: Smita Koralahalli <Smita.KoralahalliChannabasappa@....com>
> ---
> drivers/acpi/apei/ghes.c | 34 +++++++++++++++++++++++++---------
> 1 file changed, 25 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c
> index 082c409707ba..62ffe6eb5503 100644
> --- a/drivers/acpi/apei/ghes.c
> +++ b/drivers/acpi/apei/ghes.c
> @@ -717,26 +717,42 @@ static void cxl_cper_post_event(enum cxl_event_type event_type,
> schedule_work(cxl_cper_work);
> }
>
> -int cxl_cper_register_event_work(struct work_struct *work)
> +static int cxl_cper_register_work(struct work_struct **work_ptr,
> + spinlock_t *lock,
> + struct work_struct *work)
This is a somewhat strange interface. It doesn't
really do anything particularly useful. I'd be tempted to
just open code this at each call site.
> {
> - if (cxl_cper_work)
> + if (*work_ptr)
> return -EINVAL;
>
> - guard(spinlock)(&cxl_cper_work_lock);
> - cxl_cper_work = work;
> + guard(spinlock)(lock);
> + *work_ptr = work;
> return 0;
> }
> -EXPORT_SYMBOL_NS_GPL(cxl_cper_register_event_work, CXL);
>
> -int cxl_cper_unregister_event_work(struct work_struct *work)
> +static int cxl_cper_unregister_work(struct work_struct **work_ptr,
> + spinlock_t *lock,
> + struct work_struct *work)
> {
> - if (cxl_cper_work != work)
> + if (*work_ptr != work)
As above.
> return -EINVAL;
>
> - guard(spinlock)(&cxl_cper_work_lock);
> - cxl_cper_work = NULL;
> + guard(spinlock)(lock);
> + *work_ptr = NULL;
> return 0;
> }
> +
> +int cxl_cper_register_event_work(struct work_struct *work)
> +{
> + return cxl_cper_register_work(&cxl_cper_work, &cxl_cper_work_lock,
> + work);
> +}
> +EXPORT_SYMBOL_NS_GPL(cxl_cper_register_event_work, CXL);
> +
> +int cxl_cper_unregister_event_work(struct work_struct *work)
> +{
> + return cxl_cper_unregister_work(&cxl_cper_work, &cxl_cper_work_lock,
> + work);
> +}
> EXPORT_SYMBOL_NS_GPL(cxl_cper_unregister_event_work, CXL);
>
> int cxl_cper_kfifo_get(struct cxl_cper_work_data *wd)
Powered by blists - more mailing lists