2 * mount.c - operations for initializing and mounting sysfs.
8 #include <linux/mount.h>
9 #include <linux/pagemap.h>
10 #include <linux/init.h>
11 #include <asm/semaphore.h>
15 /* Random magic number */
16 #define SYSFS_MAGIC 0x62656572
18 struct vfsmount
*sysfs_mount
;
19 struct super_block
* sysfs_sb
= NULL
;
20 struct kmem_cache
*sysfs_dir_cachep
;
22 static void sysfs_clear_inode(struct inode
*inode
);
24 static const struct super_operations sysfs_ops
= {
25 .statfs
= simple_statfs
,
26 .drop_inode
= sysfs_delete_inode
,
27 .clear_inode
= sysfs_clear_inode
,
30 static struct sysfs_dirent sysfs_root
= {
31 .s_sibling
= LIST_HEAD_INIT(sysfs_root
.s_sibling
),
32 .s_children
= LIST_HEAD_INIT(sysfs_root
.s_children
),
38 static void sysfs_clear_inode(struct inode
*inode
)
40 kfree(inode
->i_private
);
43 static int sysfs_fill_super(struct super_block
*sb
, void *data
, int silent
)
48 sb
->s_blocksize
= PAGE_CACHE_SIZE
;
49 sb
->s_blocksize_bits
= PAGE_CACHE_SHIFT
;
50 sb
->s_magic
= SYSFS_MAGIC
;
51 sb
->s_op
= &sysfs_ops
;
55 inode
= sysfs_new_inode(S_IFDIR
| S_IRWXU
| S_IRUGO
| S_IXUGO
,
58 inode
->i_op
= &sysfs_dir_inode_operations
;
59 inode
->i_fop
= &sysfs_dir_operations
;
60 /* directory inodes start off with i_nlink == 2 (for "." entry) */
63 pr_debug("sysfs: could not get root inode\n");
67 root
= d_alloc_root(inode
);
69 pr_debug("%s: could not get root dentry!\n",__FUNCTION__
);
73 root
->d_fsdata
= &sysfs_root
;
78 static int sysfs_get_sb(struct file_system_type
*fs_type
,
79 int flags
, const char *dev_name
, void *data
, struct vfsmount
*mnt
)
81 return get_sb_single(fs_type
, flags
, data
, sysfs_fill_super
, mnt
);
84 static struct file_system_type sysfs_fs_type
= {
86 .get_sb
= sysfs_get_sb
,
87 .kill_sb
= kill_litter_super
,
90 int __init
sysfs_init(void)
94 sysfs_dir_cachep
= kmem_cache_create("sysfs_dir_cache",
95 sizeof(struct sysfs_dirent
),
97 if (!sysfs_dir_cachep
)
100 err
= register_filesystem(&sysfs_fs_type
);
102 sysfs_mount
= kern_mount(&sysfs_fs_type
);
103 if (IS_ERR(sysfs_mount
)) {
104 printk(KERN_ERR
"sysfs: could not mount!\n");
105 err
= PTR_ERR(sysfs_mount
);
107 unregister_filesystem(&sysfs_fs_type
);
115 kmem_cache_destroy(sysfs_dir_cachep
);
116 sysfs_dir_cachep
= NULL
;