Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6241e71e authored by Peng Li's avatar Peng Li Committed by David S. Miller
Browse files

net: hns3: fix an issue for hns3_update_new_int_gl



HNS3 supports setting rx-usecs|tx-usecs as 0, but it will not
update dynamically when adaptive-tx or adaptive-rx is enable.
This patch removes the Redundant check.

Fixes: a95e1f86 ("net: hns3: change the time interval of int_gl calculating")
Signed-off-by: default avatarPeng Li <lipeng321@huawei.com>
Signed-off-by: default avatarHuazhong Tan <tanhuazhong@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9e50dc11
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2777,7 +2777,7 @@ static bool hns3_get_new_int_gl(struct hns3_enet_ring_group *ring_group)
	u32 time_passed_ms;
	u16 new_int_gl;

	if (!ring_group->coal.int_gl || !tqp_vector->last_jiffies)
	if (!tqp_vector->last_jiffies)
		return false;

	if (ring_group->total_packets == 0) {