|
@@ -304,6 +304,30 @@ static inline int ktime_compare(const ktime_t cmp1, const ktime_t cmp2)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * ktime_after - Compare if a ktime_t value is bigger than another one.
|
|
|
+ * @cmp1: comparable1
|
|
|
+ * @cmp2: comparable2
|
|
|
+ *
|
|
|
+ * Return: true if cmp1 happened after cmp2.
|
|
|
+ */
|
|
|
+static inline bool ktime_after(const ktime_t cmp1, const ktime_t cmp2)
|
|
|
+{
|
|
|
+ return ktime_compare(cmp1, cmp2) > 0;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * ktime_before - Compare if a ktime_t value is smaller than another one.
|
|
|
+ * @cmp1: comparable1
|
|
|
+ * @cmp2: comparable2
|
|
|
+ *
|
|
|
+ * Return: true if cmp1 happened before cmp2.
|
|
|
+ */
|
|
|
+static inline bool ktime_before(const ktime_t cmp1, const ktime_t cmp2)
|
|
|
+{
|
|
|
+ return ktime_compare(cmp1, cmp2) < 0;
|
|
|
+}
|
|
|
+
|
|
|
static inline s64 ktime_to_us(const ktime_t kt)
|
|
|
{
|
|
|
struct timeval tv = ktime_to_timeval(kt);
|