Title: [114715] trunk/Source/WebCore
- Revision
- 114715
- Author
- [email protected]
- Date
- 2012-04-19 20:35:56 -0700 (Thu, 19 Apr 2012)
Log Message
[BlackBerry] Update HTTP connection per host limit in ResourceRequestBlackBerry
https://bugs.webkit.org/show_bug.cgi?id=84380
Patch by Tay Grigg <[email protected]> on 2012-04-19
Reviewed by George Staikos.
Reviewed Internally by: George Rizkalla, Lyon Chen
Set the limit on the http connection count per host to the default
of 10000, queue the requests in the networking layer instead,
this should increase parallelism at the WebKit layer to remove
any potential bottlenecks.
* platform/network/blackberry/ResourceRequestBlackBerry.cpp:
(WebCore::initializeMaximumHTTPConnectionCountPerHost):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (114714 => 114715)
--- trunk/Source/WebCore/ChangeLog 2012-04-20 03:29:35 UTC (rev 114714)
+++ trunk/Source/WebCore/ChangeLog 2012-04-20 03:35:56 UTC (rev 114715)
@@ -1,3 +1,20 @@
+2012-04-19 Tay Grigg <[email protected]>
+
+ [BlackBerry] Update HTTP connection per host limit in ResourceRequestBlackBerry
+ https://bugs.webkit.org/show_bug.cgi?id=84380
+
+ Reviewed by George Staikos.
+
+ Reviewed Internally by: George Rizkalla, Lyon Chen
+
+ Set the limit on the http connection count per host to the default
+ of 10000, queue the requests in the networking layer instead,
+ this should increase parallelism at the WebKit layer to remove
+ any potential bottlenecks.
+
+ * platform/network/blackberry/ResourceRequestBlackBerry.cpp:
+ (WebCore::initializeMaximumHTTPConnectionCountPerHost):
+
2012-04-19 Sheriff Bot <[email protected]>
Unreviewed, rolling out r114711.
Modified: trunk/Source/WebCore/platform/network/blackberry/ResourceRequestBlackBerry.cpp (114714 => 114715)
--- trunk/Source/WebCore/platform/network/blackberry/ResourceRequestBlackBerry.cpp 2012-04-20 03:29:35 UTC (rev 114714)
+++ trunk/Source/WebCore/platform/network/blackberry/ResourceRequestBlackBerry.cpp 2012-04-20 03:35:56 UTC (rev 114715)
@@ -32,7 +32,7 @@
unsigned initializeMaximumHTTPConnectionCountPerHost()
{
- return 6;
+ return 10000;
}
static inline NetworkRequest::CachePolicy platformCachePolicyForRequest(const ResourceRequest& request)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes