Rewrite the kernel hashtable struct

This commit is contained in:
2025-10-03 23:22:22 +02:00
parent 20b4545cae
commit 18d646ff8b
3 changed files with 68 additions and 33 deletions

View File

@ -42,8 +42,9 @@ typedef struct VfsObj {
} VfsObj;
typedef struct VfsMountPoint {
bool taken;
uint8_t label[VFS_MOUNTPOINT_LABEL_MAX];
int _hshtbstate;
char label[VFS_MOUNTPOINT_LABEL_MAX];
int32_t fstype;
StoreDev *backingsd;