Lines Matching refs:xvfsp
4917 struct xvfsconf xvfsp; in vfsconf2x() local
4919 bzero(&xvfsp, sizeof(xvfsp)); in vfsconf2x()
4920 strcpy(xvfsp.vfc_name, vfsp->vfc_name); in vfsconf2x()
4921 xvfsp.vfc_typenum = vfsp->vfc_typenum; in vfsconf2x()
4922 xvfsp.vfc_refcount = vfsp->vfc_refcount; in vfsconf2x()
4923 xvfsp.vfc_flags = vfsp->vfc_flags; in vfsconf2x()
4928 xvfsp.vfc_vfsops = NULL; in vfsconf2x()
4929 xvfsp.vfc_next = NULL; in vfsconf2x()
4930 return (SYSCTL_OUT(req, &xvfsp, sizeof(xvfsp))); in vfsconf2x()
4946 struct xvfsconf32 xvfsp; in vfsconf2x32() local
4948 bzero(&xvfsp, sizeof(xvfsp)); in vfsconf2x32()
4949 strcpy(xvfsp.vfc_name, vfsp->vfc_name); in vfsconf2x32()
4950 xvfsp.vfc_typenum = vfsp->vfc_typenum; in vfsconf2x32()
4951 xvfsp.vfc_refcount = vfsp->vfc_refcount; in vfsconf2x32()
4952 xvfsp.vfc_flags = vfsp->vfc_flags; in vfsconf2x32()
4953 return (SYSCTL_OUT(req, &xvfsp, sizeof(xvfsp))); in vfsconf2x32()