Linux RDMA and InfiniBand development
 help / color / mirror / Atom feed
* [PATCH v2] linux/dim: Fix divide 0 in RDMA DIM.
@ 2022-06-27 11:30 Tao Liu
  2022-06-27 12:51 ` Leon Romanovsky
  0 siblings, 1 reply; 3+ messages in thread
From: Tao Liu @ 2022-06-27 11:30 UTC (permalink / raw)
  To: linux-rdma; +Cc: saeedm, talgi, leonro, mgurtovoy, jgg, yaminf, thomas.liu

We hit a divide 0 error in ofed 5.1.2.3.7.1. It is caused in
rdma_dim_stats_compare() when prev->cpe_ratio == 0.

dim.c and rdma_dim.c in ofed share same code with upstream.
We check the 0 case in IS_SIGNIFICANT_DIFF(), and do not change
decision order.

Signed-off-by: Tao Liu <thomas.liu@ucloud.cn>
---
 include/linux/dim.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/dim.h b/include/linux/dim.h
index b698266d0035..6c5733981563 100644
--- a/include/linux/dim.h
+++ b/include/linux/dim.h
@@ -21,7 +21,7 @@
  * We consider 10% difference as significant.
  */
 #define IS_SIGNIFICANT_DIFF(val, ref) \
-	(((100UL * abs((val) - (ref))) / (ref)) > 10)
+	((ref) && (((100UL * abs((val) - (ref))) / (ref)) > 10))
 
 /*
  * Calculate the gap between two values.
-- 
2.30.1 (Apple Git-130)


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-06-27 12:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-27 11:30 [PATCH v2] linux/dim: Fix divide 0 in RDMA DIM Tao Liu
2022-06-27 12:51 ` Leon Romanovsky
2022-06-27 12:57   ` Max Gurtovoy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox