Commit c8f19128 authored by YueHaibing's avatar YueHaibing Committed by David S. Miller

ehea: Fix a copy-paste err in ehea_init_port_res

pr->tx_bytes should be assigned to tx_bytes other than
rx_bytes.
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Fixes: ce45b873 ("ehea: Fixing statistics")
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Reviewed-by: default avatarMukesh Ojha <mojha@codeaurora.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 28b05b92
...@@ -1463,7 +1463,7 @@ static int ehea_init_port_res(struct ehea_port *port, struct ehea_port_res *pr, ...@@ -1463,7 +1463,7 @@ static int ehea_init_port_res(struct ehea_port *port, struct ehea_port_res *pr,
memset(pr, 0, sizeof(struct ehea_port_res)); memset(pr, 0, sizeof(struct ehea_port_res));
pr->tx_bytes = rx_bytes; pr->tx_bytes = tx_bytes;
pr->tx_packets = tx_packets; pr->tx_packets = tx_packets;
pr->rx_bytes = rx_bytes; pr->rx_bytes = rx_bytes;
pr->rx_packets = rx_packets; pr->rx_packets = rx_packets;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment