]> git.baikalelectronics.ru Git - kernel.git/commit
do_generic_file_read: clear page errors when issuing a fresh read of the page
authorJeff Moyer <jmoyer@redhat.com>
Wed, 26 May 2010 15:49:40 +0000 (11:49 -0400)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 26 May 2010 17:20:27 +0000 (10:20 -0700)
commit812e188e245e21c5e41fb1c90dd281a6e96b26e1
tree5665b06dcacf14c2e5e979ed1c7066633b259f80
parentbd59c330b3f52646c0d742a1b00c775687051068
do_generic_file_read: clear page errors when issuing a fresh read of the page

I/O errors can happen due to temporary failures, like multipath
errors or losing network contact with the iSCSI server. Because
of that, the VM will retry readpage on the page.

However, do_generic_file_read does not clear PG_error.  This
causes the system to be unable to actually use the data in the
page cache page, even if the subsequent readpage completes
successfully!

The function filemap_fault has had a ClearPageError before
readpage forever.  This patch simply adds the same to
do_generic_file_read.

Signed-off-by: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Rik van Riel <riel@redhat.com>
Acked-by: Larry Woodman <lwoodman@redhat.com>
Cc: stable@kernel.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/filemap.c