Home
last modified time | relevance | path

Searched refs:nxfs (Results 1 – 2 of 2) sorted by relevance

/xnu-8792.41.9/bsd/nfs/
H A Dnfs_syscalls.c225 struct nfs_exportfs *nxfs; in nfsrv_find_exportfs() local
227 LIST_FOREACH(nxfs, &nfsrv_exports, nxfs_next) { in nfsrv_find_exportfs()
228 if (!strncmp(nxfs->nxfs_path, ptr, MAXPATHLEN)) { in nfsrv_find_exportfs()
232 if (nxfs && strncmp(nxfs->nxfs_path, ptr, strlen(nxfs->nxfs_path))) { in nfsrv_find_exportfs()
233 nxfs = NULL; in nfsrv_find_exportfs()
236 return nxfs; in nfsrv_find_exportfs()
257 struct nfs_exportfs *nxfs; in getfh() local
298 if ((nxfs = nfsrv_find_exportfs(ptr)) == NULL) { in getfh()
317 nxfs = nfsrv_find_exportfs(ptr); in getfh()
319 if (nxfs == NULL) { in getfh()
[all …]
H A Dnfs_subs.c1674 struct nfs_exportfs *nxfs, *nxfs2, *nxfs3; in nfsrv_export() local
1728 while ((nxfs = LIST_FIRST(&nfsrv_exports))) { in nfsrv_export()
1729 mp = vfs_getvfs_by_mntonname(nxfs->nxfs_path); in nfsrv_export()
1736 while ((nx = LIST_FIRST(&nxfs->nxfs_exports))) { in nfsrv_export()
1750 LIST_REMOVE(nxfs, nxfs_next); in nfsrv_export()
1751 kfree_data_addr(nxfs->nxfs_path); in nfsrv_export()
1752 kfree_type(struct nfs_exportfs, nxfs); in nfsrv_export()
1780 LIST_FOREACH(nxfs, &nfsrv_exports, nxfs_next) { in nfsrv_export()
1781 if (nxfs->nxfs_id == unxa->nxa_fsid) { in nfsrv_export()
1785 if (nxfs) { in nfsrv_export()
[all …]