static void vsc9959_psfp_counters_get(struct ocelot *ocelot, u32 index,
                                      struct felix_stream_filter_counters *counters)
 {
-       spin_lock(&ocelot->stats_lock);
+       mutex_lock(&ocelot->stat_view_lock);
 
        ocelot_rmw(ocelot, SYS_STAT_CFG_STAT_VIEW(index),
                   SYS_STAT_CFG_STAT_VIEW_M,
                     SYS_STAT_CFG_STAT_CLEAR_SHOT(0x10),
                     SYS_STAT_CFG);
 
-       spin_unlock(&ocelot->stats_lock);
+       mutex_unlock(&ocelot->stat_view_lock);
 }
 
 static int vsc9959_psfp_filter_add(struct ocelot *ocelot, int port,
 
 }
 EXPORT_SYMBOL(ocelot_get_strings);
 
-/* Caller must hold &ocelot->stats_lock */
+/* Read the counters from hardware and keep them in region->buf.
+ * Caller must hold &ocelot->stat_view_lock.
+ */
 static int ocelot_port_update_stats(struct ocelot *ocelot, int port)
 {
-       unsigned int idx = port * OCELOT_NUM_STATS;
        struct ocelot_stats_region *region;
-       int err, j;
+       int err;
 
        /* Configure the port to read the stats from */
        ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(port), SYS_STAT_CFG);
                                       region->count);
                if (err)
                        return err;
+       }
+
+       return 0;
+}
 
+/* Transfer the counters from region->buf to ocelot->stats.
+ * Caller must hold &ocelot->stat_view_lock and &ocelot->stats_lock.
+ */
+static void ocelot_port_transfer_stats(struct ocelot *ocelot, int port)
+{
+       unsigned int idx = port * OCELOT_NUM_STATS;
+       struct ocelot_stats_region *region;
+       int j;
+
+       list_for_each_entry(region, &ocelot->stats_regions, node) {
                for (j = 0; j < region->count; j++) {
                        u64 *stat = &ocelot->stats[idx + j];
                        u64 val = region->buf[j];
 
                idx += region->count;
        }
-
-       return err;
 }
 
 static void ocelot_check_stats_work(struct work_struct *work)
        struct delayed_work *del_work = to_delayed_work(work);
        struct ocelot *ocelot = container_of(del_work, struct ocelot,
                                             stats_work);
-       int i, err;
+       int port, err;
 
-       spin_lock(&ocelot->stats_lock);
-       for (i = 0; i < ocelot->num_phys_ports; i++) {
-               err = ocelot_port_update_stats(ocelot, i);
+       mutex_lock(&ocelot->stat_view_lock);
+
+       for (port = 0; port < ocelot->num_phys_ports; port++) {
+               err = ocelot_port_update_stats(ocelot, port);
                if (err)
                        break;
+
+               spin_lock(&ocelot->stats_lock);
+               ocelot_port_transfer_stats(ocelot, port);
+               spin_unlock(&ocelot->stats_lock);
        }
-       spin_unlock(&ocelot->stats_lock);
+
+       mutex_unlock(&ocelot->stat_view_lock);
 
        if (err)
                dev_err(ocelot->dev, "Error %d updating ethtool stats\n",  err);
 {
        int i, err;
 
-       spin_lock(&ocelot->stats_lock);
+       mutex_lock(&ocelot->stat_view_lock);
 
        /* check and update now */
        err = ocelot_port_update_stats(ocelot, port);
 
+       spin_lock(&ocelot->stats_lock);
+
+       ocelot_port_transfer_stats(ocelot, port);
+
        /* Copy all supported counters */
        for (i = 0; i < OCELOT_NUM_STATS; i++) {
                int index = port * OCELOT_NUM_STATS + i;
 
        spin_unlock(&ocelot->stats_lock);
 
+       mutex_unlock(&ocelot->stat_view_lock);
+
        if (err)
                dev_err(ocelot->dev, "Error %d updating ethtool stats\n", err);
 }
                return -ENOMEM;
 
        spin_lock_init(&ocelot->stats_lock);
+       mutex_init(&ocelot->stat_view_lock);
        mutex_init(&ocelot->ptp_lock);
        mutex_init(&ocelot->mact_lock);
        mutex_init(&ocelot->fwd_domain_lock);