aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-11-02 14:08:04 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2021-11-02 14:08:15 +0100
commit7e8d5ab4c4ee509df99e52ac3862f64358fba20a (patch)
treef0b7ed0bdcd6bfa4c6662b39eedb67aaadc4a094
parentdd28f827471568bca710e6663191a0a547c8053d (diff)
bts: Fix misleading log line in bts_rcv_rach()
If it's not single block packets access, then it's one phase packet access. TS 44.018 Table 9.1.8.1: """ One phase packet access with request for single timeslot uplink transmission; one PDCH is needed. """ Change-Id: Ic6beb6dcfebb77fd264b179b028f99a29c644fb1
-rw-r--r--src/bts.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bts.cpp b/src/bts.cpp
index 50df92e2..bd1366e7 100644
--- a/src/bts.cpp
+++ b/src/bts.cpp
@@ -900,8 +900,8 @@ int bts_rcv_rach(struct gprs_rlcmac_bts *bts, const struct rach_ind_params *rip)
if (chan_req.single_block)
LOGP(DRLCMAC, LOGL_DEBUG, "MS requests single block allocation\n");
else if (bts->pcu->vty.force_two_phase) {
- LOGP(DRLCMAC, LOGL_DEBUG, "MS requests single block allocation, "
- "but we force two phase access\n");
+ LOGP(DRLCMAC, LOGL_DEBUG, "MS requests single TS uplink transmission "
+ "(one phase packet access), but we force two phase access\n");
chan_req.single_block = true;
}