Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torvalds/linux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/net/rxrpc
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2005-08-16 08:13:25 +0400
committerDavid S. Miller <davem@sunset.davemloft.net>2005-08-30 03:01:24 +0400
commit9deff7f2365958c5c5aa8cb5a0dd651c4dd83f8f (patch)
treed92a266b33deaa9a8ff78640df8126da61b97a76 /net/rxrpc
parent63a1222b1fd79c52491c14534b086bffbfaed8bf (diff)
[RXRPC]: Fix build failure introduced by skb->stamp changes.
Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc')
-rw-r--r--net/rxrpc/transport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/transport.c b/net/rxrpc/transport.c
index 9bce7794130a..122c086ee2db 100644
--- a/net/rxrpc/transport.c
+++ b/net/rxrpc/transport.c
@@ -330,7 +330,7 @@ static int rxrpc_incoming_msg(struct rxrpc_transport *trans,
msg->trans = trans;
msg->state = RXRPC_MSG_RECEIVED;
- msg->stamp = pkt->stamp;
+ skb_get_timestamp(pkt, &msg->stamp);
if (msg->stamp.tv_sec == 0) {
do_gettimeofday(&msg->stamp);
if (pkt->sk)