Harald Welte has submitted this change and it was merged. (
https://gerrit.osmocom.org/9386 )
Change subject: abis_rsl: rsl_rx_chan_rqd: Format bts log string as in
everywhere else
......................................................................
abis_rsl: rsl_rx_chan_rqd: Format bts log string as in everywhere else
Change-Id: I7928d78e2ce3e6eca545455d08bc89ca67e01f9f
---
M src/libbsc/abis_rsl.c
1 file changed, 3 insertions(+), 3 deletions(-)
Approvals:
Harald Welte: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/src/libbsc/abis_rsl.c b/src/libbsc/abis_rsl.c
index 2a67943..48cc39f 100644
--- a/src/libbsc/abis_rsl.c
+++ b/src/libbsc/abis_rsl.c
@@ -1881,7 +1881,7 @@
/* Determine channel request cause code */
chreq_reason = get_reason_by_chreq(rqd_ref->ra, bts->network->neci);
- LOGP(DRSL, LOGL_NOTICE, "BTS %d CHAN RQD: reason: %s (ra=0x%02x,
neci=0x%02x, chreq_reason=0x%02x)\n",
+ LOGP(DRSL, LOGL_NOTICE, "(bts=%d) CHAN RQD: reason: %s (ra=0x%02x,
neci=0x%02x, chreq_reason=0x%02x)\n",
msg->lchan->ts->trx->bts->nr,
get_value_string(gsm_chreq_descs, chreq_reason),
rqd_ref->ra, bts->network->neci, chreq_reason);
@@ -1909,7 +1909,7 @@
*/
lchan = lchan_alloc(bts, GSM_LCHAN_SDCCH, 0);
if (!lchan && lctype != GSM_LCHAN_SDCCH) {
- LOGP(DRSL, LOGL_NOTICE, "BTS %d CHAN RQD: no resources for %s "
+ LOGP(DRSL, LOGL_NOTICE, "(bts=%d) CHAN RQD: no resources for %s
"
"0x%x, retrying with %s\n",
msg->lchan->ts->trx->bts->nr,
gsm_lchant_name(GSM_LCHAN_SDCCH), rqd_ref->ra,
@@ -1918,7 +1918,7 @@
}
if (!lchan) {
uint8_t wait_ind;
- LOGP(DRSL, LOGL_NOTICE, "BTS %d CHAN RQD: no resources for %s
0x%x\n",
+ LOGP(DRSL, LOGL_NOTICE, "(bts=%d) CHAN RQD: no resources for %s
0x%x\n",
msg->lchan->ts->trx->bts->nr, gsm_lchant_name(lctype),
rqd_ref->ra);
rate_ctr_inc(&bts->bts_ctrs->ctr[BTS_CTR_CHREQ_NO_CHANNEL]);
if (bts->T3122)
--
To view, visit https://gerrit.osmocom.org/9386
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I7928d78e2ce3e6eca545455d08bc89ca67e01f9f
Gerrit-Change-Number: 9386
Gerrit-PatchSet: 3
Gerrit-Owner: Pau Espin Pedrol <[email protected]>
Gerrit-Reviewer: Harald Welte <[email protected]>
Gerrit-Reviewer: Jenkins Builder