mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2024-12-29 17:23:36 +00:00
net: mpls: delete redundant judgment statements
The initial value of err is -ENOBUFS, and err is guaranteed to be less than 0 before all goto errout. Therefore, on the error path of errout, there is no need to repeatedly judge that err is less than 0, and delete redundant judgments to make the code more concise. Signed-off-by: Li Zetao <lizetao1@huawei.com> Reviewed-by: Petr Machata <petrm@nvidia.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
cd9ebde125
commit
fb8e83cf44
@ -1201,8 +1201,7 @@ static void mpls_netconf_notify_devconf(struct net *net, int event,
|
||||
rtnl_notify(skb, net, 0, RTNLGRP_MPLS_NETCONF, NULL, GFP_KERNEL);
|
||||
return;
|
||||
errout:
|
||||
if (err < 0)
|
||||
rtnl_set_sk_err(net, RTNLGRP_MPLS_NETCONF, err);
|
||||
rtnl_set_sk_err(net, RTNLGRP_MPLS_NETCONF, err);
|
||||
}
|
||||
|
||||
static const struct nla_policy devconf_mpls_policy[NETCONFA_MAX + 1] = {
|
||||
@ -2278,8 +2277,7 @@ static void rtmsg_lfib(int event, u32 label, struct mpls_route *rt,
|
||||
|
||||
return;
|
||||
errout:
|
||||
if (err < 0)
|
||||
rtnl_set_sk_err(net, RTNLGRP_MPLS_ROUTE, err);
|
||||
rtnl_set_sk_err(net, RTNLGRP_MPLS_ROUTE, err);
|
||||
}
|
||||
|
||||
static int mpls_valid_getroute_req(struct sk_buff *skb,
|
||||
|
Loading…
Reference in New Issue
Block a user