]> Git Repo - linux.git/blame - fs/sysfs/mount.c
sysfs: cleanup semaphore.h
[linux.git] / fs / sysfs / mount.c
CommitLineData
1da177e4
LT
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/* Random magic number */
15#define SYSFS_MAGIC 0x62656572
16
17struct vfsmount *sysfs_mount;
18struct super_block * sysfs_sb = NULL;
e18b890b 19struct kmem_cache *sysfs_dir_cachep;
1da177e4 20
ee9b6d61 21static const struct super_operations sysfs_ops = {
1da177e4 22 .statfs = simple_statfs,
b592fcfe 23 .drop_inode = sysfs_delete_inode,
1da177e4
LT
24};
25
51225039 26struct sysfs_dirent sysfs_root = {
13b3086d 27 .s_count = ATOMIC_INIT(1),
b402d72c 28 .s_flags = SYSFS_ROOT,
fc9f54b9 29 .s_mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
dc351252 30 .s_ino = 1,
1da177e4
LT
31};
32
33static int sysfs_fill_super(struct super_block *sb, void *data, int silent)
34{
35 struct inode *inode;
36 struct dentry *root;
37
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;
44
e080e436
TH
45 /* get root inode, initialize and unlock it */
46 inode = sysfs_get_inode(&sysfs_root);
fc9f54b9 47 if (!inode) {
1da177e4
LT
48 pr_debug("sysfs: could not get root inode\n");
49 return -ENOMEM;
50 }
51
fc9f54b9
TH
52 inode->i_op = &sysfs_dir_inode_operations;
53 inode->i_fop = &sysfs_dir_operations;
e080e436
TH
54 inc_nlink(inode); /* directory, account for "." */
55 unlock_new_inode(inode);
fc9f54b9 56
e080e436 57 /* instantiate and link root dentry */
1da177e4
LT
58 root = d_alloc_root(inode);
59 if (!root) {
60 pr_debug("%s: could not get root dentry!\n",__FUNCTION__);
61 iput(inode);
62 return -ENOMEM;
63 }
0b8ead82 64 sysfs_root.s_dentry = root;
1da177e4
LT
65 root->d_fsdata = &sysfs_root;
66 sb->s_root = root;
67 return 0;
68}
69
454e2398
DH
70static int sysfs_get_sb(struct file_system_type *fs_type,
71 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
1da177e4 72{
454e2398 73 return get_sb_single(fs_type, flags, data, sysfs_fill_super, mnt);
1da177e4
LT
74}
75
76static struct file_system_type sysfs_fs_type = {
77 .name = "sysfs",
78 .get_sb = sysfs_get_sb,
79 .kill_sb = kill_litter_super,
80};
81
82int __init sysfs_init(void)
83{
84 int err = -ENOMEM;
85
86 sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache",
87 sizeof(struct sysfs_dirent),
20c2df83 88 0, 0, NULL);
1da177e4
LT
89 if (!sysfs_dir_cachep)
90 goto out;
91
92 err = register_filesystem(&sysfs_fs_type);
93 if (!err) {
94 sysfs_mount = kern_mount(&sysfs_fs_type);
95 if (IS_ERR(sysfs_mount)) {
96 printk(KERN_ERR "sysfs: could not mount!\n");
97 err = PTR_ERR(sysfs_mount);
98 sysfs_mount = NULL;
99 unregister_filesystem(&sysfs_fs_type);
100 goto out_err;
101 }
102 } else
103 goto out_err;
104out:
105 return err;
106out_err:
107 kmem_cache_destroy(sysfs_dir_cachep);
108 sysfs_dir_cachep = NULL;
109 goto out;
110}
This page took 0.352019 seconds and 4 git commands to generate.