aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@sandeen.net>2013-10-11 14:12:31 -0500
committerBen Myers <bpm@sgi.com>2013-10-17 13:31:25 -0500
commit31625f28ad7be67701dc4cefcf52087addd88af4 (patch)
treefcfbb1cb1bff5363bac0d8f2f29d389b82b5bceb /fs/xfs
parentxfs: remove newlines from strings passed to __xfs_printk (diff)
downloadlinux-dev-31625f28ad7be67701dc4cefcf52087addd88af4.tar.xz
linux-dev-31625f28ad7be67701dc4cefcf52087addd88af4.zip
xfs: don't emit corruption noise on fs probes
If we get EWRONGFS due to probing of non-xfs filesystems, there's no need to issue the scary corruption error and backtrace. Signed-off-by: Eric Sandeen <sandeen@redhat.com> Reviewed-by: Mark Tinguely <tinguely@sgi.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r--fs/xfs/xfs_sb.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/xfs/xfs_sb.c b/fs/xfs/xfs_sb.c
index a89d0bcc7959..b4762279bb78 100644
--- a/fs/xfs/xfs_sb.c
+++ b/fs/xfs/xfs_sb.c
@@ -624,8 +624,9 @@ xfs_sb_read_verify(
out_error:
if (error) {
- XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW,
- mp, bp->b_addr);
+ if (error != EWRONGFS)
+ XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW,
+ mp, bp->b_addr);
xfs_buf_ioerror(bp, error);
}
}