[osmo-pcu 2/5] tbf: Add ul and dl TBF types and allocate them in tbf_alloc()

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/OpenBSC@lists.osmocom.org/.

Daniel Willmann dwillmann at sysmocom.de
Wed Jul 16 17:04:29 UTC 2014


Ticket: SYS#389
Sponsored-by: On-Waves ehf
---
 src/tbf.cpp | 6 +++++-
 src/tbf.h   | 6 ++++++
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/src/tbf.cpp b/src/tbf.cpp
index f913f97..39549f1 100644
--- a/src/tbf.cpp
+++ b/src/tbf.cpp
@@ -495,7 +495,11 @@ struct gprs_rlcmac_tbf *tbf_alloc(struct gprs_rlcmac_bts *bts,
 	if (trx >= 8 || tfi >= 32)
 		return NULL;
 
-	tbf = talloc_zero(tall_pcu_ctx, struct gprs_rlcmac_tbf);
+	if (dir == GPRS_RLCMAC_UL_TBF)
+		tbf = talloc_zero(tall_pcu_ctx, struct gprs_rlcmac_ul_tbf);
+	else
+		tbf = talloc_zero(tall_pcu_ctx, struct gprs_rlcmac_dl_tbf);
+
 	if (!tbf)
 		return NULL;
 
diff --git a/src/tbf.h b/src/tbf.h
index 80e2068..8464e19 100644
--- a/src/tbf.h
+++ b/src/tbf.h
@@ -326,6 +326,12 @@ inline time_t gprs_rlcmac_tbf::created_ts() const
 	return m_created_ts;
 }
 
+struct gprs_rlcmac_dl_tbf : public gprs_rlcmac_tbf {
+};
+
+struct gprs_rlcmac_ul_tbf : public gprs_rlcmac_tbf {
+};
+
 #endif
 
 #ifdef __cplusplus
-- 
1.8.4.2





More information about the OpenBSC mailing list