pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bsc/+/27943 )
Change subject: paging: Check C0 RSL link instead of OML link ......................................................................
paging: Check C0 RSL link instead of OML link
PAging happens over C0 RSL link, not over OML, so let's actually validate that the C0 RSL link is up before paging instead of the OML one.
Change-Id: I11e5bb6f952534763935aa01470e514d4af247ed --- M src/osmo-bsc/paging.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified fixeria: Looks good to me, but someone else must approve laforge: Looks good to me, approved
diff --git a/src/osmo-bsc/paging.c b/src/osmo-bsc/paging.c index 74a550d..3da5f18 100644 --- a/src/osmo-bsc/paging.c +++ b/src/osmo-bsc/paging.c @@ -196,7 +196,7 @@ }
/* Skip paging if the bts is down. */ - if (!bts->oml_link) + if (!bts->c0->rsl_link_primary) goto sched_next_iter;
/* do while loop: Try send at most first MAX_PAGE_REQ_PER_ITER paging
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one.