Review at https://gerrit.osmocom.org/4959
libmsc/vty: don't access old bsc rate counters
The BSC rate counters are a leftover from the nitb split.
Accessing them would result into a null-pointer exception,
because the struct isn't initialized.
Change-Id: I8c72ab8bf781d3f9a436eb1a27ac4d13df5e656b
---
M src/libmsc/vty_interface_layer3.c
1 file changed, 0 insertions(+), 8 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/59/4959/1
diff --git a/src/libmsc/vty_interface_layer3.c
b/src/libmsc/vty_interface_layer3.c
index 6211d48..02a3600 100644
--- a/src/libmsc/vty_interface_layer3.c
+++ b/src/libmsc/vty_interface_layer3.c
@@ -659,14 +659,6 @@
net->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_COMPLETED].current,
net->msc_ctrs->ctr[MSC_CTR_LOC_UPDATE_FAILED].current,
VTY_NEWLINE);
- vty_out(vty, "Handover : %lu attempted, %lu no_channel,
%lu timeout, "
- "%lu completed, %lu failed%s",
- net->bsc_ctrs->ctr[BSC_CTR_HANDOVER_ATTEMPTED].current,
- net->bsc_ctrs->ctr[BSC_CTR_HANDOVER_NO_CHANNEL].current,
- net->bsc_ctrs->ctr[BSC_CTR_HANDOVER_TIMEOUT].current,
- net->bsc_ctrs->ctr[BSC_CTR_HANDOVER_COMPLETED].current,
- net->bsc_ctrs->ctr[BSC_CTR_HANDOVER_FAILED].current,
- VTY_NEWLINE);
vty_out(vty, "SMS MO : %lu submitted, %lu no
receiver%s",
net->msc_ctrs->ctr[MSC_CTR_SMS_SUBMITTED].current,
net->msc_ctrs->ctr[MSC_CTR_SMS_NO_RECEIVER].current,
--
To view, visit https://gerrit.osmocom.org/4959
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I8c72ab8bf781d3f9a436eb1a27ac4d13df5e656b
Gerrit-PatchSet: 1
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Owner: lynxis lazus <[email protected]>