The patch titled
jiffies_round -> jiffies_round_relative conversion - b43/b43legacy
has been added to the -mm tree. Its filename is
jiffies_round-jiffies_round_relative-conversion-b43-b43legacy.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: jiffies_round -> jiffies_round_relative conversion - b43/b43legacy
From: Anton Blanchard <[EMAIL PROTECTED]>
When rounding a relative timeout we need to use round_jiffies_relative().
Signed-off-by: Anton Blanchard <[EMAIL PROTECTED]>
Cc: "John W. Linville" <[EMAIL PROTECTED]>
Acked-by: Arjan van de Ven <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/net/wireless/b43/main.c | 2 +-
drivers/net/wireless/b43legacy/main.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff -puN
drivers/net/wireless/b43/main.c~jiffies_round-jiffies_round_relative-conversion-b43-b43legacy
drivers/net/wireless/b43/main.c
---
a/drivers/net/wireless/b43/main.c~jiffies_round-jiffies_round_relative-conversion-b43-b43legacy
+++ a/drivers/net/wireless/b43/main.c
@@ -2391,7 +2391,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 -puN
drivers/net/wireless/b43legacy/main.c~jiffies_round-jiffies_round_relative-conversion-b43-b43legacy
drivers/net/wireless/b43legacy/main.c
---
a/drivers/net/wireless/b43legacy/main.c~jiffies_round-jiffies_round_relative-conversion-b43-b43legacy
+++ a/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:
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
git-infiniband.patch
jiffies_round-jiffies_round_relative-conversion.patch
jiffies_round-jiffies_round_relative-conversion-rt2x00.patch
jiffies_round-jiffies_round_relative-conversion-rt2x00-checkpatch-fixes.patch
jiffies_round-jiffies_round_relative-conversion-b43-b43legacy.patch
drivers-edac-use-round_jiffies_relative.patch
jiffies_round-jiffies_round_relative-conversion-in-edac.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html