Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Tejun Heo | 6d66f5c | 2007-09-20 17:31:38 +0900 | [diff] [blame] | 2 | * fs/sysfs/inode.c - basic sysfs inode and dentry operations |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Tejun Heo | 6d66f5c | 2007-09-20 17:31:38 +0900 | [diff] [blame] | 4 | * Copyright (c) 2001-3 Patrick Mochel |
| 5 | * Copyright (c) 2007 SUSE Linux Products GmbH |
| 6 | * Copyright (c) 2007 Tejun Heo <teheo@suse.de> |
| 7 | * |
| 8 | * This file is released under the GPLv2. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 10 | * Please see Documentation/filesystems/sysfs.txt for more information. |
| 11 | */ |
| 12 | |
| 13 | #undef DEBUG |
| 14 | |
| 15 | #include <linux/pagemap.h> |
| 16 | #include <linux/namei.h> |
| 17 | #include <linux/backing-dev.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 18 | #include <linux/capability.h> |
Randy.Dunlap | 995982c | 2006-07-10 23:05:25 -0700 | [diff] [blame] | 19 | #include <linux/errno.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 20 | #include <linux/sched.h> |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 21 | #include <linux/xattr.h> |
| 22 | #include <linux/security.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "sysfs.h" |
| 24 | |
| 25 | extern struct super_block * sysfs_sb; |
| 26 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 27 | static const struct address_space_operations sysfs_aops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | .readpage = simple_readpage, |
Nick Piggin | 800d15a | 2007-10-16 01:25:03 -0700 | [diff] [blame] | 29 | .write_begin = simple_write_begin, |
| 30 | .write_end = simple_write_end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | }; |
| 32 | |
| 33 | static struct backing_dev_info sysfs_backing_dev_info = { |
Jens Axboe | d993831 | 2009-06-12 14:45:52 +0200 | [diff] [blame] | 34 | .name = "sysfs", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | .ra_pages = 0, /* No readahead */ |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 36 | .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | }; |
| 38 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 39 | static const struct inode_operations sysfs_inode_operations ={ |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 40 | .setattr = sysfs_setattr, |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 41 | .setxattr = sysfs_setxattr, |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 42 | }; |
| 43 | |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 44 | int __init sysfs_inode_init(void) |
| 45 | { |
| 46 | return bdi_init(&sysfs_backing_dev_info); |
| 47 | } |
| 48 | |
Stefan Richter | f38506c | 2009-10-14 20:47:32 +0200 | [diff] [blame] | 49 | static struct sysfs_inode_attrs *sysfs_init_inode_attrs(struct sysfs_dirent *sd) |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 50 | { |
| 51 | struct sysfs_inode_attrs *attrs; |
| 52 | struct iattr *iattrs; |
| 53 | |
| 54 | attrs = kzalloc(sizeof(struct sysfs_inode_attrs), GFP_KERNEL); |
| 55 | if (!attrs) |
| 56 | return NULL; |
| 57 | iattrs = &attrs->ia_iattr; |
| 58 | |
| 59 | /* assign default attributes */ |
| 60 | iattrs->ia_mode = sd->s_mode; |
| 61 | iattrs->ia_uid = 0; |
| 62 | iattrs->ia_gid = 0; |
| 63 | iattrs->ia_atime = iattrs->ia_mtime = iattrs->ia_ctime = CURRENT_TIME; |
| 64 | |
| 65 | return attrs; |
| 66 | } |
Stefan Richter | f38506c | 2009-10-14 20:47:32 +0200 | [diff] [blame] | 67 | |
Eric W. Biederman | 35df63c | 2009-11-20 16:08:50 -0800 | [diff] [blame^] | 68 | int sysfs_sd_setattr(struct sysfs_dirent *sd, struct iattr * iattr) |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 69 | { |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 70 | struct sysfs_inode_attrs *sd_attrs; |
| 71 | struct iattr *iattrs; |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 72 | unsigned int ia_valid = iattr->ia_valid; |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 73 | |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 74 | sd_attrs = sd->s_iattr; |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 75 | |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 76 | if (!sd_attrs) { |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 77 | /* setting attributes for the first time, allocate now */ |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 78 | sd_attrs = sysfs_init_inode_attrs(sd); |
| 79 | if (!sd_attrs) |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 80 | return -ENOMEM; |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 81 | sd->s_iattr = sd_attrs; |
| 82 | } else { |
| 83 | /* attributes were changed at least once in past */ |
| 84 | iattrs = &sd_attrs->ia_iattr; |
| 85 | |
| 86 | if (ia_valid & ATTR_UID) |
| 87 | iattrs->ia_uid = iattr->ia_uid; |
| 88 | if (ia_valid & ATTR_GID) |
| 89 | iattrs->ia_gid = iattr->ia_gid; |
| 90 | if (ia_valid & ATTR_ATIME) |
Eric W. Biederman | 4be3df2 | 2009-11-07 23:27:03 -0800 | [diff] [blame] | 91 | iattrs->ia_atime = iattr->ia_atime; |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 92 | if (ia_valid & ATTR_MTIME) |
Eric W. Biederman | 4be3df2 | 2009-11-07 23:27:03 -0800 | [diff] [blame] | 93 | iattrs->ia_mtime = iattr->ia_mtime; |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 94 | if (ia_valid & ATTR_CTIME) |
Eric W. Biederman | 4be3df2 | 2009-11-07 23:27:03 -0800 | [diff] [blame] | 95 | iattrs->ia_ctime = iattr->ia_ctime; |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 96 | if (ia_valid & ATTR_MODE) { |
| 97 | umode_t mode = iattr->ia_mode; |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 98 | iattrs->ia_mode = sd->s_mode = mode; |
| 99 | } |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 100 | } |
Eric W. Biederman | 35df63c | 2009-11-20 16:08:50 -0800 | [diff] [blame^] | 101 | return 0; |
| 102 | } |
| 103 | |
| 104 | int sysfs_setattr(struct dentry *dentry, struct iattr *iattr) |
| 105 | { |
| 106 | struct inode *inode = dentry->d_inode; |
| 107 | struct sysfs_dirent *sd = dentry->d_fsdata; |
| 108 | int error; |
| 109 | |
| 110 | if (!sd) |
| 111 | return -EINVAL; |
| 112 | |
| 113 | error = inode_change_ok(inode, iattr); |
| 114 | if (error) |
| 115 | return error; |
| 116 | |
| 117 | iattr->ia_valid &= ~ATTR_SIZE; /* ignore size changes */ |
| 118 | if (iattr->ia_valid & ATTR_MODE) { |
| 119 | if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID)) |
| 120 | iattr->ia_mode &= ~S_ISGID; |
| 121 | } |
| 122 | |
| 123 | error = inode_setattr(inode, iattr); |
| 124 | if (error) |
| 125 | return error; |
| 126 | |
| 127 | mutex_lock(&sysfs_mutex); |
| 128 | error = sysfs_sd_setattr(sd, iattr); |
| 129 | mutex_unlock(&sysfs_mutex); |
| 130 | |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 131 | return error; |
| 132 | } |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 133 | |
Eric W. Biederman | f44d3e7 | 2009-11-07 23:26:59 -0800 | [diff] [blame] | 134 | static int sysfs_sd_setsecdata(struct sysfs_dirent *sd, void **secdata, u32 *secdata_len) |
| 135 | { |
| 136 | struct sysfs_inode_attrs *iattrs; |
| 137 | void *old_secdata; |
| 138 | size_t old_secdata_len; |
| 139 | |
| 140 | iattrs = sd->s_iattr; |
| 141 | if (!iattrs) |
| 142 | iattrs = sysfs_init_inode_attrs(sd); |
| 143 | if (!iattrs) |
| 144 | return -ENOMEM; |
| 145 | |
| 146 | old_secdata = iattrs->ia_secdata; |
| 147 | old_secdata_len = iattrs->ia_secdata_len; |
| 148 | |
| 149 | iattrs->ia_secdata = *secdata; |
| 150 | iattrs->ia_secdata_len = *secdata_len; |
| 151 | |
| 152 | *secdata = old_secdata; |
| 153 | *secdata_len = old_secdata_len; |
| 154 | return 0; |
| 155 | } |
| 156 | |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 157 | int sysfs_setxattr(struct dentry *dentry, const char *name, const void *value, |
| 158 | size_t size, int flags) |
| 159 | { |
| 160 | struct sysfs_dirent *sd = dentry->d_fsdata; |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 161 | void *secdata; |
| 162 | int error; |
| 163 | u32 secdata_len = 0; |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 164 | |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 165 | if (!sd) |
| 166 | return -EINVAL; |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 167 | |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 168 | if (!strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN)) { |
| 169 | const char *suffix = name + XATTR_SECURITY_PREFIX_LEN; |
| 170 | error = security_inode_setsecurity(dentry->d_inode, suffix, |
| 171 | value, size, flags); |
| 172 | if (error) |
| 173 | goto out; |
| 174 | error = security_inode_getsecctx(dentry->d_inode, |
| 175 | &secdata, &secdata_len); |
| 176 | if (error) |
| 177 | goto out; |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 178 | |
Eric W. Biederman | f44d3e7 | 2009-11-07 23:26:59 -0800 | [diff] [blame] | 179 | mutex_lock(&sysfs_mutex); |
| 180 | error = sysfs_sd_setsecdata(sd, &secdata, &secdata_len); |
| 181 | mutex_unlock(&sysfs_mutex); |
| 182 | |
| 183 | if (secdata) |
| 184 | security_release_secctx(secdata, secdata_len); |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 185 | } else |
| 186 | return -EINVAL; |
| 187 | out: |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 188 | return error; |
| 189 | } |
| 190 | |
Maneesh Soni | 8215534 | 2005-05-31 10:39:52 +0530 | [diff] [blame] | 191 | static inline void set_default_inode_attr(struct inode * inode, mode_t mode) |
| 192 | { |
| 193 | inode->i_mode = mode; |
Maneesh Soni | 8215534 | 2005-05-31 10:39:52 +0530 | [diff] [blame] | 194 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; |
| 195 | } |
| 196 | |
| 197 | static inline void set_inode_attr(struct inode * inode, struct iattr * iattr) |
| 198 | { |
| 199 | inode->i_mode = iattr->ia_mode; |
| 200 | inode->i_uid = iattr->ia_uid; |
| 201 | inode->i_gid = iattr->ia_gid; |
| 202 | inode->i_atime = iattr->ia_atime; |
| 203 | inode->i_mtime = iattr->ia_mtime; |
| 204 | inode->i_ctime = iattr->ia_ctime; |
| 205 | } |
| 206 | |
Arjan van de Ven | 232ba9d | 2006-07-12 09:03:06 -0700 | [diff] [blame] | 207 | |
| 208 | /* |
| 209 | * sysfs has a different i_mutex lock order behavior for i_mutex than other |
| 210 | * filesystems; sysfs i_mutex is called in many places with subsystem locks |
| 211 | * held. At the same time, many of the VFS locking rules do not apply to |
| 212 | * sysfs at all (cross directory rename for example). To untangle this mess |
| 213 | * (which gives false positives in lockdep), we're giving sysfs inodes their |
| 214 | * own class for i_mutex. |
| 215 | */ |
| 216 | static struct lock_class_key sysfs_inode_imutex_key; |
| 217 | |
Eric W. Biederman | 372e88b | 2007-08-20 21:36:29 +0900 | [diff] [blame] | 218 | static int sysfs_count_nlink(struct sysfs_dirent *sd) |
| 219 | { |
| 220 | struct sysfs_dirent *child; |
| 221 | int nr = 0; |
| 222 | |
Tejun Heo | bc747f3 | 2007-09-20 16:05:12 +0900 | [diff] [blame] | 223 | for (child = sd->s_dir.children; child; child = child->s_sibling) |
Eric W. Biederman | 372e88b | 2007-08-20 21:36:29 +0900 | [diff] [blame] | 224 | if (sysfs_type(child) == SYSFS_DIR) |
| 225 | nr++; |
| 226 | |
| 227 | return nr + 2; |
| 228 | } |
| 229 | |
Tejun Heo | bc37e28 | 2007-07-18 14:30:28 +0900 | [diff] [blame] | 230 | static void sysfs_init_inode(struct sysfs_dirent *sd, struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | { |
Eric W. Biederman | 372e88b | 2007-08-20 21:36:29 +0900 | [diff] [blame] | 232 | struct bin_attribute *bin_attr; |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 233 | struct sysfs_inode_attrs *iattrs; |
Eric W. Biederman | 372e88b | 2007-08-20 21:36:29 +0900 | [diff] [blame] | 234 | |
Eric W. Biederman | 04256b4 | 2009-02-11 13:20:23 -0800 | [diff] [blame] | 235 | inode->i_private = sysfs_get(sd); |
Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 236 | inode->i_mapping->a_ops = &sysfs_aops; |
| 237 | inode->i_mapping->backing_dev_info = &sysfs_backing_dev_info; |
| 238 | inode->i_op = &sysfs_inode_operations; |
| 239 | inode->i_ino = sd->s_ino; |
| 240 | lockdep_set_class(&inode->i_mutex, &sysfs_inode_imutex_key); |
Maneesh Soni | 8215534 | 2005-05-31 10:39:52 +0530 | [diff] [blame] | 241 | |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 242 | iattrs = sd->s_iattr; |
| 243 | if (iattrs) { |
Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 244 | /* sysfs_dirent has non-default attributes |
| 245 | * get them for the new inode from persistent copy |
| 246 | * in sysfs_dirent |
| 247 | */ |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 248 | set_inode_attr(inode, &iattrs->ia_iattr); |
| 249 | if (iattrs->ia_secdata) |
| 250 | security_inode_notifysecctx(inode, |
| 251 | iattrs->ia_secdata, |
| 252 | iattrs->ia_secdata_len); |
Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 253 | } else |
| 254 | set_default_inode_attr(inode, sd->s_mode); |
Eric W. Biederman | 372e88b | 2007-08-20 21:36:29 +0900 | [diff] [blame] | 255 | |
Eric W. Biederman | 372e88b | 2007-08-20 21:36:29 +0900 | [diff] [blame] | 256 | /* initialize inode according to type */ |
| 257 | switch (sysfs_type(sd)) { |
Eric W. Biederman | 372e88b | 2007-08-20 21:36:29 +0900 | [diff] [blame] | 258 | case SYSFS_DIR: |
| 259 | inode->i_op = &sysfs_dir_inode_operations; |
| 260 | inode->i_fop = &sysfs_dir_operations; |
| 261 | inode->i_nlink = sysfs_count_nlink(sd); |
| 262 | break; |
| 263 | case SYSFS_KOBJ_ATTR: |
| 264 | inode->i_size = PAGE_SIZE; |
| 265 | inode->i_fop = &sysfs_file_operations; |
| 266 | break; |
| 267 | case SYSFS_KOBJ_BIN_ATTR: |
Tejun Heo | b1fc3d6 | 2007-09-20 16:05:11 +0900 | [diff] [blame] | 268 | bin_attr = sd->s_bin_attr.bin_attr; |
Eric W. Biederman | 372e88b | 2007-08-20 21:36:29 +0900 | [diff] [blame] | 269 | inode->i_size = bin_attr->size; |
| 270 | inode->i_fop = &bin_fops; |
| 271 | break; |
| 272 | case SYSFS_KOBJ_LINK: |
| 273 | inode->i_op = &sysfs_symlink_inode_operations; |
| 274 | break; |
| 275 | default: |
| 276 | BUG(); |
| 277 | } |
| 278 | |
| 279 | unlock_new_inode(inode); |
Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | /** |
Tejun Heo | 8312a8d | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 283 | * sysfs_get_inode - get inode for sysfs_dirent |
Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 284 | * @sd: sysfs_dirent to allocate inode for |
| 285 | * |
Tejun Heo | 8312a8d | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 286 | * Get inode for @sd. If such inode doesn't exist, a new inode |
| 287 | * is allocated and basics are initialized. New inode is |
| 288 | * returned locked. |
Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 289 | * |
| 290 | * LOCKING: |
| 291 | * Kernel thread context (may sleep). |
| 292 | * |
| 293 | * RETURNS: |
| 294 | * Pointer to allocated inode on success, NULL on failure. |
| 295 | */ |
Tejun Heo | 8312a8d | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 296 | struct inode * sysfs_get_inode(struct sysfs_dirent *sd) |
Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 297 | { |
| 298 | struct inode *inode; |
| 299 | |
Tejun Heo | 8312a8d | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 300 | inode = iget_locked(sysfs_sb, sd->s_ino); |
| 301 | if (inode && (inode->i_state & I_NEW)) |
Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 302 | sysfs_init_inode(sd, inode); |
| 303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | return inode; |
| 305 | } |
| 306 | |
Eric W. Biederman | 04256b4 | 2009-02-11 13:20:23 -0800 | [diff] [blame] | 307 | /* |
| 308 | * The sysfs_dirent serves as both an inode and a directory entry for sysfs. |
| 309 | * To prevent the sysfs inode numbers from being freed prematurely we take a |
| 310 | * reference to sysfs_dirent from the sysfs inode. A |
| 311 | * super_operations.delete_inode() implementation is needed to drop that |
| 312 | * reference upon inode destruction. |
| 313 | */ |
| 314 | void sysfs_delete_inode(struct inode *inode) |
| 315 | { |
| 316 | struct sysfs_dirent *sd = inode->i_private; |
| 317 | |
| 318 | truncate_inode_pages(&inode->i_data, 0); |
| 319 | clear_inode(inode); |
| 320 | sysfs_put(sd); |
| 321 | } |
| 322 | |
Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 323 | int sysfs_hash_and_remove(struct sysfs_dirent *dir_sd, const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | { |
Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 325 | struct sysfs_addrm_cxt acxt; |
Tejun Heo | 41fc1c2 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 326 | struct sysfs_dirent *sd; |
Greg Kroah-Hartman | 641e6f3 | 2006-03-16 15:44:26 -0800 | [diff] [blame] | 327 | |
Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 328 | if (!dir_sd) |
Randy.Dunlap | 995982c | 2006-07-10 23:05:25 -0700 | [diff] [blame] | 329 | return -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 331 | sysfs_addrm_start(&acxt, dir_sd); |
Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 332 | |
Tejun Heo | 41fc1c2 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 333 | sd = sysfs_find_dirent(dir_sd, name); |
| 334 | if (sd) |
| 335 | sysfs_remove_one(&acxt, sd); |
Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 336 | |
Tejun Heo | 990e53f | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 337 | sysfs_addrm_finish(&acxt); |
| 338 | |
| 339 | if (sd) |
Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 340 | return 0; |
Tejun Heo | 990e53f | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 341 | else |
| 342 | return -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | } |