summaryrefslogtreecommitdiffstats
path: root/fs/kernfs/kernfs-internal.h
diff options
context:
space:
mode:
authorTejun Heo2013-11-28 20:54:44 +0100
committerGreg Kroah-Hartman2013-11-30 03:16:08 +0100
commitfa736a951e456b996a76826ba78ff974414c3b55 (patch)
tree2ba6b9289163b684e41f5efb95c92144b12e2c86 /fs/kernfs/kernfs-internal.h
parentsysfs, kernfs: prepare mount path for kernfs (diff)
downloadkernel-qcow2-linux-fa736a951e456b996a76826ba78ff974414c3b55.tar.gz
kernel-qcow2-linux-fa736a951e456b996a76826ba78ff974414c3b55.tar.xz
kernel-qcow2-linux-fa736a951e456b996a76826ba78ff974414c3b55.zip
sysfs, kernfs: move mount core code to fs/kernfs/mount.c
Move core mount code to fs/kernfs/mount.c. The respective declarations in fs/sysfs/sysfs.h are moved to fs/kernfs/kernfs-internal.h. This is pure relocation. Signed-off-by: Tejun Heo <tj@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/kernfs/kernfs-internal.h')
-rw-r--r--fs/kernfs/kernfs-internal.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/fs/kernfs/kernfs-internal.h b/fs/kernfs/kernfs-internal.h
index 0d949885389d..ced0d6dadc7d 100644
--- a/fs/kernfs/kernfs-internal.h
+++ b/fs/kernfs/kernfs-internal.h
@@ -134,6 +134,28 @@ struct sysfs_addrm_cxt {
#include "../sysfs/sysfs.h"
/*
+ * mount.c
+ */
+struct sysfs_super_info {
+ /*
+ * The root associated with this super_block. Each super_block is
+ * identified by the root and ns it's associated with.
+ */
+ struct kernfs_root *root;
+
+ /*
+ * Each sb is associated with one namespace tag, currently the network
+ * namespace of the task which mounted this sysfs instance. If multiple
+ * tags become necessary, make the following an array and compare
+ * sysfs_dirent tag against every entry.
+ */
+ const void *ns;
+};
+#define sysfs_info(SB) ((struct sysfs_super_info *)(SB->s_fs_info))
+
+extern struct kmem_cache *sysfs_dir_cachep;
+
+/*
* inode.c
*/
struct inode *sysfs_get_inode(struct super_block *sb, struct sysfs_dirent *sd);