You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2015/05/18 17:07:00 UTC

[1/2] trafficserver git commit: TS-3601 Eliminate unnecessary mutex for txn handler

Repository: trafficserver
Updated Branches:
  refs/heads/master cc40b928b -> cea8e28de


TS-3601 Eliminate unnecessary mutex for txn handler


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/341e8351
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/341e8351
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/341e8351

Branch: refs/heads/master
Commit: 341e8351abce058cf171009e7b6c529b8a295869
Parents: cc40b92
Author: Leif Hedstrom <zw...@apache.org>
Authored: Wed May 13 14:30:02 2015 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Mon May 18 09:03:52 2015 -0600

----------------------------------------------------------------------
 plugins/experimental/cache_promote/cache_promote.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/341e8351/plugins/experimental/cache_promote/cache_promote.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/cache_promote/cache_promote.cc b/plugins/experimental/cache_promote/cache_promote.cc
index 866b01a..fbf2cc8 100644
--- a/plugins/experimental/cache_promote/cache_promote.cc
+++ b/plugins/experimental/cache_promote/cache_promote.cc
@@ -461,7 +461,7 @@ TSRemapNewInstance(int argc, char *argv[], void **ih, char * /* errbuf */, int /
   --argc;
   ++argv;
   if (config->factory(argc, argv)) {
-    TSCont contp = TSContCreate(cont_handle_policy, TSMutexCreate());
+    TSCont contp = TSContCreate(cont_handle_policy, NULL);
 
     TSContDataSet(contp, static_cast<void *>(config));
     *ih = static_cast<void *>(contp);


[2/2] trafficserver git commit: Added TS-3601

Posted by zw...@apache.org.
Added TS-3601


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/cea8e28d
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/cea8e28d
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/cea8e28d

Branch: refs/heads/master
Commit: cea8e28de8aee5fbd011480a5e2e1092086c0d38
Parents: 341e835
Author: Leif Hedstrom <zw...@apache.org>
Authored: Mon May 18 09:05:06 2015 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Mon May 18 09:05:06 2015 -0600

----------------------------------------------------------------------
 CHANGES | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/cea8e28d/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 14bf0a5..248ac9b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,17 +1,22 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache Traffic Server 6.0.0
 
-  *) [TS-3578] Rearrange ProxyClientSession so VC is available in close session hook
+  *) [TS-3601] cache_promote: Eliminate unnecessary mutex for txn handler.
+
+  *) [TS-3578] Rearrange ProxyClientSession so VC is available in close
+   session hook.
 
   *) [TS-3610] Loading reads certificate from file multiple times.
 
-  *) [TS-3608] Client side SSL does not validate upstream hostname
+  *) [TS-3608] Client side SSL does not validate upstream hostname.
 
   *) [TS-3604] Transparent Mode does not work when accept_threads set to 0.
 
-  *) [TS-3597] TLS can fail accecpt / handshake when accept thread is turned off.
+  *) [TS-3597] TLS can fail accecpt / handshake when accept thread is turned
+   off.
 
-  *) [TS-3603] Debug Assert due to missing lock when accept_threads are disabled.
+  *) [TS-3603] Debug Assert due to missing lock when accept_threads are
+   disabled.
 
   *) [TS-3605] Fix interim cache build error.
    Author: Oknet Xu <co...@sina.com>