block/gluster: prevent data loss after i/o error
commitd85fa9eb87ba736d2d5ce342fc35f507c8fe29f2
authorJeff Cody <jcody@redhat.com>
Tue, 5 Apr 2016 14:40:09 +0000 (5 10:40 -0400)
committerJeff Cody <jcody@redhat.com>
Tue, 19 Apr 2016 16:24:59 +0000 (19 12:24 -0400)
treeb5526240fd70adc449d032a58edd035c4abc2c3e
parent5d4343e6c2682fb7fe66f1560d1823b5a26e7b2f
block/gluster: prevent data loss after i/o error

Upon receiving an I/O error after an fsync, by default gluster will
dump its cache.  However, QEMU will retry the fsync, which is especially
useful when encountering errors such as ENOSPC when using the werror=stop
option.  When using caching with gluster, however, the last written data
will be lost upon encountering ENOSPC.  Using the write-behind-cache
xlator option of 'resync-failed-syncs-after-fsync' should cause gluster
to retain the cached data after a failed fsync, so that ENOSPC and other
transient errors are recoverable.

Unfortunately, we have no way of knowing if the
'resync-failed-syncs-after-fsync' xlator option is supported, so for now
close the fd and set the BDS driver to NULL upon fsync error.

Signed-off-by: Jeff Cody <jcody@redhat.com>
block/gluster.c
configure