ehea: Fix a copy-paste err in ehea_init_port_res
[ Upstream commit c8f191282f819ab4e9b47b22a65c6c29734cefce ]
pr->tx_bytes should be assigned to tx_bytes other than
rx_bytes.
Reported-by: Hulk Robot <hulkci@huawei.com>
Fixes: ce45b87302
("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>
This commit is contained in:
parent
fe7005a023
commit
ba61f56385
1 changed files with 1 additions and 1 deletions
|
@ -1464,7 +1464,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;
|
||||
|
|
Loading…
Reference in a new issue