Date: Thu, 20 Jun 2019 07:54:36 +0000 From: bugzilla-noreply@freebsd.org To: bugs@FreeBSD.org Subject: [Bug 238711] Kernel Panic Message-ID: <bug-238711-227-ZFHtRyxfOG@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-238711-227@https.bugs.freebsd.org/bugzilla/> References: <bug-238711-227@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D238711 yoaucid@yahoo.co.jp changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |yoaucid@yahoo.co.jp --- Comment #6 from yoaucid@yahoo.co.jp --- I also got same panic. The reason is probably that although the function AcpiNsWalkNamespace retur= ns 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=20=20=20= =20=20=20=20 2019-06-20 15:45:56.709177000 +0900 @@ -331,9 +331,6 @@ AcpiNsWalkNamespace ( ChildType =3D ACPI_TYPE_ANY; Level =3D 1; - if (ReturnValue) - *ReturnValue =3D 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 --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-238711-227-ZFHtRyxfOG>