Lines Matching refs:fifovfsp
124 struct vfs *fifovfsp;
279 vp1->v_vfsp = vp2->v_vfsp = fifovfsp;
298 ASSERT(vp1->v_vfsp == fifovfsp);
299 ASSERT(vp2->v_vfsp == fifovfsp);
354 fifovfsp = kmem_zalloc(sizeof (struct vfs), KM_SLEEP);
355 fifovfsp->vfs_next = NULL;
356 vfs_setops(fifovfsp, fifo_vfsops);
357 fifovfsp->vfs_vnodecovered = NULL;
358 fifovfsp->vfs_flag = 0;
359 fifovfsp->vfs_bsize = 1024;
360 fifovfsp->vfs_fstype = fifofstype;
361 vfs_make_fsid(&fifovfsp->vfs_fsid, fifodev, fifofstype);
362 fifovfsp->vfs_data = NULL;
363 fifovfsp->vfs_dev = fifodev;
364 fifovfsp->vfs_bcount = 0;
368 * This prevents the fifovfsp from getting freed when
370 * on the fifovfsp
372 * The fifovfsp should never be freed.
374 fifovfsp->vfs_count = 1;
547 nvp1->v_vfsp = fifovfsp; /* Need to re-establish VFS & device */
548 nvp2->v_vfsp = fifovfsp; /* before we can reuse this vnode. */