diff options
author | Bob Peterson <rpeterso@redhat.com> | 2017-08-16 18:30:06 +0200 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2017-08-25 17:59:09 +0200 |
commit | 942b0cddfbf66295effc9fd879ca85ae10638565 (patch) | |
tree | 09af4106900fa8727cffab3e14d6ca859efe2fa0 /fs/gfs2/super.c | |
parent | gfs2: fix slab corruption during mounting and umounting gfs file system (diff) | |
download | linux-942b0cddfbf66295effc9fd879ca85ae10638565.tar.xz linux-942b0cddfbf66295effc9fd879ca85ae10638565.zip |
GFS2: Withdraw for IO errors writing to the journal or statfs
Before this patch, if GFS2 encountered IO errors while writing to
the journal, it would not report the problem, so they would go
unnoticed, sometimes for many hours. Sometimes this would only be
noticed later, when recovery tried to do journal replay and failed
due to invalid metadata at the blocks that resulted in IO errors.
This patch makes GFS2's log daemon check for IO errors. If it
encounters one, it withdraws from the file system and reports
why in dmesg. A similar action is taken when IO errors occur when
writing to the system statfs file.
These errors are also reported back to any callers of fsync, since
that requires the journal to be flushed. Therefore, any IO errors
that would previously go unnoticed are now noticed and the file
system is withdrawn as early as possible, thus preventing further
file system damage.
Also note that this reintroduces superblock variable sd_log_error,
which Christoph removed with commit f729b66fca.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | fs/gfs2/super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/super.c b/fs/gfs2/super.c index a83fe8260d2e..769841185ce5 100644 --- a/fs/gfs2/super.c +++ b/fs/gfs2/super.c @@ -944,9 +944,9 @@ static int gfs2_sync_fs(struct super_block *sb, int wait) struct gfs2_sbd *sdp = sb->s_fs_info; gfs2_quota_sync(sb, -1); - if (wait && sdp) + if (wait) gfs2_log_flush(sdp, NULL, NORMAL_FLUSH); - return 0; + return sdp->sd_log_error; } void gfs2_freeze_func(struct work_struct *work) |