Lines Matching defs:timeout
3013 * Dynamically adjust the rcv int timeout for a context based on incoming
3019 u32 timeout = dd->cspec->rcvavail_timeout[rcd->ctxt];
3022 * Dynamically adjust idle timeout on chip
3025 if (npkts < rcv_int_count && timeout > 2)
3026 timeout >>= 1;
3027 else if (npkts >= rcv_int_count && timeout < rcv_int_timeout)
3028 timeout = min(timeout << 1, rcv_int_timeout);
3032 dd->cspec->rcvavail_timeout[rcd->ctxt] = timeout;
3033 qib_write_kreg(dd, kr_rcvavailtimeout + rcd->ctxt, timeout);
3672 * We sometimes get machine checks from bus timeout if no
4411 * Need to write timeout register before updating rcvhdrhead to ensure
5367 /* we expect this to timeout */
5374 /* we expect this to timeout */
8240 int timeout;
8242 for (timeout = 0; timeout < 100 ; ++timeout) {