Volume-centric VFS implementation
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m41s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m41s
This commit is contained in:
@@ -31,13 +31,13 @@ struct tarfs {
|
||||
uint8_t* buffer;
|
||||
};
|
||||
|
||||
struct vfs_mountpoint;
|
||||
struct vfs_volume;
|
||||
|
||||
int tarfs_mount (struct vfs_mountpoint* mountpoint, struct proc* proc, struct reschedule_ctx* rctx);
|
||||
int tarfs_mount (struct vfs_volume* volume, struct proc* proc, struct reschedule_ctx* rctx);
|
||||
|
||||
int tarfs_describe (struct vfs_mountpoint* mountpoint, const char* path, struct desc* desc);
|
||||
int tarfs_describe (struct vfs_volume* volume, const char* path, struct desc* desc);
|
||||
|
||||
int tarfs_read (struct vfs_mountpoint* mountpoint, const char* path, uint8_t* buffer, size_t off,
|
||||
int tarfs_read (struct vfs_volume* volume, const char* path, uint8_t* buffer, size_t off,
|
||||
size_t size);
|
||||
|
||||
#endif // _KERNEL_FS_TARFS_H
|
||||
|
||||
Reference in New Issue
Block a user