aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-18 22:01:18 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-18 22:01:18 +0000
commit2bd7b6e66085aa56a93f219d817a809fe468adfd (patch)
tree9f885e386e011aadd0f2e5b6d8f31868cd3274e8 /channels
parent7f4a6cba6bed980a4afdfb40f4e46a9c46a52d11 (diff)
Merged revisions 157496 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r157496 | mmichelson | 2008-11-18 15:59:24 -0600 (Tue, 18 Nov 2008) | 6 lines Based on Russell's advice on the asterisk-dev list, I have changed from using a global lock in update_call_counter to using the locks within the sip_pvt and sip_peer structures instead. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@157498 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c42
1 files changed, 26 insertions, 16 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 674915898..4e2c322db 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -1823,9 +1823,6 @@ enum t38_action_flag {
SDP_T38_ACCEPT, /*!< Remote side accepted our T38 request */
};
-/*! \brief Protect the callcounters inuse,inringing and the corresponding flags */
-AST_MUTEX_DEFINE_STATIC(callctrlock);
-
/*---------------------------- Forward declarations of functions in chan_sip.c */
/* Note: This is added to help splitting up chan_sip.c into several files
in coming releases. */
@@ -4727,36 +4724,43 @@ static int update_call_counter(struct sip_pvt *fup, int event)
case DEC_CALL_LIMIT:
/* Decrement inuse count if applicable */
if (inuse) {
- ast_mutex_lock(&callctrlock);
+ sip_pvt_lock(fup);
+ ao2_lock(p);
if ((*inuse > 0) && ast_test_flag(&fup->flags[0], SIP_INC_COUNT)) {
(*inuse)--;
ast_clear_flag(&fup->flags[0], SIP_INC_COUNT);
} else {
*inuse = 0;
}
- ast_mutex_unlock(&callctrlock);
+ ao2_unlock(p);
+ sip_pvt_unlock(fup);
}
/* Decrement ringing count if applicable */
if (inringing) {
- ast_mutex_lock(&callctrlock);
+ sip_pvt_lock(fup);
+ ao2_lock(p);
if ((*inringing > 0)&& ast_test_flag(&fup->flags[0], SIP_INC_RINGING)) {
(*inringing)--;
ast_clear_flag(&fup->flags[0], SIP_INC_RINGING);
} else {
*inringing = 0;
}
- ast_mutex_unlock(&callctrlock);
+ ao2_unlock(p);
+ sip_pvt_unlock(fup);
}
/* Decrement onhold count if applicable */
- ast_mutex_lock(&callctrlock);
+ sip_pvt_lock(fup);
+ ao2_lock(p);
if (ast_test_flag(&fup->flags[1], SIP_PAGE2_CALL_ONHOLD) && global_notifyhold) {
ast_clear_flag(&fup->flags[1], SIP_PAGE2_CALL_ONHOLD);
- ast_mutex_unlock(&callctrlock);
+ ao2_unlock(p);
+ sip_pvt_unlock(fup);
sip_peer_hold(fup, FALSE);
} else {
- ast_mutex_unlock(&callctrlock);
+ ao2_unlock(p);
+ sip_pvt_unlock(fup);
}
if (sipdebug)
ast_debug(2, "Call %s %s '%s' removed from call limit %d\n", outgoing ? "to" : "from", "peer", name, *call_limit);
@@ -4773,20 +4777,24 @@ static int update_call_counter(struct sip_pvt *fup, int event)
}
}
if (inringing && (event == INC_CALL_RINGING)) {
- ast_mutex_lock(&callctrlock);
+ sip_pvt_lock(fup);
+ ao2_lock(p);
if (!ast_test_flag(&fup->flags[0], SIP_INC_RINGING)) {
(*inringing)++;
ast_set_flag(&fup->flags[0], SIP_INC_RINGING);
}
- ast_mutex_unlock(&callctrlock);
+ ao2_unlock(p);
+ sip_pvt_unlock(fup);
}
if (inuse) {
- ast_mutex_lock(&callctrlock);
+ sip_pvt_lock(fup);
+ ao2_lock(p);
if (!ast_test_flag(&fup->flags[0], SIP_INC_COUNT)) {
(*inuse)++;
ast_set_flag(&fup->flags[0], SIP_INC_COUNT);
}
- ast_mutex_unlock(&callctrlock);
+ ao2_unlock(p);
+ sip_pvt_unlock(fup);
}
if (sipdebug) {
ast_debug(2, "Call %s %s '%s' is %d out of %d\n", outgoing ? "to" : "from", "peer", name, *inuse, *call_limit);
@@ -4795,12 +4803,14 @@ static int update_call_counter(struct sip_pvt *fup, int event)
case DEC_CALL_RINGING:
if (inringing) {
- ast_mutex_lock(&callctrlock);
+ sip_pvt_lock(fup);
+ ao2_lock(p);
if (ast_test_flag(&fup->flags[0], SIP_INC_RINGING)) {
(*inringing)--;
ast_clear_flag(&fup->flags[0], SIP_INC_RINGING);
}
- ast_mutex_unlock(&callctrlock);
+ ao2_unlock(p);
+ sip_pvt_unlock(fup);
}
break;