| To: | Eric Sandeen <sandeen@xxxxxxxxxx> |
|---|---|
| Subject: | [PATCH 3/4] xfs: don't emit corruption noise on fs probes |
| From: | Eric Sandeen <sandeen@xxxxxxxxxxx> |
| Date: | Fri, 11 Oct 2013 14:12:31 -0500 |
| Cc: | xfs-oss <xfs@xxxxxxxxxxx> |
| Delivered-to: | xfs@xxxxxxxxxxx |
| In-reply-to: | <52584C8A.1060808@xxxxxxxxxx> |
| References: | <52584C8A.1060808@xxxxxxxxxx> |
| User-agent: | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 |
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@xxxxxxxxxx>
---
diff --git a/fs/xfs/xfs_sb.c b/fs/xfs/xfs_sb.c
index a5b59d9..d327b2c 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);
}
}
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 2/4] xfs: reject completely bogus remount options, Eric Sandeen |
|---|---|
| Next by Date: | [PATCH 4/4] xfs: don't break from growfs ag update loop on error, Eric Sandeen |
| Previous by Thread: | Re: [PATCH 2/4] xfs: reject completely bogus remount options, Eric Sandeen |
| Next by Thread: | Re: [PATCH 3/4] xfs: don't emit corruption noise on fs probes, Mark Tinguely |
| Indexes: | [Date] [Thread] [Top] [All Lists] |