From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 177CAC4360C for ; Sun, 6 Oct 2019 13:24:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E51E920684 for ; Sun, 6 Oct 2019 13:24:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726404AbfJFNYX (ORCPT ); Sun, 6 Oct 2019 09:24:23 -0400 Received: from shards.monkeyblade.net ([23.128.96.9]:44232 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726060AbfJFNYW (ORCPT ); Sun, 6 Oct 2019 09:24:22 -0400 Received: from localhost (unknown [63.64.162.234]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: davem-davemloft) by shards.monkeyblade.net (Postfix) with ESMTPSA id 4B78F1425BD92; Sun, 6 Oct 2019 06:24:22 -0700 (PDT) Date: Sun, 06 Oct 2019 15:24:19 +0200 (CEST) Message-Id: <20191006.152419.755624128185649732.davem@davemloft.net> To: yihung.wei@gmail.com Cc: netdev@vger.kernel.org Subject: Re: [PATCH net-next v2] openvswitch: Allow attaching helper in later commit From: David Miller In-Reply-To: <1570206404-10565-1-git-send-email-yihung.wei@gmail.com> References: <1570206404-10565-1-git-send-email-yihung.wei@gmail.com> X-Mailer: Mew version 6.8 on Emacs 26.2 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.12 (shards.monkeyblade.net [149.20.54.216]); Sun, 06 Oct 2019 06:24:22 -0700 (PDT) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Yi-Hung Wei Date: Fri, 4 Oct 2019 09:26:44 -0700 > This patch allows to attach conntrack helper to a confirmed conntrack > entry. Currently, we can only attach alg helper to a conntrack entry > when it is in the unconfirmed state. This patch enables an use case > that we can firstly commit a conntrack entry after it passed some > initial conditions. After that the processing pipeline will further > check a couple of packets to determine if the connection belongs to > a particular application, and attach alg helper to the connection > in a later stage. > > Signed-off-by: Yi-Hung Wei > --- > v1->v2, Use logical OR instead of bitwise OR as Dave suggested. Applied.