Searched refs:timeout (Results 476 - 500 of 853) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/uts/common/avs/ns/rdc/
H A Drdc_health.c203 /* setup RPC timeout */
426 clock_t timeout = RDC_SYNC_EVENT_TIMEOUT * 2; /* 2 min */ local
439 nsc_lbolt() + timeout) == 0) {
/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_timer.c135 timeout((pfv_t)sctp_timer_fire, sctp_tb, tim);
189 * timeout() callback function.
236 * Logically free a timer mblk (that might have a pending timeout().)
350 sctp_tb->sctp_tb_tid = timeout((pfv_t)sctp_timer_fire,
486 * heartbeat timeout value. If there is no heartbeat pending,
553 * timeout to send them. This should only happen if
/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_misc.c59 * TCPS_TIME_WAIT, the 2MSL timeout will immediately be canceled by the kernel
527 tcps->tcps_reclaim_tid = timeout(tcp_reclaim_timer,
601 tcps->tcps_reclaim_tid = timeout(tcp_reclaim_timer,
/illumos-gate/usr/src/uts/common/io/comstar/port/pppt/
H A Dpppt_tgt.c802 * If it fails we'll setup another timeout and try again later.
807 (void) timeout(pppt_tgt_dereg_retry, tgt,
893 (void) timeout(pppt_tgt_dereg_retry, tgt,
/illumos-gate/usr/src/uts/common/io/hxge/
H A Dhpi_rxdma.c191 rcr_cfgb.bits.timeout = (uint8_t)param;
408 /* check if the rcr timeout value is valid */
411 rcr_cfgb.bits.timeout = rdc_desc_cfg->rcr_timeout;
H A Dhxge_rdc_hw.h439 * Enable timeout. If set to one, enable the timeout. A timeout
454 uint32_t timeout:6; member in struct:__anon5779::__anon5780
456 uint32_t timeout:6;
549 * the following counter. This is used to drive the DMA timeout
554 * timeout count-down. The hardware count down is count+1.
580 * completion timeout from peu. Part of LDF 1.
586 * Set to 0 to enable flagging when RCR timeout. Part of LDF 0.
656 * timeout fro
[all...]
/illumos-gate/usr/src/uts/common/io/ib/mgt/ibmf/
H A Dibmf_timers.c27 * This file implements the timer setup and timeout handling functions.
75 msgimplp->im_rp_timeout_id = timeout(func,
118 * Use the client specified transaction timeout value if
138 msgimplp->im_tr_timeout_id = timeout(func,
180 * Perform "receive" timeout processing for the message.
181 * This timeout handler is only used in RMPP processing.
217 "recv timeout",
231 /* Perform timeout processing for the RMPP transaction */
277 * Save the transaction state flags and the timeout IDs
287 msg, "recv timeout don
[all...]
/illumos-gate/usr/src/uts/common/io/nxge/
H A Dnxge_hio_guest.c874 nxge->nxge_timerid = timeout((void(*)(void *))nxge_check_guest_state,
911 nxge->nxge_timerid = timeout((void(*)(void *))
/illumos-gate/usr/src/uts/common/io/net80211/
H A Dnet80211.c202 (void) timeout(ieee80211_event_thread, (void *)ic, 0);
313 ic->ic_watchdog_timer = timeout(ic->ic_watchdog, ic,
334 * timeout scans.
/illumos-gate/usr/src/uts/intel/io/dktp/hba/ghd/
H A Dghd.c733 ulong_t timeout,
777 ghd_timer_start(cccp, gcmdp, timeout);
730 ghd_transport(ccc_t *cccp, gcmd_t *gcmdp, gtgt_t *gtgtp, ulong_t timeout, int polled, void *intr_status) argument
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/emlxs/
H A Demlxs_dfc.c5565 uint32_t timeout; local
5576 timeout = dfc->data1;
5578 if (timeout < (2 * hba->fc_ratov)) {
5579 timeout = 2 * hba->fc_ratov;
5700 pkt->pkt_timeout = (timeout) ? timeout : 30;
5767 uint32_t timeout; local
5774 timeout = 2 * hba->fc_ratov;
5802 pkt->pkt_timeout = (timeout) ? timeout
5953 clock_t timeout; local
6652 uint32_t timeout; local
8499 uint32_t timeout; local
8826 clock_t timeout; local
[all...]
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/oce/
H A Doce_rx.c667 oce_rx_pending(struct oce_dev *dev, struct oce_rq *rq, int32_t timeout) argument
672 for (ti = 0; ti < timeout; ti++) {
/illumos-gate/usr/src/uts/common/io/aac/
H A Daac.c87 #define AAC_BUSYWAIT(cond, timeout /* in millisecond */) { \
89 int count = (timeout) * 10; \
96 (timeout) = (count + 9) / 10; \
926 /* Create a thread for command timeout */
927 softs->timeout_id = timeout(aac_timer, (void *)softs,
2801 i = AAC_FWUP_TIMEOUT * 1000; /* set timeout */
3059 int timeout; local
3075 timeout = AAC_IMMEDIATE_TIMEOUT * 1000;
3076 AAC_BUSYWAIT(AAC_STATUS_GET(softs) & AAC_DB_SYNC_COMMAND, timeout);
3077 if (!timeout) {
4624 int timeout = AAC_QUIESCE_TIMEOUT * 1000 * 10; local
[all...]
H A Daac.h270 uint32_t timeout; /* time when the cmd should have completed */ member in struct:aac_cmd
462 timeout_id_t timeout_id; /* for timeout daemon */
465 uint32_t time_out; /* next time to check timeout */
471 kthread_t *event_thread; /* for AIF & timeout */
/illumos-gate/usr/src/lib/print/libhttp-core/common/
H A Dhttp.c2100 struct timeval timeout; /* Timeout */ local
2168 timeout.tv_sec = msec / 1000;
2169 timeout.tv_usec = (msec % 1000) * 1000;
2171 nfds = select(http->fd + 1, http->input_set, NULL, NULL, &timeout);
/illumos-gate/usr/src/lib/libshell/common/include/
H A Ddefs.h131 long timeout; /* read timeout */ \
268 #define SH_GRACE 12 /* set for timeout grace period */
/illumos-gate/usr/src/head/
H A Dldap.h124 * Special timeout values for poll and connect:
471 LDAPControl **clientctrls, struct timeval *timeout,
520 struct timeval *timeout, LDAPMessage **res);
522 struct timeval *timeout, LDAPMessage **result);
797 int attrsonly, struct timeval *timeout, LDAPMessage **res);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dftp_var.h211 EXTERN int timeout; /* connection timeout */ variable
212 EXTERN int timeoutms; /* connection timeout in msec */
213 EXTERN jmp_buf timeralarm; /* to recover from global timeout */
/illumos-gate/usr/src/cmd/fs.d/nfs/lockd/
H A Dlockd.c437 npa.timeout = 0;
/illumos-gate/usr/src/uts/common/fs/smbclnt/smbfs/
H A Dsmbfs_subr.h159 struct smb_cred *scrp, uint32_t timeout);
/illumos-gate/usr/src/uts/common/io/audio/drv/audiols/
H A Daudiols.c249 int i, timeout, tmp; local
260 timeout = 0;
266 if (timeout > 100)
269 timeout++;
/illumos-gate/usr/src/uts/common/sys/nxge/
H A Dnxge_common.h219 uint32_t entout; /* enable timeout */
220 uint32_t timeout; /* timeout value */ member in struct:nxge_rdc_cfg
/illumos-gate/usr/src/lib/libadutils/common/
H A Dadutils.c1317 get_adobject_batch(adutils_host_t *adh, struct timeval *timeout) argument
1333 rc = ldap_result(adh->ld, LDAP_RES_ANY, 0, timeout, &res);
1334 if ((timeout != NULL && timeout->tv_sec > 0 && rc == LDAP_SUCCESS) ||
1445 /* timeout or error; treat the same */
1560 /* Process results until done or until timeout, if given */
/illumos-gate/usr/src/uts/sun4u/starfire/os/
H A Dbbus_intr.c248 * XXX: kick off a sanity timeout panic in case the /etc/inittab
485 * via a timeout call.
495 (void) timeout(_sgnblk_poll_throttle, NULL, (clock_t)0);
/illumos-gate/usr/src/uts/sun/sys/dada/adapters/ghd/
H A Dghd.h75 * action codes for the HBA timeout function
134 timeout_id_t t_timeout_id; /* handle for timeout() function */
135 clock_t t_ticks; /* periodic timeout in clock ticks */
159 ddi_softintr_t ccc_soft_id; /* ID for timeout softintr */
237 uint32_t timeout, int polled, void *intr_status);

Completed in 187 milliseconds

<<11121314151617181920>>