1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #include "mount.h"
- #include "VFS.h"
- #include <common/glib.h>
- #include <common/string.h>
- static struct List mnt_list_head;
- int mount_init()
- {
- list_init(&mnt_list_head);
- return 0;
- }
- int do_mount(struct vfs_dir_entry_t *old_dentry, struct vfs_dir_entry_t *new_dentry)
- {
- struct mountpoint *mp = (struct mountpoint *)kzalloc(sizeof(struct mountpoint), 0);
- list_init(&mp->mnt_list);
- mp->dentry = old_dentry;
- mp->parent_dentry = old_dentry->parent;
-
-
-
- strncpy(new_dentry->name, old_dentry->name, old_dentry->name_length);
- list_init(&new_dentry->child_node_list);
- list_init(&new_dentry->subdirs_list);
- new_dentry->parent = old_dentry->parent;
-
- list_replace(&old_dentry->child_node_list, &new_dentry->child_node_list);
-
- list_append(&mnt_list_head, &mp->mnt_list);
- return 0;
- }
- int do_umount(struct vfs_dir_entry_t* dentry)
- {
-
- return 0;
- }
|