From: Guenter Roeck <linux@roeck-us.net>
To: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Linux ACPI <linux-acpi@vger.kernel.org>,
linux-hwmon@vger.kernel.org, LKML <linux-kernel@vger.kernel.org>,
Jean Delvare <jdelvare@suse.com>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Subject: Re: [PATCH v2] hwmon: acpi_power_meter: Use acpi_bus_get_acpi_device()
Date: Wed, 13 Oct 2021 11:50:14 -0700 [thread overview]
Message-ID: <20211013185014.GA3336125@roeck-us.net> (raw)
In-Reply-To: <11871063.O9o76ZdvQC@kreacher>
On Wed, Oct 13, 2021 at 06:04:09PM +0200, Rafael J. Wysocki wrote:
> From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
>
> In read_domain_devices(), acpi_bus_get_device() is called to obtain
> the ACPI device object attached to the given ACPI handle and
> subsequently that object is passed to get_device() for reference
> counting, but there is a window between the acpi_bus_get_device()
> and get_device() calls in which the ACPI device object in question
> may go away.
>
> To address this issue, make read_domain_devices() use
> acpi_bus_get_acpi_device() to reference count and return the given
> ACPI device object in one go and export that function to modules.
>
> While at it, also make read_domain_devices() and
> remove_domain_devices() use acpi_dev_put() instead of calling
> put_device() directly on the ACPI device objects returned by
> acpi_bus_get_acpi_device().
>
> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Applied.
Thanks,
Guenter
> ---
>
> -> v2: Resend with a different From and S-o-b address and with R-by
> from Andy. No other changes.
>
> ---
> drivers/acpi/scan.c | 1 +
> drivers/hwmon/acpi_power_meter.c | 13 +++++--------
> 2 files changed, 6 insertions(+), 8 deletions(-)
>
> Index: linux-pm/drivers/hwmon/acpi_power_meter.c
> ===================================================================
> --- linux-pm.orig/drivers/hwmon/acpi_power_meter.c
> +++ linux-pm/drivers/hwmon/acpi_power_meter.c
> @@ -535,7 +535,7 @@ static void remove_domain_devices(struct
>
> sysfs_remove_link(resource->holders_dir,
> kobject_name(&obj->dev.kobj));
> - put_device(&obj->dev);
> + acpi_dev_put(obj);
> }
>
> kfree(resource->domain_devices);
> @@ -597,18 +597,15 @@ static int read_domain_devices(struct ac
> continue;
>
> /* Create a symlink to domain objects */
> - resource->domain_devices[i] = NULL;
> - if (acpi_bus_get_device(element->reference.handle,
> - &resource->domain_devices[i]))
> + obj = acpi_bus_get_acpi_device(element->reference.handle);
> + resource->domain_devices[i] = obj;
> + if (!obj)
> continue;
>
> - obj = resource->domain_devices[i];
> - get_device(&obj->dev);
> -
> res = sysfs_create_link(resource->holders_dir, &obj->dev.kobj,
> kobject_name(&obj->dev.kobj));
> if (res) {
> - put_device(&obj->dev);
> + acpi_dev_put(obj);
> resource->domain_devices[i] = NULL;
> }
> }
> Index: linux-pm/drivers/acpi/scan.c
> ===================================================================
> --- linux-pm.orig/drivers/acpi/scan.c
> +++ linux-pm/drivers/acpi/scan.c
> @@ -608,6 +608,7 @@ struct acpi_device *acpi_bus_get_acpi_de
> {
> return handle_to_device(handle, get_acpi_device);
> }
> +EXPORT_SYMBOL_GPL(acpi_bus_get_acpi_device);
>
> static struct acpi_device_bus_id *acpi_device_bus_id_match(const char *dev_id)
> {
prev parent reply other threads:[~2021-10-13 18:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-12 17:30 [PATCH] hwmon: acpi_power_meter: Use acpi_bus_get_acpi_device() Rafael J. Wysocki
2021-10-12 19:01 ` Andy Shevchenko
2021-10-13 16:04 ` [PATCH v2] " Rafael J. Wysocki
2021-10-13 18:50 ` Guenter Roeck [this message]
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=20211013185014.GA3336125@roeck-us.net \
--to=linux@roeck-us.net \
--cc=andriy.shevchenko@linux.intel.com \
--cc=jdelvare@suse.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rjw@rjwysocki.net \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.