Change in libosmo-abis[master]: e1_input.c: make reference counting get() / put() more verbose

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

laforge gerrit-no-reply at lists.osmocom.org
Sun Dec 1 20:01:09 UTC 2019


laforge has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-abis/+/16393 )

Change subject: e1_input.c: make reference counting get() / put() more verbose
......................................................................

e1_input.c: make reference counting get() / put() more verbose

Change-Id: I1c730d6d146b365712b28e3d37e038344ea850bc
---
M src/e1_input.c
1 file changed, 9 insertions(+), 2 deletions(-)

Approvals:
  Jenkins Builder: Verified
  laforge: Looks good to me, approved



diff --git a/src/e1_input.c b/src/e1_input.c
index 4717830..eb973ef 100644
--- a/src/e1_input.c
+++ b/src/e1_input.c
@@ -419,12 +419,19 @@
 
 void e1inp_line_get(struct e1inp_line *line)
 {
-	line->refcnt++;
+	int old_refcnt = line->refcnt++;
+
+	LOGP(DLINP, LOGL_DEBUG, "Line '%s' (%p) reference count get: %d -> %d\n",
+	     line->name, line, old_refcnt, line->refcnt);
 }
 
 void e1inp_line_put(struct e1inp_line *line)
 {
-	line->refcnt--;
+	int old_refcnt = line->refcnt--;
+
+	LOGP(DLINP, LOGL_DEBUG, "Line '%s' (%p) reference count put: %d -> %d\n",
+	     line->name, line, old_refcnt, line->refcnt);
+
 	if (line->refcnt == 0) {
 		/* Remove our counter group from libosmocore's global counter
 		 * list if we are freeing the last remaining talloc context.

-- 
To view, visit https://gerrit.osmocom.org/c/libosmo-abis/+/16393
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: libosmo-abis
Gerrit-Branch: master
Gerrit-Change-Id: I1c730d6d146b365712b28e3d37e038344ea850bc
Gerrit-Change-Number: 16393
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <axilirator at gmail.com>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge at osmocom.org>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20191201/a3de91a6/attachment.htm>


More information about the gerrit-log mailing list