Skip to content

Commit

Permalink
switch EXT4_IOC_MOVE_EXT to fget_light()
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Sep 27, 2012
1 parent 4557c66 commit 6bdf295
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fs/ext4/ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
case EXT4_IOC_MOVE_EXT: {
struct move_extent me;
struct file *donor_filp;
int err;
int err, fput_needed;

if (!(filp->f_mode & FMODE_READ) ||
!(filp->f_mode & FMODE_WRITE))
Expand All @@ -245,7 +245,7 @@ long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
return -EFAULT;
me.moved_len = 0;

donor_filp = fget(me.donor_fd);
donor_filp = fget_light(me.donor_fd, &fput_needed);
if (!donor_filp)
return -EBADF;

Expand Down Expand Up @@ -274,7 +274,7 @@ long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
&me, sizeof(me)))
err = -EFAULT;
mext_out:
fput(donor_filp);
fput_light(donor_filp, fput_needed);
return err;
}

Expand Down

0 comments on commit 6bdf295

Please sign in to comment.