ocfs2: fix error return code in ocfs2_info_handle_freefrag()

Fix to return a negative error code from the error handling case instead
of 0, as returned elsewhere in this function.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Mark Fasheh <mfasheh@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Wei Yongjun 2013-04-29 15:05:57 -07:00 committed by Linus Torvalds
parent b3e0767abc
commit 7ebab45369
1 changed files with 3 additions and 1 deletions

View File

@ -706,8 +706,10 @@ int ocfs2_info_handle_freefrag(struct inode *inode,
o2info_set_request_filled(&oiff->iff_req);
if (o2info_to_user(*oiff, req))
if (o2info_to_user(*oiff, req)) {
status = -EFAULT;
goto bail;
}
status = 0;
bail: