Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67991
b: refs/heads/master
c: b05f054
h: refs/heads/master
i:
  67989: 7147a14
  67987: 9da9318
  67983: fcc7aad
v: v3
  • Loading branch information
Tejun Heo authored and Greg Kroah-Hartman committed Oct 12, 2007
1 parent 7ad5bb8 commit 2ae88a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b13dc89c5a5bd5e34aadb44c0fb7e870959dcd06
refs/heads/master: b05f0548dabd20433f8c201a0307103721d6a18b
4 changes: 1 addition & 3 deletions trunk/fs/sysfs/bin.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,8 @@ static int open(struct inode * inode, struct file * file)
mutex_init(&bb->mutex);
file->private_data = bb;

/* open succeeded, put active reference and pin attr_sd */
/* open succeeded, put active reference */
sysfs_put_active(attr_sd);
sysfs_get(attr_sd);
return 0;

err_out:
Expand All @@ -211,7 +210,6 @@ static int release(struct inode * inode, struct file * file)

if (bb->mmapped)
sysfs_put_active_two(attr_sd);
sysfs_put(attr_sd);
kfree(bb->buffer);
kfree(bb);
return 0;
Expand Down
6 changes: 1 addition & 5 deletions trunk/fs/sysfs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,8 @@ static int sysfs_open_file(struct inode *inode, struct file *file)
buffer->ops = ops;
file->private_data = buffer;

/* open succeeded, put active references and pin attr_sd */
/* open succeeded, put active references */
sysfs_put_active_two(attr_sd);
sysfs_get(attr_sd);
return 0;

err_out:
Expand All @@ -310,11 +309,8 @@ static int sysfs_open_file(struct inode *inode, struct file *file)

static int sysfs_release(struct inode * inode, struct file * filp)
{
struct sysfs_dirent *attr_sd = filp->f_path.dentry->d_fsdata;
struct sysfs_buffer *buffer = filp->private_data;

sysfs_put(attr_sd);

if (buffer) {
if (buffer->page)
free_page((unsigned long)buffer->page);
Expand Down

0 comments on commit 2ae88a3

Please sign in to comment.