UPSTREAM: xfrm: fix ptr_ret.cocci warnings
authorkbuild test robot <fengguang.wu@intel.com>
Thu, 26 Jul 2018 07:09:52 +0000 (15:09 +0800)
committerxiest1 <xiest1@lenovo.com>
Tue, 5 Nov 2019 09:32:14 +0000 (17:32 +0800)
net/xfrm/xfrm_interface.c:692:1-3: WARNING: PTR_ERR_OR_ZERO can be used

 Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR

Generated by: scripts/coccinelle/api/ptr_ret.cocci

Fixes: 44e2b838c24d ("xfrm: Return detailed errors from xfrmi_newlink")
CC: Benedict Wong <benedictwong@google.com>
Signed-off-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
(cherry picked from commit c6f5e017df9dfa9f6cbe70da008e7d716d726f1b)
Signed-off-by: Benedict Wong <benedictwong@google.com>
Bug: 113046120
Test: All kernel net-tests run, passing (20x repeated)
Change-Id: I4ec93c0427fded57ff5126dc7b3d97d9b5fd615b

net/xfrm/xfrm_interface.c

index 481d7307ab51884dcf6902b21fe4862adab9bd3b..31acc6f33d98929ec2be31b0aec0469b4d5551fb 100644 (file)
@@ -689,10 +689,7 @@ static int xfrmi_newlink(struct net *src_net, struct net_device *dev,
        nla_strlcpy(p->name, tb[IFLA_IFNAME], IFNAMSIZ);
 
        xi = xfrmi_locate(net, p, 1);
-       if (IS_ERR(xi))
-               return PTR_ERR(xi);
-
-       return 0;
+       return PTR_ERR_OR_ZERO(xi);
 }
 
 static void xfrmi_dellink(struct net_device *dev, struct list_head *head)