From: Colin King <hidden> Date: 2017-02-07 10:58:16
From: Colin Ian King <redacted>
The error check on err is redundant as it is being checked
previously each time it has been updated. Remove this redundant
check.
Detected with CoverityScan, CID#140030("Logically dead code")
Signed-off-by: Colin Ian King <redacted>
---
net/bridge/br_netlink.c | 3 ---
1 file changed, 3 deletions(-)
From: Nikolay Aleksandrov <hidden> Date: 2017-02-07 11:30:22
On 07/02/17 11:56, Colin King wrote:
quoted hunk
From: Colin Ian King <redacted>
The error check on err is redundant as it is being checked
previously each time it has been updated. Remove this redundant
check.
Detected with CoverityScan, CID#140030("Logically dead code")
Signed-off-by: Colin Ian King <redacted>
---
net/bridge/br_netlink.c | 3 ---
1 file changed, 3 deletions(-)
From: Colin Ian King <hidden> Date: 2017-02-07 11:45:25
..and one more thing, in net/bridge/br_netlink_tunnel.c,
__get_num_vlan_tunnel_infos, are the args to vlan_tunnel_id_isrange()
the wrong way around? I'm not 100% sure, but I'd thought I'd flag it up.
if (v_start) {
if ((v_end->vid - v->vid) > 0 &&
vlan_tunnel_id_isrange(v_end, v) > 0)
num_tinfos += 2;
else
num_tinfos += 1;
}
On 07/02/17 11:30, Nikolay Aleksandrov wrote:
On 07/02/17 11:56, Colin King wrote:
quoted
From: Colin Ian King <redacted>
The error check on err is redundant as it is being checked
previously each time it has been updated. Remove this redundant
check.
Detected with CoverityScan, CID#140030("Logically dead code")
Signed-off-by: Colin Ian King <redacted>
---
net/bridge/br_netlink.c | 3 ---
1 file changed, 3 deletions(-)
@@ -612,9 +612,6 @@ static int br_afspec(struct net_bridge *br,returnerr;break;}--if(err)-returnerr;}returnerr;
Actually that code can be reduced further, I'll follow up with a patch later.
Reviewed-by: Nikolay Aleksandrov <redacted>
--
To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
From: David Miller <davem@davemloft.net> Date: 2017-02-07 19:15:58
From: Colin King <redacted>
Date: Tue, 7 Feb 2017 10:56:38 +0000
From: Colin Ian King <redacted>
The error check on err is redundant as it is being checked
previously each time it has been updated. Remove this redundant
check.
Detected with CoverityScan, CID#140030("Logically dead code")
Signed-off-by: Colin Ian King <redacted>