[NET] random : secure_tcp_sequence_number should not assume CONFIG_KTIME_SCALAR
authorEric Dumazet <dada1@cosmosbay.com>
Wed, 14 Nov 2007 05:12:14 +0000 (21:12 -0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 14 Nov 2007 05:12:14 +0000 (21:12 -0800)
commit6dd10a62353a50b30b30e0c18653650975b29c71
tree1410482f86ec88a4f65692c4dd301eae5696a762
parentcb4da1a34de3840ce49dc7292a063e1ef7f127af
[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 <dada1@cosmosbay.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/char/random.c