Lines Matching refs:mntp
658 struct mnttab mntp; in setupfs() local
669 while (getmntent(mtab, &mntp) == 0) { in setupfs()
670 if (strcmp(mntp.mnt_fstype, MNTTYPE_UFS) != 0) in setupfs()
672 if (stat64(mntp.mnt_special, &statb) < 0) in setupfs()
678 mntp.mnt_mountp, QFNAME); in setupfs()
687 fsqp->fsq_fs = strdup(mntp.mnt_mountp); in setupfs()
688 fsqp->fsq_dev = strdup(mntp.mnt_special); in setupfs()
819 struct mnttab mntp; in quotactl() local
843 while ((status = getmntent(fstab, &mntp)) == 0) { in quotactl()
852 if (strcmp(mntp.mnt_fstype, MNTTYPE_UFS) != 0 || in quotactl()
853 ((cmd != Q_ALLSYNC) && hasmntopt(&mntp, MNTOPT_RO))) in quotactl()
856 if (strlcpy(qfile, mntp.mnt_mountp, in quotactl()
863 if (strcmp(special, mntp.mnt_special) == 0) { in quotactl()
864 if (strlcpy(qfile, mntp.mnt_mountp, in quotactl()