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