Neels Hofmeyr has uploaded this change for review. (
https://gerrit.osmocom.org/11942
Change subject: follow-up: logging tweak for Immediate Assignment
......................................................................
follow-up: logging tweak for Immediate Assignment
follow-up to I9ad094d272254d7aee9b0a676201d4ed8cd727ca because it was merged
before fixeria's code review could be incorporated.
Change-Id: I474cf1a58d1f00ec5b0ae52bd095a60aad763975
---
M src/osmo-bsc/lchan_fsm.c
1 file changed, 3 insertions(+), 6 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/42/11942/1
diff --git a/src/osmo-bsc/lchan_fsm.c b/src/osmo-bsc/lchan_fsm.c
index 5e99239..dc466da 100644
--- a/src/osmo-bsc/lchan_fsm.c
+++ b/src/osmo-bsc/lchan_fsm.c
@@ -97,17 +97,14 @@
switch (activ_for) {
case FOR_MS_CHANNEL_REQUEST:
- if (lchan->activate.immediate_assignment_sent) {
- LOG_LCHAN(lchan, LOGL_ERROR,
- "lchan activation failed, after Immediate
Assignment message was sent (%s)\n",
- lchan->last_error ? : "unknown error");
- /* Likely the MS never showed up. Just tear down the
lchan. */
- } else {
+ if (!lchan->activate.immediate_assignment_sent) {
/* Failure before Immediate Assignment message, send a
reject. */
LOG_LCHAN(lchan, LOGL_NOTICE, "Tx Immediate Assignment
Reject (%s)\n",
lchan->last_error ? : "unknown error");
rsl_tx_imm_ass_rej(lchan->ts->trx->bts, lchan->rqd_ref);
}
+ /* Otherwise, likely the MS never showed up after the
Assignment, and the failure cause
+ * (Timeout?) was already logged elsewhere. Just tear down the
lchan. */
break;
case FOR_ASSIGNMENT:
--
To view, visit https://gerrit.osmocom.org/11942
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I474cf1a58d1f00ec5b0ae52bd095a60aad763975
Gerrit-Change-Number: 11942
Gerrit-PatchSet: 1
Gerrit-Owner: Neels Hofmeyr <[email protected]>