aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-06-18 13:23:40 +0300
committerHarald Welte <laforge@gnumonks.org>2017-06-24 12:55:11 +0200
commit50f8165540e112260790769f0428b10cb783f8e8 (patch)
treec86b18fbd748648cf03ee41dc5d0d3b2305ddcfa /include
parent61f9158eaffd7f4be76f7a44d803d9ba14988d92 (diff)
measurement: Remove dead code
We used to have trx_meas_check_compute() and call that from the bts-specific code in order to iterate over all timeslots and all lchans in the timeslots if we have to send measurement reports. This was executed once per frame, and created unequal CPU load over time, which in turn might increase different per-ts jitter. Since 2f028c4e2c29f63df9926435466aa35377947767 in April 2017 we have lchan_meas_check_compute(), which performs this on a per-lchan basis, and hence CPU load is distributed over all active timeslots. Change-Id: I6308cefe4a51e55719ea4ed4d613d3782b805c08
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/measurement.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/osmo-bts/measurement.h b/include/osmo-bts/measurement.h
index 87c81099..47b31a29 100644
--- a/include/osmo-bts/measurement.h
+++ b/include/osmo-bts/measurement.h
@@ -6,8 +6,6 @@
int lchan_new_ul_meas(struct gsm_lchan *lchan, struct bts_ul_meas *ulm);
-int trx_meas_check_compute(struct gsm_bts_trx *trx, uint32_t fn);
-
int lchan_meas_check_compute(struct gsm_lchan *lchan, uint32_t fn);
#endif