public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: "Darrick J. Wong" <djwong@kernel.org>
To: Chandan Babu R <chandanrlinux@gmail.com>
Cc: linux-xfs@vger.kernel.org, sandeen@sandeen.net
Subject: Re: [PATCH V2] xfsprogs: xfs_fsr: Verify bulkstat version information in qsort's cmp()
Date: Thu, 28 Jan 2021 09:36:48 -0800	[thread overview]
Message-ID: <20210128173648.GR7698@magnolia> (raw)
In-Reply-To: <20210128052058.30328-1-chandanrlinux@gmail.com>

On Thu, Jan 28, 2021 at 10:50:58AM +0530, Chandan Babu R wrote:
> This commit introduces a check to verify that correct bulkstat structures are
> being processed by qsort's cmp() function.
> 
> Suggested-by: Darrick J. Wong <djwong@kernel.org>
> Signed-off-by: Chandan Babu R <chandanrlinux@gmail.com>
> ---

Looks good to me,
Reviewed-by: Darrick J. Wong <djwong@kernel.org>

--D

> V1 -> V2:
>    1. Include XFS_BULKSTAT_VERSION_V1 as a possible bulkstat version
>       number. 
>    2. Fix coding style issue.
>    
>  fsr/xfs_fsr.c | 11 +++++++++--
>  1 file changed, 9 insertions(+), 2 deletions(-)
> 
> diff --git a/fsr/xfs_fsr.c b/fsr/xfs_fsr.c
> index b885395e..6cf8bfb7 100644
> --- a/fsr/xfs_fsr.c
> +++ b/fsr/xfs_fsr.c
> @@ -582,8 +582,15 @@ fsrall_cleanup(int timeout)
>  static int
>  cmp(const void *s1, const void *s2)
>  {
> -	return( ((struct xfs_bulkstat *)s2)->bs_extents -
> -	        ((struct xfs_bulkstat *)s1)->bs_extents);
> +	const struct xfs_bulkstat	*bs1 = s1;
> +	const struct xfs_bulkstat	*bs2 = s2;
> +
> +	ASSERT((bs1->bs_version == XFS_BULKSTAT_VERSION_V1 &&
> +		bs2->bs_version == XFS_BULKSTAT_VERSION_V1) ||
> +		(bs1->bs_version == XFS_BULKSTAT_VERSION_V5 &&
> +		bs2->bs_version == XFS_BULKSTAT_VERSION_V5));
> +
> +	return (bs2->bs_extents - bs1->bs_extents);
>  }
>  
>  /*
> -- 
> 2.29.2
> 

      parent reply	other threads:[~2021-01-28 17:38 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-28  5:20 [PATCH V2] xfsprogs: xfs_fsr: Verify bulkstat version information in qsort's cmp() Chandan Babu R
2021-01-28  6:56 ` Chaitanya Kulkarni
2021-01-28 17:36 ` Darrick J. Wong [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=20210128173648.GR7698@magnolia \
    --to=djwong@kernel.org \
    --cc=chandanrlinux@gmail.com \
    --cc=linux-xfs@vger.kernel.org \
    --cc=sandeen@sandeen.net \
    /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