Linux XFS filesystem development
 help / color / mirror / Atom feed
From: "Darrick J. Wong" <djwong@kernel.org>
To: Christoph Hellwig <hch@lst.de>
Cc: Carlos Maiolino <cem@kernel.org>, linux-xfs@vger.kernel.org
Subject: Re: [PATCH 2/6] xfs: remove xfs_errortag_set
Date: Mon, 15 Sep 2025 11:54:39 -0700	[thread overview]
Message-ID: <20250915185439.GU8096@frogsfrogsfrogs> (raw)
In-Reply-To: <20250915133104.161037-3-hch@lst.de>

On Mon, Sep 15, 2025 at 06:30:38AM -0700, Christoph Hellwig wrote:
> xfs_errortag_set is only called by xfs_errortag_attr_store, , which does
> not need to validate the error tag, because it can only be called on
> valid error tags that had a sysfs attribute registered.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>

Makes sense too
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>

--D

> ---
>  fs/xfs/xfs_error.c | 29 ++++++-----------------------
>  fs/xfs/xfs_error.h |  3 ---
>  2 files changed, 6 insertions(+), 26 deletions(-)
> 
> diff --git a/fs/xfs/xfs_error.c b/fs/xfs/xfs_error.c
> index 45a43e47ce92..fac35ff3da65 100644
> --- a/fs/xfs/xfs_error.c
> +++ b/fs/xfs/xfs_error.c
> @@ -93,21 +93,18 @@ xfs_errortag_attr_store(
>  	size_t			count)
>  {
>  	struct xfs_mount	*mp = to_mp(kobject);
> -	struct xfs_errortag_attr *xfs_attr = to_attr(attr);
> +	unsigned int		error_tag = to_attr(attr)->tag;
>  	int			ret;
> -	unsigned int		val;
>  
>  	if (strcmp(buf, "default") == 0) {
> -		val = xfs_errortag_random_default[xfs_attr->tag];
> +		mp->m_errortag[error_tag] =
> +			xfs_errortag_random_default[error_tag];
>  	} else {
> -		ret = kstrtouint(buf, 0, &val);
> +		ret = kstrtouint(buf, 0, &mp->m_errortag[error_tag]);
>  		if (ret)
>  			return ret;
>  	}
>  
> -	ret = xfs_errortag_set(mp, xfs_attr->tag, val);
> -	if (ret)
> -		return ret;
>  	return count;
>  }
>  
> @@ -325,19 +322,6 @@ xfs_errortag_test(
>  	return true;
>  }
>  
> -int
> -xfs_errortag_set(
> -	struct xfs_mount	*mp,
> -	unsigned int		error_tag,
> -	unsigned int		tag_value)
> -{
> -	if (!xfs_errortag_valid(error_tag))
> -		return -EINVAL;
> -
> -	mp->m_errortag[error_tag] = tag_value;
> -	return 0;
> -}
> -
>  int
>  xfs_errortag_add(
>  	struct xfs_mount	*mp,
> @@ -347,9 +331,8 @@ xfs_errortag_add(
>  
>  	if (!xfs_errortag_valid(error_tag))
>  		return -EINVAL;
> -
> -	return xfs_errortag_set(mp, error_tag,
> -			xfs_errortag_random_default[error_tag]);
> +	mp->m_errortag[error_tag] = xfs_errortag_random_default[error_tag];
> +	return 0;
>  }
>  
>  int
> diff --git a/fs/xfs/xfs_error.h b/fs/xfs/xfs_error.h
> index 3aeb03001acf..fd60a008f9d2 100644
> --- a/fs/xfs/xfs_error.h
> +++ b/fs/xfs/xfs_error.h
> @@ -58,8 +58,6 @@ bool xfs_errortag_enabled(struct xfs_mount *mp, unsigned int tag);
>  		mdelay((mp)->m_errortag[(tag)]); \
>  	} while (0)
>  
> -extern int xfs_errortag_set(struct xfs_mount *mp, unsigned int error_tag,
> -		unsigned int tag_value);
>  extern int xfs_errortag_add(struct xfs_mount *mp, unsigned int error_tag);
>  extern int xfs_errortag_clearall(struct xfs_mount *mp);
>  #else
> @@ -67,7 +65,6 @@ extern int xfs_errortag_clearall(struct xfs_mount *mp);
>  #define xfs_errortag_del(mp)
>  #define XFS_TEST_ERROR(expr, mp, tag)		(expr)
>  #define XFS_ERRORTAG_DELAY(mp, tag)		((void)0)
> -#define xfs_errortag_set(mp, tag, val)		(ENOSYS)
>  #define xfs_errortag_add(mp, tag)		(ENOSYS)
>  #define xfs_errortag_clearall(mp)		(ENOSYS)
>  #endif /* DEBUG */
> -- 
> 2.47.2
> 
> 

  reply	other threads:[~2025-09-15 18:54 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-15 13:30 cleanup error tags Christoph Hellwig
2025-09-15 13:30 ` [PATCH 1/6] xfs: remove xfs_errortag_get Christoph Hellwig
2025-09-15 18:54   ` Darrick J. Wong
2025-09-15 13:30 ` [PATCH 2/6] xfs: remove xfs_errortag_set Christoph Hellwig
2025-09-15 18:54   ` Darrick J. Wong [this message]
2025-09-15 13:30 ` [PATCH 3/6] xfs: remove the expr argument to XFS_TEST_ERROR Christoph Hellwig
2025-09-15 18:55   ` Darrick J. Wong
2025-09-15 13:30 ` [PATCH 4/6] xfs: remove pointless externs in xfs_error.h Christoph Hellwig
2025-09-15 18:55   ` Darrick J. Wong
2025-09-15 13:30 ` [PATCH 5/6] xfs: centralize error tag definitions Christoph Hellwig
2025-09-15 19:10   ` Darrick J. Wong
2025-09-15 20:53     ` Christoph Hellwig
2025-09-15 23:37       ` Darrick J. Wong
2025-09-15 13:30 ` [PATCH 6/6] xfs: constify xfs_errortag_random_default Christoph Hellwig
2025-09-15 19:10   ` Darrick J. Wong
  -- strict thread matches above, loose matches on Subject: below --
2025-09-16 16:28 cleanup error tags v2 Christoph Hellwig
2025-09-16 16:28 ` [PATCH 2/6] xfs: remove xfs_errortag_set Christoph Hellwig

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=20250915185439.GU8096@frogsfrogsfrogs \
    --to=djwong@kernel.org \
    --cc=cem@kernel.org \
    --cc=hch@lst.de \
    --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