doc: add more explanation about flow shared action
[dpdk.git] / doc / guides / contributing / patches.rst
1 ..  SPDX-License-Identifier: BSD-3-Clause
2     Copyright 2018 The DPDK contributors
3
4 .. submitting_patches:
5
6 Contributing Code to DPDK
7 =========================
8
9 This document outlines the guidelines for submitting code to DPDK.
10
11 The DPDK development process is modeled (loosely) on the Linux Kernel development model so it is worth reading the
12 Linux kernel guide on submitting patches:
13 `How to Get Your Change Into the Linux Kernel <https://www.kernel.org/doc/html/latest/process/submitting-patches.html>`_.
14 The rationale for many of the DPDK guidelines is explained in greater detail in the kernel guidelines.
15
16
17 The DPDK Development Process
18 ----------------------------
19
20 The DPDK development process has the following features:
21
22 * The code is hosted in a public git repository.
23 * There is a mailing list where developers submit patches.
24 * There are maintainers for hierarchical components.
25 * Patches are reviewed publicly on the mailing list.
26 * Successfully reviewed patches are merged to the repository.
27 * Patches should be sent to the target repository or sub-tree, see below.
28 * All sub-repositories are merged into main repository for ``-rc1`` and ``-rc2`` versions of the release.
29 * After the ``-rc2`` release all patches should target the main repository.
30
31 The mailing list for DPDK development is `dev@dpdk.org <https://mails.dpdk.org/archives/dev/>`_.
32 Contributors will need to `register for the mailing list <https://mails.dpdk.org/listinfo/dev>`_ in order to submit patches.
33 It is also worth registering for the DPDK `Patchwork <https://patches.dpdk.org/project/dpdk/list/>`_
34
35 If you are using the GitHub service, pushing to a branch will trigger GitHub
36 Actions to automatically build your changes and run unit tests and ABI checks.
37
38 Additionally, a Travis configuration is available in DPDK but Travis free usage
39 is limited to a few builds.
40 You can link your repository to the ``travis-ci.com`` build service.
41
42 The development process requires some familiarity with the ``git`` version control system.
43 Refer to the `Pro Git Book <http://www.git-scm.com/book/>`_ for further information.
44
45 Source License
46 --------------
47
48 The DPDK uses the Open Source BSD-3-Clause license for the core libraries and
49 drivers. The kernel components are GPL-2.0 licensed. DPDK uses single line
50 reference to Unique License Identifiers in source files as defined by the Linux
51 Foundation's `SPDX project <http://spdx.org/>`_.
52
53 DPDK uses first line of the file to be SPDX tag. In case of *#!* scripts, SPDX
54 tag can be placed in 2nd line of the file.
55
56 For example, to label a file as subject to the BSD-3-Clause license,
57 the following text would be used:
58
59 ``SPDX-License-Identifier: BSD-3-Clause``
60
61 To label a file as dual-licensed with BSD-3-Clause and GPL-2.0 (e.g., for code
62 that is shared between the kernel and userspace), the following text would be
63 used:
64
65 ``SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0)``
66
67 Refer to ``licenses/README`` for more details.
68
69 Maintainers and Sub-trees
70 -------------------------
71
72 The DPDK maintenance hierarchy is divided into a main repository ``dpdk`` and sub-repositories ``dpdk-next-*``.
73
74 There are maintainers for the trees and for components within the tree.
75
76 Trees and maintainers are listed in the ``MAINTAINERS`` file. For example::
77
78     Crypto Drivers
79     --------------
80     M: Some Name <some.name@email.com>
81     T: git://dpdk.org/next/dpdk-next-crypto
82
83     Intel AES-NI GCM PMD
84     M: Some One <some.one@email.com>
85     F: drivers/crypto/aesni_gcm/
86     F: doc/guides/cryptodevs/aesni_gcm.rst
87
88 Where:
89
90 * ``M`` is a tree or component maintainer.
91 * ``T`` is a repository tree.
92 * ``F`` is a maintained file or directory.
93
94 Additional details are given in the ``MAINTAINERS`` file.
95
96 The role of the component maintainers is to:
97
98 * Review patches for the component or delegate the review.
99   The review should be done, ideally, within 1 week of submission to the mailing list.
100 * Add an ``acked-by`` to patches, or patchsets, that are ready for committing to a tree.
101 * Reply to questions asked about the component.
102
103 Component maintainers can be added or removed by submitting a patch to the ``MAINTAINERS`` file.
104 Maintainers should have demonstrated a reasonable level of contributions or reviews to the component area.
105 The maintainer should be confirmed by an ``ack`` from an established contributor.
106 There can be more than one component maintainer if desired.
107
108 The role of the tree maintainers is to:
109
110 * Maintain the overall quality of their tree.
111   This can entail additional review, compilation checks or other tests deemed necessary by the maintainer.
112 * Commit patches that have been reviewed by component maintainers and/or other contributors.
113   The tree maintainer should determine if patches have been reviewed sufficiently.
114 * Ensure that patches are reviewed in a timely manner.
115 * Prepare the tree for integration.
116 * Ensure that there is a designated back-up maintainer and coordinate a handover for periods where the
117   tree maintainer can't perform their role.
118
119 Tree maintainers can be added or removed by submitting a patch to the ``MAINTAINERS`` file.
120 The proposer should justify the need for a new sub-tree and should have demonstrated a sufficient level of contributions in the area or to a similar area.
121 The maintainer should be confirmed by an ``ack`` from an existing tree maintainer.
122 Disagreements on trees or maintainers can be brought to the Technical Board.
123
124 The backup maintainer for the main tree should be selected
125 from the existing sub-tree maintainers of the project.
126 The backup maintainer for a sub-tree should be selected from among the component maintainers within that sub-tree.
127
128
129 Getting the Source Code
130 -----------------------
131
132 The source code can be cloned using either of the following:
133
134 main repository::
135
136     git clone git://dpdk.org/dpdk
137     git clone https://dpdk.org/git/dpdk
138
139 sub-repositories (`list <https://git.dpdk.org/next>`_)::
140
141     git clone git://dpdk.org/next/dpdk-next-*
142     git clone https://dpdk.org/git/next/dpdk-next-*
143
144 Make your Changes
145 -----------------
146
147 Make your planned changes in the cloned ``dpdk`` repo. Here are some guidelines and requirements:
148
149 * Follow the :ref:`coding_style` guidelines.
150
151 * If you add new files or directories you should add your name to the ``MAINTAINERS`` file.
152
153 * Initial submission of new PMDs should be prepared against a corresponding repo.
154
155   * Thus, for example, initial submission of a new network PMD should be
156     prepared against dpdk-next-net repo.
157
158   * Likewise, initial submission of a new crypto or compression PMD should be
159     prepared against dpdk-next-crypto repo.
160
161   * For other PMDs and more info, refer to the ``MAINTAINERS`` file.
162
163 * New external functions should be added to the local ``version.map`` file. See
164   the :doc:`ABI policy <abi_policy>` and :ref:`ABI versioning <abi_versioning>`
165   guides. New external functions should also be added in alphabetical order.
166
167 * Important changes will require an addition to the release notes in ``doc/guides/rel_notes/``.
168   See the :ref:`Release Notes section of the Documentation Guidelines <doc_guidelines>` for details.
169
170 * Test the compilation works with different targets, compilers and options, see :ref:`contrib_check_compilation`.
171
172 * Don't break compilation between commits with forward dependencies in a patchset.
173   Each commit should compile on its own to allow for ``git bisect`` and continuous integration testing.
174
175 * Add tests to the ``app/test`` unit test framework where possible.
176
177 * Add documentation, if relevant, in the form of Doxygen comments or a User Guide in RST format.
178   See the :ref:`Documentation Guidelines <doc_guidelines>`.
179
180 Once the changes have been made you should commit them to your local repo.
181
182 For small changes, that do not require specific explanations, it is better to keep things together in the
183 same patch.
184 Larger changes that require different explanations should be separated into logical patches in a patchset.
185 A good way of thinking about whether a patch should be split is to consider whether the change could be
186 applied without dependencies as a backport.
187
188 It is better to keep the related documentation changes in the same patch
189 file as the code, rather than one big documentation patch at the end of a
190 patchset. This makes it easier for future maintenance and development of the
191 code.
192
193 As a guide to how patches should be structured run ``git log`` on similar files.
194
195
196 Commit Messages: Subject Line
197 -----------------------------
198
199 The first, summary, line of the git commit message becomes the subject line of the patch email.
200 Here are some guidelines for the summary line:
201
202 * The summary line must capture the area and the impact of the change.
203
204 * The summary line should be around 50 characters.
205
206 * The summary line should be lowercase apart from acronyms.
207
208 * It should be prefixed with the component name (use git log to check existing components).
209   For example::
210
211      ixgbe: fix offload config option name
212
213      config: increase max queues per port
214
215 * Use the imperative of the verb (like instructions to the code base).
216
217 * Don't add a period/full stop to the subject line or you will end up two in the patch name: ``dpdk_description..patch``.
218
219 The actual email subject line should be prefixed by ``[PATCH]`` and the version, if greater than v1,
220 for example: ``PATCH v2``.
221 The is generally added by ``git send-email`` or ``git format-patch``, see below.
222
223 If you are submitting an RFC draft of a feature you can use ``[RFC]`` instead of ``[PATCH]``.
224 An RFC patch doesn't have to be complete.
225 It is intended as a way of getting early feedback.
226
227
228 Commit Messages: Body
229 ---------------------
230
231 Here are some guidelines for the body of a commit message:
232
233 * The body of the message should describe the issue being fixed or the feature being added.
234   It is important to provide enough information to allow a reviewer to understand the purpose of the patch.
235
236 * When the change is obvious the body can be blank, apart from the signoff.
237
238 * The commit message must end with a ``Signed-off-by:`` line which is added using::
239
240       git commit --signoff # or -s
241
242   The purpose of the signoff is explained in the
243   `Developer's Certificate of Origin <https://www.kernel.org/doc/html/latest/process/submitting-patches.html#developer-s-certificate-of-origin-1-1>`_
244   section of the Linux kernel guidelines.
245
246   .. Note::
247
248      All developers must ensure that they have read and understood the
249      Developer's Certificate of Origin section of the documentation prior
250      to applying the signoff and submitting a patch.
251
252 * The signoff must be a real name and not an alias or nickname.
253   More than one signoff is allowed.
254
255 * The text of the commit message should be wrapped at 72 characters.
256
257 * When fixing a regression, it is required to reference the id of the commit
258   which introduced the bug, and put the original author of that commit on CC.
259   You can generate the required lines using the following git alias, which prints
260   the commit SHA and the author of the original code::
261
262      git config alias.fixline "log -1 --abbrev=12 --format='Fixes: %h (\"%s\")%nCc: %ae'"
263
264   The output of ``git fixline <SHA>`` must then be added to the commit message::
265
266      doc: fix some parameter description
267
268      Update the docs, fixing description of some parameter.
269
270      Fixes: abcdefgh1234 ("doc: add some parameter")
271      Cc: author@example.com
272
273      Signed-off-by: Alex Smith <alex.smith@example.com>
274
275 * When fixing an error or warning it is useful to add the error message and instructions on how to reproduce it.
276
277 * Use correct capitalization, punctuation and spelling.
278
279 In addition to the ``Signed-off-by:`` name the commit messages can also have
280 tags for who reported, suggested, tested and reviewed the patch being
281 posted. Please refer to the `Tested, Acked and Reviewed by`_ section.
282
283 Patch Fix Related Issues
284 ~~~~~~~~~~~~~~~~~~~~~~~~
285
286 `Coverity <https://scan.coverity.com/projects/dpdk-data-plane-development-kit>`_
287 is a tool for static code analysis.
288 It is used as a cloud-based service used to scan the DPDK source code,
289 and alert developers of any potential defects in the source code.
290 When fixing an issue found by Coverity, the patch must contain a Coverity issue ID
291 in the body of the commit message. For example::
292
293
294      doc: fix some parameter description
295
296      Update the docs, fixing description of some parameter.
297
298      Coverity issue: 12345
299      Fixes: abcdefgh1234 ("doc: add some parameter")
300      Cc: author@example.com
301
302      Signed-off-by: Alex Smith <alex.smith@example.com>
303
304
305 `Bugzilla <https://bugs.dpdk.org>`_
306 is a bug- or issue-tracking system.
307 Bug-tracking systems allow individual or groups of developers
308 effectively to keep track of outstanding problems with their product.
309 When fixing an issue raised in Bugzilla, the patch must contain
310 a Bugzilla issue ID in the body of the commit message.
311 For example::
312
313     doc: fix some parameter description
314
315     Update the docs, fixing description of some parameter.
316
317     Bugzilla ID: 12345
318     Fixes: abcdefgh1234 ("doc: add some parameter")
319     Cc: author@example.com
320
321     Signed-off-by: Alex Smith <alex.smith@example.com>
322
323 Patch for Stable Releases
324 ~~~~~~~~~~~~~~~~~~~~~~~~~
325
326 All fix patches to the main branch that are candidates for backporting
327 should also be CCed to the `stable@dpdk.org <https://mails.dpdk.org/listinfo/stable>`_
328 mailing list.
329 In the commit message body the Cc: stable@dpdk.org should be inserted as follows::
330
331      doc: fix some parameter description
332
333      Update the docs, fixing description of some parameter.
334
335      Fixes: abcdefgh1234 ("doc: add some parameter")
336      Cc: stable@dpdk.org
337
338      Signed-off-by: Alex Smith <alex.smith@example.com>
339
340 For further information on stable contribution you can go to
341 :doc:`Stable Contribution Guide <stable>`.
342
343 Patch Dependencies
344 ~~~~~~~~~~~~~~~~~~
345
346 Sometimes a patch or patchset can depend on another one.
347 To help the maintainers and automation tasks, please document this dependency in commit log or cover letter
348 with the following syntax:
349
350 ``Depends-on: series-NNNNN ("Title of the series")`` or ``Depends-on: patch-NNNNN ("Title of the patch")``
351
352 Where ``NNNNN`` is patchwork ID for patch or series::
353
354      doc: fix some parameter description
355
356      Update the docs, fixing description of some parameter.
357
358      Signed-off-by: Alex Smith <alex.smith@example.com>
359      ---
360      Depends-on: series-10000 ("Title of the series")
361
362 Creating Patches
363 ----------------
364
365 It is possible to send patches directly from git but for new contributors it is recommended to generate the
366 patches with ``git format-patch`` and then when everything looks okay, and the patches have been checked, to
367 send them with ``git send-email``.
368
369 Here are some examples of using ``git format-patch`` to generate patches:
370
371 .. code-block:: console
372
373    # Generate a patch from the last commit.
374    git format-patch -1
375
376    # Generate a patch from the last 3 commits.
377    git format-patch -3
378
379    # Generate the patches in a directory.
380    git format-patch -3 -o ~/patch/
381
382    # Add a cover letter to explain a patchset.
383    git format-patch -3 -o ~/patch/ --cover-letter
384
385    # Add a prefix with a version number.
386    git format-patch -3 -o ~/patch/ -v 2
387
388
389 Cover letters are useful for explaining a patchset and help to generate a logical threading to the patches.
390 Smaller notes can be put inline in the patch after the ``---`` separator, for example::
391
392    Subject: [PATCH] fm10k/base: add FM10420 device ids
393
394    Add the device ID for Boulder Rapids and Atwood Channel to enable
395    drivers to support those devices.
396
397    Signed-off-by: Alex Smith <alex.smith@example.com>
398    ---
399
400    ADD NOTES HERE.
401
402     drivers/net/fm10k/base/fm10k_api.c  | 6 ++++++
403     drivers/net/fm10k/base/fm10k_type.h | 6 ++++++
404     2 files changed, 12 insertions(+)
405    ...
406
407 Version 2 and later of a patchset should also include a short log of the changes so the reviewer knows what has changed.
408 This can be added to the cover letter or the annotations.
409 For example::
410
411    ---
412    v3:
413    * Fixed issued with version.map.
414
415    v2:
416    * Added i40e support.
417    * Renamed ethdev functions from rte_eth_ieee15888_*() to rte_eth_timesync_*()
418      since 802.1AS can be supported through the same interfaces.
419
420
421 .. _contrib_checkpatch:
422
423 Checking the Patches
424 --------------------
425
426 Patches should be checked for formatting and syntax issues using the ``checkpatches.sh`` script in the ``devtools``
427 directory of the DPDK repo.
428 This uses the Linux kernel development tool ``checkpatch.pl`` which  can be obtained by cloning, and periodically,
429 updating the Linux kernel sources.
430
431 The path to the original Linux script must be set in the environment variable ``DPDK_CHECKPATCH_PATH``.
432
433 Spell checking of commonly misspelled words
434 can be enabled by downloading the codespell dictionary::
435
436    https://raw.githubusercontent.com/codespell-project/codespell/master/codespell_lib/data/dictionary.txt
437
438 The path to the downloaded ``dictionary.txt`` must be set
439 in the environment variable ``DPDK_CHECKPATCH_CODESPELL``.
440
441 Environment variables required by the development tools,
442 are loaded from the following files, in order of preference::
443
444    .develconfig
445    ~/.config/dpdk/devel.config
446    /etc/dpdk/devel.config.
447
448 Once the environment variable is set, the script can be run as follows::
449
450    devtools/checkpatches.sh ~/patch/
451
452 The script usage is::
453
454    checkpatches.sh [-h] [-q] [-v] [-nX|-r range|patch1 [patch2] ...]
455
456 Then the git logs should be checked using the ``check-git-log.sh`` script.
457
458 The script usage is::
459
460    check-git-log.sh [-h] [-nX|-r range]
461
462 For both of the above scripts, the -n option is used to specify a number of commits from HEAD,
463 and the -r option allows the user specify a ``git log`` range.
464
465 .. _contrib_check_compilation:
466
467 Checking Compilation
468 --------------------
469
470 Compilation of patches is to be tested with ``devtools/test-meson-builds.sh`` script.
471
472 The script internally checks for dependencies, then builds for several
473 combinations of compilation configuration.
474 By default, each build will be put in a subfolder of the current working directory.
475 However, if it is preferred to place the builds in a different location,
476 the environment variable ``DPDK_BUILD_TEST_DIR`` can be set to that desired location.
477 For example, setting ``DPDK_BUILD_TEST_DIR=__builds`` will put all builds
478 in a single subfolder called "__builds" created in the current directory.
479 Setting ``DPDK_BUILD_TEST_DIR`` to an absolute directory path e.g. ``/tmp`` is also supported.
480
481
482 .. _integrated_abi_check:
483
484 Checking ABI compatibility
485 --------------------------
486
487 By default, ABI compatibility checks are disabled.
488
489 To enable them, a reference version must be selected via the environment
490 variable ``DPDK_ABI_REF_VERSION``. Contributors should ordinarily reference the
491 git tag of the most recent release of DPDK in ``DPDK_ABI_REF_VERSION``.
492
493 The ``devtools/test-meson-builds.sh`` script then build this reference version
494 in a temporary directory and store the results in a subfolder of the current
495 working directory.
496 The environment variable ``DPDK_ABI_REF_DIR`` can be set so that the results go
497 to a different location.
498
499 Sample::
500
501    DPDK_ABI_REF_VERSION=v19.11 DPDK_ABI_REF_DIR=/tmp ./devtools/test-meson-builds.sh
502
503
504 Sending Patches
505 ---------------
506
507 Patches should be sent to the mailing list using ``git send-email``.
508 You can configure an external SMTP with something like the following::
509
510    [sendemail]
511        smtpuser = name@domain.com
512        smtpserver = smtp.domain.com
513        smtpserverport = 465
514        smtpencryption = ssl
515
516 See the `Git send-email <https://git-scm.com/docs/git-send-email>`_ documentation for more details.
517
518 The patches should be sent to ``dev@dpdk.org``.
519 If the patches are a change to existing files then you should send them TO the maintainer(s) and CC ``dev@dpdk.org``.
520 The appropriate maintainer can be found in the ``MAINTAINERS`` file::
521
522    git send-email --to maintainer@some.org --cc dev@dpdk.org 000*.patch
523
524 Script ``get-maintainer.sh`` can be used to select maintainers automatically::
525
526   git send-email --to-cmd ./devtools/get-maintainer.sh --cc dev@dpdk.org 000*.patch
527
528 New additions can be sent without a maintainer::
529
530    git send-email --to dev@dpdk.org 000*.patch
531
532 You can test the emails by sending it to yourself or with the ``--dry-run`` option.
533
534 If the patch is in relation to a previous email thread you can add it to the same thread using the Message ID::
535
536    git send-email --to dev@dpdk.org --in-reply-to <1234-foo@bar.com> 000*.patch
537
538 The Message ID can be found in the raw text of emails or at the top of each Patchwork patch,
539 `for example <https://patches.dpdk.org/patch/7646/>`_.
540 Shallow threading (``--thread --no-chain-reply-to``) is preferred for a patch series.
541
542 Once submitted your patches will appear on the mailing list and in Patchwork.
543
544 Experienced committers may send patches directly with ``git send-email`` without the ``git format-patch`` step.
545 The options ``--annotate`` and ``confirm = always`` are recommended for checking patches before sending.
546
547
548 Backporting patches for Stable Releases
549 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
550
551 Sometimes a maintainer or contributor wishes, or can be asked, to send a patch
552 for a stable release rather than mainline.
553 In this case the patch(es) should be sent to ``stable@dpdk.org``,
554 not to ``dev@dpdk.org``.
555
556 Given that there are multiple stable releases being maintained at the same time,
557 please specify exactly which branch(es) the patch is for
558 using ``git send-email --subject-prefix='PATCH 16.11' ...``
559 and also optionally in the cover letter or in the annotation.
560
561
562 The Review Process
563 ------------------
564
565 Patches are reviewed by the community, relying on the experience and
566 collaboration of the members to double-check each other's work. There are a
567 number of ways to indicate that you have checked a patch on the mailing list.
568
569
570 Tested, Acked and Reviewed by
571 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
572
573 To indicate that you have interacted with a patch on the mailing list you
574 should respond to the patch in an email with one of the following tags:
575
576  * Reviewed-by:
577  * Acked-by:
578  * Tested-by:
579  * Reported-by:
580  * Suggested-by:
581
582 The tag should be on a separate line as follows::
583
584    tag-here: Name Surname <email@address.com>
585
586 Each of these tags has a specific meaning. In general, the DPDK community
587 follows the kernel usage of the tags. A short summary of the meanings of each
588 tag is given here for reference:
589
590 .. _statement: https://www.kernel.org/doc/html/latest/process/submitting-patches.html#reviewer-s-statement-of-oversight
591
592 ``Reviewed-by:`` is a strong statement_ that the patch is an appropriate state
593 for merging without any remaining serious technical issues. Reviews from
594 community members who are known to understand the subject area and to perform
595 thorough reviews will increase the likelihood of the patch getting merged.
596
597 ``Acked-by:`` is a record that the person named was not directly involved in
598 the preparation of the patch but wishes to signify and record their acceptance
599 and approval of it.
600
601 ``Tested-by:`` indicates that the patch has been successfully tested (in some
602 environment) by the person named.
603
604 ``Reported-by:`` is used to acknowledge person who found or reported the bug.
605
606 ``Suggested-by:`` indicates that the patch idea was suggested by the named
607 person.
608
609
610
611 Steps to getting your patch merged
612 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
613
614 The more work you put into the previous steps the easier it will be to get a
615 patch accepted. The general cycle for patch review and acceptance is:
616
617 #. Submit the patch.
618
619 #. Check the automatic test reports in the coming hours.
620
621 #. Wait for review comments. While you are waiting review some other patches.
622
623 #. Fix the review comments and submit a ``v n+1`` patchset::
624
625       git format-patch -3 -v 2
626
627 #. Update Patchwork to mark your previous patches as "Superseded".
628
629 #. If the patch is deemed suitable for merging by the relevant maintainer(s) or other developers they will ``ack``
630    the patch with an email that includes something like::
631
632       Acked-by: Alex Smith <alex.smith@example.com>
633
634    **Note**: When acking patches please remove as much of the text of the patch email as possible.
635    It is generally best to delete everything after the ``Signed-off-by:`` line.
636
637 #. Having the patch ``Reviewed-by:`` and/or ``Tested-by:`` will also help the patch to be accepted.
638
639 #. If the patch isn't deemed suitable based on being out of scope or conflicting with existing functionality
640    it may receive a ``nack``.
641    In this case you will need to make a more convincing technical argument in favor of your patches.
642
643 #. In addition a patch will not be accepted if it doesn't address comments from a previous version with fixes or
644    valid arguments.
645
646 #. It is the responsibility of a maintainer to ensure that patches are reviewed and to provide an ``ack`` or
647    ``nack`` of those patches as appropriate.
648
649 #. Once a patch has been acked by the relevant maintainer, reviewers may still comment on it for a further
650    two weeks. After that time, the patch should be merged into the relevant git tree for the next release.
651    Additional notes and restrictions:
652
653    * Patches should be acked by a maintainer at least two days before the release merge
654      deadline, in order to make that release.
655    * For patches acked with less than two weeks to go to the merge deadline, all additional
656      comments should be made no later than two days before the merge deadline.
657    * After the appropriate time for additional feedback has passed, if the patch has not yet
658      been merged to the relevant tree by the committer, it should be treated as though it had,
659      in that any additional changes needed to it must be addressed by a follow-on patch, rather
660      than rework of the original.
661    * Trivial patches may be merged sooner than described above at the tree committer's
662      discretion.