Closed Bug 852467 Opened 11 years ago Closed 11 years ago

nsDisableOldMaxSmartSizePrefEvent runs on the gecko main thread, blocks for long periods of time

Categories

(Core :: Networking: Cache, defect)

22 Branch
All
Android
defect
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla23
Tracking Status
firefox21 + affected
firefox22 --- affected
firefox23 --- fixed
fennec 21+ ---

People

(Reporter: kats, Assigned: michal)

References

Details

(Whiteboard: [snappy])

Attachments

(1 file)

See https://bugzilla.mozilla.org/show_bug.cgi?id=797615#c342.

The fact that this runnable runs on the gecko main thread and blocks on the cache in the call to nsCacheService::SetDiskSmartSize(); means that other things that need to run on the gecko main thread (e.g. some quick compositor operations) don't get to run for many seconds (I reported seeing a delay of ~18 seconds in bug 797615 comment 326). The Java UI thread needs to run these operations synchronously and times out waiting for the operations to run, which snowballs into various graphics initialization errors and much badness.

Also tagging as snappy because an 18-second block on the gecko main thread seems pretty bad.
Disabling the disk cache also fixes the intermittent testSystemPages failure. (https://tbpl.mozilla.org/?tree=Try&rev=336832f5b5d5)
tracking-fennec: --- → ?
Poked at this, and it looks like the only obvious thing that could cause the blocking here is that the code grabs the cache lock.  So the real culprit is whatever other code is holding the lock for that time.
The try build log at [1] has the stack traces for all the threads (there are 12 instances of the crash in that log file, but they are all very similar). As an example, from the first crash in that log, there are threads running in methods like:

nsHttpConnectionMgr::GetSpdyPreferredConn(nsHttpConnectionMgr::nsConnectionEntry*)

and

nsDiskCacheBlockFile::Open(nsIFile*, unsigned int, unsigned int, nsDiskCache::CorruptCacheInfo*)

I don't know this code that well but it looks like that second one is probably holding the cache lock.

[1] https://tbpl.mozilla.org/php/getParsedLog.php?id=20803898&tree=Try&full=1
tracking-fennec: ? → 22+
tracking-fennec: 22+ → ?
tracking-fennec: ? → 22+
Blocks: 834243
the bug this is blocking is tracking firefox 21
tracking-fennec: 22+ → 21+
Patrick, spoke to :kats and we believe this falls under the necko team helping out with investigation/next steps here.
Assigning this to you to help with reassignment as needed.

Bug 834243 - which is a top-crasher is blocked on investigation due to this.
Assignee: nobody → mcmanus
Assignee: mcmanus → michal.novotny
Bajaj, How is this bug related to bug 834243?
(In reply to Doug Turner (:dougt) from comment #6)
> Bajaj, How is this bug related to bug 834243?

Doug, Check : https://bugzilla.mozilla.org/show_bug.cgi?id=834243#c28 , https://bugzilla.mozilla.org/show_bug.cgi?id=834243#c27 . I also checked with :kats & he said we need help from necko team resolve this issue to move forward on the top- crasher.
Most of my investigation about why this is a problem is on bug 797615. See comment 342 and nearby comments on that bug.
Kats, do you know what the other threads are doing when we are holding that lock?
(In reply to Doug Turner (:dougt) from comment #9)
> Kats, do you know what the other threads are doing when we are holding that
> lock?

The thread that is holding the lock is opening the disk cache. It seems that just opening few files and reading headers/bitmaps takes ages on android. 

I'm currently testing a fix for this issue on try server https://tbpl.mozilla.org/?tree=Try&rev=8626f02da4d4
Attached patch fixSplinter Review
Attachment #741377 - Flags: review?(honzab.moz)
Attachment #741377 - Flags: review?(honzab.moz) → review+
https://hg.mozilla.org/mozilla-central/rev/e73333270ce5
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla23
Blocks: 864103
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: