aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2013-03-01 10:05:59 +0100
committerAndreas Eversberg <jolly@eversberg.eu>2014-04-06 08:57:25 +0200
commitf66d37e02a732171cfeab2effa400456d4f14bb7 (patch)
tree3327f845911d10fee84b5fa9f043b3e8e6f0bc53
parent66f719cf2c9938d17326ed4dcecdb9d9927c78e7 (diff)
TRX: Out of range primitives found in downlink queue are not an error
-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);