Searched refs:nxfs (Results 1 – 2 of 2) sorted by relevance
| /xnu-10063.101.15/bsd/nfs/ |
| H A D | nfs_subs.c | 1662 struct nfs_exportfs *nxfs, *nxfs2, *nxfs3; in nfsrv_export() local 1713 while ((nxfs = LIST_FIRST(&nfsrv_exports))) { in nfsrv_export() 1714 mp = vfs_getvfs_by_mntonname(nxfs->nxfs_path); in nfsrv_export() 1721 while ((nx = LIST_FIRST(&nxfs->nxfs_exports))) { in nfsrv_export() 1735 LIST_REMOVE(nxfs, nxfs_next); in nfsrv_export() 1736 kfree_data_addr(nxfs->nxfs_path); in nfsrv_export() 1737 kfree_type(struct nfs_exportfs, nxfs); in nfsrv_export() 1765 LIST_FOREACH(nxfs, &nfsrv_exports, nxfs_next) { in nfsrv_export() 1766 if (nxfs->nxfs_id == unxa->nxa_fsid) { in nfsrv_export() 1770 if (nxfs) { in nfsrv_export() [all …]
|
| H A D | nfs_syscalls.c | 227 struct nfs_exportfs *nxfs; in nfsrv_find_exportfs() local 229 LIST_FOREACH(nxfs, &nfsrv_exports, nxfs_next) { in nfsrv_find_exportfs() 230 if (!strncmp(nxfs->nxfs_path, ptr, MAXPATHLEN)) { in nfsrv_find_exportfs() 234 if (nxfs && strncmp(nxfs->nxfs_path, ptr, strlen(nxfs->nxfs_path))) { in nfsrv_find_exportfs() 235 nxfs = NULL; in nfsrv_find_exportfs() 238 return nxfs; in nfsrv_find_exportfs() 294 struct nfs_exportfs *nxfs; in getfh() local 335 if ((nxfs = nfsrv_find_exportfs(ptr)) == NULL) { in getfh() 354 nxfs = nfsrv_find_exportfs(ptr); in getfh() 356 if (nxfs == NULL) { in getfh() [all …]
|