HOWTO 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653
  1. HOWTO do Linux kernel development
  2. =================================
  3. This is the be-all, end-all document on this topic. It contains
  4. instructions on how to become a Linux kernel developer and how to learn
  5. to work with the Linux kernel development community. It tries to not
  6. contain anything related to the technical aspects of kernel programming,
  7. but will help point you in the right direction for that.
  8. If anything in this document becomes out of date, please send in patches
  9. to the maintainer of this file, who is listed at the bottom of the
  10. document.
  11. Introduction
  12. ------------
  13. So, you want to learn how to become a Linux kernel developer? Or you
  14. have been told by your manager, "Go write a Linux driver for this
  15. device." This document's goal is to teach you everything you need to
  16. know to achieve this by describing the process you need to go through,
  17. and hints on how to work with the community. It will also try to
  18. explain some of the reasons why the community works like it does.
  19. The kernel is written mostly in C, with some architecture-dependent
  20. parts written in assembly. A good understanding of C is required for
  21. kernel development. Assembly (any architecture) is not required unless
  22. you plan to do low-level development for that architecture. Though they
  23. are not a good substitute for a solid C education and/or years of
  24. experience, the following books are good for, if anything, reference:
  25. - "The C Programming Language" by Kernighan and Ritchie [Prentice Hall]
  26. - "Practical C Programming" by Steve Oualline [O'Reilly]
  27. - "C: A Reference Manual" by Harbison and Steele [Prentice Hall]
  28. The kernel is written using GNU C and the GNU toolchain. While it
  29. adheres to the ISO C89 standard, it uses a number of extensions that are
  30. not featured in the standard. The kernel is a freestanding C
  31. environment, with no reliance on the standard C library, so some
  32. portions of the C standard are not supported. Arbitrary long long
  33. divisions and floating point are not allowed. It can sometimes be
  34. difficult to understand the assumptions the kernel has on the toolchain
  35. and the extensions that it uses, and unfortunately there is no
  36. definitive reference for them. Please check the gcc info pages (`info
  37. gcc`) for some information on them.
  38. Please remember that you are trying to learn how to work with the
  39. existing development community. It is a diverse group of people, with
  40. high standards for coding, style and procedure. These standards have
  41. been created over time based on what they have found to work best for
  42. such a large and geographically dispersed team. Try to learn as much as
  43. possible about these standards ahead of time, as they are well
  44. documented; do not expect people to adapt to you or your company's way
  45. of doing things.
  46. Legal Issues
  47. ------------
  48. The Linux kernel source code is released under the GPL. Please see the
  49. file, COPYING, in the main directory of the source tree, for details on
  50. the license. If you have further questions about the license, please
  51. contact a lawyer, and do not ask on the Linux kernel mailing list. The
  52. people on the mailing lists are not lawyers, and you should not rely on
  53. their statements on legal matters.
  54. For common questions and answers about the GPL, please see:
  55. https://www.gnu.org/licenses/gpl-faq.html
  56. Documentation
  57. -------------
  58. The Linux kernel source tree has a large range of documents that are
  59. invaluable for learning how to interact with the kernel community. When
  60. new features are added to the kernel, it is recommended that new
  61. documentation files are also added which explain how to use the feature.
  62. When a kernel change causes the interface that the kernel exposes to
  63. userspace to change, it is recommended that you send the information or
  64. a patch to the manual pages explaining the change to the manual pages
  65. maintainer at mtk.manpages@gmail.com, and CC the list
  66. linux-api@vger.kernel.org.
  67. Here is a list of files that are in the kernel source tree that are
  68. required reading:
  69. README
  70. This file gives a short background on the Linux kernel and describes
  71. what is necessary to do to configure and build the kernel. People
  72. who are new to the kernel should start here.
  73. :ref:`Documentation/Changes <changes>`
  74. This file gives a list of the minimum levels of various software
  75. packages that are necessary to build and run the kernel
  76. successfully.
  77. :ref:`Documentation/CodingStyle <codingstyle>`
  78. This describes the Linux kernel coding style, and some of the
  79. rationale behind it. All new code is expected to follow the
  80. guidelines in this document. Most maintainers will only accept
  81. patches if these rules are followed, and many people will only
  82. review code if it is in the proper style.
  83. :ref:`Documentation/SubmittingPatches <submittingpatches>` and :ref:`Documentation/SubmittingDrivers <submittingdrivers>`
  84. These files describe in explicit detail how to successfully create
  85. and send a patch, including (but not limited to):
  86. - Email contents
  87. - Email format
  88. - Who to send it to
  89. Following these rules will not guarantee success (as all patches are
  90. subject to scrutiny for content and style), but not following them
  91. will almost always prevent it.
  92. Other excellent descriptions of how to create patches properly are:
  93. "The Perfect Patch"
  94. https://www.ozlabs.org/~akpm/stuff/tpp.txt
  95. "Linux kernel patch submission format"
  96. http://linux.yyz.us/patch-format.html
  97. :ref:`Documentation/stable_api_nonsense.txt <stable_api_nonsense>`
  98. This file describes the rationale behind the conscious decision to
  99. not have a stable API within the kernel, including things like:
  100. - Subsystem shim-layers (for compatibility?)
  101. - Driver portability between Operating Systems.
  102. - Mitigating rapid change within the kernel source tree (or
  103. preventing rapid change)
  104. This document is crucial for understanding the Linux development
  105. philosophy and is very important for people moving to Linux from
  106. development on other Operating Systems.
  107. :ref:`Documentation/SecurityBugs <securitybugs>`
  108. If you feel you have found a security problem in the Linux kernel,
  109. please follow the steps in this document to help notify the kernel
  110. developers, and help solve the issue.
  111. :ref:`Documentation/ManagementStyle <managementstyle>`
  112. This document describes how Linux kernel maintainers operate and the
  113. shared ethos behind their methodologies. This is important reading
  114. for anyone new to kernel development (or anyone simply curious about
  115. it), as it resolves a lot of common misconceptions and confusion
  116. about the unique behavior of kernel maintainers.
  117. :ref:`Documentation/stable_kernel_rules.txt <stable_kernel_rules>`
  118. This file describes the rules on how the stable kernel releases
  119. happen, and what to do if you want to get a change into one of these
  120. releases.
  121. :ref:`Documentation/kernel-docs.txt <kernel_docs>`
  122. A list of external documentation that pertains to kernel
  123. development. Please consult this list if you do not find what you
  124. are looking for within the in-kernel documentation.
  125. :ref:`Documentation/applying-patches.txt <applying_patches>`
  126. A good introduction describing exactly what a patch is and how to
  127. apply it to the different development branches of the kernel.
  128. The kernel also has a large number of documents that can be
  129. automatically generated from the source code itself or from
  130. ReStructuredText markups (ReST), like this one. This includes a
  131. full description of the in-kernel API, and rules on how to handle
  132. locking properly.
  133. All such documents can be generated as PDF or HTML by running::
  134. make pdfdocs
  135. make htmldocs
  136. respectively from the main kernel source directory.
  137. The documents that uses ReST markup will be generated at Documentation/output.
  138. They can also be generated on LaTeX and ePub formats with::
  139. make latexdocs
  140. make epubdocs
  141. Currently, there are some documents written on DocBook that are in
  142. the process of conversion to ReST. Such documents will be created in the
  143. Documentation/DocBook/ directory and can be generated also as
  144. Postscript or man pages by running::
  145. make psdocs
  146. make mandocs
  147. Becoming A Kernel Developer
  148. ---------------------------
  149. If you do not know anything about Linux kernel development, you should
  150. look at the Linux KernelNewbies project:
  151. https://kernelnewbies.org
  152. It consists of a helpful mailing list where you can ask almost any type
  153. of basic kernel development question (make sure to search the archives
  154. first, before asking something that has already been answered in the
  155. past.) It also has an IRC channel that you can use to ask questions in
  156. real-time, and a lot of helpful documentation that is useful for
  157. learning about Linux kernel development.
  158. The website has basic information about code organization, subsystems,
  159. and current projects (both in-tree and out-of-tree). It also describes
  160. some basic logistical information, like how to compile a kernel and
  161. apply a patch.
  162. If you do not know where you want to start, but you want to look for
  163. some task to start doing to join into the kernel development community,
  164. go to the Linux Kernel Janitor's project:
  165. https://kernelnewbies.org/KernelJanitors
  166. It is a great place to start. It describes a list of relatively simple
  167. problems that need to be cleaned up and fixed within the Linux kernel
  168. source tree. Working with the developers in charge of this project, you
  169. will learn the basics of getting your patch into the Linux kernel tree,
  170. and possibly be pointed in the direction of what to go work on next, if
  171. you do not already have an idea.
  172. If you already have a chunk of code that you want to put into the kernel
  173. tree, but need some help getting it in the proper form, the
  174. kernel-mentors project was created to help you out with this. It is a
  175. mailing list, and can be found at:
  176. https://selenic.com/mailman/listinfo/kernel-mentors
  177. Before making any actual modifications to the Linux kernel code, it is
  178. imperative to understand how the code in question works. For this
  179. purpose, nothing is better than reading through it directly (most tricky
  180. bits are commented well), perhaps even with the help of specialized
  181. tools. One such tool that is particularly recommended is the Linux
  182. Cross-Reference project, which is able to present source code in a
  183. self-referential, indexed webpage format. An excellent up-to-date
  184. repository of the kernel code may be found at:
  185. http://lxr.free-electrons.com/
  186. The development process
  187. -----------------------
  188. Linux kernel development process currently consists of a few different
  189. main kernel "branches" and lots of different subsystem-specific kernel
  190. branches. These different branches are:
  191. - main 4.x kernel tree
  192. - 4.x.y -stable kernel tree
  193. - 4.x -git kernel patches
  194. - subsystem specific kernel trees and patches
  195. - the 4.x -next kernel tree for integration tests
  196. 4.x kernel tree
  197. -----------------
  198. 4.x kernels are maintained by Linus Torvalds, and can be found on
  199. https://kernel.org in the pub/linux/kernel/v4.x/ directory. Its development
  200. process is as follows:
  201. - As soon as a new kernel is released a two weeks window is open,
  202. during this period of time maintainers can submit big diffs to
  203. Linus, usually the patches that have already been included in the
  204. -next kernel for a few weeks. The preferred way to submit big changes
  205. is using git (the kernel's source management tool, more information
  206. can be found at https://git-scm.com/) but plain patches are also just
  207. fine.
  208. - After two weeks a -rc1 kernel is released it is now possible to push
  209. only patches that do not include new features that could affect the
  210. stability of the whole kernel. Please note that a whole new driver
  211. (or filesystem) might be accepted after -rc1 because there is no
  212. risk of causing regressions with such a change as long as the change
  213. is self-contained and does not affect areas outside of the code that
  214. is being added. git can be used to send patches to Linus after -rc1
  215. is released, but the patches need to also be sent to a public
  216. mailing list for review.
  217. - A new -rc is released whenever Linus deems the current git tree to
  218. be in a reasonably sane state adequate for testing. The goal is to
  219. release a new -rc kernel every week.
  220. - Process continues until the kernel is considered "ready", the
  221. process should last around 6 weeks.
  222. It is worth mentioning what Andrew Morton wrote on the linux-kernel
  223. mailing list about kernel releases:
  224. *"Nobody knows when a kernel will be released, because it's
  225. released according to perceived bug status, not according to a
  226. preconceived timeline."*
  227. 4.x.y -stable kernel tree
  228. -------------------------
  229. Kernels with 3-part versions are -stable kernels. They contain
  230. relatively small and critical fixes for security problems or significant
  231. regressions discovered in a given 4.x kernel.
  232. This is the recommended branch for users who want the most recent stable
  233. kernel and are not interested in helping test development/experimental
  234. versions.
  235. If no 4.x.y kernel is available, then the highest numbered 4.x
  236. kernel is the current stable kernel.
  237. 4.x.y are maintained by the "stable" team <stable@vger.kernel.org>, and
  238. are released as needs dictate. The normal release period is approximately
  239. two weeks, but it can be longer if there are no pressing problems. A
  240. security-related problem, instead, can cause a release to happen almost
  241. instantly.
  242. The file Documentation/stable_kernel_rules.txt in the kernel tree
  243. documents what kinds of changes are acceptable for the -stable tree, and
  244. how the release process works.
  245. 4.x -git patches
  246. ----------------
  247. These are daily snapshots of Linus' kernel tree which are managed in a
  248. git repository (hence the name.) These patches are usually released
  249. daily and represent the current state of Linus' tree. They are more
  250. experimental than -rc kernels since they are generated automatically
  251. without even a cursory glance to see if they are sane.
  252. Subsystem Specific kernel trees and patches
  253. -------------------------------------------
  254. The maintainers of the various kernel subsystems --- and also many
  255. kernel subsystem developers --- expose their current state of
  256. development in source repositories. That way, others can see what is
  257. happening in the different areas of the kernel. In areas where
  258. development is rapid, a developer may be asked to base his submissions
  259. onto such a subsystem kernel tree so that conflicts between the
  260. submission and other already ongoing work are avoided.
  261. Most of these repositories are git trees, but there are also other SCMs
  262. in use, or patch queues being published as quilt series. Addresses of
  263. these subsystem repositories are listed in the MAINTAINERS file. Many
  264. of them can be browsed at https://git.kernel.org/.
  265. Before a proposed patch is committed to such a subsystem tree, it is
  266. subject to review which primarily happens on mailing lists (see the
  267. respective section below). For several kernel subsystems, this review
  268. process is tracked with the tool patchwork. Patchwork offers a web
  269. interface which shows patch postings, any comments on a patch or
  270. revisions to it, and maintainers can mark patches as under review,
  271. accepted, or rejected. Most of these patchwork sites are listed at
  272. https://patchwork.kernel.org/.
  273. 4.x -next kernel tree for integration tests
  274. -------------------------------------------
  275. Before updates from subsystem trees are merged into the mainline 4.x
  276. tree, they need to be integration-tested. For this purpose, a special
  277. testing repository exists into which virtually all subsystem trees are
  278. pulled on an almost daily basis:
  279. https://git.kernel.org/?p=linux/kernel/git/next/linux-next.git
  280. This way, the -next kernel gives a summary outlook onto what will be
  281. expected to go into the mainline kernel at the next merge period.
  282. Adventurous testers are very welcome to runtime-test the -next kernel.
  283. Bug Reporting
  284. -------------
  285. https://bugzilla.kernel.org is where the Linux kernel developers track kernel
  286. bugs. Users are encouraged to report all bugs that they find in this
  287. tool. For details on how to use the kernel bugzilla, please see:
  288. https://bugzilla.kernel.org/page.cgi?id=faq.html
  289. The file REPORTING-BUGS in the main kernel source directory has a good
  290. template for how to report a possible kernel bug, and details what kind
  291. of information is needed by the kernel developers to help track down the
  292. problem.
  293. Managing bug reports
  294. --------------------
  295. One of the best ways to put into practice your hacking skills is by fixing
  296. bugs reported by other people. Not only you will help to make the kernel
  297. more stable, you'll learn to fix real world problems and you will improve
  298. your skills, and other developers will be aware of your presence. Fixing
  299. bugs is one of the best ways to get merits among other developers, because
  300. not many people like wasting time fixing other people's bugs.
  301. To work in the already reported bug reports, go to https://bugzilla.kernel.org.
  302. If you want to be advised of the future bug reports, you can subscribe to the
  303. bugme-new mailing list (only new bug reports are mailed here) or to the
  304. bugme-janitor mailing list (every change in the bugzilla is mailed here)
  305. https://lists.linux-foundation.org/mailman/listinfo/bugme-new
  306. https://lists.linux-foundation.org/mailman/listinfo/bugme-janitors
  307. Mailing lists
  308. -------------
  309. As some of the above documents describe, the majority of the core kernel
  310. developers participate on the Linux Kernel Mailing list. Details on how
  311. to subscribe and unsubscribe from the list can be found at:
  312. http://vger.kernel.org/vger-lists.html#linux-kernel
  313. There are archives of the mailing list on the web in many different
  314. places. Use a search engine to find these archives. For example:
  315. http://dir.gmane.org/gmane.linux.kernel
  316. It is highly recommended that you search the archives about the topic
  317. you want to bring up, before you post it to the list. A lot of things
  318. already discussed in detail are only recorded at the mailing list
  319. archives.
  320. Most of the individual kernel subsystems also have their own separate
  321. mailing list where they do their development efforts. See the
  322. MAINTAINERS file for a list of what these lists are for the different
  323. groups.
  324. Many of the lists are hosted on kernel.org. Information on them can be
  325. found at:
  326. http://vger.kernel.org/vger-lists.html
  327. Please remember to follow good behavioral habits when using the lists.
  328. Though a bit cheesy, the following URL has some simple guidelines for
  329. interacting with the list (or any list):
  330. http://www.albion.com/netiquette/
  331. If multiple people respond to your mail, the CC: list of recipients may
  332. get pretty large. Don't remove anybody from the CC: list without a good
  333. reason, or don't reply only to the list address. Get used to receiving the
  334. mail twice, one from the sender and the one from the list, and don't try
  335. to tune that by adding fancy mail-headers, people will not like it.
  336. Remember to keep the context and the attribution of your replies intact,
  337. keep the "John Kernelhacker wrote ...:" lines at the top of your reply, and
  338. add your statements between the individual quoted sections instead of
  339. writing at the top of the mail.
  340. If you add patches to your mail, make sure they are plain readable text
  341. as stated in Documentation/SubmittingPatches.
  342. Kernel developers don't want to deal with
  343. attachments or compressed patches; they may want to comment on
  344. individual lines of your patch, which works only that way. Make sure you
  345. use a mail program that does not mangle spaces and tab characters. A
  346. good first test is to send the mail to yourself and try to apply your
  347. own patch by yourself. If that doesn't work, get your mail program fixed
  348. or change it until it works.
  349. Above all, please remember to show respect to other subscribers.
  350. Working with the community
  351. --------------------------
  352. The goal of the kernel community is to provide the best possible kernel
  353. there is. When you submit a patch for acceptance, it will be reviewed
  354. on its technical merits and those alone. So, what should you be
  355. expecting?
  356. - criticism
  357. - comments
  358. - requests for change
  359. - requests for justification
  360. - silence
  361. Remember, this is part of getting your patch into the kernel. You have
  362. to be able to take criticism and comments about your patches, evaluate
  363. them at a technical level and either rework your patches or provide
  364. clear and concise reasoning as to why those changes should not be made.
  365. If there are no responses to your posting, wait a few days and try
  366. again, sometimes things get lost in the huge volume.
  367. What should you not do?
  368. - expect your patch to be accepted without question
  369. - become defensive
  370. - ignore comments
  371. - resubmit the patch without making any of the requested changes
  372. In a community that is looking for the best technical solution possible,
  373. there will always be differing opinions on how beneficial a patch is.
  374. You have to be cooperative, and willing to adapt your idea to fit within
  375. the kernel. Or at least be willing to prove your idea is worth it.
  376. Remember, being wrong is acceptable as long as you are willing to work
  377. toward a solution that is right.
  378. It is normal that the answers to your first patch might simply be a list
  379. of a dozen things you should correct. This does **not** imply that your
  380. patch will not be accepted, and it is **not** meant against you
  381. personally. Simply correct all issues raised against your patch and
  382. resend it.
  383. Differences between the kernel community and corporate structures
  384. -----------------------------------------------------------------
  385. The kernel community works differently than most traditional corporate
  386. development environments. Here are a list of things that you can try to
  387. do to avoid problems:
  388. Good things to say regarding your proposed changes:
  389. - "This solves multiple problems."
  390. - "This deletes 2000 lines of code."
  391. - "Here is a patch that explains what I am trying to describe."
  392. - "I tested it on 5 different architectures..."
  393. - "Here is a series of small patches that..."
  394. - "This increases performance on typical machines..."
  395. Bad things you should avoid saying:
  396. - "We did it this way in AIX/ptx/Solaris, so therefore it must be
  397. good..."
  398. - "I've being doing this for 20 years, so..."
  399. - "This is required for my company to make money"
  400. - "This is for our Enterprise product line."
  401. - "Here is my 1000 page design document that describes my idea"
  402. - "I've been working on this for 6 months..."
  403. - "Here's a 5000 line patch that..."
  404. - "I rewrote all of the current mess, and here it is..."
  405. - "I have a deadline, and this patch needs to be applied now."
  406. Another way the kernel community is different than most traditional
  407. software engineering work environments is the faceless nature of
  408. interaction. One benefit of using email and irc as the primary forms of
  409. communication is the lack of discrimination based on gender or race.
  410. The Linux kernel work environment is accepting of women and minorities
  411. because all you are is an email address. The international aspect also
  412. helps to level the playing field because you can't guess gender based on
  413. a person's name. A man may be named Andrea and a woman may be named Pat.
  414. Most women who have worked in the Linux kernel and have expressed an
  415. opinion have had positive experiences.
  416. The language barrier can cause problems for some people who are not
  417. comfortable with English. A good grasp of the language can be needed in
  418. order to get ideas across properly on mailing lists, so it is
  419. recommended that you check your emails to make sure they make sense in
  420. English before sending them.
  421. Break up your changes
  422. ---------------------
  423. The Linux kernel community does not gladly accept large chunks of code
  424. dropped on it all at once. The changes need to be properly introduced,
  425. discussed, and broken up into tiny, individual portions. This is almost
  426. the exact opposite of what companies are used to doing. Your proposal
  427. should also be introduced very early in the development process, so that
  428. you can receive feedback on what you are doing. It also lets the
  429. community feel that you are working with them, and not simply using them
  430. as a dumping ground for your feature. However, don't send 50 emails at
  431. one time to a mailing list, your patch series should be smaller than
  432. that almost all of the time.
  433. The reasons for breaking things up are the following:
  434. 1) Small patches increase the likelihood that your patches will be
  435. applied, since they don't take much time or effort to verify for
  436. correctness. A 5 line patch can be applied by a maintainer with
  437. barely a second glance. However, a 500 line patch may take hours to
  438. review for correctness (the time it takes is exponentially
  439. proportional to the size of the patch, or something).
  440. Small patches also make it very easy to debug when something goes
  441. wrong. It's much easier to back out patches one by one than it is
  442. to dissect a very large patch after it's been applied (and broken
  443. something).
  444. 2) It's important not only to send small patches, but also to rewrite
  445. and simplify (or simply re-order) patches before submitting them.
  446. Here is an analogy from kernel developer Al Viro:
  447. *"Think of a teacher grading homework from a math student. The
  448. teacher does not want to see the student's trials and errors
  449. before they came up with the solution. They want to see the
  450. cleanest, most elegant answer. A good student knows this, and
  451. would never submit her intermediate work before the final
  452. solution.*
  453. *The same is true of kernel development. The maintainers and
  454. reviewers do not want to see the thought process behind the
  455. solution to the problem one is solving. They want to see a
  456. simple and elegant solution."*
  457. It may be challenging to keep the balance between presenting an elegant
  458. solution and working together with the community and discussing your
  459. unfinished work. Therefore it is good to get early in the process to
  460. get feedback to improve your work, but also keep your changes in small
  461. chunks that they may get already accepted, even when your whole task is
  462. not ready for inclusion now.
  463. Also realize that it is not acceptable to send patches for inclusion
  464. that are unfinished and will be "fixed up later."
  465. Justify your change
  466. -------------------
  467. Along with breaking up your patches, it is very important for you to let
  468. the Linux community know why they should add this change. New features
  469. must be justified as being needed and useful.
  470. Document your change
  471. --------------------
  472. When sending in your patches, pay special attention to what you say in
  473. the text in your email. This information will become the ChangeLog
  474. information for the patch, and will be preserved for everyone to see for
  475. all time. It should describe the patch completely, containing:
  476. - why the change is necessary
  477. - the overall design approach in the patch
  478. - implementation details
  479. - testing results
  480. For more details on what this should all look like, please see the
  481. ChangeLog section of the document:
  482. "The Perfect Patch"
  483. http://www.ozlabs.org/~akpm/stuff/tpp.txt
  484. All of these things are sometimes very hard to do. It can take years to
  485. perfect these practices (if at all). It's a continuous process of
  486. improvement that requires a lot of patience and determination. But
  487. don't give up, it's possible. Many have done it before, and each had to
  488. start exactly where you are now.
  489. ----------
  490. Thanks to Paolo Ciarrocchi who allowed the "Development Process"
  491. (https://lwn.net/Articles/94386/) section
  492. to be based on text he had written, and to Randy Dunlap and Gerrit
  493. Huizenga for some of the list of things you should and should not say.
  494. Also thanks to Pat Mochel, Hanna Linder, Randy Dunlap, Kay Sievers,
  495. Vojtech Pavlik, Jan Kara, Josh Boyer, Kees Cook, Andrew Morton, Andi
  496. Kleen, Vadim Lobanov, Jesper Juhl, Adrian Bunk, Keri Harris, Frans Pop,
  497. David A. Wheeler, Junio Hamano, Michael Kerrisk, and Alex Shepard for
  498. their review, comments, and contributions. Without their help, this
  499. document would not have been possible.
  500. Maintainer: Greg Kroah-Hartman <greg@kroah.com>