From patchwork Thu Feb 8 23:18:49 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ben Pfaff X-Patchwork-Id: 871156 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=openvswitch.org (client-ip=140.211.169.12; helo=mail.linuxfoundation.org; envelope-from=ovs-dev-bounces@openvswitch.org; receiver=) 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 3zcvLl2vbyz9s1h for ; Fri, 9 Feb 2018 10:20:31 +1100 (AEDT) Received: from mail.linux-foundation.org (localhost [127.0.0.1]) by mail.linuxfoundation.org (Postfix) with ESMTP id 925DBFE7; Thu, 8 Feb 2018 23:19:03 +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 79116FE5 for ; Thu, 8 Feb 2018 23:19:01 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from relay2-d.mail.gandi.net (relay2-d.mail.gandi.net [217.70.183.194]) by smtp1.linuxfoundation.org (Postfix) with ESMTPS id 0DB29D3 for ; Thu, 8 Feb 2018 23:19:00 +0000 (UTC) X-Originating-IP: 208.91.3.26 Received: from sigabrt.benpfaff.org (unknown [208.91.3.26]) (Authenticated sender: blp@ovn.org) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id 04EC7C5A49; Fri, 9 Feb 2018 00:18:58 +0100 (CET) From: Ben Pfaff To: dev@openvswitch.org Date: Thu, 8 Feb 2018 15:18:49 -0800 Message-Id: <20180208231849.31519-4-blp@ovn.org> X-Mailer: git-send-email 2.15.1 In-Reply-To: <20180208231849.31519-1-blp@ovn.org> References: <20180208231849.31519-1-blp@ovn.org> X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on smtp1.linux-foundation.org Cc: Ben Pfaff Subject: [ovs-dev] [PATCH 4/4] openflow: Update list of features. 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: , MIME-Version: 1.0 Sender: ovs-dev-bounces@openvswitch.org Errors-To: ovs-dev-bounces@openvswitch.org Bundles are implemented for both OF1.3 and OF1.4+, so no need to keep it in the list. Packet type aware pipeline is now implemented too. Signed-off-by: Ben Pfaff Acked-by: William Tu --- Documentation/topics/openflow.rst | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/Documentation/topics/openflow.rst b/Documentation/topics/openflow.rst index ea5a4450687d..2f2cc830964b 100644 --- a/Documentation/topics/openflow.rst +++ b/Documentation/topics/openflow.rst @@ -175,22 +175,6 @@ in OVS. (optional for OF1.4+) -* Bundle - - Transactional modification. OpenFlow 1.4 requires to support - ``flow_mods`` and ``port_mods`` in a bundle if bundle is supported. - (Not related to OVS's 'ofbundle' stuff.) - - Implemented as an OpenFlow 1.4 feature. Only flow_mods and port_mods are - supported in a bundle. If the bundle includes port mods, it may not specify - the ``OFPBF_ATOMIC`` flag. Nevertheless, port mods and flow mods in a bundle - are always applied in order and consecutive flow mods between port mods are - made available to lookups atomically. - - (EXT-230) - - (optional for OF1.4+) - * Table synchronisation Probably not so useful to the software switch. @@ -270,14 +254,6 @@ definitive as OpenFlow 1.5 is not yet published. (optional for OF1.5+) -* Packet Type aware pipeline - - Prototype for OVS was done during specification. - - (EXT-112) - - (optional for OF1.5+) - * Extensible Flow Entry Statistics (EXT-334)