Home
last modified time | relevance | path

Searched refs:backoff (Results 1 – 11 of 11) sorted by relevance

/illumos-gate/usr/src/uts/common/os/
H A Dmutex.c273 if (backoff == 0) { in default_lock_backoff()
276 return (backoff); in default_lock_backoff()
296 if (backoff > cap) { in default_lock_backoff()
300 backoff = cap; in default_lock_backoff()
303 return (backoff); in default_lock_backoff()
397 backoff = mutex_lock_backoff(backoff); in mutex_vector_enter()
402 backoff = mutex_lock_backoff(backoff); in mutex_vector_enter()
671 backoff = mutex_lock_backoff(backoff); in lock_set_spin()
673 mutex_lock_delay(backoff); in lock_set_spin()
712 backoff = mutex_lock_backoff(backoff); in lock_set_spl_spin()
[all …]
H A Drwlock.c279 uint_t backoff = 0; in rw_enter_sleep() local
300 backoff = rw_lock_backoff(backoff); in rw_enter_sleep()
301 rw_lock_delay(backoff); in rw_enter_sleep()
303 backoff = 0; in rw_enter_sleep()
411 uint_t backoff = 0; in rw_exit_wakeup() local
442 backoff = rw_lock_backoff(backoff); in rw_exit_wakeup()
445 backoff = 0; in rw_exit_wakeup()
533 uint_t backoff = 0; in rw_tryenter() local
543 backoff = rw_lock_backoff(backoff); in rw_tryenter()
544 rw_lock_delay(backoff); in rw_tryenter()
[all …]
H A Ddumpsubr.c1646 uint_t backoff = 0; in dumpsys_spinlock() local
1651 backoff = mutex_lock_backoff(0); in dumpsys_spinlock()
1654 backoff = mutex_lock_backoff(backoff); in dumpsys_spinlock()
1656 mutex_lock_delay(backoff); in dumpsys_spinlock()
/illumos-gate/usr/src/uts/sun4u/opl/os/
H A Dopl.c1061 plat_lock_delay(uint_t backoff) in plat_lock_delay() argument
1075 if (backoff < 100) { in plat_lock_delay()
1080 for (cnt = backoff; in plat_lock_delay()
1094 cnt = backoff / OPL_BOFF_SLEEP; in plat_lock_delay()
/illumos-gate/usr/src/cmd/bnu/
H A DREADME61 The retry algorithm is now an exponential backoff with initial
64 be the retry time. If it is not given, the backoff will be used.
/illumos-gate/usr/src/common/atomic/sparcv9/
H A Datomic.S138 #define ATOMIC_BACKOFF_BRANCH(cr, backoff, loop) \ argument
139 bne,a,pn cr, backoff
161 #define ATOMIC_BACKOFF_BRANCH(cr, backoff, loop) \ argument
/illumos-gate/usr/src/uts/common/io/
H A Dfdc.c2828 int backoff; in fdc_statemach() local
2942 backoff = csb->csb_npcyl + 1; in fdc_statemach()
2944 backoff = csb->csb_npcyl - 1; in fdc_statemach()
2945 (void) fdcseek(fcp, csb->csb_cmd[1], backoff); in fdc_statemach()
/illumos-gate/usr/src/uts/common/rpc/
H A Dclnt_clts.c446 #define backoff(tim) (((tim) < MAXTIMO) ? dobackoff(tim) : (tim)) macro
959 timout = backoff(timout); in clnt_clts_kcallit_addr()
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_subr.c1208 #define backoff(tim) (((tim) < MAXTIMO) ? dobackoff(tim) : (tim)) macro
1445 timeo = backoff(timeo); in nfs4_rfscall()
H A Dnfs_subr.c763 #define backoff(tim) (((tim) < MAXTIMO) ? dobackoff(tim) : (tim)) macro
1234 timeo = backoff(timeo); in rfscall()
1822 timeo = backoff(timeo); in aclcall()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/
H A DRELEASE1485 08-02-12 The backoff logic when there are no more processes has been fixed.