PERFORCE change 44660 for review
Sam Leffler
sam at FreeBSD.org
Thu Jan 1 20:36:35 PST 2004
http://perforce.freebsd.org/chv.cgi?CH=44660
Change 44660 by sam at sam_ebb on 2004/01/01 20:35:34
save battery fix for i600m
Affected files ...
.. //depot/projects/netperf+sockets/sys/contrib/dev/acpica/dsmthdat.c#4 edit
Differences ...
==== //depot/projects/netperf+sockets/sys/contrib/dev/acpica/dsmthdat.c#4 (text+ko) ====
@@ -663,6 +663,7 @@
ACPI_NAMESPACE_NODE *Node;
ACPI_OPERAND_OBJECT *CurrentObjDesc;
ACPI_OPERAND_OBJECT *NewObjDesc;
+ UINT8 ObjType;
ACPI_FUNCTION_TRACE ("DsStoreObjectToLocal");
@@ -697,7 +698,11 @@
* take a copy of the object before we store.
*/
NewObjDesc = ObjDesc;
- if (ObjDesc->Common.ReferenceCount > 1)
+ ObjType = ACPI_GET_OBJECT_TYPE(ObjDesc);
+ if (ObjDesc->Common.ReferenceCount > 1 &&
+ ObjType != ACPI_TYPE_BUFFER &&
+ ObjType != ACPI_TYPE_PACKAGE &&
+ ObjType != ACPI_TYPE_REGION)
{
Status = AcpiUtCopyIobjectToIobject (ObjDesc, &NewObjDesc, WalkState);
if (ACPI_FAILURE (Status))
More information about the p4-projects
mailing list