Lines Matching refs:eatmntopt
93 static int eatmntopt(struct mnttab *, char *);
429 flags |= eatmntopt(mnt, MNTOPT_RO) ? MS_RDONLY : 0; in mountfs()
430 flags |= eatmntopt(mnt, MNTOPT_REMOUNT) ? MS_REMOUNT : 0; in mountfs()
431 flags |= eatmntopt(mnt, MNTOPT_GLOBAL) ? MS_GLOBAL : 0; in mountfs()
433 if (eatmntopt(mnt, MNTOPT_NOINTR)) in mountfs()
435 if (eatmntopt(mnt, MNTOPT_INTR)) in mountfs()
437 if (eatmntopt(mnt, MNTOPT_SYNCDIR)) in mountfs()
439 if (eatmntopt(mnt, MNTOPT_FORCEDIRECTIO)) { in mountfs()
443 if (eatmntopt(mnt, MNTOPT_NOFORCEDIRECTIO)) { in mountfs()
447 if (eatmntopt(mnt, MNTOPT_NOSETSEC)) in mountfs()
449 if (eatmntopt(mnt, MNTOPT_LARGEFILES)) in mountfs()
451 if (eatmntopt(mnt, MNTOPT_NOLARGEFILES)) in mountfs()
454 (void) eatmntopt(mnt, MNTOPT_LOGGING); in mountfs()
455 if (eatmntopt(mnt, MNTOPT_NOLOGGING)) in mountfs()
457 if (eatmntopt(mnt, MNTOPT_NOATIME)) in mountfs()
459 if (eatmntopt(mnt, MNTOPT_DFRATIME)) in mountfs()
461 if (eatmntopt(mnt, MNTOPT_NODFRATIME)) in mountfs()
616 eatmntopt(struct mnttab *mnt, char *opt) in eatmntopt() function