Home
last modified time | relevance | path

Searched refs:qfile (Results 1 – 5 of 5) sorted by relevance

/titanic_44/usr/src/cmd/fs.d/ufs/quotaon/
H A Dquotaon.c303 char qfile[MAXPATHLEN]; in quotactl() local
309 if ((strlcpy(qfile, mountpt, sizeof (qfile)) >= sizeof (qfile)) || in quotactl()
310 (strlcat(qfile, "/" QFNAME, sizeof (qfile)) >= sizeof (qfile))) { in quotactl()
314 if ((fd = open64(qfile, O_RDWR)) < 0) { in quotactl()
315 fprintf(stderr, "quotactl: %s ", qfile); in quotactl()
/titanic_44/usr/src/cmd/fs.d/ufs/quotacheck/
H A Dquotacheck.c707 char qfile[MAXPATHLEN]; in quotactl() local
728 if ((strlcpy(qfile, mntp.mnt_mountp, in quotactl()
729 sizeof (qfile)) >= sizeof (qfile)) || in quotactl()
730 (strlcat(qfile, "/" QFNAME, sizeof (qfile)) >= in quotactl()
731 sizeof (qfile))) { in quotactl()
734 if ((fd = open64(qfile, O_RDWR)) == -1) in quotactl()
747 if ((strlcpy(qfile, mountp, sizeof (qfile)) >= in quotactl()
748 sizeof (qfile)) || in quotactl()
749 (strlcat(qfile, "/" QFNAME, sizeof (qfile)) >= in quotactl()
750 sizeof (qfile))) { in quotactl()
[all …]
/titanic_44/usr/src/cmd/fs.d/ufs/quota/
H A Dquota.c669 char qfile[MAXPATHLEN]; in quotactl() local
691 if ((strlcpy(qfile, mnt.mnt_mountp, in quotactl()
692 sizeof (qfile)) >= sizeof (qfile)) || in quotactl()
693 (strlcat(qfile, "/" QFNAME, sizeof (qfile)) >= in quotactl()
694 sizeof (qfile))) { in quotactl()
698 fd = open64(qfile, O_RDONLY); in quotactl()
713 if ((strlcpy(qfile, mountp, sizeof (qfile)) >= sizeof in quotactl()
714 (qfile)) || in quotactl()
715 (strlcat(qfile, "/" QFNAME, sizeof (qfile)) >= sizeof in quotactl()
716 (qfile))) { in quotactl()
[all …]
/titanic_44/usr/src/cmd/fs.d/ufs/edquota/
H A Dedquota.c818 char qfile[MAXPATHLEN]; in quotactl() local
843 qfile[0] = '\0'; in quotactl()
857 if (strlcpy(qfile, mntp.mnt_mountp, in quotactl()
858 sizeof (qfile)) >= sizeof (qfile)) { in quotactl()
865 if (strlcpy(qfile, mntp.mnt_mountp, in quotactl()
866 sizeof (qfile)) >= sizeof (qfile)) { in quotactl()
873 if (qfile[0] == '\0') { in quotactl()
883 if (strlcat(qfile, "/" QFNAME, sizeof (qfile)) >= in quotactl()
884 sizeof (qfile)) { in quotactl()
891 if ((fd = open64(qfile, open_flags)) < 0) { in quotactl()
/titanic_44/usr/src/cmd/fs.d/ufs/repquota/
H A Drepquota.c438 char qfile[MAXPATHLEN]; in quotactl() local
461 if ((strlcpy(qfile, mntp.mnt_mountp, in quotactl()
462 sizeof (qfile)) >= sizeof (qfile)) || in quotactl()
463 (strlcat(qfile, "/" QFNAME, sizeof (qfile)) >= in quotactl()
464 sizeof (qfile))) { in quotactl()
469 if ((fd = open64(qfile, O_RDONLY)) >= 0) in quotactl()