sysmobts: Add the necessary data structure and init for the SAPI queue

The sysmobts is now having a SAPI queue with all pending SAPI operations
on the BTS. Add the llist_head to the lchan and make sure it is initialized
by the shared code.
This commit is contained in:
Holger Hans Peter Freyther 2013-04-05 18:41:45 +02:00
parent d34adb2f9f
commit 30156e1eea
2 changed files with 5 additions and 0 deletions

View File

@ -246,6 +246,7 @@ struct gsm_lchan {
#else
/* Number of different GsmL1_Sapi_t used in osmo_bts_sysmo is 23.
* Currently we don't share these headers so this is a magic number. */
struct llist_head sapi_cmds;
uint8_t sapis_dl[23];
uint8_t sapis_ul[23];
struct lapdm_channel lapdm_ch;

View File

@ -173,6 +173,10 @@ struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts)
lchan->ts = ts;
lchan->nr = l;
lchan->type = GSM_LCHAN_NONE;
#ifndef ROLE_BSC
INIT_LLIST_HEAD(&lchan->sapi_cmds);
#endif
}
}