From: Junxiao Bi Date: Tue, 12 Nov 2013 23:06:53 +0000 (-0800) Subject: fs/ocfs2/file.c: fix wrong comment X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f0cb0f0bca233935ac70707d47f5885419a7fd31;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git fs/ocfs2/file.c: fix wrong comment Unwritten extent only exists for file systems which support holes. But the comment said was opposite meaning and also the comment is not very clear, so rephase it. Signed-off-by: Junxiao Bi Cc: Mark Fasheh Cc: Joel Becker Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index 67c037af301a..6fff128cad16 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c @@ -580,7 +580,7 @@ static int __ocfs2_extend_allocation(struct inode *inode, u32 logical_start, int did_quota = 0; /* - * This function only exists for file systems which don't + * Unwritten extent only exists for file systems which * support holes. */ BUG_ON(mark_unwritten && !ocfs2_sparse_alloc(osb));