[Asterisk-code-review] res_stasis: trigger cleanup after update (asterisk[16])

Kevin Harwell asteriskteam at digium.com
Mon Jan 27 11:56:09 CST 2020


Kevin Harwell has uploaded this change for review. ( https://gerrit.asterisk.org/c/asterisk/+/13675 )


Change subject: res_stasis: trigger cleanup after update
......................................................................

res_stasis: trigger cleanup after update

The cleanup code in stasis shuts down applications if they are in a deactivated
state, and no longer have explicit subscriptions. When registering an app the
cleanup code was running before calling 'update'. When it should be executed
after 'update' since a call to register may re-activate the app. We don't want
it to shutdown before the 'update' otherwise the app won't be re-activated,
or registered.

This patch makes it so the cleanup code is executed post 'update'.

ASTERISK-28679 #close

Change-Id: I8f2c0b17e33bb8128441567b97fd4c7bf74a327b
---
M res/res_stasis.c
1 file changed, 3 insertions(+), 2 deletions(-)



  git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/75/13675/1

diff --git a/res/res_stasis.c b/res/res_stasis.c
index 04b10ef..384b3b1 100644
--- a/res/res_stasis.c
+++ b/res/res_stasis.c
@@ -1718,9 +1718,9 @@
 		 * prevent the possibility of a deadlock with the session.  We'll still
 		 * run the lazy cleanup first though.
 		 */
-		cleanup();
 		ao2_unlock(apps_registry);
 		app_update(app, handler, data);
+		cleanup();
 		return 0;
 	}
 
@@ -1745,11 +1745,12 @@
 	}
 	ao2_link_flags(apps_registry, app, OBJ_NOLOCK);
 
+	ao2_unlock(apps_registry);
+
 	/* We lazily clean up the apps_registry, because it's good enough to
 	 * prevent memory leaks, and we're lazy.
 	 */
 	cleanup();
-	ao2_unlock(apps_registry);
 	return 0;
 }
 

-- 
To view, visit https://gerrit.asterisk.org/c/asterisk/+/13675
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: 16
Gerrit-Change-Id: I8f2c0b17e33bb8128441567b97fd4c7bf74a327b
Gerrit-Change-Number: 13675
Gerrit-PatchSet: 1
Gerrit-Owner: Kevin Harwell <kharwell at digium.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20200127/12811431/attachment.html>


More information about the asterisk-code-review mailing list