sysfs: make sysfs_drop_dentry() access inodes using ilookup()
[linux-2.6-block.git] / fs / sysfs / sysfs.h
CommitLineData
3e519038
TH
1struct sysfs_elem_dir {
2 struct kobject * kobj;
3};
4
5struct sysfs_elem_symlink {
2b29ac25 6 struct sysfs_dirent * target_sd;
3e519038
TH
7};
8
9struct sysfs_elem_attr {
10 struct attribute * attr;
11};
12
13struct sysfs_elem_bin_attr {
14 struct bin_attribute * bin_attr;
15};
16
0ab66088
TH
17/*
18 * As long as s_count reference is held, the sysfs_dirent itself is
19 * accessible. Dereferencing s_elem or any other outer entity
20 * requires s_active reference.
21 */
d56c3eae
AR
22struct sysfs_dirent {
23 atomic_t s_count;
8619f979 24 atomic_t s_active;
13b3086d 25 struct sysfs_dirent * s_parent;
0c73f18b
TH
26 struct sysfs_dirent * s_sibling;
27 struct sysfs_dirent * s_children;
0c096b50 28 const char * s_name;
3e519038
TH
29
30 union {
31 struct sysfs_elem_dir dir;
32 struct sysfs_elem_symlink symlink;
33 struct sysfs_elem_attr attr;
34 struct sysfs_elem_bin_attr bin_attr;
35 } s_elem;
36
d56c3eae
AR
37 int s_type;
38 umode_t s_mode;
dc351252 39 ino_t s_ino;
d56c3eae
AR
40 struct dentry * s_dentry;
41 struct iattr * s_iattr;
42 atomic_t s_event;
43};
1da177e4 44
8619f979 45#define SD_DEACTIVATED_BIAS INT_MIN
0ab66088 46
1da177e4 47extern struct vfsmount * sysfs_mount;
e18b890b 48extern struct kmem_cache *sysfs_dir_cachep;
1da177e4 49
b6b4a439
TH
50extern struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd);
51extern void sysfs_put_active(struct sysfs_dirent *sd);
52extern struct sysfs_dirent *sysfs_get_active_two(struct sysfs_dirent *sd);
53extern void sysfs_put_active_two(struct sysfs_dirent *sd);
54extern void sysfs_deactivate(struct sysfs_dirent *sd);
55
b592fcfe 56extern void sysfs_delete_inode(struct inode *inode);
fc9f54b9 57extern void sysfs_init_inode(struct sysfs_dirent *sd, struct inode *inode);
8312a8d7 58extern struct inode * sysfs_get_inode(struct sysfs_dirent *sd);
fc9f54b9 59extern void sysfs_instantiate(struct dentry *dentry, struct inode *inode);
1da177e4 60
fa7f912a 61extern void release_sysfs_dirent(struct sysfs_dirent * sd);
c516865c 62extern int sysfs_dirent_exist(struct sysfs_dirent *, const unsigned char *);
3e519038
TH
63extern struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode,
64 int type);
a26cd722
TH
65extern void sysfs_attach_dirent(struct sysfs_dirent *sd,
66 struct sysfs_dirent *parent_sd,
67 struct dentry *dentry);
1da177e4
LT
68
69extern int sysfs_add_file(struct dentry *, const struct attribute *, int);
995982ca 70extern int sysfs_hash_and_remove(struct dentry * dir, const char * name);
4508a7a7 71extern struct sysfs_dirent *sysfs_find(struct sysfs_dirent *dir, const char * name);
1da177e4
LT
72
73extern int sysfs_create_subdir(struct kobject *, const char *, struct dentry **);
74extern void sysfs_remove_subdir(struct dentry *);
75
dbde0fcf 76extern void sysfs_drop_dentry(struct sysfs_dirent *sd);
988d186d 77extern int sysfs_setattr(struct dentry *dentry, struct iattr *iattr);
1da177e4 78
dd14cbc9 79extern spinlock_t sysfs_lock;
aecdceda 80extern spinlock_t kobj_sysfs_assoc_lock;
1da177e4
LT
81extern struct rw_semaphore sysfs_rename_sem;
82extern struct super_block * sysfs_sb;
4b6f5d20
AV
83extern const struct file_operations sysfs_dir_operations;
84extern const struct file_operations sysfs_file_operations;
85extern const struct file_operations bin_fops;
c5ef1c42
AV
86extern const struct inode_operations sysfs_dir_inode_operations;
87extern const struct inode_operations sysfs_symlink_inode_operations;
1da177e4 88
0ab66088 89static inline struct sysfs_dirent * sysfs_get(struct sysfs_dirent * sd)
1da177e4 90{
0ab66088
TH
91 if (sd) {
92 WARN_ON(!atomic_read(&sd->s_count));
93 atomic_inc(&sd->s_count);
94 }
95 return sd;
1da177e4
LT
96}
97
0ab66088 98static inline void sysfs_put(struct sysfs_dirent * sd)
1da177e4 99{
0ab66088
TH
100 if (sd && atomic_dec_and_test(&sd->s_count))
101 release_sysfs_dirent(sd);
102}
2b29ac25 103
b592fcfe
EB
104static inline int sysfs_is_shadowed_inode(struct inode *inode)
105{
106 return S_ISDIR(inode->i_mode) && inode->i_op->follow_link;
107}