diff options
author | Guillaume Chazarain <guichaz@yahoo.fr> | 2007-05-08 00:23:25 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 11:14:57 -0700 |
commit | 3e9f45bd18191bbd05468b19b7064b8da8262aba (patch) | |
tree | 06c790a9cb1afc83d170447a277e51f5a1a5f303 /fs/gfs2/glops.c | |
parent | c83e44842074a87614c78eca70fa6467b0bc3c4a (diff) | |
download | linux-3.10-3e9f45bd18191bbd05468b19b7064b8da8262aba.tar.gz linux-3.10-3e9f45bd18191bbd05468b19b7064b8da8262aba.tar.bz2 linux-3.10-3e9f45bd18191bbd05468b19b7064b8da8262aba.zip |
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 'fs/gfs2/glops.c')
-rw-r--r-- | fs/gfs2/glops.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/gfs2/glops.c b/fs/gfs2/glops.c index 39c8ae23bd9..7b82657a991 100644 --- a/fs/gfs2/glops.c +++ b/fs/gfs2/glops.c @@ -163,10 +163,7 @@ static void inode_go_sync(struct gfs2_glock *gl) if (ip) { struct address_space *mapping = ip->i_inode.i_mapping; int error = filemap_fdatawait(mapping); - if (error == -ENOSPC) - set_bit(AS_ENOSPC, &mapping->flags); - else if (error) - set_bit(AS_EIO, &mapping->flags); + mapping_set_error(mapping, error); } clear_bit(GLF_DIRTY, &gl->gl_flags); gfs2_ail_empty_gl(gl); |