You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by so...@apache.org on 2015/09/05 06:56:03 UTC

[1/2] trafficserver git commit: TS-3895: Mutex leak for TLS connections going to the origin

Repository: trafficserver
Updated Branches:
  refs/heads/5.3.x fc18910a8 -> e740fb9bd


TS-3895: Mutex leak for TLS connections going to the origin

(cherry picked from commit 9279ddb1f4958a2decfb3f97620f0d0ff32592fb)

Conflicts:
	iocore/net/SSLNetVConnection.cc


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

Branch: refs/heads/5.3.x
Commit: 5f02af72d197ecf2dcd7ef65adbd91b74479b49d
Parents: fc18910
Author: Bryan Call <bc...@apache.org>
Authored: Fri Sep 4 15:13:52 2015 -0700
Committer: Phil Sorber <so...@apache.org>
Committed: Fri Sep 4 22:34:28 2015 -0600

----------------------------------------------------------------------
 iocore/net/SSLNetVConnection.cc | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/5f02af72/iocore/net/SSLNetVConnection.cc
----------------------------------------------------------------------
diff --git a/iocore/net/SSLNetVConnection.cc b/iocore/net/SSLNetVConnection.cc
index 276ac25..d7ef08f 100644
--- a/iocore/net/SSLNetVConnection.cc
+++ b/iocore/net/SSLNetVConnection.cc
@@ -799,6 +799,7 @@ SSLNetVConnection::free(EThread *t)
   read.vio.mutex.clear();
   write.vio.mutex.clear();
   this->mutex.clear();
+  action_.mutex.clear();
   flags = 0;
   SET_CONTINUATION_HANDLER(this, (SSLNetVConnHandler)&SSLNetVConnection::startEvent);
   nh = NULL;


[2/2] trafficserver git commit: TS-3895: Update CHANGES

Posted by so...@apache.org.
TS-3895: Update CHANGES


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

Branch: refs/heads/5.3.x
Commit: e740fb9bd56e448c0aa67a63c6ac2941e4a1e855
Parents: 5f02af7
Author: Phil Sorber <so...@apache.org>
Authored: Fri Sep 4 22:35:37 2015 -0600
Committer: Phil Sorber <so...@apache.org>
Committed: Fri Sep 4 22:35:37 2015 -0600

----------------------------------------------------------------------
 CHANGES | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/e740fb9b/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 5abb426..a1b0ad6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,8 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache Traffic Server 5.3.2
 
+  *) [TS-3895] Mutex leak for TLS connections going to the origin.
+
   *) [TS-3889] Avoid reenabling the txn before we release the mbuf.
 
   *) [TS-3461] Changes sizeof() to not use non-static member variables.