umax
useconds_t usecs, umax;
umax = DEFAULT_TIMEOUT;
for (usecs = INIT_WAIT_USECS; umax != 0; umax -= usecs) {
if (usecs > umax)
usecs = umax;
if (umax == 0) {
umax = 1;
status = umax != 0 ? DLADM_STATUS_OK : DLADM_STATUS_FAILED;
uint_t umax(uint_t, uint_t);