]> git.karo-electronics.de Git - karo-tx-linux.git/commit
ACPI: Fix stale pointer access to flags.lockable
authorToshi Kani <toshi.kani@hp.com>
Fri, 26 Oct 2012 11:38:57 +0000 (13:38 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 26 Oct 2012 11:38:57 +0000 (13:38 +0200)
commit7cf5f54241e7a30c66b613b4306fce4b13cffbb4
tree96b0f330e7086815cdf9621eda67b2b2e85e3c42
parentc758eaa155d9f88ded948102c4f80d5edf17c570
ACPI: Fix stale pointer access to flags.lockable

During hot-remove, acpi_bus_hot_remove_device() calls ACPI _LCK
method when device->flags.lockable is set. However, this device
pointer is stale since the target acpi_device object has been
already kfree'd by acpi_bus_trim().

The flags.lockable indicates whether or not this ACPI object
implements _LCK method. Fix the stable pointer access by replacing
it with acpi_get_handle() to check if _LCK is implemented.

Signed-off-by: Toshi Kani <toshi.kani@hp.com>
Reviewed-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/scan.c