aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-04-30 14:03:04 +0200
committerpespin <pespin@sysmocom.de>2021-04-30 17:42:25 +0000
commitc6dcfe32f3051ea0d32a10eff8f1004af0114653 (patch)
treea03f405098d27d49b7bfcc673cc577b1da1ab3f5
parent4b7a71f93f410ee9930976b097306447e9427c71 (diff)
sched: Rename func to describe its used only for RLCMAC CTRL blocks2021q1
-rw-r--r--src/gprs_rlcmac_sched.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gprs_rlcmac_sched.cpp b/src/gprs_rlcmac_sched.cpp
index 85c9be81..bb65ae15 100644
--- a/src/gprs_rlcmac_sched.cpp
+++ b/src/gprs_rlcmac_sched.cpp
@@ -41,7 +41,7 @@ struct tbf_sched_candidates {
struct gprs_rlcmac_ul_tbf *ul_ack;
};
-static void get_tbf_candidates(const struct gprs_rlcmac_bts *bts, uint8_t trx,
+static void get_ctrl_msg_tbf_candidates(const struct gprs_rlcmac_bts *bts, uint8_t trx,
uint8_t ts, struct tbf_sched_candidates *tbf_cand)
{
struct gprs_rlcmac_ul_tbf *ul_tbf;
@@ -483,7 +483,7 @@ int gprs_rlcmac_rcv_rts_block(struct gprs_rlcmac_bts *bts,
if (usf_tbf && req_mcs_kind == EGPRS && ms_mode(usf_tbf->ms()) != EGPRS)
req_mcs_kind = EGPRS_GMSK;
- get_tbf_candidates(bts, trx, ts, &tbf_cand);
+ get_ctrl_msg_tbf_candidates(bts, trx, ts, &tbf_cand);
/* Prio 1: select control message */
if ((msg = sched_select_ctrl_msg(pdch, fn, block_nr, &tbf_cand))) {