* [PATCH 1/2] misc: fix more stupid compiler warnings
@ 2017-09-04 1:17 Darrick J. Wong
2017-09-08 16:40 ` Eric Sandeen
0 siblings, 1 reply; 2+ messages in thread
From: Darrick J. Wong @ 2017-09-04 1:17 UTC (permalink / raw)
To: Eric Sandeen; +Cc: xfs
Fix more compiler warnings about pointless checks, unchecked return
values, brace problems, and missing parentheses.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
---
db/check.c | 2 --
libxfs/libxfs_priv.h | 4 ++--
libxfs/xfs_bmap.c | 2 +-
repair/phase6.c | 4 ----
repair/rmap.c | 2 +-
5 files changed, 4 insertions(+), 10 deletions(-)
diff --git a/db/check.c b/db/check.c
index 12a0aed..6076540 100644
--- a/db/check.c
+++ b/db/check.c
@@ -3220,9 +3220,7 @@ process_leaf_node_dir_v2_free(
return;
}
if (be32_to_cpu(free->hdr.nvalid) > maxent ||
- be32_to_cpu(free->hdr.nvalid) < 0 ||
be32_to_cpu(free->hdr.nused) > maxent ||
- be32_to_cpu(free->hdr.nused) < 0 ||
be32_to_cpu(free->hdr.nused) >
be32_to_cpu(free->hdr.nvalid)) {
if (!sflag || v)
diff --git a/libxfs/libxfs_priv.h b/libxfs/libxfs_priv.h
index 19bdbdb..94804fe 100644
--- a/libxfs/libxfs_priv.h
+++ b/libxfs/libxfs_priv.h
@@ -504,8 +504,8 @@ int libxfs_zero_extent(struct xfs_inode *ip, xfs_fsblock_t start_fsb,
bool xfs_log_check_lsn(struct xfs_mount *, xfs_lsn_t);
/* xfs_icache.c */
-#define xfs_inode_set_cowblocks_tag(ip)
-#define xfs_inode_set_eofblocks_tag(ip)
+#define xfs_inode_set_cowblocks_tag(ip) do { } while (0)
+#define xfs_inode_set_eofblocks_tag(ip) do { } while (0)
/* xfs_stats.h */
#define XFS_STATS_CALC_INDEX(member) 0
diff --git a/libxfs/xfs_bmap.c b/libxfs/xfs_bmap.c
index 31a631a..ab5853d 100644
--- a/libxfs/xfs_bmap.c
+++ b/libxfs/xfs_bmap.c
@@ -570,7 +570,7 @@ xfs_bmap_validate_ret(
#else
#define xfs_bmap_check_leaf_extents(cur, ip, whichfork) do { } while (0)
-#define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap)
+#define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap) do { } while (0)
#endif /* DEBUG */
/*
diff --git a/repair/phase6.c b/repair/phase6.c
index b051a44..8fdf8e5 100644
--- a/repair/phase6.c
+++ b/repair/phase6.c
@@ -3082,8 +3082,6 @@ mark_standalone_inodes(xfs_mount_t *mp)
irec = find_inode_rec(mp, XFS_INO_TO_AGNO(mp, mp->m_sb.sb_rbmino),
XFS_INO_TO_AGINO(mp, mp->m_sb.sb_rbmino));
- ASSERT(irec != NULL);
-
offset = XFS_INO_TO_AGINO(mp, mp->m_sb.sb_rbmino) -
irec->ino_startnum;
@@ -3095,8 +3093,6 @@ mark_standalone_inodes(xfs_mount_t *mp)
offset = XFS_INO_TO_AGINO(mp, mp->m_sb.sb_rsumino) -
irec->ino_startnum;
- ASSERT(irec != NULL);
-
add_inode_reached(irec, offset);
if (fs_quotas) {
diff --git a/repair/rmap.c b/repair/rmap.c
index 9710565..07d1ba8 100644
--- a/repair/rmap.c
+++ b/repair/rmap.c
@@ -1542,7 +1542,7 @@ rmap_populate_realtime_rmapbt(
imap.br_startoff = rm_rec->rm_offset;
imap.br_startblock = rm_rec->rm_startblock;
imap.br_blockcount = rm_rec->rm_blockcount;
- imap.br_state = (rm_rec->rm_flags & XFS_RMAP_UNWRITTEN ?
+ imap.br_state = ((rm_rec->rm_flags & XFS_RMAP_UNWRITTEN) ?
XFS_EXT_UNWRITTEN : XFS_EXT_NORM);
fakei.i_ino = rm_rec->rm_owner;
error = -libxfs_rmap_map_extent(mp, &dfops, &fakei,
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH 1/2] misc: fix more stupid compiler warnings
2017-09-04 1:17 [PATCH 1/2] misc: fix more stupid compiler warnings Darrick J. Wong
@ 2017-09-08 16:40 ` Eric Sandeen
0 siblings, 0 replies; 2+ messages in thread
From: Eric Sandeen @ 2017-09-08 16:40 UTC (permalink / raw)
To: Darrick J. Wong, Eric Sandeen; +Cc: xfs
On 9/3/17 8:17 PM, Darrick J. Wong wrote:
> Fix more compiler warnings about pointless checks, unchecked return
> values, brace problems, and missing parentheses.
>
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Grab-bag-patch-forgiven-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
(one hunk depends on
[PATCH 28/29] xfs_repair: rebuild the realtime rmap btree
so dropped that for now)
-Eric
> ---
> db/check.c | 2 --
> libxfs/libxfs_priv.h | 4 ++--
> libxfs/xfs_bmap.c | 2 +-
> repair/phase6.c | 4 ----
> repair/rmap.c | 2 +-
> 5 files changed, 4 insertions(+), 10 deletions(-)
>
> diff --git a/db/check.c b/db/check.c
> index 12a0aed..6076540 100644
> --- a/db/check.c
> +++ b/db/check.c
> @@ -3220,9 +3220,7 @@ process_leaf_node_dir_v2_free(
> return;
> }
> if (be32_to_cpu(free->hdr.nvalid) > maxent ||
> - be32_to_cpu(free->hdr.nvalid) < 0 ||
> be32_to_cpu(free->hdr.nused) > maxent ||
> - be32_to_cpu(free->hdr.nused) < 0 ||
> be32_to_cpu(free->hdr.nused) >
> be32_to_cpu(free->hdr.nvalid)) {
> if (!sflag || v)
> diff --git a/libxfs/libxfs_priv.h b/libxfs/libxfs_priv.h
> index 19bdbdb..94804fe 100644
> --- a/libxfs/libxfs_priv.h
> +++ b/libxfs/libxfs_priv.h
> @@ -504,8 +504,8 @@ int libxfs_zero_extent(struct xfs_inode *ip, xfs_fsblock_t start_fsb,
> bool xfs_log_check_lsn(struct xfs_mount *, xfs_lsn_t);
>
> /* xfs_icache.c */
> -#define xfs_inode_set_cowblocks_tag(ip)
> -#define xfs_inode_set_eofblocks_tag(ip)
> +#define xfs_inode_set_cowblocks_tag(ip) do { } while (0)
> +#define xfs_inode_set_eofblocks_tag(ip) do { } while (0)
>
> /* xfs_stats.h */
> #define XFS_STATS_CALC_INDEX(member) 0
> diff --git a/libxfs/xfs_bmap.c b/libxfs/xfs_bmap.c
> index 31a631a..ab5853d 100644
> --- a/libxfs/xfs_bmap.c
> +++ b/libxfs/xfs_bmap.c
> @@ -570,7 +570,7 @@ xfs_bmap_validate_ret(
>
> #else
> #define xfs_bmap_check_leaf_extents(cur, ip, whichfork) do { } while (0)
> -#define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap)
> +#define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap) do { } while (0)
> #endif /* DEBUG */
>
> /*
> diff --git a/repair/phase6.c b/repair/phase6.c
> index b051a44..8fdf8e5 100644
> --- a/repair/phase6.c
> +++ b/repair/phase6.c
> @@ -3082,8 +3082,6 @@ mark_standalone_inodes(xfs_mount_t *mp)
> irec = find_inode_rec(mp, XFS_INO_TO_AGNO(mp, mp->m_sb.sb_rbmino),
> XFS_INO_TO_AGINO(mp, mp->m_sb.sb_rbmino));
>
> - ASSERT(irec != NULL);
> -
> offset = XFS_INO_TO_AGINO(mp, mp->m_sb.sb_rbmino) -
> irec->ino_startnum;
>
> @@ -3095,8 +3093,6 @@ mark_standalone_inodes(xfs_mount_t *mp)
> offset = XFS_INO_TO_AGINO(mp, mp->m_sb.sb_rsumino) -
> irec->ino_startnum;
>
> - ASSERT(irec != NULL);
> -
> add_inode_reached(irec, offset);
>
> if (fs_quotas) {
> diff --git a/repair/rmap.c b/repair/rmap.c
> index 9710565..07d1ba8 100644
> --- a/repair/rmap.c
> +++ b/repair/rmap.c
> @@ -1542,7 +1542,7 @@ rmap_populate_realtime_rmapbt(
> imap.br_startoff = rm_rec->rm_offset;
> imap.br_startblock = rm_rec->rm_startblock;
> imap.br_blockcount = rm_rec->rm_blockcount;
> - imap.br_state = (rm_rec->rm_flags & XFS_RMAP_UNWRITTEN ?
> + imap.br_state = ((rm_rec->rm_flags & XFS_RMAP_UNWRITTEN) ?
> XFS_EXT_UNWRITTEN : XFS_EXT_NORM);
> fakei.i_ino = rm_rec->rm_owner;
> error = -libxfs_rmap_map_extent(mp, &dfops, &fakei,
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-09-08 16:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-04 1:17 [PATCH 1/2] misc: fix more stupid compiler warnings Darrick J. Wong
2017-09-08 16:40 ` Eric Sandeen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox