diff options
| author | Alan Stern <stern@rowland.harvard.edu> | 2007-08-16 16:13:06 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-08-22 17:35:36 -0400 |
| commit | 5f1835da79df8607ecbd69f648b5b140b7a0b8ba (patch) | |
| tree | d816ee2f9dcfd3d3a9acfb0fb62841806c8c3bce | |
| parent | 4db29c17643a9968817f252405f495da4f147d55 (diff) | |
sysfs: don't warn on removal of a nonexistent binary file
This patch (as960) removes the error message and stack dump logged by
sysfs_remove_bin_file() when someone tries to remove a nonexistent
file. The warning doesn't seem to be needed, since none of the other
file-, symlink-, or directory-removal routines in sysfs complain in a
comparable way.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Acked-by: Tejun Heo <htejun@gmail.com>
Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
| -rw-r--r-- | fs/sysfs/bin.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/sysfs/bin.c b/fs/sysfs/bin.c index 135353f8a296..5afe2a26f5d8 100644 --- a/fs/sysfs/bin.c +++ b/fs/sysfs/bin.c | |||
| @@ -248,12 +248,7 @@ int sysfs_create_bin_file(struct kobject * kobj, struct bin_attribute * attr) | |||
| 248 | 248 | ||
| 249 | void sysfs_remove_bin_file(struct kobject * kobj, struct bin_attribute * attr) | 249 | void sysfs_remove_bin_file(struct kobject * kobj, struct bin_attribute * attr) |
| 250 | { | 250 | { |
| 251 | if (sysfs_hash_and_remove(kobj->sd, attr->attr.name) < 0) { | 251 | sysfs_hash_and_remove(kobj->sd, attr->attr.name); |
| 252 | printk(KERN_ERR "%s: " | ||
| 253 | "bad dentry or inode or no such file: \"%s\"\n", | ||
| 254 | __FUNCTION__, attr->attr.name); | ||
| 255 | dump_stack(); | ||
| 256 | } | ||
| 257 | } | 252 | } |
| 258 | 253 | ||
| 259 | EXPORT_SYMBOL_GPL(sysfs_create_bin_file); | 254 | EXPORT_SYMBOL_GPL(sysfs_create_bin_file); |
