diff options
author | John Crispin <john@openwrt.org> | 2016-03-04 08:33:22 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2016-03-04 08:33:22 +0000 |
commit | 76e1efc0427d679388a76b194bcd961b64a03651 (patch) | |
tree | 19ee742628eff83373d9964a952a77d1c82369f1 /target/linux/generic/files/drivers | |
parent | f07a57c0e80f6e7f19781aca54e27fcaf77b6459 (diff) | |
download | upstream-76e1efc0427d679388a76b194bcd961b64a03651.tar.gz upstream-76e1efc0427d679388a76b194bcd961b64a03651.tar.bz2 upstream-76e1efc0427d679388a76b194bcd961b64a03651.zip |
AR8216: don't display MIB counters if all are empty
For unused switch ports all MIB values are zero. Displaying ~40 empty
MIB counters is just confusing and makes it hard to read the output of
swconfig dev <dev> show.
Therefore, if all MIB counters for a port are zero, just display
an info that the MIB counters are empty.
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
SVN-Revision: 48910
Diffstat (limited to 'target/linux/generic/files/drivers')
-rw-r--r-- | target/linux/generic/files/drivers/net/phy/ar8216.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/target/linux/generic/files/drivers/net/phy/ar8216.c b/target/linux/generic/files/drivers/net/phy/ar8216.c index 75db1f120b..daa59083e3 100644 --- a/target/linux/generic/files/drivers/net/phy/ar8216.c +++ b/target/linux/generic/files/drivers/net/phy/ar8216.c @@ -1329,6 +1329,7 @@ ar8xxx_sw_get_port_mib(struct switch_dev *dev, int ret; char *buf = priv->buf; int i, len = 0; + bool mib_stats_empty = true; if (!ar8xxx_has_mib_counters(priv)) return -EOPNOTSUPP; @@ -1349,11 +1350,17 @@ ar8xxx_sw_get_port_mib(struct switch_dev *dev, port); mib_stats = &priv->mib_stats[port * chip->num_mibs]; - for (i = 0; i < chip->num_mibs; i++) + for (i = 0; i < chip->num_mibs; i++) { len += snprintf(buf + len, sizeof(priv->buf) - len, "%-12s: %llu\n", chip->mib_decs[i].name, mib_stats[i]); + if (mib_stats_empty && mib_stats[i]) + mib_stats_empty = false; + } + + if (mib_stats_empty) + len = snprintf(buf, sizeof(priv->buf), "No MIB data"); val->value.s = buf; val->len = len; |