Skip to content

Commit

Permalink
ext4: release donor reference when EXT4_IOC_MOVE_EXT ioctl fails
Browse files Browse the repository at this point in the history
When the EXT4_IOC_MOVE_EXT ioctl() fails on bigalloc file systems, we
should jump to the 'mext_out' label to release the donor file reference.

Signed-off-by: Djalal Harouni <tixxdz@opendz.org>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
  • Loading branch information
Djalal Harouni authored and Theodore Ts'o committed Sep 27, 2012
1 parent aaf7d73 commit 9b68733
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fs/ext4/ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@ long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
EXT4_FEATURE_RO_COMPAT_BIGALLOC)) {
ext4_msg(sb, KERN_ERR,
"Online defrag not supported with bigalloc");
return -EOPNOTSUPP;
err = -EOPNOTSUPP;
goto mext_out;
}

err = mnt_want_write_file(filp);
Expand Down

0 comments on commit 9b68733

Please sign in to comment.