https://bugzilla.kernel.org/show_bug.cgi?id=195685
--- Comment #10 from Lv Zheng ([email protected]) --- Second, I need to confirm if methods created by a method can persistent in the namespace. In ACPICA, it's not persistent - wow, this is a big gap. I can see many workload spawned by this gap... So I just modified the test, to stop testing forward reference: Name(MTHE, 1) Method(MTH1, 0, Serialized) { If (LEqual(MTHE, 1)) { Method(MTH2, 0, Serialized) { Return (2) } } DBUG("MTH1 - 0") Store(1, Local0) DBUG("MTH1 - 1") Store(MTH2(), Local0) DBUG("MTH1 - 2") } Method(MTH3, 0, Serialized) { External(MTH2, MethodObj) DBUG("MTH3 - 0") MTH1() DBUG("MTH3 - 1") MTH2() DBUG("MTH3 - 2") } I executed MTH3 in many device _STA methods. I'll post validation result later. -- You are receiving this mail because: You are watching the assignee of the bug. ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ acpi-bugzilla mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
