projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19ac214
)
[DCCP] options: convert dccp_insert_option_timestamp to ktime_t
author
Arnaldo Carvalho de Melo
<acme@ghostprotocols.net>
Mon, 20 Aug 2007 00:18:55 +0000
(17:18 -0700)
committer
David S. Miller
<davem@sunset.davemloft.net>
Wed, 10 Oct 2007 23:48:16 +0000
(16:48 -0700)
Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/dccp/options.c
patch
|
blob
|
history
diff --git
a/net/dccp/options.c
b/net/dccp/options.c
index 95b75d8354ff33c4a5f8107e5d49fc9f7c1343bd..439e25daa9631b686804c30eec80c6ece04ab655 100644
(file)
--- a/
net/dccp/options.c
+++ b/
net/dccp/options.c
@@
-388,11
+388,7
@@
EXPORT_SYMBOL_GPL(dccp_timestamp);
int dccp_insert_option_timestamp(struct sock *sk, struct sk_buff *skb)
{
- struct timeval tv;
- __be32 now;
-
- dccp_timestamp(sk, &tv);
- now = htonl(timeval_usecs(&tv) / 10);
+ __be32 now = htonl(((suseconds_t)ktime_to_us(ktime_get_real())) / 10);
/* yes this will overflow but that is the point as we want a
* 10 usec 32 bit timer which mean it wraps every 11.9 hours */