Re: [PATCH 05/10] btrfs-progs: mute coverity warnings about deadcode

2015-10-21 Thread David Sterba
On Mon, Oct 19, 2015 at 07:37:55PM +0800, Eryu Guan wrote:
> Coverity reports execution cannot reach this statements. So put WARN_ON
> in if-else conditions.
> 
> Signed-off-by: Eryu Guan 

Applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 05/10] btrfs-progs: mute coverity warnings about deadcode

2015-10-19 Thread Eryu Guan
Coverity reports execution cannot reach this statements. So put WARN_ON
in if-else conditions.

Signed-off-by: Eryu Guan 
---
 backref.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/backref.c b/backref.c
index 9a2efca..8f41f82 100644
--- a/backref.c
+++ b/backref.c
@@ -323,9 +323,9 @@ static int __resolve_indirect_ref(struct btrfs_fs_info 
*fs_info,
 
eb = path->nodes[level];
while (!eb) {
-   WARN_ON(!level);
if (!level) {
ret = 1;
+   WARN_ON(1);
goto out;
}
level--;
@@ -1178,7 +1178,6 @@ int extent_from_logical(struct btrfs_fs_info *fs_info, 
u64 logical,
 logical, logical - found_key->objectid, found_key->objectid,
 found_key->offset, flags, item_size);
 
-   WARN_ON(!flags_ret);
if (flags_ret) {
if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)
*flags_ret = BTRFS_EXTENT_FLAG_TREE_BLOCK;
@@ -1187,9 +1186,10 @@ int extent_from_logical(struct btrfs_fs_info *fs_info, 
u64 logical,
else
BUG_ON(1);
return 0;
+   } else {
+   WARN_ON(1);
+   return -EIO;
}
-
-   return -EIO;
 }
 
 /*
-- 
2.4.3

--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html