aboutsummaryrefslogtreecommitdiff
path: root/fs/xfs/libxfs
diff options
context:
space:
mode:
authorGravatar Eric Sandeen <sandeen@redhat.com> 2017-03-28 14:54:29 -0700
committerGravatar Darrick J. Wong <darrick.wong@oracle.com> 2017-04-03 15:18:16 -0700
commitbc593eebfd66838a3022ac92782665fbcafc412e (patch)
treef88e65e7f606dde8ae494b2042bc4ad2577caf76 /fs/xfs/libxfs
parentxfs: remove the ISUNWRITTEN macro (diff)
downloadlinux-bc593eebfd66838a3022ac92782665fbcafc412e.tar.gz
linux-bc593eebfd66838a3022ac92782665fbcafc412e.tar.bz2
linux-bc593eebfd66838a3022ac92782665fbcafc412e.zip
xfs: fix up inode validation failure message
"xfs_iread: validation failed for inode 96 failed" One "failed" seems like enough. Signed-off-by: Eric Sandeen <sandeen@redhat.com> Reviewed-by: Alex Elder <elder@linaro.org> Reviewed-by: Bill O'Donnell <billodo@redhat.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/libxfs')
-rw-r--r--fs/xfs/libxfs/xfs_inode_buf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_inode_buf.c b/fs/xfs/libxfs/xfs_inode_buf.c
index d93f9d918cfc..09c3d1aecef2 100644
--- a/fs/xfs/libxfs/xfs_inode_buf.c
+++ b/fs/xfs/libxfs/xfs_inode_buf.c
@@ -508,7 +508,7 @@ xfs_iread(
/* even unallocated inodes are verified */
if (!xfs_dinode_verify(mp, ip->i_ino, dip)) {
- xfs_alert(mp, "%s: validation failed for inode %lld failed",
+ xfs_alert(mp, "%s: validation failed for inode %lld",
__func__, ip->i_ino);
XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, dip);