summaryrefslogtreecommitdiff
path: root/src/kernel/vfs/mount.h
diff options
context:
space:
mode:
authordzwdz2021-08-25 14:28:53 +0200
committerdzwdz2021-08-25 14:28:53 +0200
commitab5150478dd14c1c5b28ca50b36b35e8224df54b (patch)
treee4998413332229459b7037871924c0d9e811252d /src/kernel/vfs/mount.h
parent3ac131ea956fd62df966bac75e8d7f0c0434d68d (diff)
implement vfs_mount_seed, which creates the vfs passed to init
Diffstat (limited to 'src/kernel/vfs/mount.h')
-rw-r--r--src/kernel/vfs/mount.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/kernel/vfs/mount.h b/src/kernel/vfs/mount.h
index 3e9d8ae..982f951 100644
--- a/src/kernel/vfs/mount.h
+++ b/src/kernel/vfs/mount.h
@@ -7,3 +7,6 @@ struct vfs_mount {
size_t prefix_len;
struct fd fd;
};
+
+// prepares init's filesystem view
+struct vfs_mount *vfs_mount_seed(void);