From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pablo Neira Ayuso Subject: Re: [PATCH 1/1] netfilter: Use IS_ERR_OR_NULL instead of IS_ERR and NULl check to simplify the codes in ip_vs_genl_dump_dests and resolve_normal_ct Date: Thu, 21 Jul 2016 18:45:53 +0200 Message-ID: <20160721164553.GA10667@salvia> References: <1469110159-19200-1-git-send-email-fgao@ikuai8.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: kaber@trash.net, netfilter-devel@vger.kernel.org, netdev@vger.kernel.org, gfree.wind@gmail.com To: fgao@ikuai8.com Return-path: Received: from mail.us.es ([193.147.175.20]:33148 "EHLO mail.us.es" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753330AbcGUQp7 (ORCPT ); Thu, 21 Jul 2016 12:45:59 -0400 Received: from antivirus1-rhel7.int (unknown [192.168.2.11]) by mail.us.es (Postfix) with ESMTP id 2A15221057E for ; Thu, 21 Jul 2016 18:45:58 +0200 (CEST) Received: from antivirus1-rhel7.int (localhost [127.0.0.1]) by antivirus1-rhel7.int (Postfix) with ESMTP id 1B59CFAB5E for ; Thu, 21 Jul 2016 18:45:58 +0200 (CEST) Received: from antivirus1-rhel7.int (localhost [127.0.0.1]) by antivirus1-rhel7.int (Postfix) with ESMTP id 94268FAB5C for ; Thu, 21 Jul 2016 18:45:54 +0200 (CEST) Content-Disposition: inline In-Reply-To: <1469110159-19200-1-git-send-email-fgao@ikuai8.com> Sender: netdev-owner@vger.kernel.org List-ID: This patch title is too long, no more than 80 chars please, when it goes over that boundary it becomes a description ;) More comments below. On Thu, Jul 21, 2016 at 10:09:19PM +0800, fgao@ikuai8.com wrote: > From: Gao Feng > > Signed-off-by: Gao Feng > --- > v1: Initial Version > > net/netfilter/ipvs/ip_vs_ctl.c | 2 +- > net/netfilter/nf_conntrack_core.c | 6 ++---- > 2 files changed, 3 insertions(+), 5 deletions(-) > [...] > diff --git a/net/netfilter/nf_conntrack_core.c b/net/netfilter/nf_conntrack_core.c > index 153e33f..634d592 100644 > --- a/net/netfilter/nf_conntrack_core.c > +++ b/net/netfilter/nf_conntrack_core.c > @@ -1108,10 +1108,8 @@ resolve_normal_ct(struct net *net, struct nf_conn *tmpl, > if (!h) { > h = init_conntrack(net, tmpl, &tuple, l3proto, l4proto, > skb, dataoff, hash); > - if (!h) > - return NULL; > - if (IS_ERR(h)) > - return (void *)h; > + if (IS_ERR_OR_NULL(h)) > + return ERR_CAST(h); Interesting. I think we can actually simplify this patch, I'm sending a patch for this now.