Re: [PATCH] decnet: Use time_after_eq

From: David Miller
Date: Fri Aug 22 2014 - 15:29:01 EST


From: Himangi Saraogi <himangi774@xxxxxxxxx>
Date: Wed, 20 Aug 2014 23:20:09 +0530

> The functions time_before, time_before_eq, time_after, and time_after_eq
> are more robust for comparing jiffies against other values.
>
> A simplified version of the Coccinelle semantic patch making this change
> is as follows:
>
> @change@
> expression E1,E2;
> @@
> - (jiffies - E1) >= E2
> + time_after_eq(jiffies, E1+E2)
>
> Signed-off-by: Himangi Saraogi <himangi774@xxxxxxxxx>
> Acked-by: Julia Lawall <julia.lawall@xxxxxxx>

Applied.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/