Closed
Bug 633119
Opened 14 years ago
Closed 14 years ago
Add mozalloc_abort to prefixSignatureRegEx and mozcrt19.dll to skip list
Categories
(Socorro :: General, task)
Socorro
General
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: scoobidiver, Assigned: benjamin)
References
Details
Attachments
(1 file, 1 obsolete file)
(deleted),
patch
|
lars
:
review+
|
Details | Diff | Splinter Review |
Currently, mozalloc_abort crash signature is #1 top crasher in 4.0b11. There are 3 opened bugs but lots are missing.
It is a follow-up of bug 630230.
Please add the following items to prefixSignatureRegEx:
mozalloc_abort*
mozcrt19.dll@0x*
Assignee | ||
Comment 1•14 years ago
|
||
I think mozcert19.dll should simply be on the skiplist: the address is going to change for every build, so it's not going to make useful signatures.
Assignee | ||
Comment 2•14 years ago
|
||
lars, can you check this patch and take the bug?
Attachment #511367 -
Flags: review?(lars)
Reporter | ||
Comment 3•14 years ago
|
||
Why there is a "." at the end of mozalloc_abort? mozalloc_abort(char const* const)won't be detected.
Reporter | ||
Updated•14 years ago
|
Summary: Add mozalloc_abort and mozcrt19.dll to prefixSignatureRegEx → Add mozalloc_abort to prefixSignatureRegEx and mozcrt19.dll to skip list
Assignee | ||
Comment 4•14 years ago
|
||
It's a regex, not a glob.
Assignee | ||
Comment 5•14 years ago
|
||
argh, the skiplist is wrong, it ought to be 'mozcrt19.dll@0x.*'
Assignee | ||
Comment 6•14 years ago
|
||
Attachment #511367 -
Attachment is obsolete: true
Attachment #511382 -
Flags: review?(lars)
Attachment #511367 -
Flags: review?(lars)
Comment 7•14 years ago
|
||
Comment on attachment 511382 [details] [diff] [review]
mozalloc_abort in prefixlist, mozcrt in skiplist, rev. 1.1
this looks fine. I've introduced it to the 1.7.7 code line. I'm filing an IT bug to have it added to the 1.7.6 system in production.
Attachment #511382 -
Flags: review?(lars) → review+
Reporter | ||
Comment 8•14 years ago
|
||
In reply to comment 1
> I think mozcert19.dll should simply be on the skiplist: the address is going to
> change for every build, so it's not going to make useful signatures.
For information, the mozcrt19.dll version is 8.0.0.0 in 3.6, 4.0 Beta 11 and Minefield, so crash signatures don't move so much.
Why mozcrt19.dll and mozcpp19.dll instead of mozcrt20.dll and mozcpp20.dll?
Comment 9•14 years ago
|
||
Because it's just not worth the churn of changing it.
Comment 10•14 years ago
|
||
this is now in production. If you notice problems or anomalies, please re-open this bug or file a new one.
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Comment 11•14 years ago
|
||
The mozcrt19.dll@0x* looks like it ended up in the prefix list instead of the skip list:
mozalloc_abort(char const* const) | mozcrt19.dll@0x1327f | nsCycleCollectorGCHookRunnable::Run()
is now on the topcrash list:
https://crash-stats.mozilla.com/query/query?product=Firefox&version=Firefox%3A4.0b11&range_value=1&range_unit=hours&date=02%2F10%2F2011+16%3A56%3A11&query_search=signature&query_type=exact&query=&build_id=&process_type=browser&hang_type=crash&do_query=1
whereas I'd have expected the signature to be
mozalloc_abort(char const* const) | nsCycleCollectorGCHookRunnable::Run()
based on the description in this bug.
Or was that the expected behavior from that patch?
Comment 12•14 years ago
|
||
(Might IT have applied patch 1 instead of 1.1?)
Comment 13•14 years ago
|
||
The applied patch was correct and is producing the results that I expect.
I think there is a misunderstanding on how signature generation works.
'irrelevantSignatureRegEx' is used only to trim down to the first "interesting" frame signature in the stack. From that point the 'prefixSignatureRegEx' matches accumulate until there is a frame signature that is completely unknown. The processor always produces signatures made from contiguous frame signatures. It never edits frame signatures out of the middle, even if those frames match the 'irrelevantSignatureRegEx'.
This method was debated during the original implementation and no consensus was reached. We made the decision to go with this technique until it was proven to be inadequate. We can revisit this decision at anytime.
Assignee | ||
Comment 14•14 years ago
|
||
ok yeah, we really need to remove the mozcrt19.dll frames from the middle of this signature. I'm not sure why we don't have better symbols for them (perhaps PGO), but they are making it very hard to correlate the mozalloc_abort signatures.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Comment 15•14 years ago
|
||
I need to split this issue off into a new bug. The solution will require reworking the signature generation routines in the processor. I will have created Bug 633527 to address this issue.
Depends on: 633527
Comment 16•14 years ago
|
||
the code to apply the 'irrelevantSignatureRegEx' throughout the signature generation process has been committed to 1.7.7 trunk.
Status: REOPENED → RESOLVED
Closed: 14 years ago → 14 years ago
Resolution: --- → FIXED
Updated•14 years ago
|
Assignee: nobody → benjamin
Updated•13 years ago
|
Component: Socorro → General
Product: Webtools → Socorro
You need to log in
before you can comment on or make changes to this bug.
Description
•