From patchwork Mon Feb 20 10:01:04 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: nickcooper-zhangtonghao X-Patchwork-Id: 729882 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.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 3vRfL14Bw0z9s8T for ; Mon, 20 Feb 2017 21:01:45 +1100 (AEDT) Received: from mail.linux-foundation.org (localhost [127.0.0.1]) by mail.linuxfoundation.org (Postfix) with ESMTP id 9BDAA92B; Mon, 20 Feb 2017 10:01:41 +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 748BF416 for ; Mon, 20 Feb 2017 10:01:40 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from smtpbgsg2.qq.com (smtpbgsg2.qq.com [54.254.200.128]) by smtp1.linuxfoundation.org (Postfix) with ESMTPS id 1480B7C for ; Mon, 20 Feb 2017 10:01:35 +0000 (UTC) X-QQ-mid: bizesmtp15t1487584884tl2w37gi Received: from local.opencloud.tech.localdomai (unknown [106.120.127.11]) by esmtp4.qq.com (ESMTP) with id ; Mon, 20 Feb 2017 18:01:17 +0800 (CST) X-QQ-SSF: 01100000002000F0FF80000A0000000 X-QQ-FEAT: nNqzOPJj1O7Ghp2VNNRrEx7Ga7CGM2pzfVS2xgk/LcPFvDDKRCRYZu92z6VRs 5U7hSB2/TD2BP/5ZyNrAU+zI3rtzKPvi+rsTRGGpi5jNNTBFKIcAUyOSZoAzzkzMQ6xTCgq U2khv7ID3qZZToOc01gro1TEhQFnvX8PUE7z9aUN+i8gc0SdPHs42b49OTvl78VQDI3UtS9 Mhtrx7wsHxA+XzzyIh/9M1PNbEkSkg+mQC89i44JqBAsP+Y3U0BFgKCu3RxAKx3RnEMa4Ig Yv/aeA9R5Ksc5K X-QQ-GoodBg: 0 From: nickcooper-zhangtonghao To: dev@openvswitch.org Date: Mon, 20 Feb 2017 02:01:04 -0800 Message-Id: <1487584864-8325-1-git-send-email-nic@opencloud.tech> X-Mailer: git-send-email 1.8.3.1 X-QQ-SENDSIZE: 520 X-QQ-Bgrelay: 1 X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE 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] doc: Fix issues.rst formatting typo. 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 The preformatted block is only finished when the text falls back to the same indentation level as a paragraph prior to the preformatted block. Signed-off-by: nickcooper-zhangtonghao --- Documentation/faq/issues.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Documentation/faq/issues.rst b/Documentation/faq/issues.rst index 9bb087c..c60336a 100644 --- a/Documentation/faq/issues.rst +++ b/Documentation/faq/issues.rst @@ -105,7 +105,7 @@ very high. - Perhaps you don't actually need eth0 and eth1 to be on the same bridge. For example, if you simply want to be able to connect each of them to - virtual machines, then you can put each of them on a bridge of its own: + virtual machines, then you can put each of them on a bridge of its own:: $ ovs-vsctl add-br br0 $ ovs-vsctl add-port br0 eth0 @@ -212,6 +212,8 @@ immediately put it back. For example, consider that p1 is a port of add-port br0 p1 -- \ set interface p1 type=internal +Any other type of port gets the same effect. + A: It's an expected behaviour. If del-port and add-port happen in a single OVSDB transaction as your