From: Toshi Kani <toshi.kani@hp.com>
To: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: linux-acpi@vger.kernel.org, lenb@kernel.org,
linux-kernel@vger.kernel.org, bhelgaas@google.com,
isimatu.yasuaki@jp.fujitsu.com, liuj97@gmail.com
Subject: Re: [PATCH v3 1/4] ACPI: Support system notify handler via .sys_notify
Date: Wed, 28 Nov 2012 15:48:03 -0700 [thread overview]
Message-ID: <1354142883.26955.361.camel@misato.fc.hp.com> (raw)
In-Reply-To: <3029765.Ar5pUvjdNX@vostro.rjw.lan>
On Wed, 2012-11-28 at 23:49 +0100, Rafael J. Wysocki wrote:
> On Wednesday, November 28, 2012 03:33:27 PM Toshi Kani wrote:
> > > > > > > > I think it has some challenge as well. We bind an ACPI driver with
> > > > > > > > device_register(), which calls device_add()-> kobject_add(). So, all
> > > > > > > > non-present ACPI device objects will show up in sysfs, unless we can
> > > > > > > > change the core. This will change user interface. There can be quite
> > > > > > > > many non-present devices in ACPI namespace depending on FW
> > > > > > > > implementation.
> > > > > > >
> > > > > > > If additional devices appear in sysfs, that's not a problem. If there
> > > > > > > were fewer of them, that would be a real one. :-)
> > > > > >
> > > > > > I see. I guess this means that once we expose all non-present devices
> > > > > > in sysfs, we cannot go back to the current way. So, we need to be very
> > > > > > careful. Anyway, this model requires separate handling for static ACPI
> > > > > > [1] and dynamic ACPI [2], which may make the state model complicated.
> > > > > >
> > > > > > 1. Static ACPI - No creation / deletion of acpi_device at hot-plug.
> > > > > > 2. Dynamic ACPI - Create acpi_device at hot-add, delete at hot-remove.
> > > > >
> > > > > Sure. The complication here is that we'll need to handle the removal of
> > > > > a bunch of struct acpi_device objects when a whole table goes away.
> > > > >
> > > > > However, first, we don't seem to handle table unloading now. At least
> > > > > acpi_unload_parent_table() is not called from anywhere as far as I can
> > > > > say. Second, we'll need to handle the removal of struct acpi_device objects
> > > > > _anyway_ on table unload, this way or another.
> > > >
> > > > AML is the one that requests loading/unloading of SSDT for dynamic ACPI.
> > > > In hot-add, _Lxx method executes AML_LOAD_OP or AML_LOAD_TABLE_OP to
> > > > load SSDT and then sends a notification to the OS. In hot-remove, _EJ0
> > > > method executes AML_UNLOAD_OP to unload SSDT. Of course, ACPICA does
> > > > the actual work on behalf of AML. But this is not visible to ACPI core
> > > > or drivers, unless it checks ACPI namespace to see if any device objects
> > > > disappeared after _EJ0.
> > >
> > > Oh, we have a handler for that event, but we don't really use it. :-)
> > >
> > > And I wonder what happens to the struct acpi_device objects associated with
> > > the ACPI handles in the table being unloaded?
> >
> > If we use an ACPI handle that does not associate with a device object,
> > ACPICA returns AE_NOT_FOUND or AE_NOT_EXIST. But, we should remove
> > acpi_device that does not have its associated ACPI object. Currently,
> > we create acpi_device on hot-add and remove it on hot-remove, so it is
> > OK. But if we start creating acpi_device objects for non-present
> > devices, we need to worry about if acpi_device objects indeed have their
> > associated ACPI objects. That's the complication I mentioned above.
>
> My question was about something different. Is it actually guaranteed
> that all struct device objects associated with the given ACPI table will
> be removed before that table is unloaded?
Yes, it is guaranteed currently. acpi_bus_hot_remove_device() calls
acpi_bus_trim(), which deletes all acpi_device objects under of the
notified object. It then calls _EJ0 of the notified object, which
unloads all ACPI objects under the notified object.
Thanks,
-Toshi
next prev parent reply other threads:[~2012-11-28 22:56 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-08 20:23 [PATCH v3 0/4] ACPI: Refactor system notify handling Toshi Kani
2012-11-08 20:23 ` [PATCH v3 1/4] ACPI: Support system notify handler via .sys_notify Toshi Kani
2012-11-24 22:01 ` Rafael J. Wysocki
2012-11-24 22:07 ` Rafael J. Wysocki
2012-11-26 19:25 ` Toshi Kani
2012-11-24 22:37 ` Rafael J. Wysocki
2012-11-26 19:06 ` Toshi Kani
2012-11-26 20:44 ` Rafael J. Wysocki
2012-11-26 21:09 ` Toshi Kani
2012-11-26 21:24 ` Toshi Kani
2012-11-27 23:59 ` Rafael J. Wysocki
2012-11-28 16:54 ` Toshi Kani
2012-11-28 18:28 ` Rafael J. Wysocki
2012-11-28 20:31 ` Toshi Kani
2012-11-28 21:09 ` Rafael J. Wysocki
2012-11-28 21:23 ` Toshi Kani
2012-11-28 21:55 ` Rafael J. Wysocki
2012-11-28 22:33 ` Toshi Kani
2012-11-28 22:49 ` Rafael J. Wysocki
2012-11-28 22:48 ` Toshi Kani [this message]
2012-11-27 23:57 ` Rafael J. Wysocki
2012-11-26 23:17 ` Rafael J. Wysocki
2012-11-26 17:44 ` Toshi Kani
2012-11-28 0:29 ` Rafael J. Wysocki
2012-11-28 16:33 ` Toshi Kani
2012-11-08 20:23 ` [PATCH v3 2/4] ACPI: Update processor_driver to use .sys_notify Toshi Kani
2012-11-08 20:23 ` [PATCH v3 3/4] ACPI: Update acpi_memhotplug " Toshi Kani
2012-11-08 20:23 ` [PATCH v3 4/4] ACPI: Update container " Toshi Kani
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=1354142883.26955.361.camel@misato.fc.hp.com \
--to=toshi.kani@hp.com \
--cc=bhelgaas@google.com \
--cc=isimatu.yasuaki@jp.fujitsu.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=liuj97@gmail.com \
--cc=rjw@sisk.pl \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox