
jack at suse
Oct 6, 2006, 4:55 AM
Post #1 of 1
(176 views)
Permalink
|
|
[PATCH 1/3] Fix IO error reporting on fsync()
|
|
When IO error happens during async write, we have to mark buffer as having IO error too. Otherwise IO error reporting for filesystems like ext2 does not work. Signed-off-by: Jan Kara <jack [at] suse> diff -rupX /home/jack/.kerndiffexclude linux-2.6.18/fs/buffer.c linux-2.6.18-1-mark_error_buffer/fs/buffer.c --- linux-2.6.18/fs/buffer.c 2006-09-27 13:08:34.000000000 +0200 +++ linux-2.6.18-1-mark_error_buffer/fs/buffer.c 2006-10-06 13:05:29.000000000 +0200 @@ -589,6 +589,7 @@ static void end_buffer_async_write(struc bdevname(bh->b_bdev, b)); } set_bit(AS_EIO, &page->mapping->flags); + set_buffer_write_io_error(bh); clear_buffer_uptodate(bh); SetPageError(page); } - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo [at] vger More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|