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/.
dexter gerrit-no-reply at lists.osmocom.orgHello Neels Hofmeyr, Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/2934
to look at the new patch set (#2).
lchan: add members for BFI
The lchan struct lacks structures to keep track of the
BFI (Bad Frame Indication) counters. There are independed
counters for SACCH and TCH. When a bad block is received,
the corresponding counter is incremented. A good block
will decrement the counter again.
This commit is required by osmo-bts changes:
Change-Id I02edc4724f3d272905bee13384628aca18ea9781
Change-Id Idf044e58863aeab7239ba420b71e1676be62cacb
(Patch by Octasic Inc.)
Change-Id: I2ed78a9dd8747736d01ccf700396d7996f9f4e5d
---
M openbsc/include/openbsc/gsm_data_shared.h
1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/openbsc refs/changes/34/2934/2
diff --git a/openbsc/include/openbsc/gsm_data_shared.h b/openbsc/include/openbsc/gsm_data_shared.h
index d3fd757..6cecc78 100644
--- a/openbsc/include/openbsc/gsm_data_shared.h
+++ b/openbsc/include/openbsc/gsm_data_shared.h
@@ -314,6 +314,8 @@
uint8_t bts_tx_pwr;
/* number of measurements stored in array below */
uint8_t num_ul_meas;
+ uint32_t num_sacch_bfi;
+ uint32_t num_tch_bfi;
struct bts_ul_meas uplink[MAX_NUM_UL_MEAS];
/* last L1 header from the MS */
uint8_t l1_info[2];
--
To view, visit https://gerrit.osmocom.org/2934
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I2ed78a9dd8747736d01ccf700396d7996f9f4e5d
Gerrit-PatchSet: 2
Gerrit-Project: openbsc
Gerrit-Branch: master
Gerrit-Owner: dexter <pmaier at sysmocom.de>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr <nhofmeyr at sysmocom.de>