summaryrefslogtreecommitdiff
path: root/src/kernel/vfs/mount.h
blob: 982f95176b6d3975fc18f14627d64c084d23694b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include <kernel/fd.h>

struct vfs_mount {
	struct vfs_mount *prev;
	char *prefix;
	size_t prefix_len;
	struct fd fd;
};

// prepares init's filesystem view
struct vfs_mount *vfs_mount_seed(void);