| /Linux-v5.10/fs/xfs/ |
| D | xfs_trans_ail.c | 425 long tout; in xfsaild_push() local 550 tout = 50; in xfsaild_push() 563 tout = 20; in xfsaild_push() 569 tout = 10; in xfsaild_push() 572 return tout; in xfsaild_push() 580 long tout = 0; /* milliseconds */ in xfsaild() local 587 if (tout && tout <= 20) in xfsaild() 640 tout = 0; in xfsaild() 645 if (tout) in xfsaild() 646 freezable_schedule_timeout(msecs_to_jiffies(tout)); in xfsaild() [all …]
|
| /Linux-v5.10/drivers/watchdog/ |
| D | dw_wdt.c | 428 struct dw_wdt_timeout tout, *dst; in dw_wdt_handle_tops() local 439 tout.top_val = val; in dw_wdt_handle_tops() 440 tout.sec = tops[val] / dw_wdt->rate; in dw_wdt_handle_tops() 443 tout.msec = msec - ((u64)tout.sec * MSEC_PER_SEC); in dw_wdt_handle_tops() 451 if (tout.sec > dst->sec || (tout.sec == dst->sec && in dw_wdt_handle_tops() 452 tout.msec >= dst->msec)) in dw_wdt_handle_tops() 455 swap(*dst, tout); in dw_wdt_handle_tops() 458 dw_wdt->timeouts[val] = tout; in dw_wdt_handle_tops()
|
| D | stm32_iwdg.c | 90 u32 tout, presc, iwdg_rlr, iwdg_pr, iwdg_sr; in stm32_iwdg_start() local 95 tout = clamp_t(unsigned int, wdd->timeout, in stm32_iwdg_start() 98 presc = DIV_ROUND_UP(tout * wdt->rate, RLR_MAX + 1); in stm32_iwdg_start() 103 iwdg_rlr = ((tout * wdt->rate) / presc) - 1; in stm32_iwdg_start()
|
| /Linux-v5.10/net/netfilter/ |
| D | xt_IDLETIMER.c | 225 ktime_t tout; in idletimer_tg_create_v1() local 229 tout = ktime_set(info->timeout, 0); in idletimer_tg_create_v1() 230 alarm_start_relative(&info->timer->alarm, tout); in idletimer_tg_create_v1() 276 ktime_t tout = ktime_set(info->timeout, 0); in idletimer_tg_target_v1() local 277 alarm_start_relative(&info->timer->alarm, tout); in idletimer_tg_target_v1() 377 ktime_t tout = alarm_expires_remaining(&info->timer->alarm); in idletimer_tg_checkentry_v1() local 378 struct timespec64 ktimespec = ktime_to_timespec64(tout); in idletimer_tg_checkentry_v1() 383 alarm_start_relative(&info->timer->alarm, tout); in idletimer_tg_checkentry_v1()
|
| /Linux-v5.10/drivers/usb/typec/tcpm/ |
| D | tcpci_rt1711h.c | 23 #define RT1711H_RTCTRL8_SET(ck300, ship_off, auto_idle, tout) \ argument 25 ((auto_idle) << 3) | ((tout) & 0x07)) 30 #define RT1711H_RTCTRL11_SET(en, tout) \ argument 31 (((en) << 7) | ((tout) & 0x0F))
|
| /Linux-v5.10/drivers/isdn/mISDN/ |
| D | timerdev.c | 220 int id, tout, ret = 0; in mISDN_ioctl() local 229 if (get_user(tout, (int __user *)arg)) { in mISDN_ioctl() 233 id = misdn_add_timer(dev, tout); in mISDN_ioctl() 236 tout, id); in mISDN_ioctl()
|
| /Linux-v5.10/drivers/hwmon/ |
| D | bt1-pvt.c | 187 static inline void pvt_set_tout(struct pvt_hwmon *pvt, u32 tout) in pvt_set_tout() argument 192 writel(tout, pvt->regs + PVT_TTIMEOUT); in pvt_set_tout() 972 unsigned long tout; in pvt_check_pwr() local 991 tout = PVT_TOUT_MIN / NSEC_PER_USEC; in pvt_check_pwr() 992 usleep_range(tout, 2 * tout); in pvt_check_pwr()
|
| /Linux-v5.10/net/mptcp/ |
| D | protocol.c | 383 long tout = ssk && inet_csk(ssk)->icsk_pending ? in mptcp_set_timeout() local 386 if (tout <= 0) in mptcp_set_timeout() 387 tout = mptcp_sk(sk)->timer_ival; in mptcp_set_timeout() 388 mptcp_sk(sk)->timer_ival = tout > 0 ? tout : TCP_RTO_MIN; in mptcp_set_timeout() 676 unsigned long tout; in mptcp_reset_timer() local 679 tout = READ_ONCE(mptcp_sk(sk)->timer_ival); in mptcp_reset_timer() 680 if (WARN_ON_ONCE(!tout)) in mptcp_reset_timer() 681 tout = TCP_RTO_MIN; in mptcp_reset_timer() 682 sk_reset_timer(sk, &icsk->icsk_retransmit_timer, jiffies + tout); in mptcp_reset_timer()
|
| /Linux-v5.10/sound/core/ |
| D | pcm_native.c | 2040 long tout; in snd_pcm_drain() local 2066 tout = MAX_SCHEDULE_TIMEOUT; in snd_pcm_drain() 2068 tout = 10; in snd_pcm_drain() 2071 tout = max(t, tout); in snd_pcm_drain() 2073 tout = msecs_to_jiffies(tout * 1000); in snd_pcm_drain() 2075 tout = schedule_timeout(tout); in snd_pcm_drain() 2091 if (tout == 0) { in snd_pcm_drain()
|
| D | pcm_lib.c | 1833 long wait_time, tout; in wait_for_avail() local 1875 tout = schedule_timeout(wait_time); in wait_for_avail() 1900 if (!tout) { in wait_for_avail()
|
| /Linux-v5.10/drivers/gpu/drm/msm/dp/ |
| D | dp_display.c | 485 u32 tout = DP_TIMEOUT_5_SECOND; in dp_hpd_plug_handle() local 512 tout = DP_TIMEOUT_NONE; in dp_hpd_plug_handle() 525 dp_add_event(dp, EV_CONNECT_PENDING_TIMEOUT, 0, tout); in dp_hpd_plug_handle()
|
| /Linux-v5.10/drivers/net/ethernet/broadcom/bnx2x/ |
| D | bnx2x_vfpf.c | 145 int tout = 100, interval = 100; /* wait for 10 seconds */ in bnx2x_send_msg2pf() local 176 while ((tout >= 0) && (!*done)) { in bnx2x_send_msg2pf() 178 tout -= 1; in bnx2x_send_msg2pf() 197 int tout = 10, interval = 100; /* Wait for 1 sec */ in bnx2x_get_vf_id() local 209 } while (tout-- > 0); in bnx2x_get_vf_id()
|
| D | bnx2x_cmn.h | 1235 int tout = 5000; /* Wait for 5 secs tops */ in bnx2x_wait_sp_comp() local 1237 while (tout--) { in bnx2x_wait_sp_comp()
|
| D | bnx2x_main.c | 9219 int tout = 50; in bnx2x_func_wait_started() local 9249 BNX2X_F_STATE_STARTED && tout--) in bnx2x_func_wait_started() 11942 int tout = 5000; in bnx2x_get_hwinfo() local 11950 while (tout && REG_RD(bp, IGU_REG_RESET_MEMORIES)) { in bnx2x_get_hwinfo() 11951 tout--; in bnx2x_get_hwinfo()
|
| /Linux-v5.10/drivers/scsi/arm/ |
| D | fas216.c | 1165 int tout; in fas216_wait_cmd() local 1170 for (tout = 1000; tout; tout -= 1) { in fas216_wait_cmd()
|
| /Linux-v5.10/tools/power/cpupower/po/ |
| D | fr.po | 520 "On ne peut indiquer plus d'un paramètre --cpu, tout comme l'on ne peut\n" 634 " pas, ou bien n'est tout simplement pas chargé.\n" 932 "On ne peut indiquer plus d'un paramètre --cpu, tout comme l'on ne peut\n"
|
| /Linux-v5.10/tools/power/x86/turbostat/ |
| D | turbostat.c | 3181 struct timeval tout; in do_sleep() local 3194 tout = interval_tv; in do_sleep() 3195 retval = select(1, &readfds, NULL, NULL, &tout); in do_sleep() 3209 rest.tv_sec = (tout.tv_sec + tout.tv_usec / 1000000); in do_sleep() 3210 rest.tv_nsec = (tout.tv_usec % 1000000) * 1000; in do_sleep()
|
| /Linux-v5.10/drivers/net/wireless/ralink/rt2x00/ |
| D | rt2800lib.c | 1139 unsigned long tout; in rt2800_entry_txstatus_timeout() local 1145 tout = msecs_to_jiffies(50); in rt2800_entry_txstatus_timeout() 1147 tout = msecs_to_jiffies(2000); in rt2800_entry_txstatus_timeout() 1149 ret = time_after(jiffies, entry->last_action + tout); in rt2800_entry_txstatus_timeout()
|