Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/nfs/
H A Dnfs_vfsops.c1600 NFSREQ_SECINFO_SET(&si, NULL, dirfhp->fh_data, dirfhp->fh_len, nfsp->np_components[curcomp], 0); in nfs4_mount_update_path_with_symlink()
1602 NFSREQ_SECINFO_SET(&si, NULL, NULL, 0, nfsp->np_components[curcomp], 0); in nfs4_mount_update_path_with_symlink()
1662 if (nfsp->np_components[comp]) { in nfs4_mount_update_path_with_symlink()
1663 kfree_data_addr(nfsp->np_components[comp]); in nfs4_mount_update_path_with_symlink()
1669 …MALLOC(nfsp2.np_components, char **, nfsp2.np_compcount * sizeof(char*), M_TEMP, M_WAITOK | M_ZERO… in nfs4_mount_update_path_with_symlink()
1670 if (!nfsp2.np_components) { in nfs4_mount_update_path_with_symlink()
1686 nfsp2.np_components[newcomp] = kalloc_data(q - p + 1, Z_WAITOK | Z_ZERO); in nfs4_mount_update_path_with_symlink()
1687 if (!nfsp2.np_components[newcomp]) { in nfs4_mount_update_path_with_symlink()
1693 strlcpy(nfsp2.np_components[newcomp], p, q - p + 1); in nfs4_mount_update_path_with_symlink()
1704 nfsp2.np_components[newcomp] = nfsp->np_components[comp]; in nfs4_mount_update_path_with_symlink()
[all …]
H A Dnfs4_subs.c2077 … MALLOC(fsp->np_components, char **, fsp->np_compcount * sizeof(char*), M_TEMP, M_WAITOK | M_ZERO); in nfs4_parsefattr()
2078 if (!fsp->np_components) { in nfs4_parsefattr()
2094 FREE(fsp->np_components, M_TEMP); in nfs4_parsefattr()
2095 fsp->np_components = NULL; in nfs4_parsefattr()
2104 fsp->np_components[comp] = kalloc_data(val + 1, Z_WAITOK | Z_ZERO); in nfs4_parsefattr()
2105 if (!fsp->np_components[comp]) { in nfs4_parsefattr()
2109 nfsm_chain_get_opaque(error, nmc, val, fsp->np_components[comp]); /* component */ in nfs4_parsefattr()
2190 … MALLOC(fsp->np_components, char **, fsp->np_compcount * sizeof(char*), M_TEMP, M_WAITOK | M_ZERO); in nfs4_parsefattr()
2191 if (!fsp->np_components) { in nfs4_parsefattr()
2207 FREE(fsp->np_components, M_TEMP); in nfs4_parsefattr()
[all …]
H A Dnfsmount.h121 char ** np_components; /* array of component pointers */ member
H A Dnfs_socket.c362 cnt = scnprintf(p, size, "/%s", fsl->nl_path.np_components[i]); in nfs_location_mntfromname()