|
@@ -68,6 +68,7 @@ static int kernfs_fill_super(struct super_block *sb)
|
|
|
struct inode *inode;
|
|
|
struct dentry *root;
|
|
|
|
|
|
+ info->sb = sb;
|
|
|
sb->s_blocksize = PAGE_CACHE_SIZE;
|
|
|
sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
|
|
|
sb->s_magic = SYSFS_MAGIC;
|
|
@@ -166,12 +167,18 @@ struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags,
|
|
|
*new_sb_created = !sb->s_root;
|
|
|
|
|
|
if (!sb->s_root) {
|
|
|
+ struct kernfs_super_info *info = kernfs_info(sb);
|
|
|
+
|
|
|
error = kernfs_fill_super(sb);
|
|
|
if (error) {
|
|
|
deactivate_locked_super(sb);
|
|
|
return ERR_PTR(error);
|
|
|
}
|
|
|
sb->s_flags |= MS_ACTIVE;
|
|
|
+
|
|
|
+ mutex_lock(&kernfs_mutex);
|
|
|
+ list_add(&info->node, &root->supers);
|
|
|
+ mutex_unlock(&kernfs_mutex);
|
|
|
}
|
|
|
|
|
|
return dget(sb->s_root);
|
|
@@ -190,6 +197,10 @@ void kernfs_kill_sb(struct super_block *sb)
|
|
|
struct kernfs_super_info *info = kernfs_info(sb);
|
|
|
struct kernfs_node *root_kn = sb->s_root->d_fsdata;
|
|
|
|
|
|
+ mutex_lock(&kernfs_mutex);
|
|
|
+ list_del(&info->node);
|
|
|
+ mutex_unlock(&kernfs_mutex);
|
|
|
+
|
|
|
/*
|
|
|
* Remove the superblock from fs_supers/s_instances
|
|
|
* so we can't find it, before freeing kernfs_super_info.
|