Searched defs:tsb_alloc_mtbf (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/sfmmu/vm/
H A Dhat_sfmmu.c676 static int tsb_alloc_mtbf = 0; /* fail allocation every n attempts */ variable
12851 * Randomly force allocation failures every tsb_alloc_mtbf
12853 * return ENOMEM if tsb_alloc_mtbf is odd, or EAGAIN if
12856 if (tsb_alloc_mtbf && ((flags & TSB_FORCEALLOC) == 0) &&
12857 (tsb_alloc_count++ == tsb_alloc_mtbf)) {
12860 return ((tsb_alloc_mtbf & 1)? ENOMEM : EAGAIN);

Completed in 212 milliseconds