OM2000: make sure to route messages to IXU/DXU over BTS oml link

Messages to CF and other core objects need to go to the BTS (IXU/DXU)
OML link, not to the OML link of the primary TRX!
This commit is contained in:
Harald Welte 2012-09-07 19:09:46 +02:00
parent 240a828ffd
commit 0818f31144
1 changed files with 3 additions and 2 deletions

View File

@ -822,6 +822,7 @@ static int abis_om2k_sendmsg(struct gsm_bts *bts, struct msgb *msg)
"non-existing TRX\n", om2k_mo_name(&o2h->mo));
return -ENODEV;
}
msg->dst = trx->oml_link;
break;
case OM2K_MO_CLS_TS:
/* Route through per-TRX OML Link to the appropriate TRX */
@ -831,13 +832,13 @@ static int abis_om2k_sendmsg(struct gsm_bts *bts, struct msgb *msg)
"non-existing TRX\n", om2k_mo_name(&o2h->mo));
return -ENODEV;
}
msg->dst = trx->oml_link;
break;
default:
/* Route through the IXU/DXU OML Link */
trx = bts->c0;
msg->dst = bts->oml_link;
break;
}
msg->dst = trx->oml_link;
return _abis_nm_sendmsg(msg);
}