Re: [RFC PATCH v3 3/3] acpi_memhotplug: Allow eject to proceed on rebind scenario
From: Rafael J. Wysocki <hidden>
Date: 2012-11-29 22:07:13
Also in:
linux-acpi, lkml
On Thursday, November 29, 2012 02:46:44 PM Toshi Kani wrote:
On Thu, 2012-11-29 at 22:23 +0100, Rafael J. Wysocki wrote:quoted
On Thursday, November 29, 2012 01:38:39 PM Toshi Kani wrote:quoted
On Thu, 2012-11-29 at 21:25 +0100, Rafael J. Wysocki wrote:quoted
On Thursday, November 29, 2012 10:56:30 AM Toshi Kani wrote:quoted
On Thu, 2012-11-29 at 12:30 +0100, Vasilis Liaskovitis wrote:quoted
Side-note: In the pre_remove patches, acpi_bus_trim actually returns on the first error from acpi_bus_remove (e.g. when memory offlining in pre_remove fails). Trimming is not continued. Normally, acpi_bus_trim keeps trimming as you say, and always returns the last error. Is this the desired behaviour that we want to keep for bus_trim? (This is more a general question, not specific to the eject_forbidden suggestion)Your change makes sense to me. At least until we have rollback code in place, we need to fail as soon as we hit an error.Are you sure this makes sense? What happens to the devices that we have trimmed already and then there's an error? Looks like they are just unusable going forward, aren't they?Yes, the devices trimmed already are released from the kernel, and their memory ranges become unusable. This is bad. But I do not think we should trim further to make more devices unusable after an error.quoted
quoted
quoted
quoted
Now, if acpi_bus_hot_remove_device() gets that error code, it should just reverse the whole trimming (i.e. trigger acpi_bus_scan() from the device we attempted to eject) and notify the firmware about the failure.sounds like this rollback needs to be implemented in any solution we choose to implement, correct?Yes, rollback is necessary. But I do not think we need to include it into your patch, though.As the first step, we should just trim everything and then return an error code in my opinion.But we cannot trim devices with kernel memory.Well, let's put it this way: If we started a trim, we should just do it completely, in which case we know we can go for the eject, or we should roll it back completely. Now, if you just break the trim on first error, the complete rollback is kind of problematic. It should be doable, but it won't be easy. On the other hand, if you go for the full trim, doing a rollback is trivial, it's as though you have reinserted the whole stuff.acpi_bus_check_add() skips initialization when an ACPI device already has its associated acpi_device. So, I think it works either way.
OK
quoted
Now, that need not harm functionality, and that's why I proposed the eject_forbidden flag, so that .remove() can say "I'm not done, please rollback", in which case the device can happily function going forward, even if we don't rebind the driver to it.A partially trimmed acpi_device is hard to rollback. acpi_device should be either trimmed completely or intact.
I may or may not agree, depending on what you mean by "trimmed". :-)
When a function failed to trim an acpi_device, it needs to rollback its operation for the device before returning an error.
Unless it is .remove(), because .remove() is supposed to always succeed (ie. unbind the driver from the device). However, it may signal the caller that something's fishy, by setting a flag in the device object, for example.
This is because only the failed function has enough context to rollback when an error occurred in the middle of its procedure.
Not really. If it actually removes the struct acpi_device then the caller may run acpi_bus_scan() on that device if necessary. There may be a problem if the device has an associated physical node (or more of them), but that requires special care anyway. Thanks, Rafael -- I speak only for myself. Rafael J. Wysocki, Intel Open Source Technology Center. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>