ICE_VSI_STAT("rx_unknown_protocol", eth_stats.rx_unknown_protocol),
        ICE_VSI_STAT("rx_alloc_fail", rx_buf_failed),
        ICE_VSI_STAT("rx_pg_alloc_fail", rx_page_failed),
+       ICE_VSI_STAT("rx_gro_dropped", rx_gro_dropped),
        ICE_VSI_STAT("tx_errors", eth_stats.tx_errors),
        ICE_VSI_STAT("tx_linearize", tx_linearize),
+       ICE_VSI_STAT("tx_busy", tx_busy),
+       ICE_VSI_STAT("tx_restart", tx_restart),
 };
 
 enum ice_ethtool_test_id {
        ICE_PF_STAT("rx_broadcast.nic", stats.eth.rx_broadcast),
        ICE_PF_STAT("tx_broadcast.nic", stats.eth.tx_broadcast),
        ICE_PF_STAT("tx_errors.nic", stats.eth.tx_errors),
+       ICE_PF_STAT("tx_timeout.nic", tx_timeout_count),
        ICE_PF_STAT("rx_size_64.nic", stats.rx_size_64),
        ICE_PF_STAT("tx_size_64.nic", stats.tx_size_64),
        ICE_PF_STAT("rx_size_127.nic", stats.rx_size_127),
 
        vsi->tx_linearize = 0;
        vsi->rx_buf_failed = 0;
        vsi->rx_page_failed = 0;
+       vsi->rx_gro_dropped = 0;
 
        rcu_read_lock();
 
                vsi_stats->rx_bytes += bytes;
                vsi->rx_buf_failed += ring->rx_stats.alloc_buf_failed;
                vsi->rx_page_failed += ring->rx_stats.alloc_page_failed;
+               vsi->rx_gro_dropped += ring->rx_stats.gro_dropped;
        }
 
        /* update XDP Tx rings counters */
        ice_update_eth_stats(vsi);
 
        cur_ns->tx_errors = cur_es->tx_errors;
-       cur_ns->rx_dropped = cur_es->rx_discards;
+       cur_ns->rx_dropped = cur_es->rx_discards + vsi->rx_gro_dropped;
        cur_ns->tx_dropped = cur_es->tx_discards;
        cur_ns->multicast = cur_es->rx_multicast;
 
 
        if ((rx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
            (vlan_tag & VLAN_VID_MASK))
                __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
-       napi_gro_receive(&rx_ring->q_vector->napi, skb);
+       if (napi_gro_receive(&rx_ring->q_vector->napi, skb) == GRO_DROP) {
+               /* this is tracked separately to help us debug stack drops */
+               rx_ring->rx_stats.gro_dropped++;
+               netdev_dbg(rx_ring->netdev, "Receive Queue %d: Dropped packet from GRO\n",
+                          rx_ring->q_index);
+       }
 }
 
 /**