]> git.proxmox.com Git - ceph.git/blob - ceph/SubmittingPatches.rst
import 15.2.2 octopus source
[ceph.git] / ceph / SubmittingPatches.rst
1 ==========================
2 Submitting Patches to Ceph
3 ==========================
4
5 Patches to Ceph can be divided into three categories:
6
7 1. patches targeting Ceph kernel code
8 2. patches targeting the "master" branch
9 3. patches targeting stable branches (e.g.: "nautilus")
10
11 Some parts of Ceph - notably the RBD and CephFS kernel clients - are maintained
12 within the Linux Kernel. For patches targeting this code, please refer to the
13 file ``SubmittingPatches-kernel.rst``.
14
15 The rest of this document assumes that your patch relates to Ceph code that is
16 maintained in the GitHub repository https://github.com/ceph/ceph
17
18 If you have a patch that fixes an issue, feel free to open a GitHub pull request
19 ("PR") targeting the "master" branch, but do read this document first, as it
20 contains important information for ensuring that your PR passes code review
21 smoothly.
22
23 For patches targeting stable branches (e.g. "nautilus"), please also see
24 the file ``SubmittingPatches-backports.rst``.
25
26 .. contents::
27 :depth: 3
28
29
30 Sign your work
31 --------------
32
33 The sign-off is a simple line at the end of the explanation for the
34 commit, which certifies that you wrote it or otherwise have the right to
35 pass it on as a open-source patch. The rules are pretty simple: if you
36 can certify the below:
37
38 Developer's Certificate of Origin 1.1
39 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
40
41 By making a contribution to this project, I certify that:
42
43 (a) The contribution was created in whole or in part by me and I
44 have the right to submit it under the open source license
45 indicated in the file; or
46
47 (b) The contribution is based upon previous work that, to the best
48 of my knowledge, is covered under an appropriate open source
49 license and I have the right under that license to submit that
50 work with modifications, whether created in whole or in part
51 by me, under the same open source license (unless I am
52 permitted to submit under a different license), as indicated
53 in the file; or
54
55 (c) The contribution was provided directly to me by some other
56 person who certified (a), (b) or (c) and I have not modified
57 it.
58
59 (d) I understand and agree that this project and the contribution
60 are public and that a record of the contribution (including all
61 personal information I submit with it, including my sign-off) is
62 maintained indefinitely and may be redistributed consistent with
63 this project or the open source license(s) involved.
64
65 then you just add a line saying ::
66
67 Signed-off-by: Random J Developer <random@developer.example.org>
68
69 using your real name (sorry, no pseudonyms or anonymous contributions.)
70
71 Git can sign off on your behalf
72 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
73
74 Please note that git makes it trivially easy to sign commits. First, set the
75 following config options::
76
77 $ git config --list | grep user
78 user.email=my_real_email_address@example.com
79 user.name=My Real Name
80
81 Then just remember to use ``git commit -s``. Git will add the ``Signed-off-by``
82 line automatically.
83
84
85 Separate your changes
86 ---------------------
87
88 Group *logical changes* into individual commits.
89
90 If you have a series of bulleted modifications, consider separating each of
91 those into its own commit.
92
93 For example, if your changes include both bug fixes and performance enhancements
94 for a single component, separate those changes into two or more commits. If your
95 changes include an API update, and a new feature which uses that new API,
96 separate those into two patches.
97
98 On the other hand, if you make a single change that affects numerous
99 files, group those changes into a single commit. Thus a single logical change is
100 contained within a single patch. (If the change needs to be backported, that
101 might change the calculus, because smaller commits are easier to backport.)
102
103
104 Describe your changes
105 ---------------------
106
107 Each commit has an associated commit message that is stored in git. The first
108 line of the commit message is the `commit title`_. The second line should be
109 left blank. The lines that follow constitute the `commit message`_.
110
111 A commit and its message should be focused around a particular change.
112
113 Commit title
114 ^^^^^^^^^^^^
115
116 The text up to the first empty line in a commit message is the commit
117 title. It should be a single short line of at most 72 characters,
118 summarizing the change, and prefixed with the
119 subsystem or module you are changing. Also, it is conventional to use the
120 imperative mood in the commit title. Positive examples include::
121
122 mds: add perf counter for finisher of MDSRank
123 osd: make the ClassHandler::mutex private
124
125 More positive examples can be obtained from the git history of the ``master``
126 branch::
127
128 git log
129
130 Some negative examples (how *not* to title a commit message)::
131
132 update driver X
133 bug fix for driver X
134 fix issue 99999
135
136 Further to the last negative example ("fix issue 99999"), see `Fixes line`_.
137
138 Commit message
139 ^^^^^^^^^^^^^^
140
141 (This section is about the body of the commit message. Please also see
142 the preceding section, `Commit title`_, for advice on titling commit messages.)
143
144 In the body of your commit message, be as specific as possible. If the commit
145 message title was too short to fully state what the commit is doing, use the
146 body to explain not just the "what", but also the "why".
147
148 For positive examples, peruse ``git log`` in the ``master`` branch. A negative
149 example would be a commit message that merely states the obvious. For example:
150 "this patch includes updates for subsystem X. Please apply."
151
152 .. _`fixes line`:
153
154 Fixes line(s)
155 ^^^^^^^^^^^^^
156
157 If the commit fixes one or more issues tracked by http://tracker.ceph.com,
158 add a ``Fixes:`` line (or lines) to the commit message, to connect this change
159 to addressed issue(s) - for example::
160
161 Fixes: http://tracker.ceph.com/issues/12345
162
163 This line should be added just before the ``Signed-off-by:`` line (see `Sign
164 your work`_).
165
166 It helps reviewers to get more context of this bug and facilitates updating of
167 the bug tracker. Also, anyone perusing the git history will see this line and be
168 able to refer to the bug tracker easily.
169
170 Here is an example showing a properly-formed commit message::
171
172 doc: add "--foo" option to bar
173
174 This commit updates the man page for bar with the newly added "--foo"
175 option.
176
177 Fixes: http://tracker.ceph.com/issues/12345
178 Signed-off-by: Random J Developer <random@developer.example.org>
179
180 If a commit fixes a regression introduced by a different commit, please also
181 (in addition to the above) add a line referencing the SHA1 of the commit that
182 introduced the regression. For example::
183
184 Fixes: 9dbe7a003989f8bb45fe14aaa587e9d60a392727
185
186
187 PR best practices
188 -----------------
189
190 PRs should be opened on branches contained in your fork of
191 https://github.com/ceph/ceph.git - do not push branches directly to
192 ``ceph/ceph.git``.
193
194 PRs should target "master". If you need to add a patch to a stable branch, such
195 as "nautilus", see the file ``SubmittingPatches-backports.rst``.
196
197 In addition to a base, or "target" branch, PRs have several other components:
198 the `PR title`_, the `PR description`_, labels, comments, etc. Of these, the PR
199 title and description are relevant for new contributors.
200
201 PR title
202 ^^^^^^^^
203
204 If your PR has only one commit, the PR title can be the same as the commit title
205 (and GitHub will suggest this). If the PR has multiple commits, do not accept
206 the title GitHub suggest. Either use the title of the most relevant commit, or
207 write your own title. In the latter case, use the same "subsystem: short
208 description" convention described in `Commit title`_ for the PR title, with
209 the following difference: the PR title describes the entire set of changes,
210 while the `Commit title`_ describes only the changes in a particular commit.
211
212 Keep in mind that the PR titles feed directly into the script that generates
213 release notes and it is tedious to clean up non-conformant PR titles at release
214 time. This document places no limit on the length of PR titles, but be aware
215 that they are subject to editing as part of the release process.
216
217 PR description
218 ^^^^^^^^^^^^^^
219
220 In addition to a title, the PR also has a description field, or "body".
221
222 The PR description is a place for summarizing the PR as a whole. It need not
223 duplicate information that is already in the commit messages. It can contain
224 notices to maintainers, links to tracker issues and other related information,
225 to-do lists, etc. The PR title and description should give readers a high-level
226 notion of what the PR is about, quickly enabling them to decide whether they
227 should take a closer look.
228
229
230 Flag your changes for backport
231 ------------------------------
232
233 If you believe your changes should be backported to stable branches after the PR
234 is merged, open a tracker issue at https://tracker.ceph.com explaining:
235
236 1. what bug is fixed
237 2. why does the bug need to be fixed in <release>
238
239 and fill out the Backport field in the tracker issue. For example::
240
241 Backport: mimic, nautilus
242
243 For information on how backports are done in the Ceph project, refer to the
244 document ``SubmittingPatches-backports.rst``.
245
246
247 Test your changes
248 -----------------
249
250 Before opening your PR, it's a good idea to run tests on your patchset. Doing
251 that is simple, though the process can take a long time to complete, especially
252 on older machines with less memory and spinning disks.
253
254 The most simple test is to verify that your patchset builds, at least in your
255 own development environment. The commands for this are::
256
257 ./install-deps.sh
258 ./do_cmake.sh
259 make
260
261 Ceph comes with a battery of tests that can be run on a single machine. These
262 are collectively referred to as "make check", and can be run by executing the
263 following command::
264
265 ./run-make-check.sh
266
267 If your patchset does not build, or if one or more of the "make check" tests
268 fails, but the error shown is not obviously related to your patchset, don't let
269 that dissuade you from opening a PR. The Ceph project has a Jenkins instance
270 which will build your PR branch and run "make check" on it in a controlled
271 environment.
272
273 Once your patchset builds and passes "make check", you can run even more tests
274 on it by issuing the following commands::
275
276 cd build
277 ../qa/run-standalone.sh
278
279 Like "make check", the standalone tests take a long time to run. They also
280 produce voluminous output. If one or more of the standalone tests fails, it's
281 likely the relevant part of the output will have scrolled off your screen or
282 gotten swapped out of your buffer. Therefore, it makes sense to capture the
283 output in a file for later analysis.
284
285
286 Document your changes
287 ---------------------
288
289 If you have added or modified any user-facing functionality, such as CLI
290 commands or their output, then the pull request must include appropriate updates
291 to documentation.
292
293 It is the submitter's responsibility to make the changes, and the reviewer's
294 responsibility to make sure they are not merging changes that do not
295 have the needed updates to documentation.
296
297 Where there are areas that have absent documentation, or there is no clear place
298 to note the change that is being made, the reviewer should contact the component
299 lead, who should arrange for the missing section to be created with sufficient
300 detail for the PR submitter to document their changes.
301
302 When writing and/or editing documentation, follow the Google Developer
303 Documentation Style Guide: https://developers.google.com/style/