diff mbox series

xfs: show error code when printing writeback error messages.

Message ID 1564653826-8916-1-git-send-email-penguin-kernel@I-love.SAKURA.ne.jp (mailing list archive)
State New, archived
Headers show
Series xfs: show error code when printing writeback error messages. | expand

Commit Message

Tetsuo Handa Aug. 1, 2019, 10:03 a.m. UTC
Even without backtraces, including error code should be helpful.

  [  630.162595][ T9218] XFS (sda1): writeback error -12 on sector 131495992
  [  631.718685][ T9432] XFS (sda1): writeback error -12 on sector 131503928
  [  632.015588][  T442] XFS (sda1): writeback error -12 on sector 157773936

Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
---
 fs/xfs/xfs_aops.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Dave Chinner Aug. 1, 2019, 10:38 a.m. UTC | #1
On Thu, Aug 01, 2019 at 07:03:46PM +0900, Tetsuo Handa wrote:
> Even without backtraces, including error code should be helpful.
> 
>   [  630.162595][ T9218] XFS (sda1): writeback error -12 on sector 131495992
>   [  631.718685][ T9432] XFS (sda1): writeback error -12 on sector 131503928
>   [  632.015588][  T442] XFS (sda1): writeback error -12 on sector 157773936
> 
> Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
> ---
>  fs/xfs/xfs_aops.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c
> index f16d5f196c6b..d2c9076643cf 100644
> --- a/fs/xfs/xfs_aops.c
> +++ b/fs/xfs/xfs_aops.c
> @@ -112,7 +112,7 @@ xfs_destroy_ioend(
>  
>  	if (unlikely(error && !quiet)) {
>  		xfs_err_ratelimited(XFS_I(inode)->i_mount,
> -			"writeback error on sector %llu", start);
> +			"writeback error %d on sector %llu", error, start);

If you are going to do this, make the error message properly useful.
Report the inode number and the ioend offset and length so we know
what file and where in the file the writeback failure occurred.

Cheers,

Dave.
Darrick J. Wong Aug. 26, 2019, 7:01 p.m. UTC | #2
On Thu, Aug 01, 2019 at 08:38:51PM +1000, Dave Chinner wrote:
> On Thu, Aug 01, 2019 at 07:03:46PM +0900, Tetsuo Handa wrote:
> > Even without backtraces, including error code should be helpful.
> > 
> >   [  630.162595][ T9218] XFS (sda1): writeback error -12 on sector 131495992
> >   [  631.718685][ T9432] XFS (sda1): writeback error -12 on sector 131503928
> >   [  632.015588][  T442] XFS (sda1): writeback error -12 on sector 157773936
> > 
> > Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
> > ---
> >  fs/xfs/xfs_aops.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c
> > index f16d5f196c6b..d2c9076643cf 100644
> > --- a/fs/xfs/xfs_aops.c
> > +++ b/fs/xfs/xfs_aops.c
> > @@ -112,7 +112,7 @@ xfs_destroy_ioend(
> >  
> >  	if (unlikely(error && !quiet)) {
> >  		xfs_err_ratelimited(XFS_I(inode)->i_mount,
> > -			"writeback error on sector %llu", start);
> > +			"writeback error %d on sector %llu", error, start);
> 
> If you are going to do this, make the error message properly useful.
> Report the inode number and the ioend offset and length so we know
> what file and where in the file the writeback failure occurred.

Ping?

--D

> Cheers,
> 
> Dave.
> -- 
> Dave Chinner
> david@fromorbit.com
diff mbox series

Patch

diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c
index f16d5f196c6b..d2c9076643cf 100644
--- a/fs/xfs/xfs_aops.c
+++ b/fs/xfs/xfs_aops.c
@@ -112,7 +112,7 @@  xfs_destroy_ioend(
 
 	if (unlikely(error && !quiet)) {
 		xfs_err_ratelimited(XFS_I(inode)->i_mount,
-			"writeback error on sector %llu", start);
+			"writeback error %d on sector %llu", error, start);
 	}
 }