diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-25 00:10:01 -0400 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-06-29 08:51:07 -0400 |
commit | ba9863127cdf9e438f277e15533bb9ebff87897d (patch) | |
tree | fc86a6e443840ca6bfdfb0f177036edc188bc851 /fs/iomap | |
parent | 3b60d53df07fc67422cb7cadd1c2c6df720a1922 (diff) | |
download | linux-ba9863127cdf9e438f277e15533bb9ebff87897d.tar.gz linux-ba9863127cdf9e438f277e15533bb9ebff87897d.tar.bz2 linux-ba9863127cdf9e438f277e15533bb9ebff87897d.zip |
iomap: Remove test for folio error
Just because there has been a read error doesn't mean we should avoid
marking this part of the folio as uptodate. Indeed, it may overwrite
the error part of the folio and let us mark the entire folio uptodate.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Diffstat (limited to 'fs/iomap')
-rw-r--r-- | fs/iomap/buffered-io.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c index d2a9f699e17e..66278a14bfa7 100644 --- a/fs/iomap/buffered-io.c +++ b/fs/iomap/buffered-io.c @@ -154,9 +154,6 @@ static void iomap_iop_set_range_uptodate(struct folio *folio, static void iomap_set_range_uptodate(struct folio *folio, struct iomap_page *iop, size_t off, size_t len) { - if (folio_test_error(folio)) - return; - if (iop) iomap_iop_set_range_uptodate(folio, iop, off, len); else |