From: Dave Chinner <david@fromorbit.com>
To: "Darrick J. Wong" <darrick.wong@oracle.com>
Cc: xfs <linux-xfs@vger.kernel.org>
Subject: Re: [PATCH v3] xfs: define a flags field for the AG geometry ioctl structure
Date: Wed, 4 Sep 2019 14:01:00 +1000 [thread overview]
Message-ID: <20190904040100.GA1119@dread.disaster.area> (raw)
In-Reply-To: <20190903230537.GI5340@magnolia>
On Tue, Sep 03, 2019 at 04:05:37PM -0700, Darrick J. Wong wrote:
> From: Darrick J. Wong <darrick.wong@oracle.com>
>
> Define a flags field for the AG geometry ioctl structure.
>
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> ---
> v3: define ag_flags as an in/out field and check required zeroness
> ---
> fs/xfs/libxfs/xfs_fs.h | 2 +-
> fs/xfs/xfs_ioctl.c | 4 ++++
> 2 files changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/fs/xfs/libxfs/xfs_fs.h b/fs/xfs/libxfs/xfs_fs.h
> index 52d03a3a02a4..39dd2b908106 100644
> --- a/fs/xfs/libxfs/xfs_fs.h
> +++ b/fs/xfs/libxfs/xfs_fs.h
> @@ -287,7 +287,7 @@ struct xfs_ag_geometry {
> uint32_t ag_ifree; /* o: inodes free */
> uint32_t ag_sick; /* o: sick things in ag */
> uint32_t ag_checked; /* o: checked metadata in ag */
> - uint32_t ag_reserved32; /* o: zero */
> + uint32_t ag_flags; /* i/o: flags for this ag */
> uint64_t ag_reserved[12];/* o: zero */
> };
> #define XFS_AG_GEOM_SICK_SB (1 << 0) /* superblock */
> diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c
> index 9a6823e29661..c93501f42675 100644
> --- a/fs/xfs/xfs_ioctl.c
> +++ b/fs/xfs/xfs_ioctl.c
> @@ -1038,6 +1038,10 @@ xfs_ioc_ag_geometry(
>
> if (copy_from_user(&ageo, arg, sizeof(ageo)))
> return -EFAULT;
> + if (ageo.ag_flags)
> + return -EINVAL;
> + if (memchr_inv(&ageo.ag_reserved, 0, sizeof(ageo.ag_reserved)))
> + return -EINVAL;
Looks good. All that should be zero until we start using them. :)
Reviewed-by: Dave Chinner <dchinner@redhat.com>
--
Dave Chinner
david@fromorbit.com
prev parent reply other threads:[~2019-09-04 4:01 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-03 23:05 [PATCH v3] xfs: define a flags field for the AG geometry ioctl structure Darrick J. Wong
2019-09-04 4:01 ` Dave Chinner [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=20190904040100.GA1119@dread.disaster.area \
--to=david@fromorbit.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