pespin has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/libosmo-gprs/+/32020 )


Change subject: rlcmac: Release pending polls in pdch_ul when freeing tbf
......................................................................

rlcmac: Release pending polls in pdch_ul when freeing tbf

Otherwise the events are eventually sheduled and they point to an
already freed TBF.

Change-Id: I2b39ca8e79125eb2f496a92259c09c050e1f369b
---
M src/rlcmac/tbf.c
1 file changed, 16 insertions(+), 1 deletion(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmo-gprs refs/changes/20/32020/1

diff --git a/src/rlcmac/tbf.c b/src/rlcmac/tbf.c
index c18ad83..524740d 100644
--- a/src/rlcmac/tbf.c
+++ b/src/rlcmac/tbf.c
@@ -27,6 +27,7 @@
 #include <osmocom/gprs/rlcmac/tbf_ul.h>
 #include <osmocom/gprs/rlcmac/gre.h>
 #include <osmocom/gprs/rlcmac/rlcmac_enc.h>
+#include <osmocom/gprs/rlcmac/pdch_ul_controller.h>

 void gprs_rlcmac_tbf_constructor(struct gprs_rlcmac_tbf *tbf,
                                 enum gprs_rlcmac_tbf_direction direction,
@@ -38,7 +39,9 @@

 void gprs_rlcmac_tbf_destructor(struct gprs_rlcmac_tbf *tbf)
 {
-
+       unsigned int i;
+       for (i = 0; i < ARRAY_SIZE(g_ctx->sched.ulc); i++)
+               gprs_rlcmac_pdch_ulc_release_tbf(g_ctx->sched.ulc[i], tbf);
 }

 void gprs_rlcmac_tbf_free(struct gprs_rlcmac_tbf *tbf)

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

Gerrit-Project: libosmo-gprs
Gerrit-Branch: master
Gerrit-Change-Id: I2b39ca8e79125eb2f496a92259c09c050e1f369b
Gerrit-Change-Number: 32020
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <[email protected]>
Gerrit-MessageType: newchange

Reply via email to