From patchwork Wed Feb 26 12:57:43 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ilya Maximets X-Patchwork-Id: 1245018 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.166.133; helo=hemlock.osuosl.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 hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48SG7T6JM6z9sPK for ; Wed, 26 Feb 2020 23:58:13 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id CF89F8790F; Wed, 26 Feb 2020 12:58:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2JoClf4uOkLS; Wed, 26 Feb 2020 12:58:11 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [140.211.9.56]) by hemlock.osuosl.org (Postfix) with ESMTP id 19EE585EE7; Wed, 26 Feb 2020 12:58:11 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id EF56EC18DA; Wed, 26 Feb 2020 12:58:10 +0000 (UTC) X-Original-To: ovs-dev@openvswitch.org Delivered-To: ovs-dev@lists.linuxfoundation.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by lists.linuxfoundation.org (Postfix) with ESMTP id 68491C0177 for ; Wed, 26 Feb 2020 12:58:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 63160203D0 for ; Wed, 26 Feb 2020 12:58:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id K12NoxDJmnda for ; Wed, 26 Feb 2020 12:58:09 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from relay12.mail.gandi.net (relay12.mail.gandi.net [217.70.178.232]) by silver.osuosl.org (Postfix) with ESMTPS id 2D71C2014A for ; Wed, 26 Feb 2020 12:58:09 +0000 (UTC) Received: from im-t490s.redhat.com (nat-pool-brq-t.redhat.com [213.175.37.10]) (Authenticated sender: i.maximets@ovn.org) by relay12.mail.gandi.net (Postfix) with ESMTPSA id E3850200003; Wed, 26 Feb 2020 12:58:04 +0000 (UTC) From: Ilya Maximets To: ovs-dev@openvswitch.org Date: Wed, 26 Feb 2020 13:57:43 +0100 Message-Id: <20200226125743.520295-1-i.maximets@ovn.org> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Cc: Ilya Maximets Subject: [ovs-dev] [PATCH ovn] submitting-patches: Update subject line format. X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ovs-dev-bounces@openvswitch.org Sender: "dev" Since OVS and OVN are split but still using the same mailing list for development, subject line should contain 'ovn' word. This helps to identify to which project patch should be applied. Especially, it helps to ovsrobot to not try and fail OVN patches on OVS repository. Additionally removed unwanted empty line that makes '' part look different in generated documents. Signed-off-by: Ilya Maximets Acked-by: Dumitru Ceara --- .../internals/contributing/submitting-patches.rst | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Documentation/internals/contributing/submitting-patches.rst b/Documentation/internals/contributing/submitting-patches.rst index 5889e3c44..a89e2cd19 100644 --- a/Documentation/internals/contributing/submitting-patches.rst +++ b/Documentation/internals/contributing/submitting-patches.rst @@ -79,11 +79,17 @@ Email Subject The subject line of your email should be in the following format: - [PATCH /] : + [PATCH ovn /] : Where: -``[PATCH /]``: +``[PATCH ovn]``: + indicates that this is the patch and it is targeted for OVN project. This + is important since OVN and OVS are using same mailing lists for development. + ``ovn`` word could be added manually or by using + ``git format-patch --subject-prefix="PATCH ovn" ...``. + +``/``: indicates that this is the nth of a series of m patches. It helps reviewers to read patches in the correct order. You may omit this prefix if you are sending only one patch. @@ -94,14 +100,13 @@ Where: multiple distinct pieces of code. ````: - briefly describes the change. Use the imperative form, e.g. "Force SNAT for multiple gateway routers." or "Fix daemon exit for bad datapaths or flows." Try to keep the summary short, about 50 characters wide. -The subject, minus the ``[PATCH /]`` prefix, becomes the first line of -the commit's change log message. +The subject, minus the ``[PATCH ovn /]`` prefix, becomes the first line +of the commit's change log message. Description -----------