net: ethernet: cavium: use div64_u64() instead of do_div()
authorWang Qing <wangqing@vivo.com>
Wed, 9 Feb 2022 08:39:19 +0000 (00:39 -0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 9 Feb 2022 13:27:17 +0000 (13:27 +0000)
commit038fcdaf0470de89619bc4cc199e329391e6566c
treed7b6903e63bbef539c3be56c2434c4119ff6064f
parent237d20c208dbf0c2853c0f118530772a449eb430
net: ethernet: cavium: use div64_u64() instead of do_div()

do_div() does a 64-by-32 division.
When the divisor is u64, do_div() truncates it to 32 bits, this means it
can test non-zero and be truncated to zero for division.

fix do_div.cocci warning:
do_div() does a 64-by-32 division, please consider using div64_u64 instead.

Signed-off-by: Wang Qing <wangqing@vivo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/cavium/liquidio/lio_main.c