do_new_mount

    1. type = get_fs_type(fstype);
    2. if (!type)
    3. return -ENODEV;

    根据fstype到注册的filesystems链表上找到指定的文件系统对象,初始化vfsmount结构体,再将挂载点加入到tree

    关键函数 graft_tree, attach_recursive_mnt