Home
last modified time | relevance | path

Searched refs:VFS (Results 1 – 3 of 3) sorted by relevance

/sys/include/
Dvfs.h11 typedef struct VFS { struct
22 } VFS; argument
32 VFS *vfs;
35 DECLARE_SLAB(VFS);
40 int (*unmount)(VFS *fs);
41 int (*getroot)(VFS *fs, VNode **dn);
/sys/fs/o2fs/
Do2fs.c18 VFS *O2FS_Mount(Disk *disk);
19 int O2FS_Unmount(VFS *fs);
20 int O2FS_GetRoot(VFS *fs, VNode **dn);
41 VFS *
45 VFS *fs = VFS_Alloc(); in O2FS_Mount()
117 O2FS_Unmount(VFS *fs) in O2FS_Unmount()
133 O2FSBAlloc(VFS *fs) in O2FSBAlloc()
181 O2FSBFree(VFS *fs, uint64_t block) in O2FSBFree()
210 O2FSLoadVNode(VFS *fs, ObjID *objid) in O2FSLoadVNode()
265 VFS *vfs = vn->vfs; in O2FSGrowVNode()
[all …]
/sys/kern/
Dvfs.c18 extern VFS *O2FS_Mount(Disk *root);
21 static VFS *rootFS;
27 DEFINE_SLAB(VFS, &vfsSlab);
42 Slab_Init(&vfsSlab, "VFS Slab", sizeof(VFS), 16); in VFS_MountRoot()