Lines Matching refs:mntp
630 struct mnt *mntp;
655 if ((mntp = malloc(sizeof (*mntp))) == NULL) {
659 mntp->m_mntpt = strdup(mnttab.mnt_mountp);
660 mntp->m_next = mnt_list;
661 mnt_list = mntp;
675 for (mntp = mnt_list; mntp; mntp = mntp->m_next) {
676 if (strncmp(path, mntp->m_mntpt, strlen(mntp->m_mntpt)) == 0) {
677 if (mntp->m_fsid == 0) {
678 if (statvfs64(mntp->m_mntpt, &statvfsbuf)) {
682 mntp->m_fsid = statvfsbuf.f_fsid;
686 if (ep->e_fsid != mntp->m_fsid) {
695 if (mntp == NULL) {
701 ep->e_name = strdup(mntp->m_mntpt);