aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2018-08-20 10:54:15 +0200
committerPhilipp Maier <pmaier@sysmocom.de>2018-08-20 12:19:30 +0200
commit9feddb7edfc95b6864e5f594211bd94d54d4ab46 (patch)
tree35014e15be8936f241dc349e105e2a596b357760 /include
parentb5a28bd9678c7af21679349b5f1972aef5ecaab3 (diff)
measurement: make sure state is reset on chan act.
At the moment only lchan_meas_reset is reset on channel activation. All other states are not reset. This may lead to irretations in the first measurement interval if there are still leftover messages from a previous connection. Lets ensure everything is reset to zero by zeroing out the whole .meas struct in struct lchan. - Add a centralized function that does the reset - Call that function from rsl_tx_chan_act_ack() in rsl.c Change-Id: I880ae3030df6dcd60c32b7144c3430528429bdea Related: OS#2975 Related: OS#2987
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/measurement.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/osmo-bts/measurement.h b/include/osmo-bts/measurement.h
index 283b0ffc..d98e9f0b 100644
--- a/include/osmo-bts/measurement.h
+++ b/include/osmo-bts/measurement.h
@@ -10,4 +10,6 @@ int lchan_meas_check_compute(struct gsm_lchan *lchan, uint32_t fn);
void lchan_meas_process_measurement(struct gsm_lchan *lchan, struct bts_ul_meas *ulm, uint32_t fn);
+void lchan_meas_reset(struct gsm_lchan *lchan);
+
#endif