Changeset View
Changeset View
Standalone View
Standalone View
sys/ufs/ffs/ffs_vfsops.c
| Show First 20 Lines • Show All 103 Lines • ▼ Show 20 Lines | |||||
| static struct vfsops ufs_vfsops = { | static struct vfsops ufs_vfsops = { | ||||
| .vfs_extattrctl = ffs_extattrctl, | .vfs_extattrctl = ffs_extattrctl, | ||||
| .vfs_fhtovp = ffs_fhtovp, | .vfs_fhtovp = ffs_fhtovp, | ||||
| .vfs_init = ffs_init, | .vfs_init = ffs_init, | ||||
| .vfs_mount = ffs_mount, | .vfs_mount = ffs_mount, | ||||
| .vfs_cmount = ffs_cmount, | .vfs_cmount = ffs_cmount, | ||||
| .vfs_quotactl = ufs_quotactl, | .vfs_quotactl = ufs_quotactl, | ||||
| .vfs_root = ufs_root, | .vfs_root = vfs_cache_root, | ||||
| .vfs_cachedroot = ufs_root, | |||||
| .vfs_statfs = ffs_statfs, | .vfs_statfs = ffs_statfs, | ||||
| .vfs_sync = ffs_sync, | .vfs_sync = ffs_sync, | ||||
| .vfs_uninit = ffs_uninit, | .vfs_uninit = ffs_uninit, | ||||
| .vfs_unmount = ffs_unmount, | .vfs_unmount = ffs_unmount, | ||||
| .vfs_vget = ffs_vget, | .vfs_vget = ffs_vget, | ||||
| .vfs_susp_clean = process_deferred_inactive, | .vfs_susp_clean = process_deferred_inactive, | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 2,258 Lines • Show Last 20 Lines | |||||