diff options
Diffstat (limited to 'net/dccp/timer.c')
-rw-r--r-- | net/dccp/timer.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net/dccp/timer.c b/net/dccp/timer.c index 0197a41c256a..3af067354bd4 100644 --- a/net/dccp/timer.c +++ b/net/dccp/timer.c | |||
@@ -291,3 +291,24 @@ void dccp_init_xmit_timers(struct sock *sk) | |||
291 | inet_csk_init_xmit_timers(sk, &dccp_write_timer, &dccp_delack_timer, | 291 | inet_csk_init_xmit_timers(sk, &dccp_write_timer, &dccp_delack_timer, |
292 | &dccp_keepalive_timer); | 292 | &dccp_keepalive_timer); |
293 | } | 293 | } |
294 | |||
295 | static ktime_t dccp_timestamp_seed; | ||
296 | /** | ||
297 | * dccp_timestamp - 10s of microseconds time source | ||
298 | * Returns the number of 10s of microseconds since loading DCCP. This is native | ||
299 | * DCCP time difference format (RFC 4340, sec. 13). | ||
300 | * Please note: This will wrap around about circa every 11.9 hours. | ||
301 | */ | ||
302 | u32 dccp_timestamp(void) | ||
303 | { | ||
304 | s64 delta = ktime_us_delta(ktime_get_real(), dccp_timestamp_seed); | ||
305 | |||
306 | do_div(delta, 10); | ||
307 | return delta; | ||
308 | } | ||
309 | EXPORT_SYMBOL_GPL(dccp_timestamp); | ||
310 | |||
311 | void __init dccp_timestamping_init(void) | ||
312 | { | ||
313 | dccp_timestamp_seed = ktime_get_real(); | ||
314 | } | ||