From patchwork Wed Oct 30 14:53:18 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Russell Bryant X-Patchwork-Id: 1186780 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=openvswitch.org (client-ip=140.211.169.12; helo=mail.linuxfoundation.org; envelope-from=ovs-dev-bounces@openvswitch.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ovn.org Received: from mail.linuxfoundation.org (mail.linuxfoundation.org [140.211.169.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 473BLK1LZCz9sCJ for ; Thu, 31 Oct 2019 01:54:17 +1100 (AEDT) Received: from mail.linux-foundation.org (localhost [127.0.0.1]) by mail.linuxfoundation.org (Postfix) with ESMTP id 0D752C9E; Wed, 30 Oct 2019 14:53:33 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@mail.linuxfoundation.org Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id A9880CA4 for ; Wed, 30 Oct 2019 14:53:31 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by smtp1.linuxfoundation.org (Postfix) with ESMTP id 297CE8A for ; Wed, 30 Oct 2019 14:53:30 +0000 (UTC) Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-51-0S3tA7EbPri3qF0F5HfCgg-1; Wed, 30 Oct 2019 10:53:26 -0400 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 423331005500 for ; Wed, 30 Oct 2019 14:53:26 +0000 (UTC) Received: from t480s.redhat.com (ovpn-126-115.rdu2.redhat.com [10.10.126.115]) by smtp.corp.redhat.com (Postfix) with ESMTP id EB2FF1C94B for ; Wed, 30 Oct 2019 14:53:25 +0000 (UTC) From: Russell Bryant To: dev@openvswitch.org Date: Wed, 30 Oct 2019 10:53:18 -0400 Message-Id: <20191030145324.9988-1-russell@ovn.org> In-Reply-To: <20191030013138.9390-1-russell@ovn.org> References: <20191030013138.9390-1-russell@ovn.org> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-MC-Unique: 0S3tA7EbPri3qF0F5HfCgg-1 X-Mimecast-Spam-Score: 0 X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on smtp1.linux-foundation.org Subject: [ovs-dev] [PATCH ovn v2 0/6] Add OVN IPv6 support X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: ovs-dev-bounces@openvswitch.org Errors-To: ovs-dev-bounces@openvswitch.org v1 -> v2: - Address checkpatch warnings about line length - Fix a sparse error in ovn-nbctl - Add lflow docs in ovn-northd.8.xml [PATCH ovn v2 1/6] northd: Fix table ID for IPv6 router ingress. [PATCH ovn v2 2/6] actions: Add IPv6 support to lflow NAT actions [PATCH ovn v2 3/6] ovn-nbctl: Allow IPv6 NAT rules to be added [PATCH ovn v2 4/6] northd: Add lflows for IPv6 NAT. [PATCH ovn v2 5/6] system-ovn: Add IPv6 NAT test cases [PATCH ovn v2 6/6] NEWS: Add IPv6 NAT support NEWS | 6 include/ovn/actions.h | 6 lib/actions.c | 35 + northd/ovn-northd.8.xml | 233 +++++++----- northd/ovn-northd.c | 386 +++++++++++++++------ tests/ovn-nbctl.at | 41 +- tests/ovn.at | 18 - tests/system-ovn.at | 862 +++++++++++++++++++++++++++++++++++++++++++++++- utilities/ovn-nbctl.c | 49 ++ utilities/ovn-trace.c | 15 10 files changed, 1408 insertions(+), 243 deletions(-) Acked-by: Numan Siddique for the whole series. --- Russell Bryant