Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 1 | struct sysfs_elem_dir { |
| 2 | struct kobject * kobj; |
| 3 | }; |
| 4 | |
| 5 | struct sysfs_elem_symlink { |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 6 | struct sysfs_dirent * target_sd; |
Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 7 | }; |
| 8 | |
| 9 | struct sysfs_elem_attr { |
| 10 | struct attribute * attr; |
| 11 | }; |
| 12 | |
| 13 | struct sysfs_elem_bin_attr { |
| 14 | struct bin_attribute * bin_attr; |
| 15 | }; |
| 16 | |
Tejun Heo | 0ab6608 | 2007-06-14 03:45:16 +0900 | [diff] [blame] | 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 | */ |
Adam J. Richter | d56c3ea | 2007-02-16 21:35:25 +0800 | [diff] [blame] | 22 | struct sysfs_dirent { |
| 23 | atomic_t s_count; |
Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 24 | atomic_t s_active; |
Tejun Heo | 13b3086 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 25 | struct sysfs_dirent * s_parent; |
Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 26 | struct sysfs_dirent * s_sibling; |
| 27 | struct sysfs_dirent * s_children; |
Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 28 | const char * s_name; |
Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 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 | |
Tejun Heo | b402d72 | 2007-06-14 04:27:21 +0900 | [diff] [blame] | 37 | unsigned int s_flags; |
Adam J. Richter | d56c3ea | 2007-02-16 21:35:25 +0800 | [diff] [blame] | 38 | umode_t s_mode; |
Eric Sandeen | dc35125 | 2007-06-11 14:02:45 +0900 | [diff] [blame] | 39 | ino_t s_ino; |
Adam J. Richter | d56c3ea | 2007-02-16 21:35:25 +0800 | [diff] [blame] | 40 | struct dentry * s_dentry; |
| 41 | struct iattr * s_iattr; |
| 42 | atomic_t s_event; |
| 43 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 45 | #define SD_DEACTIVATED_BIAS INT_MIN |
Tejun Heo | 0ab6608 | 2007-06-14 03:45:16 +0900 | [diff] [blame] | 46 | |
Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 47 | struct 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 Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 54 | extern struct sysfs_dirent sysfs_root; |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 55 | extern struct kmem_cache *sysfs_dir_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Tejun Heo | 53e0ae9 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 57 | extern struct dentry *sysfs_get_dentry(struct sysfs_dirent *sd); |
Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 58 | extern struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd); |
| 59 | extern void sysfs_put_active(struct sysfs_dirent *sd); |
| 60 | extern struct sysfs_dirent *sysfs_get_active_two(struct sysfs_dirent *sd); |
| 61 | extern void sysfs_put_active_two(struct sysfs_dirent *sd); |
Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 62 | extern void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt, |
| 63 | struct sysfs_dirent *parent_sd); |
Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 64 | extern int sysfs_add_one(struct sysfs_addrm_cxt *acxt, |
Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 65 | struct sysfs_dirent *sd); |
| 66 | extern void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, |
| 67 | struct sysfs_dirent *sd); |
Tejun Heo | 990e53f | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 68 | extern void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt); |
Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 69 | |
Tejun Heo | 8312a8d | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 70 | extern struct inode * sysfs_get_inode(struct sysfs_dirent *sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Tejun Heo | fa7f912 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 72 | extern void release_sysfs_dirent(struct sysfs_dirent * sd); |
Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 73 | extern struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd, |
| 74 | const unsigned char *name); |
| 75 | extern struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd, |
| 76 | const unsigned char *name); |
Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 77 | extern struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, |
| 78 | int type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 80 | extern int sysfs_add_file(struct sysfs_dirent *dir_sd, |
| 81 | const struct attribute *attr, int type); |
| 82 | extern int sysfs_hash_and_remove(struct sysfs_dirent *dir_sd, const char *name); |
NeilBrown | 4508a7a | 2006-03-20 17:53:53 +1100 | [diff] [blame] | 83 | extern struct sysfs_dirent *sysfs_find(struct sysfs_dirent *dir, const char * name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 85 | extern int sysfs_create_subdir(struct kobject *kobj, const char *name, |
| 86 | struct sysfs_dirent **p_sd); |
| 87 | extern void sysfs_remove_subdir(struct sysfs_dirent *sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 89 | extern int sysfs_setattr(struct dentry *dentry, struct iattr *iattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Tejun Heo | 5f99532 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 91 | extern spinlock_t sysfs_assoc_lock; |
Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 92 | extern struct mutex sysfs_mutex; |
Eric W. Biederman | 932ea2e | 2007-08-20 21:36:30 +0900 | [diff] [blame^] | 93 | extern struct mutex sysfs_rename_mutex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | extern struct super_block * sysfs_sb; |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 95 | extern const struct file_operations sysfs_dir_operations; |
| 96 | extern const struct file_operations sysfs_file_operations; |
| 97 | extern const struct file_operations bin_fops; |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 98 | extern const struct inode_operations sysfs_dir_inode_operations; |
| 99 | extern const struct inode_operations sysfs_symlink_inode_operations; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Tejun Heo | b402d72 | 2007-06-14 04:27:21 +0900 | [diff] [blame] | 101 | static inline unsigned int sysfs_type(struct sysfs_dirent *sd) |
| 102 | { |
| 103 | return sd->s_flags & SYSFS_TYPE_MASK; |
| 104 | } |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | static inline struct sysfs_dirent * sysfs_get(struct sysfs_dirent * sd) |
| 107 | { |
| 108 | if (sd) { |
| 109 | WARN_ON(!atomic_read(&sd->s_count)); |
| 110 | atomic_inc(&sd->s_count); |
| 111 | } |
| 112 | return sd; |
| 113 | } |
| 114 | |
| 115 | static inline void sysfs_put(struct sysfs_dirent * sd) |
| 116 | { |
Tejun Heo | 7a23ad4 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 117 | if (sd && atomic_dec_and_test(&sd->s_count)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | release_sysfs_dirent(sd); |
| 119 | } |