Searched defs:vfsops (Results 1 - 11 of 11) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/smbfs/
H A Dsmbfs.c77 uintptr_t vfsops; /* filter by vfs ops pointer */ member in struct:smbfs_vfs_cbdata
89 if (cbd->vfsops && cbd->vfsops != (uintptr_t)vfs->vfs_op) {
140 if (mdb_readvar(&cbd->vfsops, "smbfs_vfsops") == -1) {
/illumos-gate/usr/src/uts/common/fs/objfs/
H A Dobjfs_vfs.c130 vfsops_t *vfsops; local
134 if (error = vfs_setfsops(fstype, objfs_vfstops, &vfsops)) {
140 (void) vfs_freevfsops(vfsops);
/illumos-gate/usr/src/uts/common/fs/sharefs/
H A Dsharefs_vfsops.c154 vfsops_t *vfsops; local
158 if (error = vfs_setfsops(fstype, sharefs_vfstops, &vfsops)) {
164 (void) vfs_freevfsops(vfsops);
/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dvfs.h61 struct vfsops *vfs_op; /* operations on vfs */
87 struct vfsops { struct
130 struct vfsops *vsw_ops; /* filesystem operations vector */
/illumos-gate/usr/src/uts/common/fs/ctfs/
H A Dctfs_root.c191 vfsops_t *vfsops; local
195 if (error = vfs_setfsops(fstype, ctfs_vfstops, &vfsops)) {
201 (void) vfs_freevfsops(vfsops);
/illumos-gate/usr/src/lib/smbsrv/libfksmbsrv/common/
H A Dfake_vfs.c127 vfs_getvfsswbyvfsops(vfsops_t *vfsops) argument
/illumos-gate/usr/src/ucbhead/sys/
H A Dvfs.h87 struct vfsops *vfs_op; /* operations on VFS */
131 typedef struct vfsops { struct
179 struct vfsops *vsw_vfsops; /* filesystem operations vector */
/illumos-gate/usr/src/uts/common/io/
H A Dfssnap.c1075 vfsops_t *vfsops = EIO_vfsops; local
1138 VFS_INIT(vfsp, vfsops, NULL);
/illumos-gate/usr/src/uts/common/sys/
H A Dvfs.h61 typedef struct vfsops vfsops_t;
320 * the vfsops structure (below) and the fs_func_p union (vfs_opreg.h).
336 struct vfsops { struct
337 VFS_OPS; /* Signature of all vfs operations (vfsops) */
/illumos-gate/usr/src/boot/sys/sys/
H A Dmount.h162 struct vfsops *mnt_op; /* operations on fs */
474 struct vfsops *vfc_vfsops; /* filesystem operations vector */
484 struct vfsops *vfc_vfsops; /* filesystem operations vector */
630 struct vfsops { struct
812 #define VFS_SET(vfsops, fsname, flags) \
816 .vfc_vfsops = &vfsops, \
/illumos-gate/usr/src/uts/common/fs/
H A Dvfs.c421 * Free a vfsops structure created as a result of vfs_makefsops().
422 * NOTE: For a vfsops structure initialized by vfs_setfsops(), use
426 vfs_freevfsops(vfsops_t *vfsops) argument
428 kmem_free(vfsops, sizeof (vfsops_t));
432 * Since the vfsops structure is part of the vfssw table and wasn't
436 * NOTE: For a vfsops structure created by vfs_setfsops(), use
463 vfs_setops(vfs_t *vfsp, vfsops_t *vfsops) argument
468 ASSERT(vfsops != NULL);
473 atomic_cas_ptr(&vfsp->vfs_op, op, vfsops) == op) {
476 fsem_setvfsops(vfsp, vfsops);
501 vfs_matchops(vfs_t *vfsp, vfsops_t *vfsops) argument
1112 vfsops_t *vfsops; local
4000 vfs_getvfsswbyvfsops(vfsops_t *vfsops) argument
[all...]

Completed in 241 milliseconds