diff options
author | 2020-02-21 07:34:47 -0800 | |
---|---|---|
committer | 2020-03-02 20:55:51 -0800 | |
commit | 13b1f811b14e084579aeb4de89e59a2942d2c2d8 (patch) | |
tree | 96469ce4d15672390715db3eba51de11b7f3a1f6 /fs/xfs/xfs_buf.c | |
parent | xfs: remove the kuid/kgid conversion wrappers (diff) | |
download | linux-dev-13b1f811b14e084579aeb4de89e59a2942d2c2d8.tar.xz linux-dev-13b1f811b14e084579aeb4de89e59a2942d2c2d8.zip |
xfs: ratelimit xfs_buf_ioerror_alert messages
Use printk_ratelimit() to limit the amount of messages printed from
xfs_buf_ioerror_alert. Without that a failing device causes a large
number of errors that doesn't really help debugging the underling
issue.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to '')
-rw-r--r-- | fs/xfs/xfs_buf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_buf.c b/fs/xfs/xfs_buf.c index c805ffae8913..f8e4fee206ff 100644 --- a/fs/xfs/xfs_buf.c +++ b/fs/xfs/xfs_buf.c @@ -1239,7 +1239,7 @@ xfs_buf_ioerror_alert( struct xfs_buf *bp, xfs_failaddr_t func) { - xfs_alert(bp->b_mount, + xfs_alert_ratelimited(bp->b_mount, "metadata I/O error in \"%pS\" at daddr 0x%llx len %d error %d", func, (uint64_t)XFS_BUF_ADDR(bp), bp->b_length, -bp->b_error); |