From 75526aea5027d76b9f7cf07b8741cd7c8642f4ed Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 4 Jan 2021 12:40:30 +0100 Subject: Some vfs fixes --- kernel/features/fs.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'kernel/features/fs.c') 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(); -- cgit v1.2.3