The patch titled
     clocksource: Make CLOCKSOURCE_MASK bullet-proof
has been removed from the -mm tree.  Its filename was
     clocksource-make-clocksource_mask-bullet-proof.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: clocksource: Make CLOCKSOURCE_MASK bullet-proof
From: Atsushi Nemoto <[EMAIL PROTECTED]>

Signed-off-by: Atsushi Nemoto <[EMAIL PROTECTED]>
Cc: Thomas Gleixner <[EMAIL PROTECTED]>
Cc: john stultz <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 include/linux/clocksource.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN 
include/linux/clocksource.h~clocksource-make-clocksource_mask-bullet-proof 
include/linux/clocksource.h
--- a/include/linux/clocksource.h~clocksource-make-clocksource_mask-bullet-proof
+++ a/include/linux/clocksource.h
@@ -103,7 +103,7 @@ struct clocksource {
 #define CLOCK_SOURCE_VALID_FOR_HRES            0x20
 
 /* simplify initialization of mask field */
-#define CLOCKSOURCE_MASK(bits) (cycle_t)(bits<64 ? ((1ULL<<bits)-1) : -1)
+#define CLOCKSOURCE_MASK(bits) (cycle_t)((bits) < 64 ? ((1ULL<<(bits))-1) : -1)
 
 /**
  * clocksource_khz2mult - calculates mult from khz and shift
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch
git-mips.patch
git-watchdog.patch
git-x86.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

Reply via email to