]> git.baikalelectronics.ru Git - kernel.git/commit
ACPI: Get acpi_device's parent from the parent field
authorSakari Ailus <sakari.ailus@linux.intel.com>
Wed, 17 Nov 2021 18:07:34 +0000 (20:07 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 23 Nov 2021 18:13:00 +0000 (19:13 +0100)
commitdb289673c5afc8fd2da69942a1a704b4cd76a488
tree165d5d5c438486886a03fcc409499d761f164ed4
parentbdf2074c36ff2ec1e88ae41beb6e104f4e7f0cff
ACPI: Get acpi_device's parent from the parent field

Printk modifier %pfw is used to print the full path of the device name.
This is obtained device by device until a device no longer has a parent.

On ACPI getting the parent fwnode is done by calling acpi_get_parent()
which tries to down() a semaphore. But local IRQs are now disabled in
vprintk_store() before the mutex is acquired. This is obviously a problem.

Luckily struct device, embedded in struct acpi_device, has a parent field
already. Use that field to get the parent instead of relying on
acpi_get_parent().

Fixes: 229b7e51022b ("lib/vsprintf: Add %pfw conversion specifier for printing fwnode names")
Cc: 5.5+ <stable@vger.kernel.org> # 5.5+
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/property.c