diff options
author | Himangi Saraogi <himangi774@gmail.com> | 2014-08-20 17:43:07 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-08-22 19:23:11 (GMT) |
commit | b5c5c36d367c670b9a93b1029d9b3af8610d9535 (patch) | |
tree | 60b556df3263211a6136038b5bf88142dcd81856 /include/math-emu | |
parent | 0932997e34bad52353c25756c55ccf97c522ae7c (diff) | |
download | linux-b5c5c36d367c670b9a93b1029d9b3af8610d9535.tar.xz |
dn_dev: 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 Coccinelle semantic patch making this change
is as follows:
@change@
expression E1,E2;
@@
(
- (jiffies - E1) < E2
+ time_before(jiffies, E1+E2)
)
Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/math-emu')
0 files changed, 0 insertions, 0 deletions