diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-09-21 02:58:18 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-05 14:52:16 -0700 |
commit | b8b1c4733133c6fb536cdd0a5d54eb1d5165a0a7 (patch) | |
tree | 6f778f95542f9e7f1e7713f19c7996794c7823ef /include/acpi/acpi_bus.h | |
parent | f42d85b90f364ecdc7cf42796c225123a8b79d44 (diff) | |
download | linux-stable-b8b1c4733133c6fb536cdd0a5d54eb1d5165a0a7.tar.gz linux-stable-b8b1c4733133c6fb536cdd0a5d54eb1d5165a0a7.tar.bz2 linux-stable-b8b1c4733133c6fb536cdd0a5d54eb1d5165a0a7.zip |
ACPI / hotplug: Generate online uevents for ACPI containers
commit 8ab17fc92e49bc2b8fff9d220c19bf50ec9c1158 upstream.
Commit 46394fd01 (ACPI / hotplug: Move container-specific code out of
the core) removed the generation of "online" uevents for containers,
because "add" uevents are now generated for them automatically when
container system devices are registered. However, there are user
space tools that need to be notified when the container and all of
its children have been enumerated, which doesn't happen any more.
For this reason, add a mechanism allowing "online" uevents to be
generated for ACPI containers after enumerating the container along
with all of its children.
Fixes: 46394fd01 (ACPI / hotplug: Move container-specific code out of the core)
Reported-and-tested-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/acpi/acpi_bus.h')
-rw-r--r-- | include/acpi/acpi_bus.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index e9c4f190ffae..ac46782c10d3 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h @@ -118,6 +118,7 @@ struct acpi_device; struct acpi_hotplug_profile { struct kobject kobj; int (*scan_dependent)(struct acpi_device *adev); + void (*notify_online)(struct acpi_device *adev); bool enabled:1; bool demand_offline:1; }; |