提交 94412a96 编写于 作者: O OGAWA Hirofumi 提交者: Linus Torvalds

[PATCH] FAT: DIO-write fallback to normal buffered

If the DIO write on FAT is expanding the size, it will be fail by -EINVAL,
because FAT can't handle it now.

This patch fallback it to the normal buffered-write and would return
success.
Signed-off-by: NOGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Acked-by: NJan Kara <jack@suse.cz>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 346fd59b
...@@ -173,10 +173,12 @@ static ssize_t fat_direct_IO(int rw, struct kiocb *iocb, ...@@ -173,10 +173,12 @@ static ssize_t fat_direct_IO(int rw, struct kiocb *iocb,
* *
* But we must fill the remaining area or hole by nul for * But we must fill the remaining area or hole by nul for
* updating ->mmu_private. * updating ->mmu_private.
*
* Return 0, and fallback to normal buffered write.
*/ */
loff_t size = offset + iov_length(iov, nr_segs); loff_t size = offset + iov_length(iov, nr_segs);
if (MSDOS_I(inode)->mmu_private < size) if (MSDOS_I(inode)->mmu_private < size)
return -EINVAL; return 0;
} }
/* /*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册