pre-fix measurement reports with subscriber identity

... otherwise it's impossible to distinguish them from each other.
This commit is contained in:
Harald Welte 2012-07-02 17:12:08 +02:00
parent 019f913ca3
commit 0c1bd61bb3
1 changed files with 7 additions and 3 deletions

View File

@ -918,11 +918,15 @@ static void print_meas_rep_uni(struct gsm_meas_rep_unidir *mru,
prefix, mru->full.rx_qual, prefix, mru->sub.rx_qual);
}
static void print_meas_rep(struct gsm_meas_rep *mr)
static void print_meas_rep(struct gsm_lchan *lchan, struct gsm_meas_rep *mr)
{
int i;
char *name = "";
DEBUGP(DMEAS, "MEASUREMENT RESULT NR=%d ", mr->nr);
if (lchan && lchan->conn && lchan->conn->subscr)
name = subscr_name(lchan->conn->subscr);
DEBUGP(DMEAS, "[%s] MEASUREMENT RESULT NR=%d ", name, mr->nr);
if (mr->flags & MEAS_REP_F_DL_DTX)
DEBUGPC(DMEAS, "DTXd ");
@ -1027,7 +1031,7 @@ static int rsl_rx_meas_res(struct msgb *msg)
return rc;
}
print_meas_rep(mr);
print_meas_rep(msg->lchan, mr);
send_lchan_signal(S_LCHAN_MEAS_REP, msg->lchan, mr);