[Asterisk-code-review] chan sip.c: Simplify sip pvt destructor call levels. (asterisk[11])
Richard Mudgett
asteriskteam at digium.com
Mon Mar 14 14:28:46 CDT 2016
Richard Mudgett has uploaded a new change for review.
https://gerrit.asterisk.org/2388
Change subject: chan_sip.c: Simplify sip_pvt destructor call levels.
......................................................................
chan_sip.c: Simplify sip_pvt destructor call levels.
Remove destructor calling destroy_it calling really_destroy_it
for no benefit. Just make the destructor the really_destroy_it
function.
Change-Id: Idea0d47b27dd74f2488db75bcc7f353d8fdc614a
---
M channels/chan_sip.c
M channels/sip/include/dialog.h
2 files changed, 10 insertions(+), 38 deletions(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/88/2388/1
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index b7e4c69..6128b0f 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -6340,10 +6340,13 @@
}
}
-/*! \brief Execute destruction of SIP dialog structure, release memory */
-void __sip_destroy(struct sip_pvt *p, int lockowner, int lockdialoglist)
+/*! \brief ao2 destructor for SIP dialog structure */
+static void sip_pvt_dtor(void *vdoomed)
{
+ struct sip_pvt *p = vdoomed;
struct sip_request *req;
+
+ ast_debug(3, "Destroying SIP dialog %s\n", p->callid);
/* Destroy Session-Timers if allocated */
if (p->stimer) {
@@ -6363,14 +6366,12 @@
/* Unlink us from the owner if we have one */
if (p->owner) {
- if (lockowner)
- ast_channel_lock(p->owner);
+ ast_channel_lock(p->owner);
ast_debug(1, "Detaching from %s\n", ast_channel_name(p->owner));
ast_channel_tech_pvt_set(p->owner, NULL);
/* Make sure that the channel knows its backend is going away */
ast_channel_softhangup_internal_flag_add(p->owner, AST_SOFTHANGUP_DEV);
- if (lockowner)
- ast_channel_unlock(p->owner);
+ ast_channel_unlock(p->owner);
/* Give the channel a chance to react before deallocation */
usleep(1);
}
@@ -6681,24 +6682,6 @@
sip_unref_peer(p, "update_call_counter: sip_unref_peer from call counter");
}
return 0;
-}
-
-
-static void sip_destroy_fn(void *p)
-{
- sip_destroy(p);
-}
-
-/*! \brief Destroy SIP call structure.
- * Make it return NULL so the caller can do things like
- * foo = sip_destroy(foo);
- * and reduce the chance of bugs due to dangling pointers.
- */
-struct sip_pvt *sip_destroy(struct sip_pvt *p)
-{
- ast_debug(3, "Destroying SIP dialog %s\n", p->callid);
- __sip_destroy(p, TRUE, TRUE);
- return NULL;
}
/*! \brief Convert SIP hangup causes to Asterisk hangup causes */
@@ -8508,8 +8491,10 @@
{
struct sip_pvt *p;
- if (!(p = ao2_t_alloc(sizeof(*p), sip_destroy_fn, "allocate a dialog(pvt) struct")))
+ p = ao2_t_alloc(sizeof(*p), sip_pvt_dtor, "allocate a dialog(pvt) struct");
+ if (!p) {
return NULL;
+ }
if (ast_string_field_init(p, 512)) {
ao2_t_ref(p, -1, "failed to string_field_init, drop p");
diff --git a/channels/sip/include/dialog.h b/channels/sip/include/dialog.h
index ea2fb45..724f6e6 100644
--- a/channels/sip/include/dialog.h
+++ b/channels/sip/include/dialog.h
@@ -40,19 +40,6 @@
void sip_scheddestroy(struct sip_pvt *p, int ms);
int sip_cancel_destroy(struct sip_pvt *p);
-/*! \brief Destroy SIP call structure.
- * Make it return NULL so the caller can do things like
- * foo = sip_destroy(foo);
- * and reduce the chance of bugs due to dangling pointers.
- */
-struct sip_pvt *sip_destroy(struct sip_pvt *p);
-
-/*! \brief Destroy SIP call structure.
- * Make it return NULL so the caller can do things like
- * foo = sip_destroy(foo);
- * and reduce the chance of bugs due to dangling pointers.
- */
-void __sip_destroy(struct sip_pvt *p, int lockowner, int lockdialoglist);
/*!
* \brief Unlink a dialog from the dialogs container, as well as any other places
* that it may be currently stored.
--
To view, visit https://gerrit.asterisk.org/2388
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: Idea0d47b27dd74f2488db75bcc7f353d8fdc614a
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: 11
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>
More information about the asterisk-code-review
mailing list