sysfs: Remove s_dentry
[linux-2.6/kmemtrace.git] / fs / sysfs / mount.c
blob28bf359981fc678341af7e867d44dacfa2956647
1 /*
2 * mount.c - operations for initializing and mounting sysfs.
3 */
5 #define DEBUG
7 #include <linux/fs.h>
8 #include <linux/mount.h>
9 #include <linux/pagemap.h>
10 #include <linux/init.h>
12 #include "sysfs.h"
14 /* Random magic number */
15 #define SYSFS_MAGIC 0x62656572
17 static struct vfsmount *sysfs_mount;
18 struct super_block * sysfs_sb = NULL;
19 struct kmem_cache *sysfs_dir_cachep;
21 static const struct super_operations sysfs_ops = {
22 .statfs = simple_statfs,
23 .drop_inode = generic_delete_inode,
26 struct sysfs_dirent sysfs_root = {
27 .s_count = ATOMIC_INIT(1),
28 .s_flags = SYSFS_ROOT,
29 .s_mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
30 .s_ino = 1,
33 static int sysfs_fill_super(struct super_block *sb, void *data, int silent)
35 struct inode *inode;
36 struct dentry *root;
38 sb->s_blocksize = PAGE_CACHE_SIZE;
39 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
40 sb->s_magic = SYSFS_MAGIC;
41 sb->s_op = &sysfs_ops;
42 sb->s_time_gran = 1;
43 sysfs_sb = sb;
45 /* get root inode, initialize and unlock it */
46 inode = sysfs_get_inode(&sysfs_root);
47 if (!inode) {
48 pr_debug("sysfs: could not get root inode\n");
49 return -ENOMEM;
52 /* instantiate and link root dentry */
53 root = d_alloc_root(inode);
54 if (!root) {
55 pr_debug("%s: could not get root dentry!\n",__FUNCTION__);
56 iput(inode);
57 return -ENOMEM;
59 root->d_fsdata = &sysfs_root;
60 sb->s_root = root;
61 return 0;
64 static int sysfs_get_sb(struct file_system_type *fs_type,
65 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
67 return get_sb_single(fs_type, flags, data, sysfs_fill_super, mnt);
70 static struct file_system_type sysfs_fs_type = {
71 .name = "sysfs",
72 .get_sb = sysfs_get_sb,
73 .kill_sb = kill_anon_super,
76 int __init sysfs_init(void)
78 int err = -ENOMEM;
80 sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache",
81 sizeof(struct sysfs_dirent),
82 0, 0, NULL);
83 if (!sysfs_dir_cachep)
84 goto out;
86 err = register_filesystem(&sysfs_fs_type);
87 if (!err) {
88 sysfs_mount = kern_mount(&sysfs_fs_type);
89 if (IS_ERR(sysfs_mount)) {
90 printk(KERN_ERR "sysfs: could not mount!\n");
91 err = PTR_ERR(sysfs_mount);
92 sysfs_mount = NULL;
93 unregister_filesystem(&sysfs_fs_type);
94 goto out_err;
96 } else
97 goto out_err;
98 out:
99 return err;
100 out_err:
101 kmem_cache_destroy(sysfs_dir_cachep);
102 sysfs_dir_cachep = NULL;
103 goto out;