From 43c96acb64f6fbae71d12b9f17d6bd13ca9451ec Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Sun, 23 Jun 2013 10:44:34 +0200 Subject: Fix: Increase the number of measurement report history to 10 If we want to average over up to 10 measurement reports (as configurable at VTY), we need a history of at least 10 measurements. --- include/osmocom/bsc/gsm_data.h | 2 ++ include/osmocom/bsc/gsm_data_shared.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/osmocom/bsc/gsm_data.h b/include/osmocom/bsc/gsm_data.h index 52937cc57..17ca5df57 100644 --- a/include/osmocom/bsc/gsm_data.h +++ b/include/osmocom/bsc/gsm_data.h @@ -87,6 +87,8 @@ struct gsm_anchor_operation { #define MAX_NEIGH_MEAS 10 /* Maximum size of the averaging window for neighbor cells */ #define MAX_WIN_NEIGH_AVG 10 +/* Maximum number of report history we store */ +#define MAX_MEAS_REP 10 /* processed neighbor measurements for one cell */ struct neigh_meas_proc { diff --git a/include/osmocom/bsc/gsm_data_shared.h b/include/osmocom/bsc/gsm_data_shared.h index f57fae545..5ef3ef4ea 100644 --- a/include/osmocom/bsc/gsm_data_shared.h +++ b/include/osmocom/bsc/gsm_data_shared.h @@ -246,7 +246,7 @@ struct gsm_lchan { struct neigh_meas_proc neigh_meas[MAX_NEIGH_MEAS]; /* cache of last measurement reports on this lchan */ - struct gsm_meas_rep meas_rep[6]; + struct gsm_meas_rep meas_rep[MAX_MEAS_REP]; int meas_rep_idx; int meas_rep_cnt; -- cgit v1.2.3