aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-04-09 19:48:53 +0300
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-04-09 19:48:55 +0300
commit14b00bb8b2753549ac0730dca5034c0dceba492d (patch)
tree57a396982265997654a72b507aef5c727cd1e464 /src
parent94f7b4753a5ca1f95efec04d74c4f8abe688c79e (diff)
scheduler: remove redundant OSMO_ASSERT() statements
It's guaranteed by the calling function bts_model_l1sap_down() that the prim's operation is PRIM_OP_REQUEST and that the msg is present. Change-Id: I6a01bba7b5eb337ae1552c442d74447565c52e25
Diffstat (limited to 'src')
-rw-r--r--src/common/scheduler.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/common/scheduler.c b/src/common/scheduler.c
index e6a664f1..99ab597f 100644
--- a/src/common/scheduler.c
+++ b/src/common/scheduler.c
@@ -854,9 +854,6 @@ int trx_sched_ph_data_req(struct gsm_bts_trx *trx, struct osmo_phsap_prim *l1sap
"PH-DATA.req: chan_nr=0x%02x link_id=0x%02x\n",
l1sap->u.data.chan_nr, l1sap->u.data.link_id);
- OSMO_ASSERT(l1sap->oph.operation == PRIM_OP_REQUEST);
- OSMO_ASSERT(l1sap->oph.msg);
-
/* ignore empty frame */
if (!l1sap->oph.msg->l2h || msgb_l2len(l1sap->oph.msg) == 0) {
msgb_free(l1sap->oph.msg);
@@ -880,9 +877,6 @@ int trx_sched_tch_req(struct gsm_bts_trx *trx, struct osmo_phsap_prim *l1sap)
LOGL1S(DL1P, LOGL_DEBUG, l1ts, -1, l1sap->u.tch.fn,
"TCH.req: chan_nr=0x%02x\n", l1sap->u.tch.chan_nr);
- OSMO_ASSERT(l1sap->oph.operation == PRIM_OP_REQUEST);
- OSMO_ASSERT(l1sap->oph.msg);
-
/* ignore empty frame */
if (!msgb_l2len(l1sap->oph.msg)) {
msgb_free(l1sap->oph.msg);