diff options
author | Marvin Borner | 2021-01-04 12:40:30 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-04 12:40:30 +0100 |
commit | 75526aea5027d76b9f7cf07b8741cd7c8642f4ed (patch) | |
tree | 01667d1b61a986d0886bf3844011943b82d16f40 /kernel/features | |
parent | d4c618d81316614942a8248f34e18d105ea31201 (diff) |
Some vfs fixes
Diffstat (limited to 'kernel/features')
-rw-r--r-- | kernel/features/fs.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/kernel/features/fs.c b/kernel/features/fs.c index 63a1f70..e168022 100644 --- a/kernel/features/fs.c +++ b/kernel/features/fs.c @@ -19,8 +19,10 @@ struct device *vfs_mounted(const char *path) { struct node *iterator = mount_points->head; while (iterator) { - if (!strcmp(iterator->data, path)) - return iterator->data; + struct mount_info *m = iterator->data; + printf("Looping %s\n", m->path); + if (!strcmp(m->path, path)) + return m->dev; iterator = iterator->next; } return NULL; @@ -39,7 +41,7 @@ u32 vfs_mount(struct device *dev, const char *path) return 1; } -void vfs_install() +void vfs_install(void) { mount_points = list_new(); } @@ -52,7 +54,7 @@ static struct list *devices = NULL; void device_add(struct device *dev) { - dev->id = rand(); + dev->id = rand() + 1; list_add(devices, dev); } @@ -67,7 +69,7 @@ struct device *device_get(u32 id) return NULL; } -void device_install() +void device_install(void) { devices = list_new(); |