http://bugzilla.kernel.org/show_bug.cgi?id=5358





------- Comment #6 from [EMAIL PROTECTED]  2007-10-25 20:14 -------
The root cause is "recursive adding reference", for example,
Name(p000, Package() {1,2,3,4,5,6,7,8,9})
Store(Index(p000, 0), Index(p000, 1))

In this Store operation, would firstly copy a Refrence Object(NewRefObj) for
Index(p000, 0), and then store NewRefObj to Index(p000, 1)
After this Store, p000 becomes Package() {1,NewRefObj,3,4,5,6,7,8,9}

So, if add refrence to p000, the recursion occurs, see below,
AddReference(p000)
AddReference(Index(p000, 0))
AddReference(Index(p000, 1)) -> Index(p000, 1)=NewRefObj, reference to p000
        AddReference(p000)   -> recursion
        AddReference(Index(p000, 0))
        AddReference(Index(p000, 1))



-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
acpi-bugzilla mailing list
acpi-bugzilla@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla

Reply via email to