]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ocfs2: fix a typing error in ocfs2_direct_IO_write
authorJoseph Qi <joseph.qi@huawei.com>
Tue, 7 Apr 2015 23:43:52 +0000 (09:43 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 7 Apr 2015 23:43:52 +0000 (09:43 +1000)
Only when direct IO succeeds we need consider zeroing out in case of
cluster not aligned.

Signed-off-by: Joseph Qi <joseph.qi@huawei.com>
Cc: Mark Fasheh <mfasheh@suse.com>
Cc: Joel Becker <jlbec@evilplan.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/ocfs2/aops.c

index 44db1808cdb598df6b91548410b3634480c06c31..0c2848a599c91ad44dd5d307e5a09a677534c4c3 100644 (file)
@@ -771,7 +771,7 @@ static ssize_t ocfs2_direct_IO_write(struct kiocb *iocb,
                        if (ret < 0)
                                mlog_errno(ret);
                }
-       } else if (written < 0 && append_write && !is_overwrite &&
+       } else if (written > 0 && append_write && !is_overwrite &&
                        !cluster_align) {
                u32 p_cpos = 0;
                u32 v_cpos = ocfs2_bytes_to_clusters(osb->sb, offset);