Re: [PATCH] jiffies_round -> jiffies_round_relative conversion in EDAC drivers

2007-10-15 Thread Arjan van de Ven
On Mon, 15 Oct 2007 00:34:28 -0500
Anton Blanchard <[EMAIL PROTECTED]> wrote:

> 
> When rounding a relative timeout we need to use
> round_jiffies_relative(). 
> 
> Signed-off-by: Anton Blanchard <[EMAIL PROTECTED]>

Acked-by: Arjan van de Ven <[EMAIL PROTECTED]>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] jiffies_round - jiffies_round_relative conversion in EDAC drivers

2007-10-15 Thread Arjan van de Ven
On Mon, 15 Oct 2007 00:34:28 -0500
Anton Blanchard [EMAIL PROTECTED] wrote:

 
 When rounding a relative timeout we need to use
 round_jiffies_relative(). 
 
 Signed-off-by: Anton Blanchard [EMAIL PROTECTED]

Acked-by: Arjan van de Ven [EMAIL PROTECTED]
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] jiffies_round -> jiffies_round_relative conversion in EDAC drivers

2007-10-14 Thread Anton Blanchard

When rounding a relative timeout we need to use round_jiffies_relative(). 

Signed-off-by: Anton Blanchard <[EMAIL PROTECTED]>
---

diff --git a/drivers/edac/edac_device.c b/drivers/edac/edac_device.c
index f3690a6..46400ec 100644
--- a/drivers/edac/edac_device.c
+++ b/drivers/edac/edac_device.c
@@ -436,7 +436,7 @@ static void edac_device_workq_function(struct work_struct 
*work_req)
 */
if (edac_dev->poll_msec == 1000)
queue_delayed_work(edac_workqueue, _dev->work,
-   round_jiffies(edac_dev->delay));
+   round_jiffies_relative(edac_dev->delay));
else
queue_delayed_work(edac_workqueue, _dev->work,
edac_dev->delay);
@@ -468,7 +468,7 @@ void edac_device_workq_setup(struct edac_device_ctl_info 
*edac_dev,
 */
if (edac_dev->poll_msec == 1000)
queue_delayed_work(edac_workqueue, _dev->work,
-   round_jiffies(edac_dev->delay));
+   round_jiffies_relative(edac_dev->delay));
else
queue_delayed_work(edac_workqueue, _dev->work,
edac_dev->delay);
diff --git a/drivers/edac/edac_pci.c b/drivers/edac/edac_pci.c
index 5dee9f5..7573e07 100644
--- a/drivers/edac/edac_pci.c
+++ b/drivers/edac/edac_pci.c
@@ -246,7 +246,7 @@ static void edac_pci_workq_function(struct work_struct 
*work_req)
/* if we are on a one second period, then use round */
msec = edac_pci_get_poll_msec();
if (msec == 1000)
-   delay = round_jiffies(msecs_to_jiffies(msec));
+   delay = round_jiffies_relative(msecs_to_jiffies(msec));
else
delay = msecs_to_jiffies(msec);
 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] jiffies_round - jiffies_round_relative conversion in EDAC drivers

2007-10-14 Thread Anton Blanchard

When rounding a relative timeout we need to use round_jiffies_relative(). 

Signed-off-by: Anton Blanchard [EMAIL PROTECTED]
---

diff --git a/drivers/edac/edac_device.c b/drivers/edac/edac_device.c
index f3690a6..46400ec 100644
--- a/drivers/edac/edac_device.c
+++ b/drivers/edac/edac_device.c
@@ -436,7 +436,7 @@ static void edac_device_workq_function(struct work_struct 
*work_req)
 */
if (edac_dev-poll_msec == 1000)
queue_delayed_work(edac_workqueue, edac_dev-work,
-   round_jiffies(edac_dev-delay));
+   round_jiffies_relative(edac_dev-delay));
else
queue_delayed_work(edac_workqueue, edac_dev-work,
edac_dev-delay);
@@ -468,7 +468,7 @@ void edac_device_workq_setup(struct edac_device_ctl_info 
*edac_dev,
 */
if (edac_dev-poll_msec == 1000)
queue_delayed_work(edac_workqueue, edac_dev-work,
-   round_jiffies(edac_dev-delay));
+   round_jiffies_relative(edac_dev-delay));
else
queue_delayed_work(edac_workqueue, edac_dev-work,
edac_dev-delay);
diff --git a/drivers/edac/edac_pci.c b/drivers/edac/edac_pci.c
index 5dee9f5..7573e07 100644
--- a/drivers/edac/edac_pci.c
+++ b/drivers/edac/edac_pci.c
@@ -246,7 +246,7 @@ static void edac_pci_workq_function(struct work_struct 
*work_req)
/* if we are on a one second period, then use round */
msec = edac_pci_get_poll_msec();
if (msec == 1000)
-   delay = round_jiffies(msecs_to_jiffies(msec));
+   delay = round_jiffies_relative(msecs_to_jiffies(msec));
else
delay = msecs_to_jiffies(msec);
 
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/