aboutsummaryrefslogtreecommitdiffstats
path: root/net/rxrpc/rxkad.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/rxrpc/rxkad.c')
-rw-r--r--net/rxrpc/rxkad.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rxrpc/rxkad.c b/net/rxrpc/rxkad.c
index 278ac0807a60..47cb019c521a 100644
--- a/net/rxrpc/rxkad.c
+++ b/net/rxrpc/rxkad.c
@@ -669,7 +669,7 @@ static int rxkad_issue_challenge(struct rxrpc_connection *conn)
669 return -EAGAIN; 669 return -EAGAIN;
670 } 670 }
671 671
672 conn->params.peer->last_tx_at = ktime_get_real(); 672 conn->params.peer->last_tx_at = ktime_get_seconds();
673 _leave(" = 0"); 673 _leave(" = 0");
674 return 0; 674 return 0;
675} 675}
@@ -725,7 +725,7 @@ static int rxkad_send_response(struct rxrpc_connection *conn,
725 return -EAGAIN; 725 return -EAGAIN;
726 } 726 }
727 727
728 conn->params.peer->last_tx_at = ktime_get_real(); 728 conn->params.peer->last_tx_at = ktime_get_seconds();
729 _leave(" = 0"); 729 _leave(" = 0");
730 return 0; 730 return 0;
731} 731}