net: sctp: migrate cookie life from timeval to ktime
authorDaniel Borkmann <dborkman@redhat.com>
Tue, 25 Jun 2013 16:17:27 +0000 (18:17 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 25 Jun 2013 23:33:04 +0000 (16:33 -0700)
commit52db882f3fc2903014e638ee91e690085fe37fdb
treeda6cd52645dca68bf16d40387421cc93fd094ea4
parentd36f82b2435690d8742235d7bdc5bb5e878077e3
net: sctp: migrate cookie life from timeval to ktime

Currently, SCTP code defines its own timeval functions (since timeval
is rarely used inside the kernel by others), namely tv_lt() and
TIMEVAL_ADD() macros, that operate on SCTP cookie expiration.

We might as well remove all those, and operate directly on ktime
structures for a couple of reasons: ktime is available on all archs;
complexity of ktime calculations depending on the arch is less than
(reduces to a simple arithmetic operations on archs with
BITS_PER_LONG == 64 or CONFIG_KTIME_SCALAR) or equal to timeval
functions (other archs); code becomes more readable; macros can be
thrown out.

Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Acked-by: Vlad Yasevich <vyasevich@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/sctp/sctp.h
include/net/sctp/structs.h
net/sctp/associola.c
net/sctp/sm_make_chunk.c
net/sctp/socket.c