From: Al Viro Date: Thu, 23 Aug 2007 01:42:28 +0000 (-0400) Subject: amd8111e big-endian fix X-Git-Tag: Ubuntu-5.13.0-19.19~47935^2~426 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=05d2fec9f5e5fd1d7169435631b9d55ae4c566d1;p=mirror_ubuntu-jammy-kernel.git amd8111e big-endian fix amd8111e_calc_coalesce() ends up with insane values of tx_data_rate since ->tx_bytes increments missing conversion from little- to host-endian Signed-off-by: Al Viro Signed-off-by: Jeff Garzik --- diff --git a/drivers/net/amd8111e.c b/drivers/net/amd8111e.c index babe0de2ce44..1cc74ec88a58 100644 --- a/drivers/net/amd8111e.c +++ b/drivers/net/amd8111e.c @@ -709,7 +709,8 @@ static int amd8111e_tx(struct net_device *dev) lp->tx_complete_idx++; /*COAL update tx coalescing parameters */ lp->coal_conf.tx_packets++; - lp->coal_conf.tx_bytes += lp->tx_ring[tx_index].buff_count; + lp->coal_conf.tx_bytes += + le16_to_cpu(lp->tx_ring[tx_index].buff_count); if (netif_queue_stopped(dev) && lp->tx_complete_idx > lp->tx_idx - NUM_TX_BUFFERS +2){