diff options
author | dzwdz | 2022-05-05 21:41:04 +0200 |
---|---|---|
committer | dzwdz | 2022-05-05 21:41:04 +0200 |
commit | f9bc4ac436dec5f2f1f1db31c4933c80ed40568b (patch) | |
tree | 05124db3cfc86556df603c05543457eb60d20f4e /src/kernel/vfs/mount.h | |
parent | dc42353f53df0b5425377330f16e668829d8fd9a (diff) |
kernel: move the COM1 driver to a separate handler
Diffstat (limited to 'src/kernel/vfs/mount.h')
-rw-r--r-- | src/kernel/vfs/mount.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/kernel/vfs/mount.h b/src/kernel/vfs/mount.h index 96a2d7b..4aa08d4 100644 --- a/src/kernel/vfs/mount.h +++ b/src/kernel/vfs/mount.h @@ -6,6 +6,7 @@ struct vfs_mount { struct vfs_mount *prev; char *prefix; size_t prefix_len; + bool prefix_owned; struct vfs_backend *backend; size_t refs; /* counts all references, atm from: * - struct vfs_mount |