Hoernchen has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-trx/+/32763 )
Change subject: devices: unify band handling
......................................................................
Set Ready For Review
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/32763
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I64f5a462451e967d4750d8e4f1d5832cbab41cff
Gerrit-Change-Number: 32763
Gerrit-PatchSet: 9
Gerrit-Owner: Hoernchen <ewild(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Wed, 05 Jul 2023 12:57:16 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Hoernchen has posted comments on this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/33562 )
Change subject: mobile and modem libs for mssdr app integration
......................................................................
Set Ready For Review
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/33562
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ib8570bb84194a8a783fe4a983d764fb8a1b4117a
Gerrit-Change-Number: 33562
Gerrit-PatchSet: 1
Gerrit-Owner: Hoernchen <ewild(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Comment-Date: Wed, 05 Jul 2023 12:56:19 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Hoernchen has posted comments on this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/33563 )
Change subject: host: split l1l2 if into own lib
......................................................................
Set Ready For Review
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/33563
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I91315984dbac4b3a25e7ec3e0b32f259e2b47324
Gerrit-Change-Number: 33563
Gerrit-PatchSet: 2
Gerrit-Owner: Hoernchen <ewild(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Comment-Date: Wed, 05 Jul 2023 12:56:17 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-pcu/+/33575 )
Change subject: gprs_ms: Update assert condition
......................................................................
gprs_ms: Update assert condition
A recent commit adding TBF_ST_WAIT_REUSE_TFI state updated
ms_append_llc_dl_data() to attempt creating a new DL TBF while in that
state, but forgot to update the assert checking for the conditions in
ms_is_reachable_for_dl_ass().
Related: OS#6084
Fixes: 40a297f3b0c8e1670d46a4974750dd3335bc7885
Change-Id: I3d51e909c9a9f688b7f4425a5ba319d183c71d1f
---
M src/gprs_ms.c
1 file changed, 21 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-pcu refs/changes/75/33575/1
diff --git a/src/gprs_ms.c b/src/gprs_ms.c
index 5890d31..7fa3fc0 100644
--- a/src/gprs_ms.c
+++ b/src/gprs_ms.c
@@ -1093,10 +1093,13 @@
/* Can we get to send a DL TBF ass to the MS? */
static bool ms_is_reachable_for_dl_ass(const struct GprsMs *ms)
{
+ const struct gprs_rlcmac_dl_tbf *dl_tbf = ms_dl_tbf(ms);
const struct gprs_rlcmac_ul_tbf *ul_tbf = ms_ul_tbf(ms);
- /* This function assumes it is called when no DL TBF is present */
- OSMO_ASSERT(!ms_dl_tbf(ms));
+ /* This function assumes it is called when no DL TBF is present, or
+ * alternatively if it's not really in use by the MS (TBF_ST_WAIT_REUSE_TFI) */
+ OSMO_ASSERT(!dl_tbf ||
+ tbf_state(dl_tbf_as_tbf_const(dl_tbf)) == TBF_ST_WAIT_REUSE_TFI);
/* 3GPP TS 44.060 sec 7.1.3.1 Initiation of the Packet resource request procedure:
* "Furthermore, the mobile station shall not respond to PACKET DOWNLINK ASSIGNMENT
--
To view, visit https://gerrit.osmocom.org/c/osmo-pcu/+/33575
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-pcu
Gerrit-Branch: master
Gerrit-Change-Id: I3d51e909c9a9f688b7f4425a5ba319d183c71d1f
Gerrit-Change-Number: 33575
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange