- Revision
- 186714
- Author
- [email protected]
- Date
- 2015-07-11 13:15:39 -0700 (Sat, 11 Jul 2015)
Log Message
Unreviewed, rolling out r186689 and r186710.
https://bugs.webkit.org/show_bug.cgi?id=146880
May have caused a PLT regression and broken a layout test
(Requested by cdumez on #webkit).
Reverted changesets:
"[WK2] Increase the QoS of some of our WorkQueues to match the
one of our processes"
https://bugs.webkit.org/show_bug.cgi?id=146855
http://trac.webkit.org/changeset/186689
"REGRESSION (r186689?): fast/frames/frame-limit.html timeout
on Mavericks {Release,Debug} WK2 bots"
https://bugs.webkit.org/show_bug.cgi?id=146876
http://trac.webkit.org/changeset/186710
Patch by Commit Queue <[email protected]> on 2015-07-11
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (186713 => 186714)
--- trunk/LayoutTests/ChangeLog 2015-07-11 19:02:25 UTC (rev 186713)
+++ trunk/LayoutTests/ChangeLog 2015-07-11 20:15:39 UTC (rev 186714)
@@ -1,3 +1,23 @@
+2015-07-11 Commit Queue <[email protected]>
+
+ Unreviewed, rolling out r186689 and r186710.
+ https://bugs.webkit.org/show_bug.cgi?id=146880
+
+ May have caused a PLT regression and broken a layout test
+ (Requested by cdumez on #webkit).
+
+ Reverted changesets:
+
+ "[WK2] Increase the QoS of some of our WorkQueues to match the
+ one of our processes"
+ https://bugs.webkit.org/show_bug.cgi?id=146855
+ http://trac.webkit.org/changeset/186689
+
+ "REGRESSION (r186689?): fast/frames/frame-limit.html timeout
+ on Mavericks {Release,Debug} WK2 bots"
+ https://bugs.webkit.org/show_bug.cgi?id=146876
+ http://trac.webkit.org/changeset/186710
+
2015-07-11 David Kilzer <[email protected]>
http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-parent-same-origin-deny.html crashes on Windows
Modified: trunk/LayoutTests/platform/mac-wk2/TestExpectations (186713 => 186714)
--- trunk/LayoutTests/platform/mac-wk2/TestExpectations 2015-07-11 19:02:25 UTC (rev 186713)
+++ trunk/LayoutTests/platform/mac-wk2/TestExpectations 2015-07-11 20:15:39 UTC (rev 186714)
@@ -242,8 +242,6 @@
webkit.org/b/145432 media/video-transformed-by-_javascript_.html [ Failure ]
-webkit.org/b/146876 [ Mavericks ] fast/frames/frame-limit.html [ Timeout ]
-
### END OF (1) Classified failures with bug reports
########################################
Modified: trunk/Source/WebKit2/ChangeLog (186713 => 186714)
--- trunk/Source/WebKit2/ChangeLog 2015-07-11 19:02:25 UTC (rev 186713)
+++ trunk/Source/WebKit2/ChangeLog 2015-07-11 20:15:39 UTC (rev 186714)
@@ -1,3 +1,23 @@
+2015-07-11 Commit Queue <[email protected]>
+
+ Unreviewed, rolling out r186689 and r186710.
+ https://bugs.webkit.org/show_bug.cgi?id=146880
+
+ May have caused a PLT regression and broken a layout test
+ (Requested by cdumez on #webkit).
+
+ Reverted changesets:
+
+ "[WK2] Increase the QoS of some of our WorkQueues to match the
+ one of our processes"
+ https://bugs.webkit.org/show_bug.cgi?id=146855
+ http://trac.webkit.org/changeset/186689
+
+ "REGRESSION (r186689?): fast/frames/frame-limit.html timeout
+ on Mavericks {Release,Debug} WK2 bots"
+ https://bugs.webkit.org/show_bug.cgi?id=146876
+ http://trac.webkit.org/changeset/186710
+
2015-07-10 Enrica Casucci <[email protected]>
Remove incorrect overriding of inputAssistantItem in WKContentView.
Modified: trunk/Source/WebKit2/NetworkProcess/cache/NetworkCacheStorage.cpp (186713 => 186714)
--- trunk/Source/WebKit2/NetworkProcess/cache/NetworkCacheStorage.cpp 2015-07-11 19:02:25 UTC (rev 186713)
+++ trunk/Source/WebKit2/NetworkProcess/cache/NetworkCacheStorage.cpp 2015-07-11 20:15:39 UTC (rev 186714)
@@ -142,7 +142,7 @@
: m_basePath(baseDirectoryPath)
, m_recordsPath(makeRecordsDirectoryPath(baseDirectoryPath))
, m_writeOperationDispatchTimer(*this, &Storage::dispatchPendingWriteOperations)
- , m_ioQueue(WorkQueue::create("com.apple.WebKit.Cache.Storage", WorkQueue::Type::Concurrent, WorkQueue::QOS::UserInitiated))
+ , m_ioQueue(WorkQueue::create("com.apple.WebKit.Cache.Storage", WorkQueue::Type::Concurrent))
, m_backgroundIOQueue(WorkQueue::create("com.apple.WebKit.Cache.Storage.background", WorkQueue::Type::Concurrent, WorkQueue::QOS::Background))
, m_serialBackgroundIOQueue(WorkQueue::create("com.apple.WebKit.Cache.Storage.serialBackground", WorkQueue::Type::Serial, WorkQueue::QOS::Background))
, m_blobStorage(makeBlobDirectoryPath(baseDirectoryPath))
Modified: trunk/Source/WebKit2/Platform/IPC/Connection.cpp (186713 => 186714)
--- trunk/Source/WebKit2/Platform/IPC/Connection.cpp 2015-07-11 19:02:25 UTC (rev 186713)
+++ trunk/Source/WebKit2/Platform/IPC/Connection.cpp 2015-07-11 20:15:39 UTC (rev 186714)
@@ -211,7 +211,7 @@
, m_shouldExitOnSyncMessageSendFailure(false)
, m_didCloseOnConnectionWorkQueueCallback(0)
, m_isConnected(false)
- , m_connectionQueue(WorkQueue::create("com.apple.IPC.ReceiveQueue", WorkQueue::Type::Serial, WorkQueue::QOS::UserInitiated))
+ , m_connectionQueue(WorkQueue::create("com.apple.IPC.ReceiveQueue"))
, m_inSendSyncCount(0)
, m_inDispatchMessageCount(0)
, m_inDispatchMessageMarkedDispatchWhenWaitingForSyncReplyCount(0)