Searched refs:minsync (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.1-release/sys/pci/
H A Dncr.c1033 u_char minsync; /* Minimum sync period factor */ member in struct:ncb
3498 if (period <= 250) np->minsync = 10;
3499 else if (period <= 303) np->minsync = 11;
3500 else if (period <= 500) np->minsync = 12;
3501 else np->minsync = (period + 40 - 1) / 40;
3507 if (np->minsync < 25 && !(np->features & (FE_ULTRA|FE_ULTRA2)))
3508 np->minsync = 25;
3509 else if (np->minsync < 12 && !(np->features & FE_ULTRA2))
3510 np->minsync = 12;
3642 if (usrsync < np->minsync)
[all...]
/freebsd-10.1-release/sys/dev/sym/
H A Dsym_hipd.c1610 u_char minsync; /* Min sync period factor (ST) */ member in struct:sym_hcb
2534 if (period <= 250) np->minsync = 10;
2535 else if (period <= 303) np->minsync = 11;
2536 else if (period <= 500) np->minsync = 12;
2537 else np->minsync = (period + 40 - 1) / 40;
2542 if (np->minsync < 25 &&
2544 np->minsync = 25;
2545 else if (np->minsync < 12 &&
2547 np->minsync = 12;
2737 tp->tinfo.user.period = np->minsync;
[all...]

Completed in 182 milliseconds