]> git.proxmox.com Git - mirror_zfs.git/blame - .github/CONTRIBUTING.md
Provide links to info about ZFS Buildbot options
[mirror_zfs.git] / .github / CONTRIBUTING.md
CommitLineData
d57f03e4
GM
1# Contributing to ZFS on Linux
2<p align="center"><img src="http://zfsonlinux.org/images/zfs-linux.png"/></p>
3
4*First of all, thank you for taking the time to contribute!*
5
6By using the following guidelines, you can help us make ZFS on Linux even
7better.
8
9## Table Of Contents
10[What should I know before I get
11started?](#what-should-i-know-before-i-get-started)
12
13 * [Get ZFS](#get-zfs)
14 * [Debug ZFS](#debug-zfs)
15 * [Where can I ask for help?](#where-can-I-ask-for-help)
16
17[How Can I Contribute?](#how-can-i-contribute)
18
19 * [Reporting Bugs](#reporting-bugs)
20 * [Suggesting Enhancements](#suggesting-enhancements)
21 * [Pull Requests](#pull-requests)
22 * [Testing](#testing)
23
24[Style Guides](#style-guides)
25
26 * [Coding Conventions](#coding-conventions)
cb524aa2
GDN
27 * [Commit Message Formats](#commit-message-formats)
28 * [New Changes](#new-changes)
29 * [OpenZFS Patch Ports](#openzfs-patch-ports)
d57f03e4
GM
30
31Helpful resources
32
33 * [ZFS on Linux wiki](https://github.com/zfsonlinux/zfs/wiki)
34 * [OpenZFS Documentation](http://open-zfs.org/wiki/Developer_resources)
35
36## What should I know before I get started?
37
38### Get ZFS
39You can build zfs packages by following [these
40instructions](https://github.com/zfsonlinux/zfs/wiki/Building-ZFS),
41or install stable packages from [your distribution's
42repository](https://github.com/zfsonlinux/zfs/wiki/Getting-Started).
43
44### Debug ZFS
45A variety of methods and tools are available to aid ZFS developers.
46It's strongly recommended that when developing a patch the `--enable-debug`
47configure option should be set. This will enable additional correctness
48checks and all the ASSERTs to help quickly catch potential issues.
49
50In addition, there are numerous utilities and debugging files which
51provide visibility in to the inner workings of ZFS. The most useful
52of these tools are discussed in detail on the [debugging ZFS wiki
53page](https://github.com/zfsonlinux/zfs/wiki/Debugging).
54
55### Where can I ask for help?
56The [mailing list](https://github.com/zfsonlinux/zfs/wiki/Mailing-Lists)
57is the best place to ask for help.
58
59## How Can I Contribute?
60
61### Reporting Bugs
62*Please* contact us via the [mailing
63list](https://github.com/zfsonlinux/zfs/wiki/Mailing-Lists) if you aren't
64certain that you are experiencing a bug.
65
66If you run into an issue, please search our [issue
67tracker](https://github.com/zfsonlinux/zfs/issues) *first* to ensure the
68issue hasn't been reported before. Open a new issue only if you haven't
69found anything similar to your issue.
70
71You can open a new issue and search existing issues using the public [issue
72tracker](https://github.com/zfsonlinux/zfs/issues).
73
74#### When opening a new issue, please include the following information at the top of the issue:
75* What distribution (with version) you are using.
76* The spl and zfs versions you are using, installation method (repository
77or manual compilation).
78* Describe the issue you are experiencing.
79* Describe how to reproduce the issue.
80* Including any warning/errors/backtraces from the system logs.
81
82When a new issue is opened, it is not uncommon for developers to request
83additional information.
84
85In general, the more detail you share about a problem the quicker a
86developer can resolve it. For example, providing a simple test case is always
87exceptionally helpful.
88
89Be prepared to work with the developers investigating your issue. Your
90assistance is crucial in providing a quick solution. They may ask for
91information like:
92
93* Your pool configuration as reported by `zdb` or `zpool status`.
94* Your hardware configuration, such as
95 * Number of CPUs.
96 * Amount of memory.
97 * Whether your system has ECC memory.
98 * Whether it is running under a VMM/Hypervisor.
99 * Kernel version.
100 * Values of the spl/zfs module parameters.
101* Stack traces which may be logged to `dmesg`.
102
103### Suggesting Enhancements
104ZFS on Linux is a widely deployed production filesystem which is under
105active development. The team's primary focus is on fixing known issues,
106improving performance, and adding compelling new features.
107
108You can view the list of proposed features
109by filtering the issue tracker by the ["Feature"
110label](https://github.com/zfsonlinux/zfs/issues?q=is%3Aopen+is%3Aissue+label%3AFeature).
111If you have an idea for a feature first check this list. If your idea already
112appears then add a +1 to the top most comment, this helps us gauge interest
113in that feature.
114
115Otherwise, open a new issue and describe your proposed feature. Why is this
116feature needed? What problem does it solve?
117
118### Pull Requests
119* All pull requests must be based on the current master branch and apply
120without conflicts.
121* Please attempt to limit pull requests to a single commit which resolves
122one specific issue.
cb524aa2
GDN
123* Make sure your commit messages are in the correct format. See the
124[Commit Message Formats](#commit-message-formats) section for more information.
d57f03e4
GM
125* When updating a pull request squash multiple commits by performing a
126[rebase](https://git-scm.com/docs/git-rebase) (squash).
127* For large pull requests consider structuring your changes as a stack of
128logically independent patches which build on each other. This makes large
129changes easier to review and approve which speeds up the merging process.
130* Try to keep pull requests simple. Simple code with comments is much easier
131to review and approve.
132* Test cases should be provided when appropriate.
133* If your pull request improves performance, please include some benchmarks.
134* The pull request must pass all required [ZFS
135Buildbot](http://build.zfsonlinux.org/) builders before
136being accepted. If you are experiencing intermittent TEST
137builder failures, you may be experiencing a [test suite
138issue](https://github.com/zfsonlinux/zfs/issues?q=is%3Aissue+is%3Aopen+label%3A%22Test+Suite%22).
05a5357a
GDN
139There are also various [buildbot options](https://github.com/zfsonlinux/zfs/wiki/Buildbot-Options)
140to control how changes are tested.
d57f03e4
GM
141* All proposed changes must be approved by a ZFS on Linux organization member.
142
143### Testing
144All help is appreciated! If you're in a position to run the latest code
145consider helping us by reporting any functional problems, performance
146regressions or other suspected issues. By running the latest code to a wide
147range of realistic workloads, configurations and architectures we're better
148able quickly identify and resolve potential issues.
149
150Users can also run the [ZFS Test
151Suite](https://github.com/zfsonlinux/zfs/tree/master/tests) on their systems
152to verify ZFS is behaving as intended.
153
154## Style Guides
155
156### Coding Conventions
157We currently use [C Style and Coding Standards for
158SunOS](http://www.cis.upenn.edu/%7Elee/06cse480/data/cstyle.ms.pdf) as our
159coding convention.
cb524aa2
GDN
160
161### Commit Message Formats
162#### New Changes
163Commit messages for new changes must meet the following guidelines:
164* In 50 characters or less, provide a summary of the change as the
165first line in the commit message.
166* A body which provides a description of the change. If necessary,
167please summarize important information such as why the proposed
168approach was chosen or a brief description of the bug you are resolving.
169Each line of the body must be 72 characters or less.
434c76ca
KP
170* The last line must be a `Signed-off-by:` tag with the developer's
171name followed by their email. This is the developer's certification
172that they have the right to submit the patch for inclusion into
173the code base and indicates agreement to the [Developer's Certificate
174of Origin](https://www.kernel.org/doc/html/latest/process/submitting-patches.html#sign-your-work-the-developer-s-certificate-of-origin).
175Code without a proper signoff cannot be merged.
cb524aa2
GDN
176
177Git can append the `Signed-off-by` line to your commit messages. Simply
178provide the `-s` or `--signoff` option when performing a `git commit`.
179For more information about writing commit messages, visit [How to Write
180a Git Commit Message](https://chris.beams.io/posts/git-commit/).
181An example commit message is provided below.
182
183```
184This line is a brief summary of your change
185
186Please provide at least a couple sentences describing the
187change. If necessary, please summarize decisions such as
188why the proposed approach was chosen or what bug you are
189attempting to solve.
190
191Signed-off-by: Contributor <contributor@email.com>
192```
193
194#### OpenZFS Patch Ports
195If you are porting an OpenZFS patch, the commit message must meet
196the following guidelines:
197* The first line must be the summary line from the OpenZFS commit.
198It must begin with `OpenZFS dddd - ` where `dddd` is the OpenZFS issue number.
199* Provides a `Authored by:` line to attribute the patch to the original author.
200* Provides the `Reviewed by:` and `Approved by:` lines from the original
201OpenZFS commit.
202* Provides a `Ported-by:` line with the developer's name followed by
203their email.
204* Provides a `OpenZFS-issue:` line which is a link to the original illumos
205issue.
206* Provides a `OpenZFS-commit:` line which links back to the original OpenZFS
207commit.
208* If necessary, provide some porting notes to describe any deviations from
209the original OpenZFS commit.
210
211An example OpenZFS patch port commit message is provided below.
212```
213OpenZFS 1234 - Summary from the original OpenZFS commit
214
215Authored by: Original Author <original@email.com>
216Reviewed by: Reviewer One <reviewer1@email.com>
217Reviewed by: Reviewer Two <reviewer2@email.com>
218Approved by: Approver One <approver1@email.com>
219Ported-by: ZFS Contributor <contributor@email.com>
220
221Provide some porting notes here if necessary.
222
223OpenZFS-issue: https://www.illumos.org/issues/1234
224OpenZFS-commit: https://github.com/openzfs/openzfs/commit/abcd1234
225```