#define IGB_STAT(m) FIELD_SIZEOF(struct igb_adapter, m), \
                      offsetof(struct igb_adapter, m)
+#define IGB_NETDEV_STAT(m) FIELD_SIZEOF(struct net_device, m), \
+                     offsetof(struct net_device, m)
 static const struct igb_stats igb_gstrings_stats[] = {
        { "rx_packets", IGB_STAT(stats.gprc) },
        { "tx_packets", IGB_STAT(stats.gptc) },
        { "tx_broadcast", IGB_STAT(stats.bptc) },
        { "rx_multicast", IGB_STAT(stats.mprc) },
        { "tx_multicast", IGB_STAT(stats.mptc) },
-       { "rx_errors", IGB_STAT(net_stats.rx_errors) },
-       { "tx_errors", IGB_STAT(net_stats.tx_errors) },
-       { "tx_dropped", IGB_STAT(net_stats.tx_dropped) },
+       { "rx_errors", IGB_NETDEV_STAT(stats.rx_errors) },
+       { "tx_errors", IGB_NETDEV_STAT(stats.tx_errors) },
+       { "tx_dropped", IGB_NETDEV_STAT(stats.tx_dropped) },
        { "multicast", IGB_STAT(stats.mprc) },
        { "collisions", IGB_STAT(stats.colc) },
-       { "rx_length_errors", IGB_STAT(net_stats.rx_length_errors) },
-       { "rx_over_errors", IGB_STAT(net_stats.rx_over_errors) },
+       { "rx_length_errors", IGB_NETDEV_STAT(stats.rx_length_errors) },
+       { "rx_over_errors", IGB_NETDEV_STAT(stats.rx_over_errors) },
        { "rx_crc_errors", IGB_STAT(stats.crcerrs) },
-       { "rx_frame_errors", IGB_STAT(net_stats.rx_frame_errors) },
+       { "rx_frame_errors", IGB_NETDEV_STAT(stats.rx_frame_errors) },
        { "rx_no_buffer_count", IGB_STAT(stats.rnbc) },
-       { "rx_queue_drop_packet_count", IGB_STAT(net_stats.rx_fifo_errors) },
+       { "rx_queue_drop_packet_count", IGB_NETDEV_STAT(stats.rx_fifo_errors) },
        { "rx_missed_errors", IGB_STAT(stats.mpc) },
        { "tx_aborted_errors", IGB_STAT(stats.ecol) },
        { "tx_carrier_errors", IGB_STAT(stats.tncrs) },
-       { "tx_fifo_errors", IGB_STAT(net_stats.tx_fifo_errors) },
-       { "tx_heartbeat_errors", IGB_STAT(net_stats.tx_heartbeat_errors) },
+       { "tx_fifo_errors", IGB_NETDEV_STAT(stats.tx_fifo_errors) },
+       { "tx_heartbeat_errors", IGB_NETDEV_STAT(stats.tx_heartbeat_errors) },
        { "tx_window_errors", IGB_STAT(stats.latecol) },
        { "tx_abort_late_coll", IGB_STAT(stats.latecol) },
        { "tx_deferred_ok", IGB_STAT(stats.dc) },
 
  **/
 static struct net_device_stats *igb_get_stats(struct net_device *netdev)
 {
-       struct igb_adapter *adapter = netdev_priv(netdev);
-
        /* only return the current stats */
-       return &adapter->net_stats;
+       return &netdev->stats;
 }
 
 /**
 
 void igb_update_stats(struct igb_adapter *adapter)
 {
+       struct net_device *netdev = adapter->netdev;
        struct e1000_hw *hw = &adapter->hw;
        struct pci_dev *pdev = adapter->pdev;
        u16 phy_tmp;
        adapter->stats.icrxdmtc += rd32(E1000_ICRXDMTC);
 
        /* Fill out the OS statistics structure */
-       adapter->net_stats.multicast = adapter->stats.mprc;
-       adapter->net_stats.collisions = adapter->stats.colc;
+       netdev->stats.multicast = adapter->stats.mprc;
+       netdev->stats.collisions = adapter->stats.colc;
 
        /* Rx Errors */
 
                        adapter->rx_ring[i].rx_stats.drops += rqdpc_tmp;
                        rqdpc_total += adapter->rx_ring[i].rx_stats.drops;
                }
-               adapter->net_stats.rx_fifo_errors = rqdpc_total;
+               netdev->stats.rx_fifo_errors = rqdpc_total;
        }
 
        /* Note RNBC (Receive No Buffers Count) is an not an exact
         * one of the reason for saving it in rx_fifo_errors, as its
         * potentially not a true drop.
         */
-       adapter->net_stats.rx_fifo_errors += adapter->stats.rnbc;
+       netdev->stats.rx_fifo_errors += adapter->stats.rnbc;
 
        /* RLEC on some newer hardware can be incorrect so build
         * our own version based on RUC and ROC */
-       adapter->net_stats.rx_errors = adapter->stats.rxerrc +
+       netdev->stats.rx_errors = adapter->stats.rxerrc +
                adapter->stats.crcerrs + adapter->stats.algnerrc +
                adapter->stats.ruc + adapter->stats.roc +
                adapter->stats.cexterr;
-       adapter->net_stats.rx_length_errors = adapter->stats.ruc +
+       netdev->stats.rx_length_errors = adapter->stats.ruc +
                                              adapter->stats.roc;
-       adapter->net_stats.rx_crc_errors = adapter->stats.crcerrs;
-       adapter->net_stats.rx_frame_errors = adapter->stats.algnerrc;
-       adapter->net_stats.rx_missed_errors = adapter->stats.mpc;
+       netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
+       netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
+       netdev->stats.rx_missed_errors = adapter->stats.mpc;
 
        /* Tx Errors */
-       adapter->net_stats.tx_errors = adapter->stats.ecol +
+       netdev->stats.tx_errors = adapter->stats.ecol +
                                       adapter->stats.latecol;
-       adapter->net_stats.tx_aborted_errors = adapter->stats.ecol;
-       adapter->net_stats.tx_window_errors = adapter->stats.latecol;
-       adapter->net_stats.tx_carrier_errors = adapter->stats.tncrs;
+       netdev->stats.tx_aborted_errors = adapter->stats.ecol;
+       netdev->stats.tx_window_errors = adapter->stats.latecol;
+       netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
 
        /* Tx Dropped needs to be maintained elsewhere */
 
        tx_ring->total_packets += total_packets;
        tx_ring->tx_stats.bytes += total_bytes;
        tx_ring->tx_stats.packets += total_packets;
-       adapter->net_stats.tx_bytes += total_bytes;
-       adapter->net_stats.tx_packets += total_packets;
+       netdev->stats.tx_bytes += total_bytes;
+       netdev->stats.tx_packets += total_packets;
        return (count < tx_ring->count);
 }
 
        rx_ring->total_bytes += total_bytes;
        rx_ring->rx_stats.packets += total_packets;
        rx_ring->rx_stats.bytes += total_bytes;
-       adapter->net_stats.rx_bytes += total_bytes;
-       adapter->net_stats.rx_packets += total_packets;
+       netdev->stats.rx_bytes += total_bytes;
+       netdev->stats.rx_packets += total_packets;
        return cleaned;
 }