/linux-4.1.27/sound/soc/au1x/ |
D | ac97c.c | 86 unsigned int tmo, retry; in au1xac97c_ac97_read() local 94 tmo = 5; in au1xac97c_ac97_read() 95 while ((RD(ctx, AC97_STATUS) & STAT_CP) && tmo--) in au1xac97c_ac97_read() 97 if (!tmo) { in au1xac97c_ac97_read() 107 tmo = 0x10000; in au1xac97c_ac97_read() 108 while ((RD(ctx, AC97_STATUS) & STAT_CP) && tmo--) in au1xac97c_ac97_read() 112 if (!tmo) in au1xac97c_ac97_read() 117 } while (--retry && !tmo); in au1xac97c_ac97_read() 128 unsigned int tmo, retry; in au1xac97c_ac97_write() local 134 for (tmo = 5; (RD(ctx, AC97_STATUS) & STAT_CP) && tmo; tmo--) in au1xac97c_ac97_write() [all …]
|
D | psc-i2s.c | 149 unsigned long tmo; in au1xpsc_i2s_configure() local 155 tmo = 1000000; in au1xpsc_i2s_configure() 156 while (!(__raw_readl(I2S_STAT(pscdata)) & PSC_I2SSTAT_SR) && tmo) in au1xpsc_i2s_configure() 157 tmo--; in au1xpsc_i2s_configure() 159 if (!tmo) in au1xpsc_i2s_configure() 168 tmo = 1000000; in au1xpsc_i2s_configure() 169 while (!(__raw_readl(I2S_STAT(pscdata)) & PSC_I2SSTAT_DR) && tmo) in au1xpsc_i2s_configure() 170 tmo--; in au1xpsc_i2s_configure() 172 if (tmo) in au1xpsc_i2s_configure() 184 unsigned long tmo, stat; in au1xpsc_i2s_start() local [all …]
|
D | psc-ac97.c | 79 unsigned short retry, tmo; in au1xpsc_ac97_read() local 93 tmo = 20; in au1xpsc_ac97_read() 98 } while (--tmo); in au1xpsc_ac97_read() 108 tmo = 1; /* wrong register, try again */ in au1xpsc_ac97_read() 110 } while (--retry && !tmo); in au1xpsc_ac97_read() 120 unsigned int tmo, retry; in au1xpsc_ac97_write() local 133 tmo = 20; in au1xpsc_ac97_write() 138 } while (--tmo); in au1xpsc_ac97_write() 144 } while (--retry && !tmo); in au1xpsc_ac97_write()
|
/linux-4.1.27/drivers/net/wireless/cw1200/ |
D | pm.c | 116 unsigned long tmo) in cw1200_pm_stay_awake() argument 121 if (!timer_pending(&pm->stay_awake) || cur_tmo < (long)tmo) in cw1200_pm_stay_awake() 122 mod_timer(&pm->stay_awake, jiffies + tmo); in cw1200_pm_stay_awake() 129 long tmo; in cw1200_suspend_work() local 132 tmo = work->timer.expires - jiffies; in cw1200_suspend_work() 133 if (tmo < 0) in cw1200_suspend_work() 134 tmo = 0; in cw1200_suspend_work() 136 tmo = -1; in cw1200_suspend_work() 138 return tmo; in cw1200_suspend_work() 143 unsigned long tmo) in cw1200_resume_work() argument [all …]
|
D | pm.h | 37 unsigned long tmo); 40 unsigned long tmo) { in cw1200_pm_stay_awake() argument
|
D | scan.c | 23 int tmo = 2000; in cw1200_scan_start() local 37 tmo += scan->ch[i].max_chan_time + 10; in cw1200_scan_start() 42 cw1200_pm_stay_awake(&priv->pm_state, msecs_to_jiffies(tmo)); in cw1200_scan_start() 44 msecs_to_jiffies(tmo)); in cw1200_scan_start()
|
D | queue.c | 125 unsigned long tmo = item->queue_timestamp + queue->ttl; in __cw1200_queue_gc() local 126 mod_timer(&queue->gc, tmo); in __cw1200_queue_gc() 128 tmo - jiffies); in __cw1200_queue_gc()
|
D | wsm.c | 86 void *arg, u16 cmd, long tmo); 1081 void *arg, u16 cmd, long tmo) in wsm_cmd_send() argument 1132 priv->wsm_cmd.done, tmo); in wsm_cmd_send()
|
D | sta.c | 2097 long tmo = priv->join_dtim_period * in cw1200_multicast_start_work() local 2106 mod_timer(&priv->mcast_timeout, jiffies + tmo); in cw1200_multicast_start_work()
|
/linux-4.1.27/sound/soc/sh/ |
D | hac.c | 204 unsigned int tmo; in hac_ac97_warmrst() local 209 for (tmo = 1000; (tmo > 0) && !(HACREG(HACCR) & CR_CR); tmo--) in hac_ac97_warmrst() 212 if (!tmo) in hac_ac97_warmrst()
|
/linux-4.1.27/drivers/block/paride/ |
D | pg.c | 287 static int pg_wait(struct pg *dev, int go, int stop, unsigned long tmo, char *msg) in pg_wait() argument 295 && time_before(jiffies, tmo)) { in pg_wait() 302 to = time_after_eq(jiffies, tmo); in pg_wait() 319 static int pg_command(struct pg *dev, char *cmd, int dlen, unsigned long tmo) in pg_command() argument 327 if (pg_wait(dev, STAT_BUSY | STAT_DRQ, 0, tmo, "before command")) in pg_command() 334 if (pg_wait(dev, STAT_BUSY, STAT_DRQ, tmo, "command DRQ")) in pg_command() 356 static int pg_completion(struct pg *dev, char *buf, unsigned long tmo) in pg_completion() argument 361 tmo, "completion"); in pg_completion() 379 tmo, "completion"); in pg_completion()
|
D | pt.c | 393 static int pt_poll_dsc(struct pt_unit *tape, int pause, int tmo, char *msg) in pt_poll_dsc() argument 401 while (k < tmo) { in pt_poll_dsc() 412 if ((k >= tmo) || (s & STAT_ERR)) { in pt_poll_dsc() 413 if (k >= tmo) in pt_poll_dsc() 424 static void pt_media_access_cmd(struct pt_unit *tape, int tmo, char *cmd, char *fun) in pt_media_access_cmd() argument 431 pt_poll_dsc(tape, HZ, tmo, fun); in pt_media_access_cmd() 483 static int pt_ready_wait(struct pt_unit *tape, int tmo) in pt_ready_wait() argument 489 while (k < tmo) { in pt_ready_wait()
|
D | pcd.c | 575 static int pcd_ready_wait(struct pcd_unit *cd, int tmo) in pcd_ready_wait() argument 581 while (k < tmo) { in pcd_ready_wait()
|
/linux-4.1.27/drivers/scsi/csiostor/ |
D | csio_mb.c | 76 csio_mb_hello(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo, in csio_mb_hello() argument 82 CSIO_INIT_MBP(mbp, cmdp, tmo, hw, cbfn, 1); in csio_mb_hello() 140 csio_mb_bye(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo, in csio_mb_bye() argument 145 CSIO_INIT_MBP(mbp, cmdp, tmo, hw, cbfn, 1); in csio_mb_bye() 162 csio_mb_reset(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo, in csio_mb_reset() argument 168 CSIO_INIT_MBP(mbp, cmdp, tmo, hw, cbfn, 1); in csio_mb_reset() 193 csio_mb_params(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo, in csio_mb_params() argument 203 CSIO_INIT_MBP(mbp, cmdp, tmo, hw, cbfn, 1); in csio_mb_params() 264 csio_mb_ldst(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo, int reg) in csio_mb_ldst() argument 267 CSIO_INIT_MBP(mbp, ldst_cmd, tmo, hw, NULL, 1); in csio_mb_ldst() [all …]
|
D | csio_mb.h | 103 (__mbp)->tmo = (__tmo); \ 127 uint32_t tmo; /* Timeout */ member 179 void csio_mb_ldst(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo,
|
D | csio_scsi.c | 217 wr->tmo_val = (uint8_t) req->tmo; in csio_scsi_init_cmd_wr() 376 wr->tmo_val = (uint8_t)(req->tmo); in csio_scsi_init_read_wr() 429 wr->tmo_val = (uint8_t)(req->tmo); in csio_scsi_init_write_wr() 660 wr->tmo_val = (uint8_t) req->tmo; in csio_scsi_init_abrt_cls_wr() 1233 csio_scsi_abort_io_q(struct csio_scsim *scm, struct list_head *q, uint32_t tmo) in csio_scsi_abort_io_q() argument 1237 int count = DIV_ROUND_UP(tmo, CSIO_SCSI_ABORT_Q_POLL_MS); in csio_scsi_abort_io_q() 1840 ioreq->tmo = 0; in csio_queuecommand() 1894 ioreq->tmo = CSIO_SCSI_ABRT_TMO_MS; in csio_do_abrt_cls() 1919 unsigned long tmo = 0; in csio_eh_abort_handler() local 1946 tmo = CSIO_SCSI_ABRT_TMO_MS; in csio_eh_abort_handler() [all …]
|
D | csio_wr.h | 246 uint32_t tmo; /* Driver timeout */ member
|
D | csio_hw.c | 3655 io_req->tmo -= min_t(uint32_t, io_req->tmo, ECM_MIN_TMO); in csio_mgmt_tmo_handler() 3657 if (!io_req->tmo) { in csio_mgmt_tmo_handler()
|
D | csio_lnode.c | 1684 wr->tmo_val = (uint8_t) io_req->tmo; in csio_ln_prep_ecwr()
|
/linux-4.1.27/drivers/md/ |
D | dm-log-userspace-transfer.c | 175 unsigned long tmo; in dm_consult_userspace() local 240 tmo = wait_for_completion_timeout(&(pkg.complete), DM_ULOG_RETRY_TIMEOUT); in dm_consult_userspace() 244 if (!tmo) { in dm_consult_userspace()
|
/linux-4.1.27/net/ipv4/ |
D | inet_diag.c | 181 #define EXPIRES_IN_MS(tmo) DIV_ROUND_UP((tmo - jiffies) * 1000, HZ) in inet_sk_diag_fill() argument 269 long tmo; in inet_twsk_diag_fill() local 279 tmo = tw->tw_timer.expires - jiffies; in inet_twsk_diag_fill() 280 if (tmo < 0) in inet_twsk_diag_fill() 281 tmo = 0; in inet_twsk_diag_fill() 288 r->idiag_expires = jiffies_to_msecs(tmo); in inet_twsk_diag_fill() 304 long tmo; in inet_req_diag_fill() local 320 tmo = inet_reqsk(sk)->rsk_timer.expires - jiffies; in inet_req_diag_fill() 321 r->idiag_expires = (tmo >= 0) ? jiffies_to_msecs(tmo) : 0; in inet_req_diag_fill()
|
D | tcp_timer.c | 596 const int tmo = tcp_fin_time(sk) - TCP_TIMEWAIT_LEN; in tcp_keepalive_timer() local 598 if (tmo > 0) { in tcp_keepalive_timer() 599 tcp_time_wait(sk, TCP_FIN_WAIT2, tmo); in tcp_keepalive_timer()
|
D | tcp.c | 2119 const int tmo = tcp_fin_time(sk); in tcp_close() local 2121 if (tmo > TCP_TIMEWAIT_LEN) { in tcp_close() 2123 tmo - TCP_TIMEWAIT_LEN); in tcp_close() 2125 tcp_time_wait(sk, TCP_FIN_WAIT2, tmo); in tcp_close()
|
D | tcp_input.c | 5844 int tmo; in tcp_rcv_state_process() local 5888 tmo = tcp_fin_time(sk); in tcp_rcv_state_process() 5889 if (tmo > TCP_TIMEWAIT_LEN) { in tcp_rcv_state_process() 5890 inet_csk_reset_keepalive_timer(sk, tmo - TCP_TIMEWAIT_LEN); in tcp_rcv_state_process() 5898 inet_csk_reset_keepalive_timer(sk, tmo); in tcp_rcv_state_process() 5900 tcp_time_wait(sk, TCP_FIN_WAIT2, tmo); in tcp_rcv_state_process()
|
/linux-4.1.27/drivers/dma/ioat/ |
D | dma_v2.h | 171 int ioat2_quiesce(struct ioat_chan_common *chan, unsigned long tmo); 172 int ioat2_reset_sync(struct ioat_chan_common *chan, unsigned long tmo);
|
D | dma_v2.c | 221 int ioat2_quiesce(struct ioat_chan_common *chan, unsigned long tmo) in ioat2_quiesce() argument 223 unsigned long end = jiffies + tmo; in ioat2_quiesce() 231 if (tmo && time_after(jiffies, end)) { in ioat2_quiesce() 242 int ioat2_reset_sync(struct ioat_chan_common *chan, unsigned long tmo) in ioat2_reset_sync() argument 244 unsigned long end = jiffies + tmo; in ioat2_reset_sync()
|
D | dma_v3.c | 1232 unsigned long tmo; in ioat_xor_val_self_test() local 1317 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)); in ioat_xor_val_self_test() 1319 if (tmo == 0 || in ioat_xor_val_self_test() 1384 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)); in ioat_xor_val_self_test() 1386 if (tmo == 0 || in ioat_xor_val_self_test() 1437 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)); in ioat_xor_val_self_test() 1439 if (tmo == 0 || in ioat_xor_val_self_test()
|
D | dma.c | 828 unsigned long tmo; in ioat_dma_self_test() local 884 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)); in ioat_dma_self_test() 886 if (tmo == 0 || in ioat_dma_self_test()
|
/linux-4.1.27/drivers/scsi/ |
D | scsi_transport_srp.c | 196 static ssize_t srp_show_tmo(char *buf, int tmo) in srp_show_tmo() argument 198 return tmo >= 0 ? sprintf(buf, "%d\n", tmo) : sprintf(buf, "off\n"); in srp_show_tmo() 201 static int srp_parse_tmo(int *tmo, const char *buf) in srp_parse_tmo() argument 206 res = kstrtoint(buf, 0, tmo); in srp_parse_tmo() 208 *tmo = -1; in srp_parse_tmo()
|
D | sun3_scsi.c | 426 int tmo = 20000; /* .2 sec */ in sun3scsi_dma_finish() local 432 if(--tmo <= 0) { in sun3scsi_dma_finish()
|
/linux-4.1.27/net/xfrm/ |
D | xfrm_state.c | 394 long tmo = x->lft.hard_add_expires_seconds + in xfrm_timer_handler() local 396 if (tmo <= 0) { in xfrm_timer_handler() 403 tmo = x->lft.hard_add_expires_seconds - x->saved_tmo; in xfrm_timer_handler() 407 if (tmo < next) in xfrm_timer_handler() 408 next = tmo; in xfrm_timer_handler() 411 long tmo = x->lft.hard_use_expires_seconds + in xfrm_timer_handler() local 413 if (tmo <= 0) in xfrm_timer_handler() 415 if (tmo < next) in xfrm_timer_handler() 416 next = tmo; in xfrm_timer_handler() 421 long tmo = x->lft.soft_add_expires_seconds + in xfrm_timer_handler() local [all …]
|
D | xfrm_policy.c | 192 long tmo = xp->lft.hard_add_expires_seconds + in xfrm_policy_timer() local 194 if (tmo <= 0) in xfrm_policy_timer() 196 if (tmo < next) in xfrm_policy_timer() 197 next = tmo; in xfrm_policy_timer() 200 long tmo = xp->lft.hard_use_expires_seconds + in xfrm_policy_timer() local 202 if (tmo <= 0) in xfrm_policy_timer() 204 if (tmo < next) in xfrm_policy_timer() 205 next = tmo; in xfrm_policy_timer() 208 long tmo = xp->lft.soft_add_expires_seconds + in xfrm_policy_timer() local 210 if (tmo <= 0) { in xfrm_policy_timer() [all …]
|
/linux-4.1.27/drivers/scsi/qla2xxx/ |
D | qla_inline.h | 250 qla2x00_init_timer(srb_t *sp, unsigned long tmo) in qla2x00_init_timer() argument 253 sp->u.iocb_cmd.timer.expires = jiffies + tmo * HZ; in qla2x00_init_timer()
|
D | qla_mr.c | 298 qlafx00_driver_shutdown(scsi_qla_host_t *vha, int tmo) in qlafx00_driver_shutdown() argument 310 if (tmo) in qlafx00_driver_shutdown() 311 mcp->tov = tmo; in qlafx00_driver_shutdown()
|
D | qla_init.c | 80 unsigned long tmo; in qla2x00_get_async_timeout() local 84 tmo = ha->r_a_tov / 10 * 2; in qla2x00_get_async_timeout() 86 tmo = FX00_DEF_RATOV * 2; in qla2x00_get_async_timeout() 92 tmo = ha->login_timeout; in qla2x00_get_async_timeout() 94 return tmo; in qla2x00_get_async_timeout()
|
D | qla_sup.c | 244 uint16_t data, uint32_t tmo) in qla2x00_write_nvram_word_tmo() argument 283 if (!--tmo) { in qla2x00_write_nvram_word_tmo()
|
/linux-4.1.27/drivers/net/ethernet/ti/ |
D | cpts.h | 105 unsigned long tmo; member
|
D | cpts.c | 41 return time_after(jiffies, event->tmo); in event_expired() 79 event->tmo = jiffies + 2; in cpts_fifo_read()
|
/linux-4.1.27/drivers/video/fbdev/omap/ |
D | lcd_mipid.c | 298 unsigned long tmo; in mipid_run_test() local 301 tmo = jiffies + msecs_to_jiffies(100); in mipid_run_test() 310 if (time_after(jiffies, tmo)) { in mipid_run_test()
|
/linux-4.1.27/drivers/usb/core/ |
D | devio.c | 973 unsigned int tmo; in proc_control() local 996 tmo = ctrl.timeout; in proc_control() 1009 snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT, NULL, 0); in proc_control() 1014 tbuf, ctrl.wLength, tmo); in proc_control() 1032 snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT, in proc_control() 1038 tbuf, ctrl.wLength, tmo); in proc_control() 1060 unsigned int tmo, len1, pipe; in proc_bulk() local 1089 tmo = bulk.timeout; in proc_bulk() 1095 snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, NULL, 0); in proc_bulk() 1098 i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo); in proc_bulk() [all …]
|
/linux-4.1.27/drivers/input/keyboard/ |
D | lm8323.c | 638 unsigned long tmo; in lm8323_probe() local 681 tmo = jiffies + msecs_to_jiffies(100); in lm8323_probe() 686 if (time_after(jiffies, tmo)) { in lm8323_probe()
|
/linux-4.1.27/drivers/net/phy/ |
D | dp83640.c | 79 unsigned long tmo; member 100 unsigned long tmo; member 287 rxts->tmo = jiffies + 2; in phy2rxts() 580 return time_after(jiffies, rxts->tmo); in expired() 1372 if (!time_after(jiffies, skb_info->tmo)) { in rx_timestamp_work() 1420 skb_info->tmo = jiffies + 2; in dp83640_rxtstamp()
|
/linux-4.1.27/net/ipv6/ |
D | icmp.c | 200 int tmo = net->ipv6.sysctl.icmpv6_time; in icmpv6_xrlim_allow() local 204 tmo >>= ((128 - rt->rt6i_dst.plen)>>5); in icmpv6_xrlim_allow() 211 res = inet_peer_xrlim_allow(peer, tmo); in icmpv6_xrlim_allow()
|
/linux-4.1.27/drivers/scsi/libsas/ |
D | sas_init.c | 401 const unsigned long tmo = msecs_to_jiffies(25000); in sas_resume_ha() local 414 wait_event_timeout(ha->eh_wait_q, phys_suspended(ha) == 0, tmo); in sas_resume_ha()
|
/linux-4.1.27/drivers/infiniband/ulp/srp/ |
D | ib_srp.c | 151 int tmo = *(int *)kp->arg; in srp_tmo_get() local 153 if (tmo >= 0) in srp_tmo_get() 154 return sprintf(buffer, "%d", tmo); in srp_tmo_get() 161 int tmo, res; in srp_tmo_set() local 164 res = kstrtoint(val, 0, &tmo); in srp_tmo_set() 168 tmo = -1; in srp_tmo_set() 171 res = srp_tmo_valid(tmo, srp_fast_io_fail_tmo, in srp_tmo_set() 174 res = srp_tmo_valid(srp_reconnect_delay, tmo, srp_dev_loss_tmo); in srp_tmo_set() 177 tmo); in srp_tmo_set() 180 *(int *)kp->arg = tmo; in srp_tmo_set()
|
/linux-4.1.27/net/decnet/ |
D | dn_route.c | 404 long tmo = (long)(dn_rt_deadline - now); in dn_rt_cache_flush() local 406 if (user_mode && tmo < dn_rt_max_delay - dn_rt_min_delay) in dn_rt_cache_flush() 407 tmo = 0; in dn_rt_cache_flush() 409 if (delay > tmo) in dn_rt_cache_flush() 410 delay = tmo; in dn_rt_cache_flush()
|
/linux-4.1.27/drivers/scsi/lpfc/ |
D | lpfc_ct.c | 295 uint32_t tmo, uint8_t retry) in lpfc_gen_req() argument 334 if (!tmo) { in lpfc_gen_req() 336 tmo = (3 * phba->fc_ratov); in lpfc_gen_req() 338 icmd->ulpTimeout = tmo; in lpfc_gen_req()
|
D | lpfc_hbadisc.c | 4313 uint32_t tmo; in lpfc_set_disctmo() local 4317 tmo = (((phba->fc_edtov + 999) / 1000) + 1); in lpfc_set_disctmo() 4322 tmo = ((phba->fc_ratov * 3) + 3); in lpfc_set_disctmo() 4329 tmo, vport->port_state, vport->fc_flag); in lpfc_set_disctmo() 4332 mod_timer(&vport->fc_disctmo, jiffies + msecs_to_jiffies(1000 * tmo)); in lpfc_set_disctmo() 4341 vport->port_state, tmo, in lpfc_set_disctmo()
|
D | lpfc_els.c | 1211 uint32_t tmo; in lpfc_issue_els_flogi() local 1272 tmo = phba->fc_ratov; in lpfc_issue_els_flogi() 1275 phba->fc_ratov = tmo; in lpfc_issue_els_flogi()
|
/linux-4.1.27/drivers/ata/ |
D | ahci.c | 757 unsigned long tmo = deadline - jiffies; in ahci_avn_hardreset() local 794 deadline += tmo; in ahci_avn_hardreset()
|
/linux-4.1.27/sound/oss/ |
D | swarm_cs4297a.c | 1631 unsigned tmo; in drain_dac() local 1644 tmo = ((count * FRAME_TX_US) * HZ) / 1000000; in drain_dac() 1645 schedule_timeout(tmo + 1); in drain_dac()
|
/linux-4.1.27/net/packet/ |
D | af_packet.c | 562 unsigned int mbits = 0, msec = 0, div = 0, tmo = 0; in prb_calc_retire_blk_tmo() local 594 tmo = mbits * msec; in prb_calc_retire_blk_tmo() 597 return tmo+1; in prb_calc_retire_blk_tmo() 598 return tmo; in prb_calc_retire_blk_tmo()
|
/linux-4.1.27/drivers/scsi/isci/ |
D | host.c | 1050 unsigned long tmo = sci_controller_get_suggested_start_timeout(ihost); in isci_host_start() local 1055 sci_controller_start(ihost, tmo); in isci_host_start()
|
/linux-4.1.27/drivers/scsi/qla4xxx/ |
D | ql4_os.c | 7399 uint16_t tmo = 0; in qla4xxx_sysfs_ddb_conn_open() local 7424 tmo = ((ha->def_timeout > LOGIN_TOV) && in qla4xxx_sysfs_ddb_conn_open() 7429 "Default time to wait for login to ddb %d\n", tmo)); in qla4xxx_sysfs_ddb_conn_open() 7431 wtime = jiffies + (HZ * tmo); in qla4xxx_sysfs_ddb_conn_open() 8463 uint16_t tmo = 0; in qla4xxx_build_ddb_list() local 8490 tmo = ((ha->def_timeout > LOGIN_TOV) && in qla4xxx_build_ddb_list() 8495 "Default time to wait for build ddb %d\n", tmo)); in qla4xxx_build_ddb_list() 8497 wtime = jiffies + (HZ * tmo); in qla4xxx_build_ddb_list()
|
/linux-4.1.27/Documentation/filesystems/caching/ |
D | fscache.txt | 238 tmo=N Number of lookups timed out and requeued
|
/linux-4.1.27/Documentation/scsi/ |
D | ChangeLog.lpfc | 355 freed (after nodev tmo). This bug was causing i/o received in 836 * Make nodev-tmo default to 20 seconds. 856 * Fixed link down->up transitions when linkdown tmo expires. Fix 936 * Removed missing function = 0 in tmo routine in lpfc_els.c.
|