aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morton <[email protected]>2005-10-26 01:59:03 -0700
committerLinus Torvalds <[email protected]>2005-10-26 10:39:43 -0700
commit4bcde03d41d2264edb4ea3c47cb27da1e2609e48 (patch)
treeff90c767618e5798b1a4187a063cc45f0357b2b8
parent94c1d3184523efa7109472eb393cee6e954c5d75 (diff)
[PATCH] svcsock timestamp fix
Convert nanoseconds to microseconds correctly. Spotted by Steve Dickson <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--net/sunrpc/svcsock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c
index 30ec3efc48a6..691dea4a58e7 100644
--- a/net/sunrpc/svcsock.c
+++ b/net/sunrpc/svcsock.c
@@ -587,7 +587,7 @@ svc_udp_recvfrom(struct svc_rqst *rqstp)
struct timeval tv;
tv.tv_sec = xtime.tv_sec;
- tv.tv_usec = xtime.tv_nsec * 1000;
+ tv.tv_usec = xtime.tv_nsec / NSEC_PER_USEC;
skb_set_timestamp(skb, &tv);
/* Don't enable netstamp, sunrpc doesn't
need that much accuracy */