Remove VFS object reference counting
This commit is contained in:
@ -74,7 +74,6 @@ struct VfsObj *littlefs_open(struct VfsMountPoint *vmp, const char *path, uint32
|
||||
}
|
||||
hal_memset(vobj, 0, sizeof(*vobj));
|
||||
spinlock_init(&vobj->spinlock);
|
||||
vobj->refs++;
|
||||
|
||||
int lfs_flags = 0;
|
||||
lfs_file_t *file = dlmalloc(sizeof(*file));
|
||||
|
@ -107,14 +107,8 @@ VfsObj *vfs_open(char *mountpoint, const char *path, uint32_t flags) {
|
||||
}
|
||||
|
||||
void vfs_close(VfsObj *vobj) {
|
||||
if (vobj->refs < 0) {
|
||||
return;
|
||||
}
|
||||
vobj->refs--;
|
||||
if (vobj->refs == 0) {
|
||||
vobj->cleanup(vobj);
|
||||
}
|
||||
}
|
||||
|
||||
void vfs_init(void) {
|
||||
hal_memset(&VFS_TABLE, 0, sizeof(VFS_TABLE));
|
||||
|
@ -39,7 +39,6 @@ typedef struct VfsStat {
|
||||
|
||||
typedef struct VfsObj {
|
||||
SpinLock spinlock;
|
||||
int32_t refs;
|
||||
void *extra;
|
||||
size_t extrasize;
|
||||
struct VfsMountPoint *vmp;
|
||||
|
BIN
ulib/libulib.a
BIN
ulib/libulib.a
Binary file not shown.
Reference in New Issue
Block a user