diff options
author | Eric Dumazet <edumazet@google.com> | 2017-05-16 23:00:02 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-05-17 22:06:01 +0200 |
commit | d011b9a448907833a19b2f0a34381419f8ca9b23 (patch) | |
tree | 6c5e1b5113f59f6b2364f953fa36d23139537a28 /net/dccp/ccids/ccid2.h | |
parent | tcp: introduce tcp_jiffies32 (diff) | |
download | linux-d011b9a448907833a19b2f0a34381419f8ca9b23.tar.xz linux-d011b9a448907833a19b2f0a34381419f8ca9b23.zip |
dccp: do not use tcp_time_stamp
Use our own macro instead of abusing tcp_time_stamp
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Soheil Hassas Yeganeh <soheil@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ccids/ccid2.h')
-rw-r--r-- | net/dccp/ccids/ccid2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/ccids/ccid2.h b/net/dccp/ccids/ccid2.h index 18c97543e522..6e50ef2898fb 100644 --- a/net/dccp/ccids/ccid2.h +++ b/net/dccp/ccids/ccid2.h @@ -27,7 +27,7 @@ * CCID-2 timestamping faces the same issues as TCP timestamping. * Hence we reuse/share as much of the code as possible. */ -#define ccid2_time_stamp tcp_time_stamp +#define ccid2_jiffies32 ((u32)jiffies) /* NUMDUPACK parameter from RFC 4341, p. 6 */ #define NUMDUPACK 3 |