vserver 2.0 rc7
[linux-2.6.git] / fs / sysfs / mount.c
1 /*
2  * mount.c - operations for initializing and mounting sysfs.
3  */
4
5 #define DEBUG 
6
7 #include <linux/fs.h>
8 #include <linux/mount.h>
9 #include <linux/pagemap.h>
10 #include <linux/init.h>
11
12 #include "sysfs.h"
13
14
15 struct vfsmount *sysfs_mount;
16 struct super_block * sysfs_sb = NULL;
17 kmem_cache_t *sysfs_dir_cachep;
18
19 static struct super_operations sysfs_ops = {
20         .statfs         = simple_statfs,
21         .drop_inode     = generic_delete_inode,
22 };
23
24 static struct sysfs_dirent sysfs_root = {
25         .s_sibling      = LIST_HEAD_INIT(sysfs_root.s_sibling),
26         .s_children     = LIST_HEAD_INIT(sysfs_root.s_children),
27         .s_element      = NULL,
28         .s_type         = SYSFS_ROOT,
29 };
30
31 static int sysfs_fill_super(struct super_block *sb, void *data, int silent)
32 {
33         struct inode *inode;
34         struct dentry *root;
35
36         sb->s_blocksize = PAGE_CACHE_SIZE;
37         sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
38         sb->s_magic = SYSFS_SUPER_MAGIC;
39         sb->s_op = &sysfs_ops;
40         sb->s_time_gran = 1;
41         sysfs_sb = sb;
42
43         inode = sysfs_new_inode(S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO);
44         if (inode) {
45                 inode->i_op = &sysfs_dir_inode_operations;
46                 inode->i_fop = &sysfs_dir_operations;
47                 /* directory inodes start off with i_nlink == 2 (for "." entry) */
48                 inode->i_nlink++;       
49         } else {
50                 pr_debug("sysfs: could not get root inode\n");
51                 return -ENOMEM;
52         }
53
54         root = d_alloc_root(inode);
55         if (!root) {
56                 pr_debug("%s: could not get root dentry!\n",__FUNCTION__);
57                 iput(inode);
58                 return -ENOMEM;
59         }
60         root->d_fsdata = &sysfs_root;
61         sb->s_root = root;
62         return 0;
63 }
64
65 static struct super_block *sysfs_get_sb(struct file_system_type *fs_type,
66         int flags, const char *dev_name, void *data)
67 {
68         return get_sb_single(fs_type, flags, data, sysfs_fill_super);
69 }
70
71 static struct file_system_type sysfs_fs_type = {
72         .name           = "sysfs",
73         .get_sb         = sysfs_get_sb,
74         .kill_sb        = kill_litter_super,
75 };
76
77 int __init sysfs_init(void)
78 {
79         int err = -ENOMEM;
80
81         sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache",
82                                               sizeof(struct sysfs_dirent),
83                                               0, 0, NULL, NULL);
84         if (!sysfs_dir_cachep)
85                 goto out;
86
87         err = register_filesystem(&sysfs_fs_type);
88         if (!err) {
89                 sysfs_mount = kern_mount(&sysfs_fs_type);
90                 if (IS_ERR(sysfs_mount)) {
91                         printk(KERN_ERR "sysfs: could not mount!\n");
92                         err = PTR_ERR(sysfs_mount);
93                         sysfs_mount = NULL;
94                         unregister_filesystem(&sysfs_fs_type);
95                         goto out_err;
96                 }
97         } else
98                 goto out_err;
99 out:
100         return err;
101 out_err:
102         kmem_cache_destroy(sysfs_dir_cachep);
103         sysfs_dir_cachep = NULL;
104         goto out;
105 }