[subscr] Remove the struct gsm_bts pointer from subscriber

The pointer was initially added to support to open a lchan
by using the gsm_subscriber structure. We would have restored
the struct gsm_bts from the db when loading the subscriber.

Instead we will dynamically resolve the gsm_bts and might end
up paging multiple bts in the same (stored/old) location area
until it answers.
This commit is contained in:
Holger Freyther 2009-06-04 14:27:39 +00:00
parent 862cfff609
commit c3d4b2d441
2 changed files with 2 additions and 7 deletions

View File

@ -23,7 +23,6 @@ struct gsm_subscriber {
/* for internal management */
int use_count;
struct llist_head entry;
struct gsm_bts *current_bts;
};
enum gsm_subscriber_field {

View File

@ -96,17 +96,13 @@ int subscr_update(struct gsm_subscriber *s, struct gsm_bts *bts, int reason)
/* FIXME: Migrate pending requests from one BSC to another */
switch (reason) {
case GSM_SUBSCRIBER_UPDATE_ATTACHED:
s->current_bts = bts;
/* Indicate "attached to LAC" */
s->lac = bts->location_area_code;
break;
case GSM_SUBSCRIBER_UPDATE_DETACHED:
/* Only detach if we are currently attached to this bts */
if (bts == s->current_bts) {
s->current_bts = NULL;
/* Indicate "detached" */
/* Only detach if we are currently in this area */
if (bts->location_area_code == s->lac)
s->lac = 0;
}
break;
default: