* [PATCH] Fix the error handling in direct I/O
@ 2005-06-22 12:49 Hifumi Hisashi
2005-06-24 22:55 ` Andrew Morton
0 siblings, 1 reply; 2+ messages in thread
From: Hifumi Hisashi @ 2005-06-22 12:49 UTC (permalink / raw)
To: akpm, sct, adilger; +Cc: linux-fsdevel, linux-kernel
Hello.
I fixed a bug on error handling in the direct I/O function.
Currenlty, if a file is opened with the O_DIRECT|O_SYNC flag,
write() syscall cannot receive the EIO error just after
I/O error(SCSI cable is disconnected etc.) occur.
Return values of other points that call generic_osync_inode()
are treated appropriately.
With the following patch, this problem was fixed.
Please apply this patch.
Thanks,
Signed-off-by: Hisashi Hifumi <hifumi.hisashi@lab.ntt.co.jp>
diff -Nru linux-2.6.12/mm/filemap.c linux-2.6.12_fix/mm/filemap.c
--- linux-2.6.12/mm/filemap.c 2005-06-22 17:21:21.000000000 +0900
+++ linux-2.6.12_fix/mm/filemap.c 2005-06-22 20:26:34.000000000 +0900
@@ -1927,8 +1927,12 @@
* i_sem is held, which protects generic_osync_inode() from
* livelocking.
*/
- if (written >= 0 && file->f_flags & O_SYNC)
- generic_osync_inode(inode, mapping, OSYNC_METADATA);
+ if (written >= 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
+ int err;
+ err = generic_osync_inode(inode, mapping, OSYNC_METADATA);
+ if (err < 0)
+ written = err;
+ }
if (written == count && !is_sync_kiocb(iocb))
written = -EIOCBQUEUED;
return written;
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] Fix the error handling in direct I/O
2005-06-22 12:49 [PATCH] Fix the error handling in direct I/O Hifumi Hisashi
@ 2005-06-24 22:55 ` Andrew Morton
0 siblings, 0 replies; 2+ messages in thread
From: Andrew Morton @ 2005-06-24 22:55 UTC (permalink / raw)
To: Hifumi Hisashi; +Cc: sct, adilger, linux-fsdevel, linux-kernel, linux-aio
Hifumi Hisashi <hifumi.hisashi@lab.ntt.co.jp> wrote:
>
> Hello.
>
> I fixed a bug on error handling in the direct I/O function.
> Currenlty, if a file is opened with the O_DIRECT|O_SYNC flag,
> write() syscall cannot receive the EIO error just after
> I/O error(SCSI cable is disconnected etc.) occur.
>
> Return values of other points that call generic_osync_inode()
> are treated appropriately.
>
> With the following patch, this problem was fixed.
> Please apply this patch.
>
> Thanks,
>
>
> Signed-off-by: Hisashi Hifumi <hifumi.hisashi@lab.ntt.co.jp>
>
> diff -Nru linux-2.6.12/mm/filemap.c linux-2.6.12_fix/mm/filemap.c
> --- linux-2.6.12/mm/filemap.c 2005-06-22 17:21:21.000000000 +0900
> +++ linux-2.6.12_fix/mm/filemap.c 2005-06-22 20:26:34.000000000 +0900
> @@ -1927,8 +1927,12 @@
> * i_sem is held, which protects generic_osync_inode() from
> * livelocking.
> */
> - if (written >= 0 && file->f_flags & O_SYNC)
> - generic_osync_inode(inode, mapping, OSYNC_METADATA);
> + if (written >= 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
> + int err;
> + err = generic_osync_inode(inode, mapping, OSYNC_METADATA);
> + if (err < 0)
> + written = err;
> + }
> if (written == count && !is_sync_kiocb(iocb))
> written = -EIOCBQUEUED;
> return written;
Yes, I suppose so.
I note that generic_file_aio_write_nolock() for O_SYNC or IS_SYNC will end
up calling generic_osync_inode() twice. Once in sync_page_range_nolock()
and once in __generic_file_aio_write_nolock->generic_file_direct_write or
in __generic_file_aio_write_nolock->generic_file_buffered_write
It's all a bit of a mess. I guess we should sit down and work out where we
actually want to do all this syncing and get it done consistently and
completely, all at the same level. A filemap.c call graph would be needed :(
--
To unsubscribe, send a message with 'unsubscribe linux-aio' in
the body to majordomo@kvack.org. For more info on Linux AIO,
see: http://www.kvack.org/aio/
Don't email: <a href=mailto:"aart@kvack.org">aart@kvack.org</a>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-06-24 22:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-22 12:49 [PATCH] Fix the error handling in direct I/O Hifumi Hisashi
2005-06-24 22:55 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).