diff options
| author | Akira Fujita <a-fujita@rs.jp.nec.com> | 2009-09-05 22:46:29 -0400 |
|---|---|---|
| committer | Theodore Ts'o <tytso@mit.edu> | 2009-09-05 22:46:29 -0400 |
| commit | 8d6669133d8cdbb7cbe0e1f0f3744e7802a84afe (patch) | |
| tree | ab4799f9299037ecb41de56bc1ad0b8c946c30f0 | |
| parent | daea696dbac0e33af3cfe304efbfb8d74e0effe6 (diff) | |
ext4: Return exchanged blocks count to user space in failure
Return exchanged blocks count (moved_len) to user space,
if ext4_move_extents() failed on the way.
Signed-off-by: Akira Fujita <a-fujita@rs.jp.nec.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
| -rw-r--r-- | fs/ext4/ioctl.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/ext4/ioctl.c b/fs/ext4/ioctl.c index 7050a9cd04a4..c1cdf613e725 100644 --- a/fs/ext4/ioctl.c +++ b/fs/ext4/ioctl.c | |||
| @@ -243,10 +243,9 @@ setversion_out: | |||
| 243 | me.donor_start, me.len, &me.moved_len); | 243 | me.donor_start, me.len, &me.moved_len); |
| 244 | fput(donor_filp); | 244 | fput(donor_filp); |
| 245 | 245 | ||
| 246 | if (!err) | 246 | if (copy_to_user((struct move_extent *)arg, &me, sizeof(me))) |
| 247 | if (copy_to_user((struct move_extent *)arg, | 247 | return -EFAULT; |
| 248 | &me, sizeof(me))) | 248 | |
| 249 | return -EFAULT; | ||
| 250 | return err; | 249 | return err; |
| 251 | } | 250 | } |
| 252 | 251 | ||
