blob: 77253aabc4af8eb6e2c8331b5125db979f4ef6c3 [file] [log] [blame]
Tejun Heo3e519032007-06-14 03:45:15 +09001struct sysfs_elem_dir {
2 struct kobject * kobj;
3};
4
5struct sysfs_elem_symlink {
Tejun Heo2b29ac22007-06-14 03:45:15 +09006 struct sysfs_dirent * target_sd;
Tejun Heo3e519032007-06-14 03:45:15 +09007};
8
9struct sysfs_elem_attr {
10 struct attribute * attr;
11};
12
13struct sysfs_elem_bin_attr {
14 struct bin_attribute * bin_attr;
15};
16
Tejun Heo0ab66082007-06-14 03:45:16 +090017/*
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 */
Adam J. Richterd56c3ea2007-02-16 21:35:25 +080022struct sysfs_dirent {
23 atomic_t s_count;
Tejun Heo8619f972007-06-14 03:45:18 +090024 atomic_t s_active;
Tejun Heo13b30862007-06-14 03:45:14 +090025 struct sysfs_dirent * s_parent;
Tejun Heo0c73f182007-06-14 03:45:18 +090026 struct sysfs_dirent * s_sibling;
27 struct sysfs_dirent * s_children;
Tejun Heo0c096b52007-06-14 03:45:15 +090028 const char * s_name;
Tejun Heo3e519032007-06-14 03:45:15 +090029
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
Tejun Heob402d722007-06-14 04:27:21 +090037 unsigned int s_flags;
Adam J. Richterd56c3ea2007-02-16 21:35:25 +080038 umode_t s_mode;
Eric Sandeendc351252007-06-11 14:02:45 +090039 ino_t s_ino;
Adam J. Richterd56c3ea2007-02-16 21:35:25 +080040 struct dentry * s_dentry;
41 struct iattr * s_iattr;
42 atomic_t s_event;
43};
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Tejun Heo8619f972007-06-14 03:45:18 +090045#define SD_DEACTIVATED_BIAS INT_MIN
Tejun Heo0ab66082007-06-14 03:45:16 +090046
Tejun Heofb6896d2007-06-14 04:27:24 +090047struct sysfs_addrm_cxt {
48 struct sysfs_dirent *parent_sd;
49 struct inode *parent_inode;
50 struct sysfs_dirent *removed;
51 int cnt;
52};
53
Tejun Heo51225032007-06-14 04:27:25 +090054extern struct sysfs_dirent sysfs_root;
Christoph Lametere18b8902006-12-06 20:33:20 -080055extern struct kmem_cache *sysfs_dir_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Tejun Heo53e0ae92007-06-14 04:27:25 +090057extern struct dentry *sysfs_get_dentry(struct sysfs_dirent *sd);
Tejun Heob6b4a432007-06-14 03:45:18 +090058extern struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd);
59extern void sysfs_put_active(struct sysfs_dirent *sd);
60extern struct sysfs_dirent *sysfs_get_active_two(struct sysfs_dirent *sd);
61extern void sysfs_put_active_two(struct sysfs_dirent *sd);
Tejun Heofb6896d2007-06-14 04:27:24 +090062extern void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt,
63 struct sysfs_dirent *parent_sd);
Tejun Heo23dc2792007-08-02 21:38:03 +090064extern int sysfs_add_one(struct sysfs_addrm_cxt *acxt,
Tejun Heofb6896d2007-06-14 04:27:24 +090065 struct sysfs_dirent *sd);
66extern void sysfs_remove_one(struct sysfs_addrm_cxt *acxt,
67 struct sysfs_dirent *sd);
Tejun Heo990e53f2007-08-02 21:38:03 +090068extern void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt);
Tejun Heob6b4a432007-06-14 03:45:18 +090069
Tejun Heo8312a8d2007-06-14 03:45:17 +090070extern struct inode * sysfs_get_inode(struct sysfs_dirent *sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Tejun Heofa7f9122007-06-14 03:45:13 +090072extern void release_sysfs_dirent(struct sysfs_dirent * sd);
Tejun Heof0b0af42007-06-14 04:27:22 +090073extern struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
74 const unsigned char *name);
75extern struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
76 const unsigned char *name);
Tejun Heo3e519032007-06-14 03:45:15 +090077extern struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode,
78 int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Tejun Heo608e2662007-06-14 04:27:22 +090080extern int sysfs_add_file(struct sysfs_dirent *dir_sd,
81 const struct attribute *attr, int type);
82extern int sysfs_hash_and_remove(struct sysfs_dirent *dir_sd, const char *name);
NeilBrown4508a7a2006-03-20 17:53:53 +110083extern struct sysfs_dirent *sysfs_find(struct sysfs_dirent *dir, const char * name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Tejun Heo608e2662007-06-14 04:27:22 +090085extern int sysfs_create_subdir(struct kobject *kobj, const char *name,
86 struct sysfs_dirent **p_sd);
87extern void sysfs_remove_subdir(struct sysfs_dirent *sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Maneesh Soni988d1862005-05-31 10:39:14 +053089extern int sysfs_setattr(struct dentry *dentry, struct iattr *iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Tejun Heo5f995322007-06-14 04:27:23 +090091extern spinlock_t sysfs_assoc_lock;
Tejun Heo3007e992007-06-14 04:27:23 +090092extern struct mutex sysfs_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093extern struct super_block * sysfs_sb;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080094extern const struct file_operations sysfs_dir_operations;
95extern const struct file_operations sysfs_file_operations;
96extern const struct file_operations bin_fops;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -080097extern const struct inode_operations sysfs_dir_inode_operations;
98extern const struct inode_operations sysfs_symlink_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Tejun Heob402d722007-06-14 04:27:21 +0900100static inline unsigned int sysfs_type(struct sysfs_dirent *sd)
101{
102 return sd->s_flags & SYSFS_TYPE_MASK;
103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static inline struct sysfs_dirent * sysfs_get(struct sysfs_dirent * sd)
106{
107 if (sd) {
108 WARN_ON(!atomic_read(&sd->s_count));
109 atomic_inc(&sd->s_count);
110 }
111 return sd;
112}
113
114static inline void sysfs_put(struct sysfs_dirent * sd)
115{
Tejun Heo7a23ad42007-06-14 03:45:13 +0900116 if (sd && atomic_dec_and_test(&sd->s_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 release_sysfs_dirent(sd);
118}