Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/os/
H A Dmutex.c268 default_lock_backoff(uint_t backoff) in default_lock_backoff() argument
272 if (backoff == 0) { in default_lock_backoff()
273 backoff = mutex_backoff_base; in default_lock_backoff()
275 return (backoff); in default_lock_backoff()
294 backoff <<= mutex_backoff_shift; /* increase backoff */ in default_lock_backoff()
295 if (backoff > cap) { in default_lock_backoff()
297 backoff = mutex_backoff_base; in default_lock_backoff()
299 backoff = cap; in default_lock_backoff()
302 return (backoff); in default_lock_backoff()
309 default_lock_delay(uint_t backoff) in default_lock_delay() argument
[all …]
H A Drwlock.c282 uint_t backoff = 0; in rw_enter_sleep() local
303 backoff = rw_lock_backoff(backoff); in rw_enter_sleep()
304 rw_lock_delay(backoff); in rw_enter_sleep()
306 backoff = 0; in rw_enter_sleep()
417 uint_t backoff = 0; in rw_exit_wakeup() local
448 backoff = rw_lock_backoff(backoff); in rw_exit_wakeup()
449 rw_lock_delay(backoff); in rw_exit_wakeup()
451 backoff = 0; in rw_exit_wakeup()
540 uint_t backoff = 0; in rw_tryenter() local
552 backoff = rw_lock_backoff(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()
/titanic_41/usr/src/lib/libpkg/common/
H A Dpkgweb.c401 backoff(); in web_session_control()
408 backoff(); in web_session_control()
414 backoff(); in web_session_control()
432 backoff(); in web_session_control()
439 backoff(); in web_session_control()
445 backoff(); in web_session_control()
468 backoff(); in web_session_control()
475 backoff(); in web_session_control()
481 backoff(); in web_session_control()
3014 backoff() in backoff() function
[all …]
H A Dpkgweb.h121 extern void backoff(void);
H A Dmapfile-vers48 backoff;
/titanic_41/usr/src/uts/sun4u/opl/os/
H A Dopl.c1058 plat_lock_delay(uint_t backoff) in plat_lock_delay() argument
1072 if (backoff < 100) { in plat_lock_delay()
1077 for (cnt = backoff; in plat_lock_delay()
1091 cnt = backoff / OPL_BOFF_SLEEP; in plat_lock_delay()
/titanic_41/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.
/titanic_41/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
/titanic_41/usr/src/uts/common/io/
H A Dfdc.c2827 int backoff; in fdc_statemach() local
2941 backoff = csb->csb_npcyl + 1; in fdc_statemach()
2943 backoff = csb->csb_npcyl - 1; in fdc_statemach()
2944 (void) fdcseek(fcp, csb->csb_cmd[1], backoff); in fdc_statemach()
/titanic_41/usr/src/uts/common/rpc/
H A Dclnt_clts.c439 #define backoff(tim) (((tim) < MAXTIMO) ? dobackoff(tim) : (tim)) macro
942 timout = backoff(timout); in clnt_clts_kcallit_addr()
/titanic_41/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.c762 #define backoff(tim) (((tim) < MAXTIMO) ? dobackoff(tim) : (tim)) macro
1233 timeo = backoff(timeo); in rfscall()
1821 timeo = backoff(timeo); in aclcall()
/titanic_41/usr/src/lib/libshell/common/
H A DRELEASE579 08-02-12 The backoff logic when there are no more processes has been fixed.