aboutsummaryrefslogtreecommitdiffstats
path: root/src/abis_rsl.c
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2009-02-11 00:43:48 +0000
committerHolger Freyther <zecke@selfish.org>2009-02-11 00:43:48 +0000
commit3b91043caedb9322e34e9707945d9790ffc4a43f (patch)
tree64053a74303ab9a1ceb959d6f2585df5c8c25bbc /src/abis_rsl.c
parent0df0f8774076733cad02a71b542452e553d2aafd (diff)
[ccch load] Enable notifications for CCCH/PAGING LOAD again
Set the threshold to 0% for the load indication. The paging buffer space will be used by the paging notifications and we will ignore the racch usage notification for now.
Diffstat (limited to 'src/abis_rsl.c')
-rw-r--r--src/abis_rsl.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/abis_rsl.c b/src/abis_rsl.c
index ad869f4db..62ea4e657 100644
--- a/src/abis_rsl.c
+++ b/src/abis_rsl.c
@@ -672,8 +672,6 @@ static int rsl_rx_ccch_load(struct msgb *msg)
switch (rslh->data[0]) {
case RSL_IE_PAGING_LOAD:
pg_buf_space = rslh->data[1] << 8 | rslh->data[2];
- DEBUGP(DRSL, "CCCH LOAD IND, free paging buffer space: %u\n",
- pg_buf_space);
paging_update_buffer_space(msg->trx->bts, pg_buf_space);
break;
case RSL_IE_RACH_LOAD:
@@ -682,8 +680,6 @@ static int rsl_rx_ccch_load(struct msgb *msg)
rach_busy_count = rslh->data[4] << 8 | rslh->data[5];
rach_access_count = rslh->data[6] << 8 | rslh->data[7];
}
- DEBUGP(DRSL, "CCCH LOAD IND, RACH Load Count: %u Busy: %u Access: %u\n",
- rach_slot_count, rach_busy_count, rach_access_count);
break;
default:
break;