vlr: don't log about "gratuitous ID RESPONSE"

If an ID Response comes in during a non-LU L3 Complete (Paging or CM Service
Request), no event needs to be dispatched. So far vlr_subscr_rx_id_resp()
logged a NOTICE "gratuitous ID RESPONSE?!?" if no lu_fsm is present.

An ID Response can come in particularly as payload with a BSSMAP Cipher Mode
Complete message, even though osmo-msc didn't explicitly ask for it.

It is not an error to get a Cipher Mode Complete containing an ID Response
during Paging or CM Service Request, so remove the confusing log message.

Related: OS#4168 (only loosely related)
Change-Id: I8a5b8735eb41cd0976c7ab32cdd55440d3ef70ac
This commit is contained in:
Neels Hofmeyr 2019-09-03 01:08:07 +02:00 committed by neels
parent 991bb422d4
commit 4b78b29b8c
1 changed files with 0 additions and 2 deletions

View File

@ -1182,8 +1182,6 @@ int vlr_subscr_rx_id_resp(struct vlr_subscr *vsub,
break;
}
osmo_fsm_inst_dispatch(vsub->lu_fsm, event, mi_string);
} else {
LOGVSUBP(LOGL_NOTICE, vsub, "gratuitous ID RESPONSE?!?\n");
}
return 0;