diff options
author | jiangyiwen <jiangyiwen@huawei.com> | 2014-12-10 15:42:02 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-10 17:41:03 -0800 |
commit | 61fb9ea4b3e1f22341f7d817db18884062b08601 (patch) | |
tree | 8af83e034d83e50a93e22cc11edf98ad1ebd995a /fs/ocfs2/dir.c | |
parent | d1e78238741491d24177d99453091439c90ac70e (diff) | |
download | op-kernel-dev-61fb9ea4b3e1f22341f7d817db18884062b08601.zip op-kernel-dev-61fb9ea4b3e1f22341f7d817db18884062b08601.tar.gz |
ocfs2: do not set filesystem readonly if link down
Do not set the filesystem readonly if the storage link is down. In this
case, metadata is not corrupted and only -EIO is returned. And if it is
indeed corrupted metadata, it has already called ocfs2_error() in
ocfs2_validate_inode_block().
Signed-off-by: Yiwen Jiang <jiangyiwen@huawei.com>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Mark Fasheh <mfasheh@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ocfs2/dir.c')
-rw-r--r-- | fs/ocfs2/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/dir.c b/fs/ocfs2/dir.c index 0717662..e6dc028 100644 --- a/fs/ocfs2/dir.c +++ b/fs/ocfs2/dir.c @@ -744,7 +744,7 @@ restart: if (ocfs2_read_dir_block(dir, block, &bh, 0)) { /* read error, skip block & hope for the best. * ocfs2_read_dir_block() has released the bh. */ - ocfs2_error(dir->i_sb, "reading directory %llu, " + mlog(ML_ERROR, "reading directory %llu, " "offset %lu\n", (unsigned long long)OCFS2_I(dir)->ip_blkno, block); |