Linux EDAC development
 help / color / mirror / Atom feed
* [PATCH v2] edac: fix period calculation in edac_device_reset_delay_period()
@ 2022-10-20 12:44 Eliav Farber
  2022-12-29 15:23 ` Borislav Petkov
  0 siblings, 1 reply; 4+ messages in thread
From: Eliav Farber @ 2022-10-20 12:44 UTC (permalink / raw)
  To: bp, mchehab, tony.luck, james.morse, rric, linux-edac,
	linux-kernel
  Cc: talel, jonnyc, hhhawa, hanochu, farbere, itamark, shellykz,
	amitlavi, dkl

Fix period calculation in case user sets a value of 1000.
The input of round_jiffies_relative() should be in jiffies and not in
milli-seconds.

Signed-off-by: Eliav Farber <farbere@amazon.com>
---
v2 --> v1:
- Fix the bug without modifying jiffs which is used to set
  edac_dev->delay.

 drivers/edac/edac_device.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/edac/edac_device.c b/drivers/edac/edac_device.c
index 19522c568aa5..e944dd9b3593 100644
--- a/drivers/edac/edac_device.c
+++ b/drivers/edac/edac_device.c
@@ -398,13 +398,13 @@ void edac_device_reset_delay_period(struct edac_device_ctl_info *edac_dev,
 {
 	unsigned long jiffs = msecs_to_jiffies(value);
 
-	if (value == 1000)
-		jiffs = round_jiffies_relative(value);
-
 	edac_dev->poll_msec = value;
 	edac_dev->delay	    = jiffs;
 
-	edac_mod_work(&edac_dev->work, jiffs);
+	if (value == 1000)
+		edac_mod_work(&edac_dev->work, round_jiffies_relative(jiffs));
+	else
+		edac_mod_work(&edac_dev->work, jiffs);
 }
 
 int edac_device_alloc_index(void)
-- 
2.37.1


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

end of thread, other threads:[~2022-12-30 14:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-20 12:44 [PATCH v2] edac: fix period calculation in edac_device_reset_delay_period() Eliav Farber
2022-12-29 15:23 ` Borislav Petkov
2022-12-29 20:17   ` Farber, Eliav
2022-12-30 14:48     ` Borislav Petkov

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