Commit 87e823b3 authored by tanxiaojun's avatar tanxiaojun Committed by David S. Miller

bridge: remove unnecessary condition judgment

Because err is always negative, remove unnecessary condition
judgment.
Signed-off-by: default avatarTan Xiaojun <tanxiaojun@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5495ab75
...@@ -570,8 +570,7 @@ static void fdb_notify(struct net_bridge *br, ...@@ -570,8 +570,7 @@ static void fdb_notify(struct net_bridge *br,
rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC); rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
return; return;
errout: errout:
if (err < 0) rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
} }
/* Dump information about entries, in response to GETNEIGH */ /* Dump information about entries, in response to GETNEIGH */
......
...@@ -195,8 +195,7 @@ void br_ifinfo_notify(int event, struct net_bridge_port *port) ...@@ -195,8 +195,7 @@ void br_ifinfo_notify(int event, struct net_bridge_port *port)
rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC); rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
return; return;
errout: errout:
if (err < 0) rtnl_set_sk_err(net, RTNLGRP_LINK, err);
rtnl_set_sk_err(net, RTNLGRP_LINK, err);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment