From: Lin Yun Sheng Date: Fri, 4 Aug 2017 09:24:59 +0000 (+0800) Subject: net: hns: Fix for __udivdi3 compiler error X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=967b2e2a76e380abdebe7f3c7ab17e8831accd21;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git net: hns: Fix for __udivdi3 compiler error This patch fixes the __udivdi3 undefined error reported by test robot. Fixes: b8c17f708831 ("net: hns: Add self-adaptive interrupt coalesce support in hns driver") Signed-off-by: Yunsheng Lin Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/hisilicon/hns/hns_enet.c b/drivers/net/ethernet/hisilicon/hns/hns_enet.c index 832f27792e3f..36520634c96a 100644 --- a/drivers/net/ethernet/hisilicon/hns/hns_enet.c +++ b/drivers/net/ethernet/hisilicon/hns/hns_enet.c @@ -847,7 +847,8 @@ static void hns_update_rx_rate(struct hnae_ring *ring) total_bytes = ring->stats.rx_bytes - ring->coal_last_rx_bytes; time_passed_ms = jiffies_to_msecs(jiffies - ring->coal_last_jiffies); - ring->coal_rx_rate = (total_bytes / time_passed_ms) >> 10; + do_div(total_bytes, time_passed_ms); + ring->coal_rx_rate = total_bytes >> 10; ring->coal_last_rx_bytes = ring->stats.rx_bytes; ring->coal_last_jiffies = jiffies;