Searched refs:timo (Results 1 – 4 of 4) sorted by relevance
/Linux-v6.1/security/keys/ |
D | proc.c | 162 u64 timo; in proc_keys_show() local 206 timo = expiry - now; in proc_keys_show() 208 if (timo < 60) in proc_keys_show() 209 sprintf(xbuf, "%llus", timo); in proc_keys_show() 210 else if (timo < 60*60) in proc_keys_show() 211 sprintf(xbuf, "%llum", div_u64(timo, 60)); in proc_keys_show() 212 else if (timo < 60*60*24) in proc_keys_show() 213 sprintf(xbuf, "%lluh", div_u64(timo, 60 * 60)); in proc_keys_show() 214 else if (timo < 60*60*24*7) in proc_keys_show() 215 sprintf(xbuf, "%llud", div_u64(timo, 60 * 60 * 24)); in proc_keys_show() [all …]
|
/Linux-v6.1/tools/testing/selftests/futex/include/ |
D | futex2test.h | 19 unsigned long flags, struct timespec *timo, clockid_t clockid) in futex_waitv() argument 21 return syscall(__NR_futex_waitv, waiters, nr_waiters, flags, timo, clockid); in futex_waitv()
|
/Linux-v6.1/fs/afs/ |
D | fs_probe.c | 439 unsigned long timo = 2 * HZ; in afs_wait_for_one_fs_probe() local 448 if (timo == 0 || in afs_wait_for_one_fs_probe() 453 timo = schedule_timeout(timo); in afs_wait_for_one_fs_probe() 463 if (timo == 0) in afs_wait_for_one_fs_probe()
|
/Linux-v6.1/net/rxrpc/ |
D | input.c | 306 unsigned long now, timo; in rxrpc_receiving_reply() local 314 timo = now + MAX_JIFFY_OFFSET; in rxrpc_receiving_reply() 315 WRITE_ONCE(call->resend_at, timo); in rxrpc_receiving_reply() 316 WRITE_ONCE(call->ack_at, timo); in rxrpc_receiving_reply() 434 unsigned long timo = READ_ONCE(call->next_req_timo); in rxrpc_input_data() local 437 if (timo) { in rxrpc_input_data() 439 expect_req_by = now + timo; in rxrpc_input_data() 1078 unsigned long timo; in rxrpc_input_call_packet() local 1082 timo = READ_ONCE(call->next_rx_timo); in rxrpc_input_call_packet() 1083 if (timo) { in rxrpc_input_call_packet() [all …]
|