- add-time_is_after_jiffies-and-others-which-compare-with-jiffies.patch removed from -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     Add time_is_after_jiffies and others which compare with jiffies
has been removed from the -mm tree.  Its filename was
     add-time_is_after_jiffies-and-others-which-compare-with-jiffies.patch

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

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: Add time_is_after_jiffies and others which compare with jiffies
From: Dave Young <hidave.darkstar@xxxxxxxxx>

Most of time_after like macros usages just compare jiffies and another number,
so here add some time_is_* macros for convenience.

Signed-off-by: Dave Young <hidave.darkstar@xxxxxxxxx>
Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx>
Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 include/linux/jiffies.h |   16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff -puN include/linux/jiffies.h~add-time_is_after_jiffies-and-others-which-compare-with-jiffies include/linux/jiffies.h
--- a/include/linux/jiffies.h~add-time_is_after_jiffies-and-others-which-compare-with-jiffies
+++ a/include/linux/jiffies.h
@@ -151,6 +151,22 @@ static inline u64 get_jiffies_64(void)
 #define time_is_after_eq_jiffies(a) time_before_eq(jiffies, a)
 
 /*
+ * These four macros compare jiffies and 'a' for convenience.
+ */
+
+/* time_is_before_jiffies(a) return true if a is before jiffies */
+#define time_is_before_jiffies(a) time_after(jiffies, a)
+
+/* time_is_after_jiffies(a) return true if a is after jiffies */
+#define time_is_after_jiffies(a) time_before(jiffies, a)
+
+/* time_is_before_eq_jiffies(a) return true if a is before or equal to jiffies*/
+#define time_is_before_eq_jiffies(a) time_after_eq(jiffies, a)
+
+/* time_is_after_eq_jiffies(a) return true if a is after or equal to jiffies*/
+#define time_is_after_eq_jiffies(a) time_before_eq(jiffies, a)
+
+/*
  * Have the 32 bit jiffies value wrap 5 minutes after boot
  * so jiffies wrap bugs show up earlier.
  */
_

Patches currently in -mm which might be from hidave.darkstar@xxxxxxxxx are

linux-next.patch
add-time_is_after_jiffies-and-others-which-compare-with-jiffies.patch
hci_usb-replace-mb-with-smp_mb.patch

--
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux