Commit e27d785e authored by Colin Foster's avatar Colin Foster Committed by David S. Miller

net: mscc: ocelot: remove unnecessary stat reading from ethtool

The ocelot_update_stats function only needs to read from one port, yet it
was updating the stats for all ports. Update to only read the stats that
are necessary.
Signed-off-by: default avatarColin Foster <colin.foster@in-advantage.com>
Reviewed-by: default avatarVladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4cf91f82
...@@ -1746,27 +1746,24 @@ void ocelot_get_strings(struct ocelot *ocelot, int port, u32 sset, u8 *data) ...@@ -1746,27 +1746,24 @@ void ocelot_get_strings(struct ocelot *ocelot, int port, u32 sset, u8 *data)
EXPORT_SYMBOL(ocelot_get_strings); EXPORT_SYMBOL(ocelot_get_strings);
/* Caller must hold &ocelot->stats_lock */ /* Caller must hold &ocelot->stats_lock */
static void ocelot_update_stats(struct ocelot *ocelot) static void ocelot_port_update_stats(struct ocelot *ocelot, int port)
{ {
int i, j; int j;
for (i = 0; i < ocelot->num_phys_ports; i++) { /* Configure the port to read the stats from */
/* Configure the port to read the stats from */ ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(port), SYS_STAT_CFG);
ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(i), SYS_STAT_CFG);
for (j = 0; j < ocelot->num_stats; j++) { for (j = 0; j < ocelot->num_stats; j++) {
u32 val; u32 val;
unsigned int idx = i * ocelot->num_stats + j; unsigned int idx = port * ocelot->num_stats + j;
val = ocelot_read_rix(ocelot, SYS_COUNT_RX_OCTETS, val = ocelot_read_rix(ocelot, SYS_COUNT_RX_OCTETS,
ocelot->stats_layout[j].offset); ocelot->stats_layout[j].offset);
if (val < (ocelot->stats[idx] & U32_MAX)) if (val < (ocelot->stats[idx] & U32_MAX))
ocelot->stats[idx] += (u64)1 << 32; ocelot->stats[idx] += (u64)1 << 32;
ocelot->stats[idx] = (ocelot->stats[idx] & ocelot->stats[idx] = (ocelot->stats[idx] & ~(u64)U32_MAX) + val;
~(u64)U32_MAX) + val;
}
} }
} }
...@@ -1775,9 +1772,11 @@ static void ocelot_check_stats_work(struct work_struct *work) ...@@ -1775,9 +1772,11 @@ static void ocelot_check_stats_work(struct work_struct *work)
struct delayed_work *del_work = to_delayed_work(work); struct delayed_work *del_work = to_delayed_work(work);
struct ocelot *ocelot = container_of(del_work, struct ocelot, struct ocelot *ocelot = container_of(del_work, struct ocelot,
stats_work); stats_work);
int i;
mutex_lock(&ocelot->stats_lock); mutex_lock(&ocelot->stats_lock);
ocelot_update_stats(ocelot); for (i = 0; i < ocelot->num_phys_ports; i++)
ocelot_port_update_stats(ocelot, i);
mutex_unlock(&ocelot->stats_lock); mutex_unlock(&ocelot->stats_lock);
queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work, queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work,
...@@ -1791,7 +1790,7 @@ void ocelot_get_ethtool_stats(struct ocelot *ocelot, int port, u64 *data) ...@@ -1791,7 +1790,7 @@ void ocelot_get_ethtool_stats(struct ocelot *ocelot, int port, u64 *data)
mutex_lock(&ocelot->stats_lock); mutex_lock(&ocelot->stats_lock);
/* check and update now */ /* check and update now */
ocelot_update_stats(ocelot); ocelot_port_update_stats(ocelot, port);
/* Copy all counters */ /* Copy all counters */
for (i = 0; i < ocelot->num_stats; i++) for (i = 0; i < ocelot->num_stats; i++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment