Change in osmocom-bb[master]: trxcon/scheduler: TCH/F: fix Downlink burst completeness check

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/.

fixeria gerrit-no-reply at lists.osmocom.org
Wed Mar 4 15:20:42 UTC 2020


fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmocom-bb/+/17355 )


Change subject: trxcon/scheduler: TCH/F: fix Downlink burst completeness check
......................................................................

trxcon/scheduler: TCH/F: fix Downlink burst completeness check

A TCH/F or FACCH/F frame is interleaved over 8 bursts, not 4.

Change-Id: I2ee4a216a18e9b077b27887235d982481991d9c4
---
M src/host/trxcon/sched_lchan_tchf.c
1 file changed, 1 insertion(+), 1 deletion(-)



  git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/55/17355/1

diff --git a/src/host/trxcon/sched_lchan_tchf.c b/src/host/trxcon/sched_lchan_tchf.c
index 06458f7..dda4844 100644
--- a/src/host/trxcon/sched_lchan_tchf.c
+++ b/src/host/trxcon/sched_lchan_tchf.c
@@ -83,7 +83,7 @@
 	sched_trx_meas_avg(lchan, 8);
 
 	/* Check for complete set of bursts */
-	if ((*mask & 0xf) != 0xf) {
+	if ((*mask & 0xff) != 0xff) {
 		LOGP(DSCHD, LOGL_ERROR, "Received incomplete (%s) traffic frame at "
 			"fn=%u (%u/%u) for %s\n",
 			burst_mask2str(mask, 8), lchan->meas_avg.fn,

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

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I2ee4a216a18e9b077b27887235d982481991d9c4
Gerrit-Change-Number: 17355
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <axilirator at gmail.com>
Gerrit-CC: Jenkins Builder
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20200304/a1ad04d3/attachment.htm>


More information about the gerrit-log mailing list