Lines Matching refs:pass
130 log_warning("Please pass 'fsck.mode=skip' rather than 'fastboot' on the kernel command line.");
134 log_warning("Please pass 'fsck.mode=force' rather than 'forcefsck' on the kernel command line.");
146 log_error("Please pass 'fsck.mode=skip' on the kernel command line rather than creating /fastboot on the root file system.");
151 log_error("Please pass 'fsck.mode=force' on the kernel command line rather than creating /forcefsck on the root file system.");
159 static double percent(int pass, unsigned long cur, unsigned long max) {
166 if (pass <= 0)
169 if ((unsigned) pass >= ELEMENTSOF(pass_table) || max == 0)
172 return (double) pass_table[pass-1] +
173 ((double) pass_table[pass] - (double) pass_table[pass-1]) *
198 int pass, m;
204 if (fscanf(f, "%i %lu %lu %ms", &pass, &cur, &max, &device) != 4) {
232 p = percent(pass, cur, max);