diff options
| author | 2016-01-05 08:08:35 +1100 | |
|---|---|---|
| committer | 2016-01-05 08:08:35 +1100 | |
| commit | 7eeabbd4b6b69f3f6cb75730f17804b714bd853b (patch) | |
| tree | 9acbd170426728ea53f1d12ebae6c22b100f78de /fs/xfs/xfs_error.c | |
| parent | xfs: debug mode log record crc error injection (diff) | |
| parent | XFS: Use a signed return type for suffix_kstrtoint() (diff) | |
| download | wireguard-linux-7eeabbd4b6b69f3f6cb75730f17804b714bd853b.tar.xz wireguard-linux-7eeabbd4b6b69f3f6cb75730f17804b714bd853b.zip | |
Merge branch 'xfs-misc-fixes-for-4.5' into for-next
Diffstat (limited to 'fs/xfs/xfs_error.c')
| -rw-r--r-- | fs/xfs/xfs_error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_error.c b/fs/xfs/xfs_error.c index 74d0e5966ebc..88693a98fac5 100644 --- a/fs/xfs/xfs_error.c +++ b/fs/xfs/xfs_error.c @@ -164,9 +164,9 @@ xfs_verifier_error( { struct xfs_mount *mp = bp->b_target->bt_mount; - xfs_alert(mp, "Metadata %s detected at %pF, block 0x%llx", + xfs_alert(mp, "Metadata %s detected at %pF, %s block 0x%llx", bp->b_error == -EFSBADCRC ? "CRC error" : "corruption", - __return_address, bp->b_bn); + __return_address, bp->b_ops->name, bp->b_bn); xfs_alert(mp, "Unmount and run xfs_repair"); |
