Skip to content

Latest commit

 

History

History
377 lines (302 loc) · 13.9 KB

CONTRIBUTING.md

File metadata and controls

377 lines (302 loc) · 13.9 KB

Contribution Guidelines

This document contains guidelines for contributing code to grout. It has to be followed in order for your patches to be approved and applied.

Patch the code

Anyone can contribute to grout. First you need to clone the repository and build the project:

git clone https://github.com/DPDK/grout
cd grout
gmake

Patch the code. Write some tests. Ensure that your code is properly formatted with clang-format. Ensure that everything builds and works as expected. Ensure that you did not break anything.

  • If applicable, update unit/smoke tests.
  • If adding a new feature, please consider adding new tests.
  • Do not forget to update the docs, if applicable.
  • Run the linters using gmake lint.
  • Run unit tests using gmake unit-tests.
  • Run smoke tests using sudo gmake smoke-tests.

Once you are happy with your work, you can create a commit (or several commits). Follow these general rules:

  • Limit the first line (title) of the commit message to 60 characters.

  • Use a short prefix for the commit title for readability with git log --oneline. Do not use the fix: nor feature: prefixes. See recent commits for inspiration.

  • Only use lower case letters for the commit title except when quoting symbols or known acronyms.

  • Use the body of the commit message to actually explain what your patch does and why it is useful. Even if your patch is a one line fix, the description is not limited in length and may span over multiple paragraphs. Use proper English syntax, grammar and punctuation.

  • Address only one issue/topic per commit.

  • Describe your changes in imperative mood, e.g. "make xyzzy do frotz" instead of "[This patch] makes xyzzy do frotz" or "[I] changed xyzzy to do frotz", as if you are giving orders to the codebase to change its behaviour.

  • If you are fixing a GitHub issue, add an appropriate Closes: <ISSUE_URL> trailer.

  • If you are fixing a regression introduced by another commit, add a Fixes: <SHORT_ID_12_LONG> "<COMMIT_TITLE>" trailer.

  • When in doubt, follow the format and layout of the recent existing commits.

  • The following trailers are accepted in commits. If you are using multiple trailers in a commit, it's preferred to also order them according to this list. Note, that the commit-msg hook (see below for installing) will automatically sort them for you when committing.

    • Closes: <URL> closes the referenced issue.
    • Fixes: <sha> ("<title>") reference the commit that introduced a regression.
    • Link:
    • Cc:
    • Suggested-by:
    • Requested-by:
    • Reported-by:
    • Co-authored-by:
    • Signed-off-by: compulsory!
    • Tested-by: used in review after submission to the mailing list. If minimal changes occur between respins, feel free to include that into your respin to keep track of previous reviews.
    • Reviewed-by: used in review after submission. If minimal changes occur between respins, feel free to include that into your respin to keep track of previous reviews.
    • Acked-by: used in review after submission.

There is a great reference for commit messages in the Linux kernel documentation.

IMPORTANT: you must sign-off your work using git commit --signoff. Follow the Linux kernel developer's certificate of origin for more details. All contributions are made under the [BSD-3-Clause][https://spdx.org/licenses/BSD-3-Clause.html] license. Please use your real name and not a pseudonym. Here is an example:

Signed-off-by: Robin Jarry <[email protected]>

Once you are happy with your commits, you can verify that they are correct with the following command:

$ gmake check-patches
ok    [PATCH 1/2] 'worker: allow starting threads outside of current process affinity'
ok    [PATCH 2/2] 'main: allow creating ports when only a single cpu is available'
2/2 valid patches

Option 1: Create a pull request

Fork the project if you haven't already done so. Configure your clone to point at your fork and keep a reference on the upstream repository. You can also take the opportunity to configure git to use SSH for pushing and https:// for pulling.

$ git remote remove origin
$ git remote add upstream https://github.com/DPDK/grout
$ git remote add origin https://github.com/rjarry/grout
$ git fetch --all
Fetching origin
From https://github.com/rjarry/grout
 * [new branch]                main       -> origin/main
Fetching upstream
From https://github.com/DPDK/grout
 * [new branch]                main       -> upstream/main
$ git config [email protected]:.pushinsteadof https://github.com/

Create a local branch named after the topic of your patch(es) and push it on your fork.

$ git checkout -b cpu-affinity
$ git push origin cpu-affinity
Enumerating objects: 11, done.
Counting objects: 100% (11/11), done.
Delta compression using up to 8 threads
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 771 bytes | 771.00 KiB/s, done.
Total 6 (delta 5), reused 0 (delta 0), pack-reused 0 (from 0)
remote: Resolving deltas: 100% (5/5), completed with 5 local objects.
remote:
remote: Create a pull request for 'cpu-affinity' on GitHub by visiting:
remote:      https://github.com/rjarry/grout/pull/new/cpu-affinity
remote:
To github.com:rjarry/grout
 * [new branch]                cpu-affinity -> cpu-affinity

Before your pull request can be applied, it needs to be reviewed and approved by others. They will indicate their approval by replying to your patch with a Tested-by, Reviewed-by or Acked-by (see also: the git wiki) trailer. For example:

Acked-by: Robin Jarry <[email protected]>

There is no "chain of command" in grout. Anyone that feels comfortable enough to "ack" or "review" a patch should express their opinion freely with an official Acked-by or Reviewed-by trailer. If you only tested that a patch works as expected but did not conduct a proper code review, you can indicate it with a Tested-by trailer.

You can follow the review process on GitHub web UI.

Wait for feedback. Address comments and amend changes to your original commit(s). Then you should push to refresh your branch which will update the pull request:

$ git commit --amend
$ git rebase -i upstream/main
$ git push --force origin cpu-affinity
Enumerating objects: 23, done.
Counting objects: 100% (23/23), done.
Delta compression using up to 8 threads
Compressing objects: 100% (9/9), done.
Writing objects: 100% (12/12), 1.04 KiB | 1.04 MiB/s, done.
Total 12 (delta 7), reused 0 (delta 0), pack-reused 0 (from 0)
remote: Resolving deltas: 100% (7/7), completed with 7 local objects.
To github.com:rjarry/grout
 + 0bde1bea3491...e66d7e8ef74e cpu-affinity -> cpu-affinity (forced update)

Be polite, patient and address all of the reviewers' remarks. If you disagree with something, feel free to discuss it.

Once your patch has been reviewed and approved (and if the maintainer is OK with it), the pull request will be applied.

Option 2: Send your patches on the mailing list

If you do not have a GitHub account and you do not want to create one, you can also contribute by sending your patches on the [email protected] mailing list. Note that you do not need to subscribe to the mailing list in order to contribute.

Before sending the patch, you should configure your local clone with sane defaults:

$ gmake git-config
git config format.subjectPrefix "PATCH grout"
git config sendemail.to "[email protected]"
git config format.notes true
git config format.coverFromDescription subject
git config notes.rewriteRef refs/notes/commits
git config notes.rewriteMode concatenate
ln -s ../../devtools/commit-msg .git/hooks/commit-msg

And send the patch to the mailing list (step-by-step instructions):

$ git send-email --annotate -1

Before your patch can be applied, it needs to be reviewed and approved by others. They will indicate their approval by replying to your patch with a Tested-by, Reviewed-by or Acked-by (see also: the git wiki) trailer. For example:

Acked-by: Robin Jarry <[email protected]>

There is no "chain of command" in grout. Anyone that feels comfortable enough to "ack" or "review" a patch should express their opinion freely with an official Acked-by or Reviewed-by trailer. If you only tested that a patch works as expected but did not conduct a proper code review, you can indicate it with a Tested-by trailer.

You can follow the review process via email.

Wait for feedback. Address comments and amend changes to your original commit. Then you should send a v2 (and maybe a v3, v4, etc.):

$ git send-email --annotate -v2 -1

Be polite, patient and address all of the reviewers' remarks. If you disagree with something, feel free to discuss it.

To help reviewers track what changed between respins of your patch, it is nice to include a mini change log after the --- line that separates your commit message from the diff. You can either do that manually when reviewing (git send-email --annotate) before sending your email, or you can use git notes to make this part of your git workflow:

$ git notes edit $ref

When format.notes = true is set in your git configuration, notes attached to commits will automatically be included in the correct location by git format-patch and git send-email.

If you have set notes.rewriteMode = concatenate, squashing commits together with git rebase -i will also merge their respective notes by concatenating them.

Once your patch has been reviewed and approved (and if the maintainer is OK with it), it will be applied and pushed.

Code Style

Please refer only to the quoted sections when guidelines are sourced from outside documents as some rules of the source material may conflict with other rules set out in this document.

When updating an existing file, respect the existing coding style unless there is a good reason not to do so.

C code

All C code follows the rules specified in the .clang-format file. The code can be automatically formatted by running gmake format.

If gmake lint accepts your code, it is most likely properly formatted.

Unused function parameters

When a function definition has unused parameters because the implementation does not make any use of them, the compiler will produce warnings.

The whole grout code base is compiled with --std=gnu2x which allows unnamed parameters even in function definitions. Make use of that to indicate unused parameters.

When the parameter type is explicit (e.g. struct rte_graph *), simply remove the parameter name which is usually redundant, e.g.:

void foo(struct rte_graph *, struct rte_node *node, void *priv) {
        bar(node, priv);
}

When the type is not explicit (e.g. int or void *), keep the parameter wrapped in a "block" style comment, e.g.:

void foo(struct rte_graph *, struct rte_node *node, void * /*priv*/) {
        baz(node);
}

Do NOT use inline (void)arg; statements:

void foo(struct rte_graph *graph, struct rte_node *node, void *priv) {
        (void)graph;
        (void)priv;
        baz(node);
}

Since it can be confusing in long functions and does not convey any meaning about the variables being unused parameters or local variables. Also, even if the parameters would become used in the future, the compiler will not warn about a useless warning suppression.

Also AVOID __attribute__((unused)) (or any macro wrapping it):

void foo(
        struct rte_graph *graph __attribute__((unused)),
        struct rte_node *node,
        void * priv __rte_unused
) {
        baz(node);
}

It is overly verbose.

Commenting

Use C99 line comments:

// This is a line comment.
// Please use this format instead of block comments.
int foo(void);

Do NOT use block comments:

/*
 * This is a block comment.
 * Please use C99 line comments instead.
 */
int foo(void);

The only place where "block" style comments should be used is to identify unused function parameters (see previous section).

Editor modelines

Some editors can interpret configuration information embedded in source files, indicated with special markers. For example, emacs interprets lines marked like this:

-*- mode: c -*-

Or like this:

/*
Local Variables:
compile-command: "gcc -DMAGIC_DEBUG_FLAG foo.c"
End:
*/

Vim interprets markers that look like this:

/* vim:set sw=8 noet */

Do not include any of these in source files. People have their own personal editor configurations, and your source files should not override them. This includes markers for indentation and mode configuration. People may use their own custom mode, or may have some other magic method for making indentation work correctly. — Linux kernel coding style

In the same way, files specific to only your workflow (for example the .vscode directory) are not desired. If a script might be useful to other contributors, it can be sent as a separate patch that adds it to the devtools directory. Since it is not editor-specific, an .editorconfig file is available in the repository.