From: Eric Dumazet Date: Wed, 14 Nov 2007 05:12:14 +0000 (-0800) Subject: [NET] random : secure_tcp_sequence_number should not assume CONFIG_KTIME_SCALAR X-Git-Tag: v2.6.24-rc3~16^2~11 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6dd10a62353a50b30b30e0c18653650975b29c71;p=pandora-kernel.git [NET] random : secure_tcp_sequence_number should not assume CONFIG_KTIME_SCALAR All 32 bits machines but i386 dont have CONFIG_KTIME_SCALAR. On these machines, ktime.tv64 is more than 4 times the (correct) result given by ktime_to_ns() Again on these machines, using ktime_get_real().tv64 >> 6 give a 32bits rollover every 64 seconds, which is not wanted (less than the 120 s MSL) Using ktime_to_ns() is the portable way to get nsecs from a ktime, and have correct code. Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller --- Reading git-diff-tree failed