From patchwork Mon Oct 29 00:40:44 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: netfilter: use PTR_RET Date: Sun, 28 Oct 2012 14:40:44 -0000 From: Wu Fengguang X-Patchwork-Id: 194768 Message-Id: <20121029004044.GA12982@localhost> To: Pablo Neira Ayuso Cc: Patrick McHardy , netfilter-devel@vger.kernel.org, linux-kernel@vger.kernel.org Use PTR_RET rather than if(IS_ERR(...)) + PTR_ERR Generated by: coccinelle/api/ptr_ret.cocci Reported-by: Fengguang Wu --- net/ipv4/netfilter/iptable_nat.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- linux-next.orig/net/ipv4/netfilter/iptable_nat.c 2012-10-23 09:44:52.577430992 +0800 +++ linux-next/net/ipv4/netfilter/iptable_nat.c 2012-10-29 08:38:43.063222201 +0800 @@ -274,9 +274,7 @@ static int __net_init iptable_nat_net_in return -ENOMEM; net->ipv4.nat_table = ipt_register_table(net, &nf_nat_ipv4_table, repl); kfree(repl); - if (IS_ERR(net->ipv4.nat_table)) - return PTR_ERR(net->ipv4.nat_table); - return 0; + return PTR_RET(net->ipv4.nat_table); } static void __net_exit iptable_nat_net_exit(struct net *net)