feat: simple read/write lock implementation
[lunaix-os.git] / lunaix-os / kernel / fs / mount.c
index 38258ee68d831a6a52114b4a3d42ae2819406545..ff8d46b5bb91a3a1ca8e32e9bdf28a7c26087592 100644 (file)
@@ -4,7 +4,7 @@
 #include <lunaix/process.h>
 #include <lunaix/types.h>
 
-static struct llist_header all_mnts = { .next = &all_mnts, .prev = &all_mnts };
+struct llist_header all_mnts = { .next = &all_mnts, .prev = &all_mnts };
 
 struct v_mount*
 vfs_create_mount(struct v_mount* parent, struct v_dnode* mnt_point)