public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: Brian Foster <bfoster@redhat.com>
To: Eric Sandeen <sandeen@redhat.com>
Cc: xfs@oss.sgi.com
Subject: Re: [PATCH] xfs_repair: print XFS_WANT_CORRUPTED info with -vvv
Date: Thu, 12 Nov 2015 08:12:53 -0500	[thread overview]
Message-ID: <20151112131252.GC5068@bfoster.bfoster> (raw)
In-Reply-To: <5643F4B1.40500@redhat.com>

On Wed, Nov 11, 2015 at 08:08:49PM -0600, Eric Sandeen wrote:
> In the kernel, the XFS_WANT_CORRUPTED_* macros print the
> caller information via XFS_ERROR_REPORT, but in userspace
> this is silenced, because i.e. xfs_repair's job is to find
> and fix corruption, not to complain loudly about it.
> 
> However, there are times when we would like to know if
> we've hit an unexpected corruption point.  To that end,
> make "xfs_repair -vvv" enable noisiness from these macros,
> so that they will print the function and line of the caller.
> 
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> ---

Reviewed-by: Brian Foster <bfoster@redhat.com>

> 
> diff --git a/include/xfs_mount.h b/include/xfs_mount.h
> index 5ec6866..67f3b05 100644
> --- a/include/xfs_mount.h
> +++ b/include/xfs_mount.h
> @@ -143,6 +143,7 @@ typedef struct xfs_perag {
>  #define LIBXFS_MOUNT_32BITINOOPT	0x0004
>  #define LIBXFS_MOUNT_COMPAT_ATTR	0x0008
>  #define LIBXFS_MOUNT_ATTR2		0x0010
> +#define LIBXFS_MOUNT_WANT_CORRUPTED	0x0020
>  
>  #define LIBXFS_BHASHSIZE(sbp) 		(1<<10)
>  
> diff --git a/libxfs/libxfs_priv.h b/libxfs/libxfs_priv.h
> index 9135aac..0f4d3e5 100644
> --- a/libxfs/libxfs_priv.h
> +++ b/libxfs/libxfs_priv.h
> @@ -147,10 +147,25 @@ enum ce { CE_DEBUG, CE_CONT, CE_NOTE, CE_WARN, CE_ALERT, CE_PANIC };
>  #define XFS_TRANS_RESERVE_QUOTA_NBLKS(mp,tp,ip,nblks,ninos,fl)	0
>  #define XFS_TRANS_UNRESERVE_QUOTA_NBLKS(mp,tp,ip,nblks,ninos,fl)	0
>  #define XFS_TEST_ERROR(expr,a,b,c)	( expr )
> -#define XFS_WANT_CORRUPTED_GOTO(mp, expr, l)	\
> -		{ (mp) = (mp); if (!(expr)) { error = -EFSCORRUPTED; goto l; } }
> -#define XFS_WANT_CORRUPTED_RETURN(mp, expr)	\
> -		{ (mp) = (mp); if (!(expr)) { return -EFSCORRUPTED; } }
> +#define XFS_WANT_CORRUPTED_GOTO(mp, expr, l)				\
> +{									\
> +	if (!(expr)) {							\
> +		if ((mp)->m_flags & LIBXFS_MOUNT_WANT_CORRUPTED)	\
> +			printf("WANT_CORRUPTED_GOTO at %s:%d\n",	\
> +				__func__, __LINE__);			\
> +		error = -EFSCORRUPTED;					\
> +		goto l;							\
> +	}								\
> +}
> +#define XFS_WANT_CORRUPTED_RETURN(mp, expr)				\
> +{									\
> +	if (!(expr)) {							\
> +		if ((mp)->m_flags & LIBXFS_MOUNT_WANT_CORRUPTED)	\
> +			printf("WANT_CORRUPTED_RETURN at %s:%d\n",	\
> +				__func__, __LINE__);			\
> +		return -EFSCORRUPTED;					\
> +	}								\
> +}
>  
>  #ifdef __GNUC__
>  #define __return_address	__builtin_return_address(0)
> diff --git a/man/man8/xfs_repair.8 b/man/man8/xfs_repair.8
> index 0394c50..1b4d9e3 100644
> --- a/man/man8/xfs_repair.8
> +++ b/man/man8/xfs_repair.8
> @@ -158,7 +158,7 @@ outputs its progress every 15 minutes. Reporting is only activated when
>  ag_stride is enabled.
>  .TP
>  .B \-v
> -Verbose output.
> +Verbose output.  May be specified multiple times to increase verbosity.
>  .TP
>  .B \-d
>  Repair dangerously. Allow
> diff --git a/repair/xfs_repair.c b/repair/xfs_repair.c
> index bed2ff5..1aeac5b 100644
> --- a/repair/xfs_repair.c
> +++ b/repair/xfs_repair.c
> @@ -695,6 +695,10 @@ main(int argc, char **argv)
>  	}
>  	mp->m_log = &log;
>  
> +	/* Spit out function & line on these corruption macros */
> +	if (verbose > 2)
> +		mp->m_flags |= LIBXFS_MOUNT_WANT_CORRUPTED;
> +
>  	/*
>  	 * set XFS-independent status vars from the mount/sb structure
>  	 */
> 
> 
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

      reply	other threads:[~2015-11-12 13:12 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-12  2:08 [PATCH] xfs_repair: print XFS_WANT_CORRUPTED info with -vvv Eric Sandeen
2015-11-12 13:12 ` Brian Foster [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20151112131252.GC5068@bfoster.bfoster \
    --to=bfoster@redhat.com \
    --cc=sandeen@redhat.com \
    --cc=xfs@oss.sgi.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox