From e786c32bc935bb7767335758e92c886322c8aeb5 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 19 Dec 2009 21:29:19 +0100 Subject: [handover] don't use measurement reports with NCELL=7 NCELL=7 inidicates that there was no neighbor cell info in the SI5 on the SACCH. --- openbsc/src/handover_decision.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openbsc/src/handover_decision.c b/openbsc/src/handover_decision.c index c0ec0a931..3605a8e0a 100644 --- a/openbsc/src/handover_decision.c +++ b/openbsc/src/handover_decision.c @@ -71,6 +71,9 @@ static int process_meas_rep(struct gsm_meas_rep *mr) /* FIXME: implement actual averaging over multiple measurement * reports */ + if (mr->num_cell > 6) + return 0; + /* find the best cell in this report that is at least RXLEV_HYST * better than the current serving cell */ for (i = 0; i < mr->num_cell; i++) { -- cgit v1.2.3