Lines Matching defs:vfs
30 #include <sys/vfs.h>
49 struct vfs vfs;
73 (void) mdb_vread(&vfs, sizeof (vfs), vfsp);
74 if (lofsfstype != vfs.vfs_fstype) {
75 vfsp = (uintptr_t)vfs.vfs_next;
79 (uintptr_t)vfs.vfs_data);
81 vfsp = (uintptr_t)vfs.vfs_next;
97 (void) mdb_vread(&vfs, sizeof (vfs), vfsp);
98 if (lofsfstype != vfs.vfs_fstype) {
99 vfsp = (uintptr_t)vfs.vfs_next;
103 (uintptr_t)vfs.vfs_data);
116 vfsp = (uintptr_t)vfs.vfs_next;
119 if (mdb_vread(&vfs, sizeof (vfs_t), wsp->walk_addr) == -1) {
123 if (lofsfstype != vfs.vfs_fstype) {
124 mdb_warn("%p does not point to a lofs mount vfs\n",
129 (uintptr_t)vfs.vfs_data) == -1) {
131 vfs.vfs_data);
234 vfs_t vfs;
241 (void) mdb_vread(&vfs, sizeof (vfs), (uintptr_t)vno.v_vfsp);
243 mdb_printf("lnode %p vfs_dev %0?lx\n", addr, vfs.vfs_dev);