From: Jeff Liu <jeff.liu@oracle.com>
To: Eric Sandeen <sandeen@redhat.com>, xfs@oss.sgi.com
Subject: Re: [PATCH 4/9] xfs: Use defines for CRC offsets in all cases
Date: Wed, 19 Feb 2014 15:56:54 +0800 [thread overview]
Message-ID: <530463C6.6050509@oracle.com> (raw)
In-Reply-To: <1392767549-25574-5-git-send-email-sandeen@redhat.com>
Hi Eric,
I read the previous comments from Dave about using defines for CRC offsets,
and with a grep search after applying this patch, looks there have another
two places maybe we should switch them to the macros as well:
fs/xfs/xfs_log.c:
Do we need a log record crc offset macros for offsetof(struct xlog_rec_header, h_crc))?
xfs_dinode.h:
we added the XFS_DINODE_CRC_OFF, just use it at below routine?
static inline uint xfs_dinode_size(int version)
{
if (version == 3)
return sizeof(struct xfs_dinode);
return offsetof(struct xfs_dinode, di_crc);
}
Thanks,
-Jeff
On 02/19 2014 07:52 AM, Eric Sandeen wrote:
> Some calls to crc functions used useful #defines,
> others used awkward offsetof() constructs.
>
> Switch them all to #define to make things a bit
> cleaner.
>
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> ---
> fs/xfs/xfs_ag.h | 6 ++++++
> fs/xfs/xfs_alloc.c | 10 ++++------
> fs/xfs/xfs_dinode.h | 2 ++
> fs/xfs/xfs_format.h | 2 ++
> fs/xfs/xfs_ialloc.c | 5 ++---
> fs/xfs/xfs_inode_buf.c | 4 ++--
> fs/xfs/xfs_sb.c | 5 ++---
> fs/xfs/xfs_sb.h | 2 ++
> fs/xfs/xfs_symlink_remote.c | 5 ++---
> 9 files changed, 24 insertions(+), 17 deletions(-)
>
> diff --git a/fs/xfs/xfs_ag.h b/fs/xfs/xfs_ag.h
> index 3fc1098..0fdd410 100644
> --- a/fs/xfs/xfs_ag.h
> +++ b/fs/xfs/xfs_ag.h
> @@ -89,6 +89,8 @@ typedef struct xfs_agf {
> /* structure must be padded to 64 bit alignment */
> } xfs_agf_t;
>
> +#define XFS_AGF_CRC_OFF offsetof(struct xfs_agf, agf_crc)
> +
> #define XFS_AGF_MAGICNUM 0x00000001
> #define XFS_AGF_VERSIONNUM 0x00000002
> #define XFS_AGF_SEQNO 0x00000004
> @@ -167,6 +169,8 @@ typedef struct xfs_agi {
> /* structure must be padded to 64 bit alignment */
> } xfs_agi_t;
>
> +#define XFS_AGI_CRC_OFF offsetof(struct xfs_agi, agi_crc)
> +
> #define XFS_AGI_MAGICNUM 0x00000001
> #define XFS_AGI_VERSIONNUM 0x00000002
> #define XFS_AGI_SEQNO 0x00000004
> @@ -222,6 +226,8 @@ typedef struct xfs_agfl {
> __be32 agfl_bno[]; /* actually XFS_AGFL_SIZE(mp) */
> } xfs_agfl_t;
>
> +#define XFS_AGFL_CRC_OFF offsetof(struct xfs_agfl, agfl_crc)
> +
> /*
> * tags for inode radix tree
> */
> diff --git a/fs/xfs/xfs_alloc.c b/fs/xfs/xfs_alloc.c
> index 9eab2df..72ea855 100644
> --- a/fs/xfs/xfs_alloc.c
> +++ b/fs/xfs/xfs_alloc.c
> @@ -486,7 +486,7 @@ xfs_agfl_read_verify(
> return;
>
> agfl_ok = xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
> - offsetof(struct xfs_agfl, agfl_crc));
> + XFS_AGFL_CRC_OFF);
>
> agfl_ok = agfl_ok && xfs_agfl_verify(bp);
>
> @@ -516,8 +516,7 @@ xfs_agfl_write_verify(
> if (bip)
> XFS_BUF_TO_AGFL(bp)->agfl_lsn = cpu_to_be64(bip->bli_item.li_lsn);
>
> - xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length),
> - offsetof(struct xfs_agfl, agfl_crc));
> + xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_AGFL_CRC_OFF);
> }
>
> const struct xfs_buf_ops xfs_agfl_buf_ops = {
> @@ -2242,7 +2241,7 @@ xfs_agf_read_verify(
>
> if (xfs_sb_version_hascrc(&mp->m_sb))
> agf_ok = xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
> - offsetof(struct xfs_agf, agf_crc));
> + XFS_AGF_CRC_OFF);
>
> agf_ok = agf_ok && xfs_agf_verify(mp, bp);
>
> @@ -2272,8 +2271,7 @@ xfs_agf_write_verify(
> if (bip)
> XFS_BUF_TO_AGF(bp)->agf_lsn = cpu_to_be64(bip->bli_item.li_lsn);
>
> - xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length),
> - offsetof(struct xfs_agf, agf_crc));
> + xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_AGF_CRC_OFF);
> }
>
> const struct xfs_buf_ops xfs_agf_buf_ops = {
> diff --git a/fs/xfs/xfs_dinode.h b/fs/xfs/xfs_dinode.h
> index e5869b5..623bbe8 100644
> --- a/fs/xfs/xfs_dinode.h
> +++ b/fs/xfs/xfs_dinode.h
> @@ -89,6 +89,8 @@ typedef struct xfs_dinode {
> /* structure must be padded to 64 bit alignment */
> } xfs_dinode_t;
>
> +#define XFS_DINODE_CRC_OFF offsetof(struct xfs_dinode, di_crc)
> +
> #define DI_MAX_FLUSH 0xffff
>
> /*
> diff --git a/fs/xfs/xfs_format.h b/fs/xfs/xfs_format.h
> index b6ab5a3..9898f31 100644
> --- a/fs/xfs/xfs_format.h
> +++ b/fs/xfs/xfs_format.h
> @@ -145,6 +145,8 @@ struct xfs_dsymlink_hdr {
> __be64 sl_lsn;
> };
>
> +#define XFS_SYMLINK_CRC_OFF offsetof(struct xfs_dsymlink_hdr, sl_crc)
> +
> /*
> * The maximum pathlen is 1024 bytes. Since the minimum file system
> * blocksize is 512 bytes, we can get a max of 3 extents back from
> diff --git a/fs/xfs/xfs_ialloc.c b/fs/xfs/xfs_ialloc.c
> index 5d7f105..d79210b 100644
> --- a/fs/xfs/xfs_ialloc.c
> +++ b/fs/xfs/xfs_ialloc.c
> @@ -1572,7 +1572,7 @@ xfs_agi_read_verify(
>
> if (xfs_sb_version_hascrc(&mp->m_sb))
> agi_ok = xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
> - offsetof(struct xfs_agi, agi_crc));
> + XFS_AGI_CRC_OFF);
> agi_ok = agi_ok && xfs_agi_verify(bp);
>
> if (unlikely(XFS_TEST_ERROR(!agi_ok, mp, XFS_ERRTAG_IALLOC_READ_AGI,
> @@ -1600,8 +1600,7 @@ xfs_agi_write_verify(
>
> if (bip)
> XFS_BUF_TO_AGI(bp)->agi_lsn = cpu_to_be64(bip->bli_item.li_lsn);
> - xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length),
> - offsetof(struct xfs_agi, agi_crc));
> + xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_AGI_CRC_OFF);
> }
>
> const struct xfs_buf_ops xfs_agi_buf_ops = {
> diff --git a/fs/xfs/xfs_inode_buf.c b/fs/xfs/xfs_inode_buf.c
> index 4fc9f39..606b43a 100644
> --- a/fs/xfs/xfs_inode_buf.c
> +++ b/fs/xfs/xfs_inode_buf.c
> @@ -306,7 +306,7 @@ xfs_dinode_verify(
> if (!xfs_sb_version_hascrc(&mp->m_sb))
> return false;
> if (!xfs_verify_cksum((char *)dip, mp->m_sb.sb_inodesize,
> - offsetof(struct xfs_dinode, di_crc)))
> + XFS_DINODE_CRC_OFF))
> return false;
> if (be64_to_cpu(dip->di_ino) != ip->i_ino)
> return false;
> @@ -327,7 +327,7 @@ xfs_dinode_calc_crc(
>
> ASSERT(xfs_sb_version_hascrc(&mp->m_sb));
> crc = xfs_start_cksum((char *)dip, mp->m_sb.sb_inodesize,
> - offsetof(struct xfs_dinode, di_crc));
> + XFS_DINODE_CRC_OFF);
> dip->di_crc = xfs_end_cksum(crc);
> }
>
> diff --git a/fs/xfs/xfs_sb.c b/fs/xfs/xfs_sb.c
> index 1e11679..1ea7c86 100644
> --- a/fs/xfs/xfs_sb.c
> +++ b/fs/xfs/xfs_sb.c
> @@ -611,7 +611,7 @@ xfs_sb_read_verify(
> dsb->sb_crc != 0)) {
>
> if (!xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
> - offsetof(struct xfs_sb, sb_crc))) {
> + XFS_SB_CRC_OFF)) {
> /* Only fail bad secondaries on a known V5 filesystem */
> if (bp->b_bn == XFS_SB_DADDR ||
> xfs_sb_version_hascrc(&mp->m_sb)) {
> @@ -674,8 +674,7 @@ xfs_sb_write_verify(
> if (bip)
> XFS_BUF_TO_SBP(bp)->sb_lsn = cpu_to_be64(bip->bli_item.li_lsn);
>
> - xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length),
> - offsetof(struct xfs_sb, sb_crc));
> + xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_SB_CRC_OFF);
> }
>
> const struct xfs_buf_ops xfs_sb_buf_ops = {
> diff --git a/fs/xfs/xfs_sb.h b/fs/xfs/xfs_sb.h
> index 35061d4..f7b2fe7 100644
> --- a/fs/xfs/xfs_sb.h
> +++ b/fs/xfs/xfs_sb.h
> @@ -182,6 +182,8 @@ typedef struct xfs_sb {
> /* must be padded to 64 bit alignment */
> } xfs_sb_t;
>
> +#define XFS_SB_CRC_OFF offsetof(struct xfs_sb, sb_crc)
> +
> /*
> * Superblock - on disk version. Must match the in core version above.
> * Must be padded to 64 bit alignment.
> diff --git a/fs/xfs/xfs_symlink_remote.c b/fs/xfs/xfs_symlink_remote.c
> index bf59a2b..7a705a4 100644
> --- a/fs/xfs/xfs_symlink_remote.c
> +++ b/fs/xfs/xfs_symlink_remote.c
> @@ -134,7 +134,7 @@ xfs_symlink_read_verify(
> return;
>
> if (!xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
> - offsetof(struct xfs_dsymlink_hdr, sl_crc)) ||
> + XFS_SYMLINK_CRC_OFF) ||
> !xfs_symlink_verify(bp)) {
> XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
> xfs_buf_ioerror(bp, EFSCORRUPTED);
> @@ -162,8 +162,7 @@ xfs_symlink_write_verify(
> struct xfs_dsymlink_hdr *dsl = bp->b_addr;
> dsl->sl_lsn = cpu_to_be64(bip->bli_item.li_lsn);
> }
> - xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length),
> - offsetof(struct xfs_dsymlink_hdr, sl_crc));
> + xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_SYMLINK_CRC_OFF);
> }
>
> const struct xfs_buf_ops xfs_symlink_buf_ops = {
>
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
next prev parent reply other threads:[~2014-02-19 7:57 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-18 23:52 [PATCH 0/9] current series for verifier error differentiation Eric Sandeen
2014-02-18 23:52 ` [PATCH 1/9] xfs: skip verification on initial "guess" superblock read Eric Sandeen
2014-02-19 3:36 ` Dave Chinner
2014-02-18 23:52 ` [PATCH 2/9] xfs: limit superblock corruption errors to actual corruption Eric Sandeen
2014-02-19 3:37 ` Dave Chinner
2014-02-18 23:52 ` [PATCH 3/9] xfs: skip pointless CRC updates after verifier failures Eric Sandeen
2014-02-19 6:35 ` Jeff Liu
2014-02-18 23:52 ` [PATCH 4/9] xfs: Use defines for CRC offsets in all cases Eric Sandeen
2014-02-19 7:56 ` Jeff Liu [this message]
2014-02-20 0:27 ` Dave Chinner
2014-02-20 9:33 ` Jeff Liu
2014-02-20 9:41 ` Jeff Liu
2014-02-27 2:15 ` Dave Chinner
2014-02-18 23:52 ` [PATCH 5/9] xfs: add helper for verifying checksums on xfs_bufs Eric Sandeen
2014-02-27 4:17 ` Dave Chinner
2014-02-18 23:52 ` [PATCH 6/9] xfs: add helper for updating " Eric Sandeen
2014-02-18 23:52 ` [PATCH 7/9] xfs: add xfs_verifier_error() Eric Sandeen
2014-02-19 6:30 ` Dave Chinner
2014-02-20 2:58 ` [PATCH 7/9 V2] " Eric Sandeen
2014-02-27 4:20 ` Dave Chinner
2014-02-18 23:52 ` [PATCH 8/9] xfs: print useful caller information in xfs_error_report Eric Sandeen
2014-02-19 12:42 ` Jeff Liu
2014-02-18 23:52 ` [PATCH 9/9] xfs: modify verifiers to differentiate CRC from other errors Eric Sandeen
2014-02-19 14:01 ` Brian Foster
2014-02-19 16:12 ` Eric Sandeen
2014-02-20 3:10 ` [PATCH 9/9 V2] " Eric Sandeen
2014-02-20 13:10 ` Brian Foster
2014-02-27 9:12 ` [PATCH 0/9] current series for verifier error differentiation Dave Chinner
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=530463C6.6050509@oracle.com \
--to=jeff.liu@oracle.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