Lines Matching refs:fifovfsp
124 struct vfs *fifovfsp; variable
279 vp1->v_vfsp = vp2->v_vfsp = fifovfsp; in pipe_constructor()
298 ASSERT(vp1->v_vfsp == fifovfsp); in pipe_destructor()
299 ASSERT(vp2->v_vfsp == fifovfsp); in pipe_destructor()
354 fifovfsp = kmem_zalloc(sizeof (struct vfs), KM_SLEEP); in fifoinit()
355 fifovfsp->vfs_next = NULL; in fifoinit()
356 vfs_setops(fifovfsp, fifo_vfsops); in fifoinit()
357 fifovfsp->vfs_vnodecovered = NULL; in fifoinit()
358 fifovfsp->vfs_flag = 0; in fifoinit()
359 fifovfsp->vfs_bsize = 1024; in fifoinit()
360 fifovfsp->vfs_fstype = fifofstype; in fifoinit()
361 vfs_make_fsid(&fifovfsp->vfs_fsid, fifodev, fifofstype); in fifoinit()
362 fifovfsp->vfs_data = NULL; in fifoinit()
363 fifovfsp->vfs_dev = fifodev; in fifoinit()
364 fifovfsp->vfs_bcount = 0; in fifoinit()
374 fifovfsp->vfs_count = 1; in fifoinit()
547 nvp1->v_vfsp = fifovfsp; /* Need to re-establish VFS & device */ in makepipe()
548 nvp2->v_vfsp = fifovfsp; /* before we can reuse this vnode. */ in makepipe()