Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/nfs/
H A Dnfs_vfsops.c1743 struct nfs_fs_path fspath, *nfsp, fspath2; in nfs4_mount() local
1777 bzero(&fspath, sizeof(fspath)); in nfs4_mount()
1778 fspath.np_compcount = nfsp->np_compcount; in nfs4_mount()
1779 if (fspath.np_compcount > 0) { in nfs4_mount()
1780 …MALLOC(fspath.np_components, char **, fspath.np_compcount * sizeof(char*), M_TEMP, M_WAITOK | M_ZE… in nfs4_mount()
1781 if (!fspath.np_components) { in nfs4_mount()
1787 fspath.np_components[comp] = kalloc_data(slen + 1, Z_WAITOK | Z_ZERO); in nfs4_mount()
1788 if (!fspath.np_components[comp]) { in nfs4_mount()
1792 strlcpy(fspath.np_components[comp], nfsp->np_components[comp], slen + 1); in nfs4_mount()
1810 if (fspath.np_compcount == 0) { in nfs4_mount()
[all …]