Instead of simply marking it as unloaded. If a table is dynamically loaded by a module and the module is then unloaded, the table is no longer valid so it's best to make sure it is unloaded. Signed-off-by: Bob Paauwe <bob.j.paauwe@xxxxxxxxx> --- drivers/acpi/acpica/tbxfload.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/acpi/acpica/tbxfload.c b/drivers/acpi/acpica/tbxfload.c index aadb300..ce75ca2 100644 --- a/drivers/acpi/acpica/tbxfload.c +++ b/drivers/acpi/acpica/tbxfload.c @@ -408,6 +408,7 @@ acpi_status acpi_unload_parent_table(acpi_handle object) status = acpi_tb_release_owner_id(i); acpi_tb_set_table_loaded_flag(i, FALSE); + acpi_tb_uninstall_table(&acpi_gbl_root_table_list.tables[i]); break; } -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html