Hello Jenkins Builder,

I'd like you to reexamine a change.  Please visit

    https://gerrit.osmocom.org/6478

to look at the new patch set (#3).

vty: 'show bts': list the TRXs' ARFCNs

Change-Id: I56ee2edc7473dc5e9f3c3463194369024cd64995
---
M src/libbsc/bsc_vty.c
1 file changed, 8 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/78/6478/3

diff --git a/src/libbsc/bsc_vty.c b/src/libbsc/bsc_vty.c
index e48275d..b4c8885 100644
--- a/src/libbsc/bsc_vty.c
+++ b/src/libbsc/bsc_vty.c
@@ -270,6 +270,7 @@
 {
        struct pchan_load pl;
        unsigned long long sec;
+       struct gsm_bts_trx *trx;
 
        vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
                "BSIC %u (NCC=%u, BCC=%u) and %u TRX%s",
@@ -280,6 +281,13 @@
                bts->num_trx, VTY_NEWLINE);
        vty_out(vty, "  Description: %s%s",
                bts->description ? bts->description : "(null)", VTY_NEWLINE);
+
+       vty_out(vty, "  ARFCNs:");
+       llist_for_each_entry(trx, &bts->trx_list, list) {
+               vty_out(vty, " %u", trx->arfcn);
+       }
+       vty_out(vty, "%s", VTY_NEWLINE);
+
        if (strnlen(bts->pcu_version, MAX_VERSION_LENGTH))
                vty_out(vty, "  PCU version %s connected%s", bts->pcu_version,
                        VTY_NEWLINE);

-- 
To view, visit https://gerrit.osmocom.org/6478
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I56ee2edc7473dc5e9f3c3463194369024cd64995
Gerrit-PatchSet: 3
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofm...@sysmocom.de>
Gerrit-Reviewer: Harald Welte <lafo...@gnumonks.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr <nhofm...@sysmocom.de>

Reply via email to