[PATCH] osmocom-bb[master]: host/trxcon/scheduler: inform L2&3 about decoding errors

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

Harald Welte gerrit-no-reply at lists.osmocom.org
Thu Feb 22 15:33:32 UTC 2018


Review at  https://gerrit.osmocom.org/6804

host/trxcon/scheduler: inform L2&3 about decoding errors

Previously, we used to drop a frame if decoding wasn't successful.
This way, the higher layers didn't even know about that, so the
local counters and Measurement Reports were incomplete.

This change makes scheduler to forward L2 frames in any case,
setting the num_biterr for each of them. In case of decoding
error, a dummy (payload filled by 0x00) L2 frame will be sent.

Change-Id: I31011d8f3ca8b9a12474cd0bc653faed18391033
---
M src/host/trxcon/sched_lchan_common.c
M src/host/trxcon/sched_lchan_tchf.c
M src/host/trxcon/sched_lchan_xcch.c
M src/host/trxcon/sched_trx.h
4 files changed, 21 insertions(+), 10 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/04/6804/1

diff --git a/src/host/trxcon/sched_lchan_common.c b/src/host/trxcon/sched_lchan_common.c
index 6d75533..c6b287a 100644
--- a/src/host/trxcon/sched_lchan_common.c
+++ b/src/host/trxcon/sched_lchan_common.c
@@ -26,6 +26,7 @@
 #include <string.h>
 #include <talloc.h>
 #include <stdint.h>
+#include <stdbool.h>
 
 #include <arpa/inet.h>
 
@@ -80,7 +81,8 @@
 };
 
 int sched_send_data_ind(struct trx_instance *trx, struct trx_ts *ts,
-	struct trx_lchan_state *lchan, uint8_t *l2, size_t l2_len)
+	struct trx_lchan_state *lchan, uint8_t *l2, size_t l2_len,
+	bool dec_failed, int bit_error_count)
 {
 	const struct trx_lchan_desc *lchan_desc;
 	struct l1ctl_info_dl *data;
@@ -99,14 +101,18 @@
 	data->band_arfcn = htons(trx->band_arfcn);
 	data->frame_nr = htonl(lchan->rx_first_fn);
 	data->rx_level = -(lchan->meas.rssi_sum / lchan->meas.rssi_num);
+	data->num_biterr = bit_error_count;
 
 	/* FIXME: set proper values */
-	data->num_biterr = 0;
-	data->fire_crc = 0;
 	data->snr = 0;
 
-	/* Fill in the payload */
-	memcpy(data->payload, l2, l2_len);
+	if (dec_failed) {
+		/* Mark frame as broken */
+		data->fire_crc = 2;
+	} else {
+		/* Fill in the payload */
+		memcpy(data->payload, l2, l2_len);
+	}
 
 	/* Put a packet to higher layers */
 	l1ctl_tx_data_ind(trx->l1l, data, l2_len == GSM_MACBLOCK_LEN ?
diff --git a/src/host/trxcon/sched_lchan_tchf.c b/src/host/trxcon/sched_lchan_tchf.c
index 237e538..a0adf69 100644
--- a/src/host/trxcon/sched_lchan_tchf.c
+++ b/src/host/trxcon/sched_lchan_tchf.c
@@ -149,7 +149,9 @@
 		l2_len = sched_bad_frame_ind(l2, rsl_cmode, tch_mode);
 	} else if (rc == GSM_MACBLOCK_LEN) {
 		/* FACCH received, forward it to the higher layers */
-		sched_send_data_ind(trx, ts, lchan, l2, GSM_MACBLOCK_LEN);
+		sched_send_data_ind(trx, ts, lchan,
+			l2, GSM_MACBLOCK_LEN, false, n_errors);
+
 		/* Send BFI instead of stolen TCH frame */
 		l2_len = sched_bad_frame_ind(l2, rsl_cmode, tch_mode);
 	} else {
@@ -159,7 +161,8 @@
 
 	/* Send a traffic frame to the higher layers */
 	if (l2_len > 0)
-		sched_send_data_ind(trx, ts, lchan, l2, l2_len);
+		sched_send_data_ind(trx, ts, lchan,
+			l2, l2_len, false, n_errors);
 
 	return 0;
 }
diff --git a/src/host/trxcon/sched_lchan_xcch.c b/src/host/trxcon/sched_lchan_xcch.c
index 7d4786d..1b7c4da 100644
--- a/src/host/trxcon/sched_lchan_xcch.c
+++ b/src/host/trxcon/sched_lchan_xcch.c
@@ -108,11 +108,11 @@
 			(*first_fn) % ts->mf_layout->period,
 			ts->mf_layout->period,
 			lchan_desc->name);
-		return rc;
 	}
 
 	/* Send a L2 frame to the higher layers */
-	sched_send_data_ind(trx, ts, lchan, l2, GSM_MACBLOCK_LEN);
+	sched_send_data_ind(trx, ts, lchan,
+		l2, GSM_MACBLOCK_LEN, rc != 0, n_errors);
 
 	/* TODO: AGC, TA loops */
 	return 0;
diff --git a/src/host/trxcon/sched_trx.h b/src/host/trxcon/sched_trx.h
index 268c6b7..f2c091e 100644
--- a/src/host/trxcon/sched_trx.h
+++ b/src/host/trxcon/sched_trx.h
@@ -1,6 +1,7 @@
 #pragma once
 
 #include <stdint.h>
+#include <stdbool.h>
 
 #include <osmocom/core/bits.h>
 #include <osmocom/core/utils.h>
@@ -277,6 +278,7 @@
 
 size_t sched_bad_frame_ind(uint8_t *l2, uint8_t rsl_cmode, uint8_t tch_mode);
 int sched_send_data_ind(struct trx_instance *trx, struct trx_ts *ts,
-	struct trx_lchan_state *lchan, uint8_t *l2, size_t l2_len);
+	struct trx_lchan_state *lchan, uint8_t *l2, size_t l2_len,
+	bool dec_failed, int bit_error_count);
 int sched_send_data_conf(struct trx_instance *trx, struct trx_ts *ts,
 	struct trx_lchan_state *lchan, uint32_t fn, size_t l2_len);

-- 
To view, visit https://gerrit.osmocom.org/6804
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I31011d8f3ca8b9a12474cd0bc653faed18391033
Gerrit-PatchSet: 1
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>



More information about the gerrit-log mailing list