diff options
author | Guillaume Chazarain <guichaz@yahoo.fr> | 2007-05-08 03:23:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:14:57 -0400 |
commit | 3e9f45bd18191bbd05468b19b7064b8da8262aba (patch) | |
tree | 06c790a9cb1afc83d170447a277e51f5a1a5f303 /mm/vmscan.c | |
parent | c83e44842074a87614c78eca70fa6467b0bc3c4a (diff) |
Factor outstanding I/O error handling
Cleanup: setting an outstanding error on a mapping was open coded too many
times. Factor it out in mapping_set_error().
Signed-off-by: Guillaume Chazarain <guichaz@yahoo.fr>
Cc: Steven Whitehouse <swhiteho@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/vmscan.c')
-rw-r--r-- | mm/vmscan.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/mm/vmscan.c b/mm/vmscan.c index 56651a10c366..1c8e75a1cfcd 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c | |||
@@ -284,12 +284,8 @@ static void handle_write_error(struct address_space *mapping, | |||
284 | struct page *page, int error) | 284 | struct page *page, int error) |
285 | { | 285 | { |
286 | lock_page(page); | 286 | lock_page(page); |
287 | if (page_mapping(page) == mapping) { | 287 | if (page_mapping(page) == mapping) |
288 | if (error == -ENOSPC) | 288 | mapping_set_error(mapping, error); |
289 | set_bit(AS_ENOSPC, &mapping->flags); | ||
290 | else | ||
291 | set_bit(AS_EIO, &mapping->flags); | ||
292 | } | ||
293 | unlock_page(page); | 289 | unlock_page(page); |
294 | } | 290 | } |
295 | 291 | ||