Lines Matching defs:root
809 struct nfsnode *root = zalloc(sizeof(struct nfsnode));
810 if (root == NULL)
820 free(root);
825 vp->data = root;
826 root->n_fhsize = nmp->nm_fhsize;
827 (void)memcpy_s(&(root->n_fhandle), root->n_fhsize, &(nmp->nm_fh), nmp->nm_fhsize);
828 root->n_pfhsize = 0;
831 root->n_next = nmp->nm_head;
832 nmp->nm_head = root;
834 ret = vfs_nfs_stat_internal(nmp, root);
837 vp->type = root->n_type;
2754 * Return information about root directory.
2796 /* Save the root file system attributes */
3025 * The root of nfs is the head of the nfsnode list, it will be released later,