paging: page all bts when no cell is associated

When the cell identifier list of the BSSMAP paging contains an
"No cell is associated with the transaction." entry then the
paging is dropped and no paging is started at all. This is not
correct. When no cell is associated, the BSS should page the
whole BSS instead.

- Replace respective error case with a paging request to all
  bts.

Change-Id: Id85e3a7540bdc13cd0e780e7870f16c35c6a6a50
This commit is contained in:
Philipp Maier 2018-02-23 13:06:05 +01:00 committed by Harald Welte
parent ec00fcfe63
commit 0063752ec5
1 changed files with 2 additions and 2 deletions

View File

@ -524,8 +524,8 @@ static int bssmap_handle_paging(struct bsc_msc_data *msc,
switch (cell_ident) {
case CELL_IDENT_NO_CELL:
LOGP(DMSC, LOGL_NOTICE, "Ignoring no-op paging request for IMSI %s\n", mi_string);
return 0; /* nothing to do */
page_all_bts(msc, tmsi, mi_string, chan_needed);
break;
case CELL_IDENT_WHOLE_GLOBAL:
page_cgi(msc, data, data_length, remain, tmsi, mi_string, chan_needed);