Lines Matching refs:mnttab
42 #include <sys/mnttab.h>
3917 * pointing to a mnttab structure containing the mount's information.
3923 zonecfg_find_mounts(char *rootpath, int (*callback)(const struct mnttab *,
3925 FILE *mnttab;
3926 struct mnttab m;
3940 mnttab = fopen("/etc/mnttab", "r");
3942 if (mnttab == NULL)
3945 if (ioctl(fileno(mnttab), MNTIOC_SHOWHIDDEN, NULL) < 0) {
3950 while (!getmntent(mnttab, &m)) {
3966 (void) fclose(mnttab);