don't forward paging requests to HNB's not yet registered

Change-Id: I22ddfea1c6e13e91acecaf731b446e2de0976892
This commit is contained in:
Harald Welte 2024-03-08 13:00:50 +01:00 committed by laforge
parent cae5bf33e8
commit 1cd9402663
1 changed files with 2 additions and 0 deletions

View File

@ -305,6 +305,8 @@ static int cn_ranap_rx_paging_cmd(struct hnbgw_cnlink *cnlink,
/* FIXME: determine which HNBs to send this Paging command,
* rather than broadcasting to all HNBs */
llist_for_each_entry(hnb, &g_hnbgw->hnb_list, list) {
if (!hnb->hnb_registered)
continue;
rua_tx_udt(hnb, data, len);
}