Module Name:    src
Committed By:   chs
Date:           Mon Feb  9 03:16:33 UTC 2015

Modified Files:
        src/sys/external/bsd/acpica/dist/namespace: nsinit.c

Log Message:
revert rev 1.5, which brings back PR 48494.
that earlier revision itself reverted an upstream bugfix,
and that change fixed some systems but broke others
(in particular, it broke my HP Z800 workstation.)
this latest revision brings us back in sync with upstream.
the current upstream (and this latest flip-flop of our copy)
is clearly correct, since it zeros a buffer which is intended
to be used as scratch space for a single acpica operation.
agreed by christos and ryoon back in april 2014.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/external/bsd/acpica/dist/namespace/nsinit.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/external/bsd/acpica/dist/namespace/nsinit.c
diff -u src/sys/external/bsd/acpica/dist/namespace/nsinit.c:1.6 src/sys/external/bsd/acpica/dist/namespace/nsinit.c:1.7
--- src/sys/external/bsd/acpica/dist/namespace/nsinit.c:1.6	Sat Oct 25 21:00:07 2014
+++ src/sys/external/bsd/acpica/dist/namespace/nsinit.c	Mon Feb  9 03:16:33 2015
@@ -616,10 +616,7 @@ AcpiNsInitOneDevice (
     ACPI_DEBUG_EXEC (AcpiUtDisplayInitPathname (
         ACPI_TYPE_METHOD, DeviceNode, METHOD_NAME__INI));
 
-#if 0
-    // https://bugs.acpica.org/show_bug.cgi?id=1016
     ACPI_MEMSET (Info, 0, sizeof (ACPI_EVALUATE_INFO));
-#endif
     Info->PrefixNode = DeviceNode;
     Info->RelativePathname = __UNCONST(METHOD_NAME__INI);
     Info->Parameters = NULL;

Reply via email to