/src/libexec/lfs_cleanerd/ |
lfs_cleanerd.c | 1091 off_t goal; local in function:clean_fs 1133 /* Set attainable goal */ 1134 goal = lfs_sb_getssize(fs) * atatime; 1135 if (goal > (cip->clean - 1) * lfs_sb_getssize(fs) / 2) 1136 goal = MAX((cip->clean - 1) * lfs_sb_getssize(fs), 1139 dlog("%s: cleaning with goal %" PRId64 1141 lfs_sb_getfsmnt(fs), goal, cip->clean, npos); 1142 syslog(LOG_INFO, "%s: cleaning with goal %" PRId64 1144 lfs_sb_getfsmnt(fs), goal, cip->clean, npos); 1146 for (i = 0; i < lfs_sb_getnseg(fs) && totbytes < goal; i++) [all...] |
/src/sys/dist/pf/net/ |
pf_norm.c | 248 int goal; local in function:pf_flush_fragments 250 goal = pf_nfrents * 9 / 10; 252 pf_nfrents - goal)); 253 while (goal < pf_nfrents) { 261 goal = pf_ncache * 9 / 10; 263 pf_ncache - goal)); 264 while (goal < pf_ncache) {
|
/src/sys/dev/ic/ |
aic79xxvar.h | 599 SCB_AUTO_NEGOTIATE = 0x00040,/* Negotiate to achieve goal. */ 755 #define AHD_TRANS_GOAL 0x04 /* Modify negotiation goal */ 777 * Per-initiator current, goal and user transfer negotiation information. */ 780 struct ahd_transinfo goal; member in struct:ahd_initiator_tinfo 1444 * even if our goal and current transport parameters are identical. 1447 AHD_NEG_TO_GOAL, /* Renegotiate only if goal and curr differ. */ 1448 AHD_NEG_IF_NON_ASYNC, /* Renegotiate so long as goal is non-async. */ 1449 AHD_NEG_ALWAYS /* Renegotiate even if goal is async. */
|
aic7xxxvar.h | 653 SCB_AUTO_NEGOTIATE = 0x0040,/* Negotiate to achieve goal. */ 806 #define AHC_TRANS_GOAL 0x04 /* Modify negotiation goal */ 827 * Per-initiator current, goal and user transfer negotiation information. */ 831 struct ahc_transinfo goal; member in struct:ahc_initiator_tinfo 1337 * even if our goal and current transport parameters are identical. 1340 AHC_NEG_TO_GOAL, /* Renegotiate only if goal and curr differ. */ 1341 AHC_NEG_IF_NON_ASYNC, /* Renegotiate so long as goal is non-async. */ 1342 AHC_NEG_ALWAYS /* Renegotiate even if goal is async. */
|