Lines Matching defs:vfs
105 SDT_PROVIDER_DEFINE(vfs);
119 struct vfs_list_head vfs_list = /* vfs list */
156 SYSCTL_DESCR("Non-specific vfs related information"),
461 vfs_delref(struct vfsops *vfs)
465 vfs->vfs_refcount--;
473 vfs_attach(struct vfsops *vfs)
484 if (strcmp(vfs->vfs_name, v->vfs_name) == 0) {
493 vfs_opv_init(vfs->vfs_opv_descs);
498 (*vfs->vfs_init)();
503 LIST_INSERT_HEAD(&vfs_list, vfs, vfs_list);
508 vfs->vfs_refcount = 0;
518 vfs_detach(struct vfsops *vfs)
528 if (vfs->vfs_refcount != 0) {
537 if (v == vfs) {
551 (*vfs->vfs_done)();
556 vfs_opv_free(vfs->vfs_opv_descs);
565 struct vfsops *vfs;
568 LIST_FOREACH(vfs, &vfs_list, vfs_list) {
569 if (vfs->vfs_reinit) {
570 vfs->vfs_refcount++;
572 (*vfs->vfs_reinit)();
574 vfs->vfs_refcount--;