Julia Lawall
1d16b53e38
arch/x86/kernel/io_apic_{64,32}.c: use time_before
...
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 semantic patch making this change is as follows:
(http://www.emn.fr/x-info/coccinelle/ )
// <smpl>
@ change_compare_np @
expression E;
@@
(
- jiffies <= E
+ time_before_eq(jiffies,E)
|
- jiffies >= E
+ time_after_eq(jiffies,E)
|
- jiffies < E
+ time_before(jiffies,E)
|
- jiffies > E
+ time_after(jiffies,E)
)
@ include depends on change_compare_np @
@@
#include <linux/jiffies.h>
@ no_include depends on !include && change_compare_np @
@@
#include <linux/...>
+ #include <linux/jiffies.h>
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
2008-01-30 13:32:19 +01:00
..
2008-01-30 13:31:16 +01:00
2008-01-30 13:32:13 +01:00
2007-10-17 21:19:04 +02:00
2008-01-30 13:30:55 +01:00
2008-01-30 13:30:10 +01:00
2008-01-30 13:31:42 +01:00
2008-01-30 13:31:24 +01:00
2008-01-30 13:32:18 +01:00
2008-01-30 13:31:12 +01:00
2008-01-30 13:31:31 +01:00
2008-01-24 20:40:04 -08:00
2007-10-19 11:53:33 -07:00
2007-12-03 17:17:10 +01:00
2008-01-30 13:31:31 +01:00
2008-01-30 13:32:03 +01:00
2008-01-30 13:31:19 +01:00
2008-01-30 13:31:11 +01:00
2007-10-16 17:38:31 -07:00
2008-01-30 13:31:26 +01:00
2008-01-30 13:32:11 +01:00
2008-01-30 13:32:11 +01:00
2008-01-30 13:31:19 +01:00
2008-01-30 13:32:11 +01:00
2008-01-30 13:31:23 +01:00
2008-01-30 13:32:08 +01:00
2007-10-19 20:35:03 +02:00
2007-10-19 20:35:03 +02:00
2008-01-30 13:30:46 +01:00
2008-01-01 11:30:35 -08:00
2008-01-30 13:31:10 +01:00
2008-01-30 13:30:32 +01:00
2008-01-30 13:30:29 +01:00
2008-01-30 13:31:55 +01:00
2008-01-24 20:40:40 -08:00
2008-01-30 13:30:47 +01:00
2008-01-30 13:30:56 +01:00
2008-01-30 13:31:23 +01:00
2008-01-30 13:30:28 +01:00
2008-01-30 13:32:19 +01:00
2008-01-30 13:32:19 +01:00
2008-01-30 13:30:05 +01:00
2008-01-30 13:30:56 +01:00
2008-01-30 13:30:56 +01:00
2008-01-30 13:31:17 +01:00
2008-01-30 13:30:56 +01:00
2008-01-30 13:32:16 +01:00
2008-01-30 13:31:13 +01:00
2008-01-30 13:31:12 +01:00
2008-01-30 13:30:47 +01:00
2007-10-17 21:56:01 +02:00
2008-01-30 13:32:10 +01:00
2008-01-30 13:32:10 +01:00
2008-01-22 23:30:16 +01:00
2008-01-25 21:08:02 +01:00
2008-01-30 13:31:42 +01:00
2007-10-19 20:35:03 +02:00
2008-01-24 20:40:04 -08:00
2008-01-30 13:30:33 +01:00
2008-01-30 13:30:33 +01:00
2008-01-30 13:32:10 +01:00
2008-01-30 13:32:10 +01:00
2008-01-30 13:32:11 +01:00
2008-01-30 13:30:32 +01:00
2007-10-17 20:15:51 +02:00
2008-01-30 13:30:31 +01:00
2008-01-30 13:30:12 +01:00
2007-10-30 00:22:22 +01:00
2008-01-30 13:30:28 +01:00
2008-01-30 13:30:18 +01:00
2008-01-30 13:31:55 +01:00
2008-01-30 13:31:55 +01:00
2008-01-30 13:32:03 +01:00
2007-10-23 22:37:25 +02:00
2008-01-30 13:31:12 +01:00
2008-01-30 13:31:19 +01:00
2007-11-17 16:27:02 +01:00
2008-01-30 13:30:27 +01:00
2008-01-30 13:31:31 +01:00
2008-01-30 13:32:11 +01:00
2008-01-30 13:31:39 +01:00
2008-01-30 13:31:17 +01:00
2008-01-30 13:31:27 +01:00
2008-01-30 13:32:01 +01:00
2008-01-30 13:32:01 +01:00
2008-01-30 13:31:24 +01:00
2008-01-30 13:31:31 +01:00
2008-01-30 13:31:13 +01:00
2008-01-30 13:30:28 +01:00
2008-01-30 13:31:09 +01:00
2007-10-20 01:13:56 +02:00
2008-01-30 13:31:23 +01:00
2008-01-30 13:30:56 +01:00
2007-10-17 08:42:55 -07:00
2008-01-30 13:31:07 +01:00
2007-10-17 20:16:12 +02:00
2008-01-30 13:30:56 +01:00
2008-01-30 13:31:10 +01:00
2008-01-30 13:31:52 +01:00
2008-01-30 13:31:52 +01:00
2007-12-04 17:19:07 +01:00
2007-10-17 20:16:08 +02:00
2007-10-17 20:16:08 +02:00
2008-01-30 13:31:17 +01:00
2008-01-30 13:31:27 +01:00
2008-01-30 13:30:06 +01:00
2008-01-30 13:31:03 +01:00
2008-01-30 13:30:04 +01:00
2008-01-30 13:31:42 +01:00
2008-01-30 13:31:13 +01:00
2008-01-30 13:30:29 +01:00
2008-01-30 13:30:46 +01:00
2008-01-28 23:21:17 +01:00
2008-01-30 13:30:24 +01:00
2008-01-30 13:31:12 +01:00
2008-01-30 13:31:10 +01:00