]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
ehea: Fix a copy-paste err in ehea_init_port_res
authorYueHaibing <yuehaibing@huawei.com>
Wed, 3 Apr 2019 07:47:59 +0000 (15:47 +0800)
committerKhalid Elmously <khalid.elmously@canonical.com>
Fri, 14 Feb 2020 05:29:37 +0000 (00:29 -0500)
BugLink: https://bugs.launchpad.net/bugs/1863019
[ Upstream commit c8f191282f819ab4e9b47b22a65c6c29734cefce ]

pr->tx_bytes should be assigned to tx_bytes other than
rx_bytes.

Reported-by: Hulk Robot <hulkci@huawei.com>
Fixes: ce45b873028f ("ehea: Fixing statistics")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Khalid Elmously <khalid.elmously@canonical.com>
drivers/net/ethernet/ibm/ehea/ehea_main.c

index 01cb3fe1a22f4be9b434537a617dfbcc250a043b..dc61e9b42014f45c39443fe9c6afdcfc0524558f 100644 (file)
@@ -1475,7 +1475,7 @@ static int ehea_init_port_res(struct ehea_port *port, struct ehea_port_res *pr,
 
        memset(pr, 0, sizeof(struct ehea_port_res));
 
-       pr->tx_bytes = rx_bytes;
+       pr->tx_bytes = tx_bytes;
        pr->tx_packets = tx_packets;
        pr->rx_bytes = rx_bytes;
        pr->rx_packets = rx_packets;