move statistics counter rlc_sent() to gprs_rlcmac_sched

The counter rlc_sent has nothing to do with the TBF.
The RLC packet got sent in the gprs_rlcmac_sched().

Change-Id: I5d2b910ea7cc250f17530406eda3be9b29b051fd
Reviewed-on: https://gerrit.osmocom.org/84
Tested-by: Jenkins Builder
Reviewed-by: Holger Freyther <holger@freyther.de>
This commit is contained in:
Alexander Couzens 2016-05-18 16:41:03 +02:00 committed by Holger Freyther
parent 660709dc7c
commit 9736d00b12
2 changed files with 4 additions and 3 deletions

View File

@ -341,8 +341,11 @@ int gprs_rlcmac_rcv_rts_block(struct gprs_rlcmac_bts *bts,
dl_ass_tbf, ul_ack_tbf);
/* Prio 2: select data message for downlink */
if (!msg)
if (!msg) {
msg = sched_select_downlink(bts, trx, ts, fn, block_nr, pdch);
if (msg)
bts->bts->rlc_sent();
}
/* Prio 3: send dummy contol message */
if (!msg)

View File

@ -762,8 +762,6 @@ struct msgb *gprs_rlcmac_dl_tbf::create_dl_acked_block(
/* Increment TX-counter */
m_tx_counter++;
bts->rlc_sent();
return dl_msg;
}