diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/rxrpc/af_rxrpc.c | 2 | ||||
-rw-r--r-- | net/rxrpc/ar-connection.c | 4 | ||||
-rw-r--r-- | net/rxrpc/ar-transport.c | 4 | ||||
-rw-r--r-- | net/rxrpc/rxkad.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/net/rxrpc/af_rxrpc.c b/net/rxrpc/af_rxrpc.c index 16a68df4e36b..c58fa0d1be26 100644 --- a/net/rxrpc/af_rxrpc.c +++ b/net/rxrpc/af_rxrpc.c | |||
@@ -787,7 +787,7 @@ static int __init af_rxrpc_init(void) | |||
787 | 787 | ||
788 | BUILD_BUG_ON(sizeof(struct rxrpc_skb_priv) > sizeof(dummy_skb->cb)); | 788 | BUILD_BUG_ON(sizeof(struct rxrpc_skb_priv) > sizeof(dummy_skb->cb)); |
789 | 789 | ||
790 | rxrpc_epoch = htonl(xtime.tv_sec); | 790 | rxrpc_epoch = htonl(get_seconds()); |
791 | 791 | ||
792 | ret = -ENOMEM; | 792 | ret = -ENOMEM; |
793 | rxrpc_call_jar = kmem_cache_create( | 793 | rxrpc_call_jar = kmem_cache_create( |
diff --git a/net/rxrpc/ar-connection.c b/net/rxrpc/ar-connection.c index 482750efc235..372b24466dc7 100644 --- a/net/rxrpc/ar-connection.c +++ b/net/rxrpc/ar-connection.c | |||
@@ -791,7 +791,7 @@ void rxrpc_put_connection(struct rxrpc_connection *conn) | |||
791 | 791 | ||
792 | ASSERTCMP(atomic_read(&conn->usage), >, 0); | 792 | ASSERTCMP(atomic_read(&conn->usage), >, 0); |
793 | 793 | ||
794 | conn->put_time = xtime.tv_sec; | 794 | conn->put_time = get_seconds(); |
795 | if (atomic_dec_and_test(&conn->usage)) { | 795 | if (atomic_dec_and_test(&conn->usage)) { |
796 | _debug("zombie"); | 796 | _debug("zombie"); |
797 | rxrpc_queue_delayed_work(&rxrpc_connection_reap, 0); | 797 | rxrpc_queue_delayed_work(&rxrpc_connection_reap, 0); |
@@ -835,7 +835,7 @@ void rxrpc_connection_reaper(struct work_struct *work) | |||
835 | 835 | ||
836 | _enter(""); | 836 | _enter(""); |
837 | 837 | ||
838 | now = xtime.tv_sec; | 838 | now = get_seconds(); |
839 | earliest = ULONG_MAX; | 839 | earliest = ULONG_MAX; |
840 | 840 | ||
841 | write_lock_bh(&rxrpc_connection_lock); | 841 | write_lock_bh(&rxrpc_connection_lock); |
diff --git a/net/rxrpc/ar-transport.c b/net/rxrpc/ar-transport.c index d43d78f19302..bb282a6a19f0 100644 --- a/net/rxrpc/ar-transport.c +++ b/net/rxrpc/ar-transport.c | |||
@@ -183,7 +183,7 @@ void rxrpc_put_transport(struct rxrpc_transport *trans) | |||
183 | 183 | ||
184 | ASSERTCMP(atomic_read(&trans->usage), >, 0); | 184 | ASSERTCMP(atomic_read(&trans->usage), >, 0); |
185 | 185 | ||
186 | trans->put_time = xtime.tv_sec; | 186 | trans->put_time = get_seconds(); |
187 | if (unlikely(atomic_dec_and_test(&trans->usage))) | 187 | if (unlikely(atomic_dec_and_test(&trans->usage))) |
188 | _debug("zombie"); | 188 | _debug("zombie"); |
189 | /* let the reaper determine the timeout to avoid a race with | 189 | /* let the reaper determine the timeout to avoid a race with |
@@ -219,7 +219,7 @@ static void rxrpc_transport_reaper(struct work_struct *work) | |||
219 | 219 | ||
220 | _enter(""); | 220 | _enter(""); |
221 | 221 | ||
222 | now = xtime.tv_sec; | 222 | now = get_seconds(); |
223 | earliest = ULONG_MAX; | 223 | earliest = ULONG_MAX; |
224 | 224 | ||
225 | /* extract all the transports that have been dead too long */ | 225 | /* extract all the transports that have been dead too long */ |
diff --git a/net/rxrpc/rxkad.c b/net/rxrpc/rxkad.c index 5ec705144e10..ac3cabdca78c 100644 --- a/net/rxrpc/rxkad.c +++ b/net/rxrpc/rxkad.c | |||
@@ -916,7 +916,7 @@ static int rxkad_decrypt_ticket(struct rxrpc_connection *conn, | |||
916 | issue = be32_to_cpu(stamp); | 916 | issue = be32_to_cpu(stamp); |
917 | } | 917 | } |
918 | p += 4; | 918 | p += 4; |
919 | now = xtime.tv_sec; | 919 | now = get_seconds(); |
920 | _debug("KIV ISSUE: %lx [%lx]", issue, now); | 920 | _debug("KIV ISSUE: %lx [%lx]", issue, now); |
921 | 921 | ||
922 | /* check the ticket is in date */ | 922 | /* check the ticket is in date */ |