https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=238711
yoau...@yahoo.co.jp changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |yoau...@yahoo.co.jp --- Comment #6 from yoau...@yahoo.co.jp --- I also got same panic. The reason is probably that although the function AcpiNsWalkNamespace returns AE_OK, the value of the argument ReturnValue is not changed, resulting in an invalid handle. After changing as below, my system is boot without panic. --- src/sys/contrib/dev/acpica/components/namespace/nswalk.c 2019-06-20 16:40:45.119908000 +0900 +++ src_org/sys/contrib/dev/acpica/components/namespace/nswalk.c 2019-06-20 15:45:56.709177000 +0900 @@ -331,9 +331,6 @@ AcpiNsWalkNamespace ( ChildType = ACPI_TYPE_ANY; Level = 1; - if (ReturnValue) - *ReturnValue = NULL; - /* * Traverse the tree of nodes until we bubble back up to where we * started. When Level is zero, the loop is done because we have -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ freebsd-bugs@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"