From: Himangi Saraogi Date: Wed, 20 Aug 2014 17:44:10 +0000 (+0530) Subject: ipconfig: Use time_before X-Git-Tag: fixes-against-v3.18-rc2~81^2~256 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c72c95a064e55923c5dd050d099e51ac550f29a2;p=pandora-kernel.git ipconfig: 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 Acked-by: Julia Lawall Signed-off-by: David S. Miller --- Reading git-diff-tree failed