Skip to content

Commit

Permalink
sysfs: kobject_put cleanup
Browse files Browse the repository at this point in the history
This patch removes redundant argument checks for kobject_put().

Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Mariusz Kozlowski authored and Greg Kroah-Hartman committed Feb 7, 2007
1 parent d3fc373 commit f750653
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions fs/sysfs/bin.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ static int open(struct inode * inode, struct file * file)
Error:
module_put(attr->attr.owner);
Done:
if (error && kobj)
if (error)
kobject_put(kobj);
return error;
}
Expand All @@ -158,8 +158,7 @@ static int release(struct inode * inode, struct file * file)
struct bin_attribute * attr = to_bin_attr(file->f_path.dentry);
u8 * buffer = file->private_data;

if (kobj)
kobject_put(kobj);
kobject_put(kobj);
module_put(attr->attr.owner);
kfree(buffer);
return 0;
Expand Down
5 changes: 2 additions & 3 deletions fs/sysfs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ static int sysfs_open_file(struct inode *inode, struct file *file)
error = -EACCES;
module_put(attr->owner);
Done:
if (error && kobj)
if (error)
kobject_put(kobj);
return error;
}
Expand All @@ -375,8 +375,7 @@ static int sysfs_release(struct inode * inode, struct file * filp)

if (buffer)
remove_from_collection(buffer, inode);
if (kobj)
kobject_put(kobj);
kobject_put(kobj);
/* After this point, attr should not be accessed. */
module_put(owner);

Expand Down

0 comments on commit f750653

Please sign in to comment.