Closed
Bug 617860
Opened 14 years ago
Closed 14 years ago
Content process abort [@ RenderFrameParent::BuildLayer]
Categories
(Core :: Layout, defect)
Tracking
()
RESOLVED
FIXED
Tracking | Status | |
---|---|---|
fennec | 2.0b4+ | --- |
People
(Reporter: Felipe, Assigned: cjones)
References
Details
(Whiteboard: [e10s])
Attachments
(3 files)
5.56 KB,
text/plain
|
Details | |
6.57 KB,
patch
|
bas.schouten
:
review+
|
Details | Diff | Splinter Review |
902 bytes,
patch
|
mfinkle
:
review+
|
Details | Diff | Splinter Review |
After staying up for a few seconds, and sending some mouse events to the content process (not sure if this is needed or not), the content process aborts at this check:
220 NS_ABORT_IF_FALSE(!mContainer ||
221 IsTempLayerManager(aManager) ||
222 mContainer->Manager() == aManager,
223 "retaining manager changed out from under us ... HELP!");
http://mxr.mozilla.org/mozilla-central/source/layout/ipc/RenderFrameParent.cpp#220
I have layers.accelerate-none and gfx.direc2d.disabled both set to true. This was not happening on a tree from Nov 12.
Assignee | ||
Comment 1•14 years ago
|
||
Regressed by bug 595277, 99.9999% sure. Bisect would be very useful. If I understand that bug correctly, it shouldn't have affected accelerate-none.
Assignee | ||
Comment 2•14 years ago
|
||
(More specifically: shouldn't have *needed* to affect accelerate-none.)
Reporter | ||
Comment 3•14 years ago
|
||
Yep, I bisected and indeed bug 595277 is what caused this. This is a stack with the crash on the parent process. Bas, any idea what would cause this? What other information can I get that would be helpful? I don't have many ideas on how to debug this.
(fyi this is a e10s-enabled FF running on windows)
Summary: Content process abort @ RenderFrameParent::BuildLayer → Content process abort [@ RenderFrameParent::BuildLayer]
Comment 4•14 years ago
|
||
Hrm, I've got some ideas that I can investigate. I think I might know what's happening, but I'm not sure why it would break anything.
Assignee | ||
Comment 5•14 years ago
|
||
My guess is that those patches have the windows widget backend create an initial basic layer manager, then later the "real" layer manager, regardless of the value of layers.accelerate-none. There's nothing inherently wrong with that, it's just that our IPC backend doesn't yet have code to deal with changing layer managers.
If that's the case, and if it's not too hard, a happy compromise/workaround might be to re-use the initial basic layer manager as the "real" one when not using d3d, since creating a second basic layer manager is pure overhead.
Reporter | ||
Comment 6•14 years ago
|
||
fwiw, from what I understood it seems that the reason that this bug happens even when layers.accelerate-none=true is that even for that case, when the 5s timer kicks in the current layer manager is destroyed and a new one is created (another basic one).
Updated•14 years ago
|
tracking-fennec: --- → 2.0b4+
Assignee | ||
Updated•14 years ago
|
Assignee: nobody → jones.chris.g
Assignee | ||
Comment 7•14 years ago
|
||
Attachment #503016 -
Flags: review?
Assignee | ||
Updated•14 years ago
|
Attachment #503016 -
Flags: review? → review?(bas.schouten)
Assignee | ||
Comment 8•14 years ago
|
||
Also fixes pref obsoleted by bug 623446.
Attachment #503041 -
Flags: review?(mark.finkle)
Updated•14 years ago
|
Attachment #503016 -
Flags: review?(bas.schouten) → review+
Updated•14 years ago
|
Attachment #503041 -
Flags: review?(mark.finkle) → review+
Assignee | ||
Comment 9•14 years ago
|
||
http://hg.mozilla.org/mozilla-central/rev/21c9b822e069
mfinkle landed a modified version of the m-b patch earlier today to work around another bug, so I'm going to go ahead and close this out.
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•