pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bsc/+/27884 )
Change subject: paging: Log skip paging due to not enough free channels ......................................................................
paging: Log skip paging due to not enough free channels
Change-Id: I311f90be99c4561b45f99ce98533aab5909301d0 --- M src/osmo-bsc/paging.c 1 file changed, 5 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/84/27884/1
diff --git a/src/osmo-bsc/paging.c b/src/osmo-bsc/paging.c index 7dfbb24..50dd655 100644 --- a/src/osmo-bsc/paging.c +++ b/src/osmo-bsc/paging.c @@ -208,8 +208,11 @@ struct gsm_paging_request, entry);
/* we need to determine the number of free channels */ - if (paging_bts->free_chans_need != -1) { - if (can_send_pag_req(request->bts, request->chan_type) != 0) + if (paging_bts->free_chans_need != -1 && + can_send_pag_req(request->bts, request->chan_type) != 0) { + LOG_PAGING_BTS(request, request->bts, DPAG, LOGL_INFO, + "Paging delayed: not enough free channels (<%d)\n", + paging_bts->free_chans_need); goto skip_paging; }