Lines Matching refs:vfsp
309 struct vfstab_list *vfsp;
311 vfsp = (struct vfstab_list *)malloc(sizeof (struct vfstab_list));
312 if (vfsp == NULL) {
316 vfsp->special = strdup(vp->vfs_special);
317 if (vfsp->special == NULL) {
318 free(vfsp);
323 vfsp->mountp = strdup(vp->vfs_mountp);
324 if (vfsp->mountp == NULL) {
325 free(vfsp);
329 vfsp->mountp = NULL;
332 vfsp->next = vfstab_listp;
333 vfstab_listp = vfsp;