[asterisk-commits] oej: trunk r47209 - /trunk/channels/chan_sip.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Sat Nov 4 15:16:58 MST 2006
Author: oej
Date: Sat Nov 4 16:16:57 2006
New Revision: 47209
URL: http://svn.digium.com/view/asterisk?rev=47209&view=rev
Log:
Don't lock dialoglist if monitor runs __sip_destroy.
Hmmm. I did not change pbx_dundi and yet it doesn't compile ;-)
Modified:
trunk/channels/chan_sip.c
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?rev=47209&r1=47208&r2=47209&view=diff
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Sat Nov 4 16:16:57 2006
@@ -1248,7 +1248,7 @@
static void sip_scheddestroy(struct sip_pvt *p, int ms);
static void sip_cancel_destroy(struct sip_pvt *p);
static void sip_destroy(struct sip_pvt *p);
-static void __sip_destroy(struct sip_pvt *p, int lockowner);
+static void __sip_destroy(struct sip_pvt *p, int lockowner, int lockdialoglist);
static void __sip_ack(struct sip_pvt *p, int seqno, int resp, int sipmethod, int reset);
static void __sip_pretend_ack(struct sip_pvt *p);
static int __sip_semi_ack(struct sip_pvt *p, int seqno, int resp, int sipmethod);
@@ -2917,7 +2917,7 @@
}
/*! \brief Execute destruction of SIP dialog structure, release memory */
-static void __sip_destroy(struct sip_pvt *p, int lockowner)
+static void __sip_destroy(struct sip_pvt *p, int lockowner, int lockdialoglist)
{
struct sip_pvt *cur, *prev = NULL;
struct sip_pkt *cp;
@@ -2980,14 +2980,16 @@
}
/* Lock dialog list before removing ourselves from the list */
- ast_mutex_lock(&dialoglock);
+ if (lockdialoglist)
+ ast_mutex_lock(&dialoglock);
for (prev = NULL, cur = dialoglist; cur; prev = cur, cur = cur->next) {
if (cur == p) {
UNLINK(cur, dialoglist, prev);
break;
}
}
- ast_mutex_unlock(&dialoglock);
+ if (lockdialoglist)
+ ast_mutex_unlock(&dialoglock);
if (!cur) {
ast_log(LOG_WARNING, "Trying to destroy \"%s\", not found in dialog list?!?! \n", p->callid);
return;
@@ -3136,7 +3138,7 @@
{
if (option_debug > 2)
ast_log(LOG_DEBUG, "Destroying SIP dialog %s\n", p->callid);
- __sip_destroy(p, 1);
+ __sip_destroy(p, TRUE, TRUE);
}
/*! \brief Convert SIP hangup causes to Asterisk hangup causes */
@@ -6263,7 +6265,6 @@
if (min_audio_packet_size)
ast_build_string(&a_audio_next, &a_audio_left, "a=ptime:%d\r\n", min_audio_packet_size);
-
if (min_video_packet_size)
ast_build_string(&a_video_next, &a_video_left, "a=ptime:%d\r\n", min_video_packet_size);
@@ -14863,7 +14864,7 @@
if (ast_test_flag(&sip->flags[0], SIP_NEEDDESTROY) && !sip->packets &&
!sip->owner) {
sip_pvt_unlock(sip);
- __sip_destroy(sip, 1);
+ __sip_destroy(sip, TRUE, FALSE);
goto restartsearch;
}
sip_pvt_unlock(sip);
More information about the asterisk-commits
mailing list