linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Brian Foster <bfoster@redhat.com>
To: "Darrick J. Wong" <darrick.wong@oracle.com>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 8/8] xfs: report inode health via bulkstat
Date: Thu, 11 Apr 2019 09:10:07 -0400	[thread overview]
Message-ID: <20190411131006.GH2888@bfoster> (raw)
In-Reply-To: <155494717696.1090518.6312243852549172491.stgit@magnolia>

On Wed, Apr 10, 2019 at 06:46:17PM -0700, Darrick J. Wong wrote:
> From: Darrick J. Wong <darrick.wong@oracle.com>
> 
> Use space in the bulkstat ioctl structure to report any problems
> observed with the inode.
> 
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> ---

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

>  fs/xfs/libxfs/xfs_fs.h     |   14 +++++++++++++-
>  fs/xfs/libxfs/xfs_health.h |    1 +
>  fs/xfs/xfs_health.c        |   34 ++++++++++++++++++++++++++++++++++
>  fs/xfs/xfs_itable.c        |    2 ++
>  4 files changed, 50 insertions(+), 1 deletion(-)
> 
> 
> diff --git a/fs/xfs/libxfs/xfs_fs.h b/fs/xfs/libxfs/xfs_fs.h
> index 35d60f8017cd..43a53b03247b 100644
> --- a/fs/xfs/libxfs/xfs_fs.h
> +++ b/fs/xfs/libxfs/xfs_fs.h
> @@ -349,13 +349,25 @@ typedef struct xfs_bstat {
>  #define	bs_projid	bs_projid_lo	/* (previously just bs_projid)	*/
>  	__u16		bs_forkoff;	/* inode fork offset in bytes	*/
>  	__u16		bs_projid_hi;	/* higher part of project id	*/
> -	unsigned char	bs_pad[6];	/* pad space, unused		*/
> +	uint16_t	bs_sick;	/* sick inode metadata		*/
> +	uint16_t	bs_checked;	/* checked inode metadata	*/
> +	unsigned char	bs_pad[2];	/* pad space, unused		*/
>  	__u32		bs_cowextsize;	/* cow extent size		*/
>  	__u32		bs_dmevmask;	/* DMIG event mask		*/
>  	__u16		bs_dmstate;	/* DMIG state info		*/
>  	__u16		bs_aextents;	/* attribute number of extents	*/
>  } xfs_bstat_t;
>  
> +/* bs_sick flags */
> +#define XFS_BS_SICK_INODE	(1 << 0)  /* inode core */
> +#define XFS_BS_SICK_BMBTD	(1 << 1)  /* data fork */
> +#define XFS_BS_SICK_BMBTA	(1 << 2)  /* attr fork */
> +#define XFS_BS_SICK_BMBTC	(1 << 3)  /* cow fork */
> +#define XFS_BS_SICK_DIR		(1 << 4)  /* directory */
> +#define XFS_BS_SICK_XATTR	(1 << 5)  /* extended attributes */
> +#define XFS_BS_SICK_SYMLINK	(1 << 6)  /* symbolic link remote target */
> +#define XFS_BS_SICK_PARENT	(1 << 7)  /* parent pointers */
> +
>  /*
>   * Project quota id helpers (previously projid was 16bit only
>   * and using two 16bit values to hold new 32bit projid was choosen
> diff --git a/fs/xfs/libxfs/xfs_health.h b/fs/xfs/libxfs/xfs_health.h
> index adf9d41843a5..4979bf1f9bcb 100644
> --- a/fs/xfs/libxfs/xfs_health.h
> +++ b/fs/xfs/libxfs/xfs_health.h
> @@ -178,5 +178,6 @@ xfs_inode_is_healthy(struct xfs_inode *ip)
>  void xfs_fsop_geom_health(struct xfs_mount *mp, struct xfs_fsop_geom *geo);
>  void xfs_ag_geom_health(struct xfs_mount *mp, xfs_agnumber_t agno,
>  		struct xfs_ag_geometry *ageo);
> +void xfs_bulkstat_health(struct xfs_inode *ip, struct xfs_bstat *bs);
>  
>  #endif	/* __XFS_HEALTH_H__ */
> diff --git a/fs/xfs/xfs_health.c b/fs/xfs/xfs_health.c
> index 0315b95a8d84..c40b8d9ef6bd 100644
> --- a/fs/xfs/xfs_health.c
> +++ b/fs/xfs/xfs_health.c
> @@ -364,3 +364,37 @@ xfs_ag_geom_health(
>  
>  	xfs_perag_put(pag);
>  }
> +
> +static const struct ioctl_sick_map ino_map[] = {
> +	{ XFS_SICK_INO_CORE,	XFS_BS_SICK_INODE },
> +	{ XFS_SICK_INO_BMBTD,	XFS_BS_SICK_BMBTD },
> +	{ XFS_SICK_INO_BMBTA,	XFS_BS_SICK_BMBTA },
> +	{ XFS_SICK_INO_BMBTC,	XFS_BS_SICK_BMBTC },
> +	{ XFS_SICK_INO_DIR,	XFS_BS_SICK_DIR },
> +	{ XFS_SICK_INO_XATTR,	XFS_BS_SICK_XATTR },
> +	{ XFS_SICK_INO_SYMLINK,	XFS_BS_SICK_SYMLINK },
> +	{ XFS_SICK_INO_PARENT,	XFS_BS_SICK_PARENT },
> +	{ 0, 0 },
> +};
> +
> +/* Fill out bulkstat health info. */
> +void
> +xfs_bulkstat_health(
> +	struct xfs_inode	*ip,
> +	struct xfs_bstat	*bs)
> +{
> +	const struct ioctl_sick_map *m;
> +	unsigned int		sick;
> +	unsigned int		checked;
> +
> +	bs->bs_sick = 0;
> +	bs->bs_checked = 0;
> +
> +	xfs_inode_measure_sickness(ip, &sick, &checked);
> +	for (m = ino_map; m->sick_mask; m++) {
> +		if (checked & m->sick_mask)
> +			bs->bs_checked |= m->ioctl_mask;
> +		if (sick & m->sick_mask)
> +			bs->bs_sick |= m->ioctl_mask;
> +	}
> +}
> diff --git a/fs/xfs/xfs_itable.c b/fs/xfs/xfs_itable.c
> index 942e4aa5e729..1e1a0af1dd34 100644
> --- a/fs/xfs/xfs_itable.c
> +++ b/fs/xfs/xfs_itable.c
> @@ -18,6 +18,7 @@
>  #include "xfs_error.h"
>  #include "xfs_trace.h"
>  #include "xfs_icache.h"
> +#include "xfs_health.h"
>  
>  /*
>   * Return stat information for one inode.
> @@ -84,6 +85,7 @@ xfs_bulkstat_one_int(
>  	buf->bs_extsize = dic->di_extsize << mp->m_sb.sb_blocklog;
>  	buf->bs_extents = dic->di_nextents;
>  	memset(buf->bs_pad, 0, sizeof(buf->bs_pad));
> +	xfs_bulkstat_health(ip, buf);
>  	buf->bs_dmevmask = dic->di_dmevmask;
>  	buf->bs_dmstate = dic->di_dmstate;
>  	buf->bs_aextents = dic->di_anextents;
> 

  reply	other threads:[~2019-04-11 13:10 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-11  1:45 [PATCH v2 0/8] xfs: online health tracking support Darrick J. Wong
2019-04-11  1:45 ` [PATCH 1/8] xfs: track metadata health status Darrick J. Wong
2019-04-11 12:29   ` Brian Foster
2019-04-11 15:18     ` Darrick J. Wong
2019-04-11 16:05       ` Brian Foster
2019-04-11 18:31         ` Darrick J. Wong
2019-04-11  1:45 ` [PATCH 2/8] xfs: replace the BAD_SUMMARY mount flag with the equivalent health code Darrick J. Wong
2019-04-11  1:45 ` [PATCH 3/8] xfs: clear BAD_SUMMARY if unmounting an unhealthy filesystem Darrick J. Wong
2019-04-11 12:29   ` Brian Foster
2019-04-11  1:45 ` [PATCH 4/8] xfs: bump XFS_IOC_FSGEOMETRY to v5 structures Darrick J. Wong
2019-04-11 12:29   ` Brian Foster
2019-04-11  1:45 ` [PATCH 5/8] xfs: add a new ioctl to describe allocation group geometry Darrick J. Wong
2019-04-11 13:08   ` Brian Foster
2019-04-11  1:46 ` [PATCH 6/8] xfs: report fs and rt health via geometry structure Darrick J. Wong
2019-04-11 13:09   ` Brian Foster
2019-04-11 15:30     ` Darrick J. Wong
2019-04-11  1:46 ` [PATCH 7/8] xfs: report AG health via AG geometry ioctl Darrick J. Wong
2019-04-11 13:09   ` Brian Foster
2019-04-11 15:33     ` Darrick J. Wong
2019-04-11  1:46 ` [PATCH 8/8] xfs: report inode health via bulkstat Darrick J. Wong
2019-04-11 13:10   ` Brian Foster [this message]
  -- strict thread matches above, loose matches on Subject: below --
2019-04-12  6:28 [PATCH v3 0/8] xfs: online health tracking support Darrick J. Wong
2019-04-12  6:28 ` [PATCH 8/8] xfs: report inode health via bulkstat Darrick J. Wong

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=20190411131006.GH2888@bfoster \
    --to=bfoster@redhat.com \
    --cc=darrick.wong@oracle.com \
    --cc=linux-xfs@vger.kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).