]> git.baikalelectronics.ru Git - kernel.git/commit
net/mlx4_en: Resolve dividing by zero in 32-bit system
authorEugenia Emantayev <eugenia@mellanox.com>
Thu, 27 Oct 2016 13:27:16 +0000 (16:27 +0300)
committerDavid S. Miller <davem@davemloft.net>
Sat, 29 Oct 2016 20:23:48 +0000 (16:23 -0400)
commit5a4ff363073b65c7af68c20b5b1c7737520c0931
tree2edd012551dd4f35a4700357471a7bc1cbfcaef8
parentb6048b16a18d2c5610101481054d03672469122a
net/mlx4_en: Resolve dividing by zero in 32-bit system

When doing roundup_pow_of_two for large enough number with
bit 31, an overflow will occur and a value equal to 1 will
be returned. In this case 1 will be subtracted from the return
value and division by zero will be reached.

Fixes: 95ab31a07037 ("net/mlx4_en: Choose time-stamping shift value according to HW frequency")
Signed-off-by: Eugenia Emantayev <eugenia@mellanox.com>
Signed-off-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlx4/en_clock.c