Skip to content

Commit

Permalink
[PATCH] sysfs: if show/store is missing return -EIO
Browse files Browse the repository at this point in the history
sysfs: if attribute does not implement show or store method
       read/write should return -EIO instead of 0 or -EINVAL.

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Dmitry Torokhov authored and Greg Kroah-Hartman committed Jun 20, 2005
1 parent d48593b commit c76d0ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions fs/sysfs/bin.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fill_read(struct dentry *dentry, char *buffer, loff_t off, size_t count)
struct kobject * kobj = to_kobj(dentry->d_parent);

if (!attr->read)
return -EINVAL;
return -EIO;

return attr->read(kobj, buffer, off, count);
}
Expand Down Expand Up @@ -71,7 +71,7 @@ flush_write(struct dentry *dentry, char *buffer, loff_t offset, size_t count)
struct kobject *kobj = to_kobj(dentry->d_parent);

if (!attr->write)
return -EINVAL;
return -EIO;

return attr->write(kobj, buffer, offset, count);
}
Expand Down
4 changes: 2 additions & 2 deletions fs/sysfs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ subsys_attr_show(struct kobject * kobj, struct attribute * attr, char * page)
{
struct subsystem * s = to_subsys(kobj);
struct subsys_attribute * sattr = to_sattr(attr);
ssize_t ret = 0;
ssize_t ret = -EIO;

if (sattr->show)
ret = sattr->show(s,page);
Expand All @@ -36,7 +36,7 @@ subsys_attr_store(struct kobject * kobj, struct attribute * attr,
{
struct subsystem * s = to_subsys(kobj);
struct subsys_attribute * sattr = to_sattr(attr);
ssize_t ret = 0;
ssize_t ret = -EIO;

if (sattr->store)
ret = sattr->store(s,page,count);
Expand Down

0 comments on commit c76d0ab

Please sign in to comment.