aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-trx
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2013-03-01 10:05:59 +0100
committerHarald Welte <laforge@gnumonks.org>2015-09-22 16:41:27 +0200
commit9855e8bd4854f6afb740ad940f2999be354b0af1 (patch)
tree0a1596cd47cd142d673d01cd25284ff253bcea7f /src/osmo-bts-trx
parent219ece83a3ffe7fa2bd58943cddb47a3eacc2fab (diff)
TRX: Out of range primitives found in downlink queue are not an error
Diffstat (limited to 'src/osmo-bts-trx')
-rw-r--r--src/osmo-bts-trx/scheduler.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/osmo-bts-trx/scheduler.c b/src/osmo-bts-trx/scheduler.c
index a0ffe163..fde14fa8 100644
--- a/src/osmo-bts-trx/scheduler.c
+++ b/src/osmo-bts-trx/scheduler.c
@@ -500,9 +500,10 @@ free_msg:
goto wrong_type;
}
if (prim_fn > 20) {
- LOGP(DL1C, LOGL_ERROR, "Prim for trx=%u ts=%u at fn=%u "
- "is out of range. (current fn=%u)\n",
- l1h->trx->nr, tn, prim_fn, fn);
+ LOGP(DL1C, LOGL_NOTICE, "Prim for trx=%u ts=%u at fn=%u "
+ "is out of range, or channel already disabled. "
+ "(current fn=%u)\n", l1h->trx->nr, tn, prim_fn,
+ fn);
/* unlink and free message */
llist_del(&msg->list);
msgb_free(msg);