Lines Matching defs:mntp
620 struct mnt *mntp;
645 if ((mntp = malloc(sizeof (*mntp))) == NULL) {
649 mntp->m_mntpt = strdup(mnttab.mnt_mountp);
650 mntp->m_next = mnt_list;
651 mnt_list = mntp;
665 for (mntp = mnt_list; mntp; mntp = mntp->m_next) {
666 if (strncmp(path, mntp->m_mntpt, strlen(mntp->m_mntpt)) == 0) {
667 if (mntp->m_fsid == 0) {
668 if (statvfs64(mntp->m_mntpt, &statvfsbuf)) {
672 mntp->m_fsid = statvfsbuf.f_fsid;
676 if (ep->e_fsid != mntp->m_fsid) {
685 if (mntp == NULL) {
691 ep->e_name = strdup(mntp->m_mntpt);