Commit 26fc9cd2 authored by Jianyu Zhan's avatar Jianyu Zhan Committed by Greg Kroah-Hartman

kernfs: move the last knowledge of sysfs out from kernfs

There is still one residue of sysfs remaining: the sb_magic
SYSFS_MAGIC. However this should be kernfs user specific,
so this patch moves it out. Kerrnfs user should specify their
magic number while mouting.
Signed-off-by: default avatarJianyu Zhan <nasa4836@gmail.com>
Acked-by: default avatarTejun Heo <tj@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9f70a401
...@@ -62,7 +62,7 @@ struct kernfs_root *kernfs_root_from_sb(struct super_block *sb) ...@@ -62,7 +62,7 @@ struct kernfs_root *kernfs_root_from_sb(struct super_block *sb)
return NULL; return NULL;
} }
static int kernfs_fill_super(struct super_block *sb) static int kernfs_fill_super(struct super_block *sb, unsigned long magic)
{ {
struct kernfs_super_info *info = kernfs_info(sb); struct kernfs_super_info *info = kernfs_info(sb);
struct inode *inode; struct inode *inode;
...@@ -71,7 +71,7 @@ static int kernfs_fill_super(struct super_block *sb) ...@@ -71,7 +71,7 @@ static int kernfs_fill_super(struct super_block *sb)
info->sb = sb; info->sb = sb;
sb->s_blocksize = PAGE_CACHE_SIZE; sb->s_blocksize = PAGE_CACHE_SIZE;
sb->s_blocksize_bits = PAGE_CACHE_SHIFT; sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
sb->s_magic = SYSFS_MAGIC; sb->s_magic = magic;
sb->s_op = &kernfs_sops; sb->s_op = &kernfs_sops;
sb->s_time_gran = 1; sb->s_time_gran = 1;
...@@ -132,6 +132,7 @@ const void *kernfs_super_ns(struct super_block *sb) ...@@ -132,6 +132,7 @@ const void *kernfs_super_ns(struct super_block *sb)
* @fs_type: file_system_type of the fs being mounted * @fs_type: file_system_type of the fs being mounted
* @flags: mount flags specified for the mount * @flags: mount flags specified for the mount
* @root: kernfs_root of the hierarchy being mounted * @root: kernfs_root of the hierarchy being mounted
* @magic: file system specific magic number
* @new_sb_created: tell the caller if we allocated a new superblock * @new_sb_created: tell the caller if we allocated a new superblock
* @ns: optional namespace tag of the mount * @ns: optional namespace tag of the mount
* *
...@@ -143,8 +144,8 @@ const void *kernfs_super_ns(struct super_block *sb) ...@@ -143,8 +144,8 @@ const void *kernfs_super_ns(struct super_block *sb)
* The return value can be passed to the vfs layer verbatim. * The return value can be passed to the vfs layer verbatim.
*/ */
struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags, struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags,
struct kernfs_root *root, bool *new_sb_created, struct kernfs_root *root, unsigned long magic,
const void *ns) bool *new_sb_created, const void *ns)
{ {
struct super_block *sb; struct super_block *sb;
struct kernfs_super_info *info; struct kernfs_super_info *info;
...@@ -169,7 +170,7 @@ struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags, ...@@ -169,7 +170,7 @@ struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags,
if (!sb->s_root) { if (!sb->s_root) {
struct kernfs_super_info *info = kernfs_info(sb); struct kernfs_super_info *info = kernfs_info(sb);
error = kernfs_fill_super(sb); error = kernfs_fill_super(sb, magic);
if (error) { if (error) {
deactivate_locked_super(sb); deactivate_locked_super(sb);
return ERR_PTR(error); return ERR_PTR(error);
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
#define DEBUG #define DEBUG
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/magic.h>
#include <linux/mount.h> #include <linux/mount.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/user_namespace.h> #include <linux/user_namespace.h>
...@@ -38,7 +39,8 @@ static struct dentry *sysfs_mount(struct file_system_type *fs_type, ...@@ -38,7 +39,8 @@ static struct dentry *sysfs_mount(struct file_system_type *fs_type,
} }
ns = kobj_ns_grab_current(KOBJ_NS_TYPE_NET); ns = kobj_ns_grab_current(KOBJ_NS_TYPE_NET);
root = kernfs_mount_ns(fs_type, flags, sysfs_root, &new_sb, ns); root = kernfs_mount_ns(fs_type, flags, sysfs_root,
SYSFS_MAGIC, &new_sb, ns);
if (IS_ERR(root) || !new_sb) if (IS_ERR(root) || !new_sb)
kobj_ns_drop(KOBJ_NS_TYPE_NET, ns); kobj_ns_drop(KOBJ_NS_TYPE_NET, ns);
return root; return root;
......
...@@ -301,8 +301,8 @@ void kernfs_notify(struct kernfs_node *kn); ...@@ -301,8 +301,8 @@ void kernfs_notify(struct kernfs_node *kn);
const void *kernfs_super_ns(struct super_block *sb); const void *kernfs_super_ns(struct super_block *sb);
struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags, struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags,
struct kernfs_root *root, bool *new_sb_created, struct kernfs_root *root, unsigned long magic,
const void *ns); bool *new_sb_created, const void *ns);
void kernfs_kill_sb(struct super_block *sb); void kernfs_kill_sb(struct super_block *sb);
void kernfs_init(void); void kernfs_init(void);
...@@ -395,7 +395,8 @@ static inline const void *kernfs_super_ns(struct super_block *sb) ...@@ -395,7 +395,8 @@ static inline const void *kernfs_super_ns(struct super_block *sb)
static inline struct dentry * static inline struct dentry *
kernfs_mount_ns(struct file_system_type *fs_type, int flags, kernfs_mount_ns(struct file_system_type *fs_type, int flags,
struct kernfs_root *root, bool *new_sb_created, const void *ns) struct kernfs_root *root, unsigned long magic,
bool *new_sb_created, const void *ns)
{ return ERR_PTR(-ENOSYS); } { return ERR_PTR(-ENOSYS); }
static inline void kernfs_kill_sb(struct super_block *sb) { } static inline void kernfs_kill_sb(struct super_block *sb) { }
...@@ -453,9 +454,11 @@ static inline int kernfs_rename(struct kernfs_node *kn, ...@@ -453,9 +454,11 @@ static inline int kernfs_rename(struct kernfs_node *kn,
static inline struct dentry * static inline struct dentry *
kernfs_mount(struct file_system_type *fs_type, int flags, kernfs_mount(struct file_system_type *fs_type, int flags,
struct kernfs_root *root, bool *new_sb_created) struct kernfs_root *root, unsigned long magic,
bool *new_sb_created)
{ {
return kernfs_mount_ns(fs_type, flags, root, new_sb_created, NULL); return kernfs_mount_ns(fs_type, flags, root,
magic, new_sb_created, NULL);
} }
#endif /* __LINUX_KERNFS_H */ #endif /* __LINUX_KERNFS_H */
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#include <linux/init_task.h> #include <linux/init_task.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/list.h> #include <linux/list.h>
#include <linux/magic.h>
#include <linux/mm.h> #include <linux/mm.h>
#include <linux/mutex.h> #include <linux/mutex.h>
#include <linux/mount.h> #include <linux/mount.h>
...@@ -1604,7 +1605,8 @@ static struct dentry *cgroup_mount(struct file_system_type *fs_type, ...@@ -1604,7 +1605,8 @@ static struct dentry *cgroup_mount(struct file_system_type *fs_type,
if (ret) if (ret)
return ERR_PTR(ret); return ERR_PTR(ret);
dentry = kernfs_mount(fs_type, flags, root->kf_root, &new_sb); dentry = kernfs_mount(fs_type, flags, root->kf_root,
CGROUP_SUPER_MAGIC, &new_sb);
if (IS_ERR(dentry) || !new_sb) if (IS_ERR(dentry) || !new_sb)
cgroup_put(&root->cgrp); cgroup_put(&root->cgrp);
return dentry; return dentry;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment