Re: [PATCH] jiffies_round -> jiffies_round_relative conversion - b43/b43legacy

2007-10-15 Thread Arjan van de Ven
On Mon, 15 Oct 2007 00:42:23 -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 - b43/b43legacy

2007-10-15 Thread Arjan van de Ven
On Mon, 15 Oct 2007 00:42:23 -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 - b43/b43legacy

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/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
index c141a26..41049a4 100644
--- a/drivers/net/wireless/b43/main.c
+++ b/drivers/net/wireless/b43/main.c
@@ -2392,7 +2392,7 @@ out_requeue:
if (b43_debug(dev, B43_DBG_PWORK_FAST))
delay = msecs_to_jiffies(50);
else
-   delay = round_jiffies(HZ * 15);
+   delay = round_jiffies_relative(HZ * 15);
queue_delayed_work(wl->hw->workqueue, >periodic_work, delay);
 out:
mutex_unlock(>mutex);
diff --git a/drivers/net/wireless/b43legacy/main.c 
b/drivers/net/wireless/b43legacy/main.c
index f074951..bd0bd9b 100644
--- a/drivers/net/wireless/b43legacy/main.c
+++ b/drivers/net/wireless/b43legacy/main.c
@@ -2260,7 +2260,7 @@ out_requeue:
if (b43legacy_debug(dev, B43legacy_DBG_PWORK_FAST))
delay = msecs_to_jiffies(50);
else
-   delay = round_jiffies(HZ);
+   delay = round_jiffies_relative(HZ);
queue_delayed_work(dev->wl->hw->workqueue,
   >periodic_work, delay);
 out:
-
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 - b43/b43legacy

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/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
index c141a26..41049a4 100644
--- a/drivers/net/wireless/b43/main.c
+++ b/drivers/net/wireless/b43/main.c
@@ -2392,7 +2392,7 @@ out_requeue:
if (b43_debug(dev, B43_DBG_PWORK_FAST))
delay = msecs_to_jiffies(50);
else
-   delay = round_jiffies(HZ * 15);
+   delay = round_jiffies_relative(HZ * 15);
queue_delayed_work(wl-hw-workqueue, dev-periodic_work, delay);
 out:
mutex_unlock(wl-mutex);
diff --git a/drivers/net/wireless/b43legacy/main.c 
b/drivers/net/wireless/b43legacy/main.c
index f074951..bd0bd9b 100644
--- a/drivers/net/wireless/b43legacy/main.c
+++ b/drivers/net/wireless/b43legacy/main.c
@@ -2260,7 +2260,7 @@ out_requeue:
if (b43legacy_debug(dev, B43legacy_DBG_PWORK_FAST))
delay = msecs_to_jiffies(50);
else
-   delay = round_jiffies(HZ);
+   delay = round_jiffies_relative(HZ);
queue_delayed_work(dev-wl-hw-workqueue,
   dev-periodic_work, delay);
 out:
-
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/