aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-07-26 17:48:28 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-08-23 17:14:21 +0200
commit8c4f978483537f238b1830d09f2e90a4a65f33d3 (patch)
treefe2b312ee6f89a29a409adc733b7fe086de5f0b0 /src
parent62e06f92e963f49a2afde797582c6290dc18250b (diff)
Drop logging last mas report before freeing TBF
There's no much use in logging it since anyway we are immediately getting rid of it. Change-Id: I9b712f720b5874886cc19d998fb8fcd0e618d590
Diffstat (limited to 'src')
-rw-r--r--src/tbf.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/tbf.cpp b/src/tbf.cpp
index 42575d6f..ca0dc41b 100644
--- a/src/tbf.cpp
+++ b/src/tbf.cpp
@@ -285,13 +285,6 @@ void tbf_free(struct gprs_rlcmac_tbf *tbf)
bts_do_rate_ctr_inc(tbf->bts, CTR_TBF_DL_FREED);
if (tbf->state_is(TBF_ST_FLOW))
bts_do_rate_ctr_inc(tbf->bts, CTR_TBF_DL_ABORTED);
- }
-
- /* Give final measurement report */
- gprs_rlcmac_rssi_rep(tbf);
- if (tbf->direction == GPRS_RLCMAC_DL_TBF) {
- gprs_rlcmac_dl_tbf *dl_tbf = as_dl_tbf(tbf);
-
dl_tbf->abort();
}