tracing: extend sched_pi_setprio
[deliverable/linux.git] / Documentation / kernel-documentation.rst
CommitLineData
17defc28
JN
1==========================
2Linux Kernel Documentation
3==========================
4
5Introduction
6============
7
8The Linux kernel uses `Sphinx`_ to generate pretty documentation from
9`reStructuredText`_ files under ``Documentation``. To build the documentation in
10HTML or PDF formats, use ``make htmldocs`` or ``make pdfdocs``. The generated
11documentation is placed in ``Documentation/output``.
12
13.. _Sphinx: http://www.sphinx-doc.org/
14.. _reStructuredText: http://docutils.sourceforge.net/rst.html
15
16The reStructuredText files may contain directives to include structured
17documentation comments, or kernel-doc comments, from source files. Usually these
18are used to describe the functions and types and design of the code. The
19kernel-doc comments have some special structure and formatting, but beyond that
20they are also treated as reStructuredText.
21
22There is also the deprecated DocBook toolchain to generate documentation from
23DocBook XML template files under ``Documentation/DocBook``. The DocBook files
24are to be converted to reStructuredText, and the toolchain is slated to be
25removed.
26
27Finally, there are thousands of plain text documentation files scattered around
28``Documentation``. Some of these will likely be converted to reStructuredText
29over time, but the bulk of them will remain in plain text.
30
31Sphinx Build
32============
33
34The usual way to generate the documentation is to run ``make htmldocs`` or
35``make pdfdocs``. There are also other formats available, see the documentation
36section of ``make help``. The generated documentation is placed in
37format-specific subdirectories under ``Documentation/output``.
38
39To generate documentation, Sphinx (``sphinx-build``) must obviously be
40installed. For prettier HTML output, the Read the Docs Sphinx theme
41(``sphinx_rtd_theme``) is used if available. For PDF output, ``rst2pdf`` is also
42needed. All of these are widely available and packaged in distributions.
43
44To pass extra options to Sphinx, you can use the ``SPHINXOPTS`` make
45variable. For example, use ``make SPHINXOPTS=-v htmldocs`` to get more verbose
46output.
47
48To remove the generated documentation, run ``make cleandocs``.
49
50Writing Documentation
51=====================
52
53Adding new documentation can be as simple as:
54
551. Add a new ``.rst`` file somewhere under ``Documentation``.
562. Refer to it from the Sphinx main `TOC tree`_ in ``Documentation/index.rst``.
57
58.. _TOC tree: http://www.sphinx-doc.org/en/stable/markup/toctree.html
59
60This is usually good enough for simple documentation (like the one you're
61reading right now), but for larger documents it may be advisable to create a
62subdirectory (or use an existing one). For example, the graphics subsystem
63documentation is under ``Documentation/gpu``, split to several ``.rst`` files,
64and has a separate ``index.rst`` (with a ``toctree`` of its own) referenced from
65the main index.
66
67See the documentation for `Sphinx`_ and `reStructuredText`_ on what you can do
68with them. In particular, the Sphinx `reStructuredText Primer`_ is a good place
69to get started with reStructuredText. There are also some `Sphinx specific
70markup constructs`_.
71
72.. _reStructuredText Primer: http://www.sphinx-doc.org/en/stable/rest.html
73.. _Sphinx specific markup constructs: http://www.sphinx-doc.org/en/stable/markup/index.html
74
75Specific guidelines for the kernel documentation
76------------------------------------------------
77
78Here are some specific guidelines for the kernel documentation:
79
80* Please don't go overboard with reStructuredText markup. Keep it simple.
81
82* Please stick to this order of heading adornments:
83
84 1. ``=`` with overline for document title::
85
86 ==============
87 Document title
88 ==============
89
90 2. ``=`` for chapters::
91
92 Chapters
93 ========
94
95 3. ``-`` for sections::
96
97 Section
98 -------
99
100 4. ``~`` for subsections::
101
102 Subsection
103 ~~~~~~~~~~
104
105 Although RST doesn't mandate a specific order ("Rather than imposing a fixed
106 number and order of section title adornment styles, the order enforced will be
107 the order as encountered."), having the higher levels the same overall makes
108 it easier to follow the documents.
109
2c645cd7
MH
110
111the C domain
112------------
113
114The `Sphinx C Domain`_ (name c) is suited for documentation of C API. E.g. a
115function prototype:
116
117.. code-block:: rst
118
119 .. c:function:: int ioctl( int fd, int request )
120
121The C domain of the kernel-doc has some additional features. E.g. you can
122*rename* the reference name of a function with a common name like ``open`` or
123``ioctl``:
124
125.. code-block:: rst
126
127 .. c:function:: int ioctl( int fd, int request )
128 :name: VIDIOC_LOG_STATUS
129
130The func-name (e.g. ioctl) remains in the output but the ref-name changed from
131``ioctl`` to ``VIDIOC_LOG_STATUS``. The index entry for this function is also
132changed to ``VIDIOC_LOG_STATUS`` and the function can now referenced by:
133
134.. code-block:: rst
135
136 :c:func:`VIDIOC_LOG_STATUS`
137
138
0249a764
MH
139list tables
140-----------
141
142We recommend the use of *list table* formats. The *list table* formats are
143double-stage lists. Compared to the ASCII-art they might not be as
144comfortable for
145readers of the text files. Their advantage is that they are easy to
146create or modify and that the diff of a modification is much more meaningful,
147because it is limited to the modified content.
148
149The ``flat-table`` is a double-stage list similar to the ``list-table`` with
150some additional features:
151
152* column-span: with the role ``cspan`` a cell can be extended through
153 additional columns
154
155* row-span: with the role ``rspan`` a cell can be extended through
156 additional rows
157
158* auto span rightmost cell of a table row over the missing cells on the right
159 side of that table-row. With Option ``:fill-cells:`` this behavior can
160 changed from *auto span* to *auto fill*, which automatically inserts (empty)
161 cells instead of spanning the last cell.
162
163options:
164
165* ``:header-rows:`` [int] count of header rows
166* ``:stub-columns:`` [int] count of stub columns
167* ``:widths:`` [[int] [int] ... ] widths of columns
168* ``:fill-cells:`` instead of auto-spanning missing cells, insert missing cells
169
170roles:
171
172* ``:cspan:`` [int] additional columns (*morecols*)
173* ``:rspan:`` [int] additional rows (*morerows*)
174
175The example below shows how to use this markup. The first level of the staged
176list is the *table-row*. In the *table-row* there is only one markup allowed,
177the list of the cells in this *table-row*. Exceptions are *comments* ( ``..`` )
178and *targets* (e.g. a ref to ``:ref:`last row <last row>``` / :ref:`last row
179<last row>`).
180
181.. code-block:: rst
182
183 .. flat-table:: table title
184 :widths: 2 1 1 3
185
186 * - head col 1
187 - head col 2
188 - head col 3
189 - head col 4
190
191 * - column 1
192 - field 1.1
193 - field 1.2 with autospan
194
195 * - column 2
196 - field 2.1
197 - :rspan:`1` :cspan:`1` field 2.2 - 3.3
198
199 * .. _`last row`:
200
201 - column 3
202
203Rendered as:
204
205 .. flat-table:: table title
206 :widths: 2 1 1 3
207
208 * - head col 1
209 - head col 2
210 - head col 3
211 - head col 4
212
213 * - column 1
214 - field 1.1
215 - field 1.2 with autospan
216
217 * - column 2
218 - field 2.1
219 - :rspan:`1` :cspan:`1` field 2.2 - 3.3
220
221 * .. _`last row`:
222
223 - column 3
224
17defc28
JN
225
226Including kernel-doc comments
227=============================
228
229The Linux kernel source files may contain structured documentation comments, or
230kernel-doc comments to describe the functions and types and design of the
231code. The documentation comments may be included to any of the reStructuredText
232documents using a dedicated kernel-doc Sphinx directive extension.
233
234The kernel-doc directive is of the format::
235
236 .. kernel-doc:: source
237 :option:
238
239The *source* is the path to a source file, relative to the kernel source
240tree. The following directive options are supported:
241
242export: *[source-pattern ...]*
243 Include documentation for all functions in *source* that have been exported
244 using ``EXPORT_SYMBOL`` or ``EXPORT_SYMBOL_GPL`` either in *source* or in any
245 of the files specified by *source-pattern*.
246
247 The *source-pattern* is useful when the kernel-doc comments have been placed
248 in header files, while ``EXPORT_SYMBOL`` and ``EXPORT_SYMBOL_GPL`` are next to
249 the function definitions.
250
251 Examples::
252
253 .. kernel-doc:: lib/bitmap.c
254 :export:
255
256 .. kernel-doc:: include/net/mac80211.h
257 :export: net/mac80211/*.c
258
259internal: *[source-pattern ...]*
260 Include documentation for all functions and types in *source* that have
261 **not** been exported using ``EXPORT_SYMBOL`` or ``EXPORT_SYMBOL_GPL`` either
262 in *source* or in any of the files specified by *source-pattern*.
263
264 Example::
265
266 .. kernel-doc:: drivers/gpu/drm/i915/intel_audio.c
267 :internal:
268
269doc: *title*
270 Include documentation for the ``DOC:`` paragraph identified by *title* in
271 *source*. Spaces are allowed in *title*; do not quote the *title*. The *title*
272 is only used as an identifier for the paragraph, and is not included in the
273 output. Please make sure to have an appropriate heading in the enclosing
274 reStructuredText document.
275
276 Example::
277
278 .. kernel-doc:: drivers/gpu/drm/i915/intel_audio.c
279 :doc: High Definition Audio over HDMI and Display Port
280
281functions: *function* *[...]*
282 Include documentation for each *function* in *source*.
283
284 Example::
285
286 .. kernel-doc:: lib/bitmap.c
287 :functions: bitmap_parselist bitmap_parselist_user
288
289Without options, the kernel-doc directive includes all documentation comments
290from the source file.
291
292The kernel-doc extension is included in the kernel source tree, at
293``Documentation/sphinx/kernel-doc.py``. Internally, it uses the
294``scripts/kernel-doc`` script to extract the documentation comments from the
295source.
296
297Writing kernel-doc comments
298===========================
299
300In order to provide embedded, "C" friendly, easy to maintain, but consistent and
301extractable overview, function and type documentation, the Linux kernel has
302adopted a consistent style for documentation comments. The format for this
303documentation is called the kernel-doc format, described below. This style
304embeds the documentation within the source files, using a few simple conventions
305for adding documentation paragraphs and documenting functions and their
306parameters, structures and unions and their members, enumerations, and typedefs.
307
308.. note:: The kernel-doc format is deceptively similar to gtk-doc or Doxygen,
309 yet distinctively different, for historical reasons. The kernel source
310 contains tens of thousands of kernel-doc comments. Please stick to the style
311 described here.
312
313The ``scripts/kernel-doc`` script is used by the Sphinx kernel-doc extension in
314the documentation build to extract this embedded documentation into the various
315HTML, PDF, and other format documents.
316
317In order to provide good documentation of kernel functions and data structures,
318please use the following conventions to format your kernel-doc comments in the
319Linux kernel source.
320
321How to format kernel-doc comments
322---------------------------------
323
324The opening comment mark ``/**`` is reserved for kernel-doc comments. Only
325comments so marked will be considered by the ``kernel-doc`` tool. Use it only
326for comment blocks that contain kernel-doc formatted comments. The usual ``*/``
327should be used as the closing comment marker. The lines in between should be
328prefixed by `` * `` (space star space).
329
330The function and type kernel-doc comments should be placed just before the
331function or type being described. The overview kernel-doc comments may be freely
332placed at the top indentation level.
333
334Example kernel-doc function comment::
335
336 /**
337 * foobar() - Brief description of foobar.
338 * @arg: Description of argument of foobar.
339 *
340 * Longer description of foobar.
341 *
342 * Return: Description of return value of foobar.
343 */
344 int foobar(int arg)
345
346The format is similar for documentation for structures, enums, paragraphs,
347etc. See the sections below for details.
348
349The kernel-doc structure is extracted from the comments, and proper `Sphinx C
350Domain`_ function and type descriptions with anchors are generated for them. The
351descriptions are filtered for special kernel-doc highlights and
352cross-references. See below for details.
353
354.. _Sphinx C Domain: http://www.sphinx-doc.org/en/stable/domains.html
355
356Highlights and cross-references
357-------------------------------
358
359The following special patterns are recognized in the kernel-doc comment
360descriptive text and converted to proper reStructuredText markup and `Sphinx C
361Domain`_ references.
362
363.. attention:: The below are **only** recognized within kernel-doc comments,
364 **not** within normal reStructuredText documents.
365
366``funcname()``
367 Function reference.
368
369``@parameter``
370 Name of a function parameter. (No cross-referencing, just formatting.)
371
372``%CONST``
373 Name of a constant. (No cross-referencing, just formatting.)
374
375``$ENVVAR``
376 Name of an environment variable. (No cross-referencing, just formatting.)
377
378``&struct name``
379 Structure reference.
380
381``&enum name``
382 Enum reference.
383
384``&typedef name``
385 Typedef reference.
386
387``&struct_name->member`` or ``&struct_name.member``
388 Structure or union member reference. The cross-reference will be to the struct
389 or union definition, not the member directly.
390
391``&name``
392 A generic type reference. Prefer using the full reference described above
393 instead. This is mostly for legacy comments.
394
395Cross-referencing from reStructuredText
396~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
397
398To cross-reference the functions and types defined in the kernel-doc comments
399from reStructuredText documents, please use the `Sphinx C Domain`_
400references. For example::
401
402 See function :c:func:`foo` and struct/union/enum/typedef :c:type:`bar`.
403
404While the type reference works with just the type name, without the
405struct/union/enum/typedef part in front, you may want to use::
406
407 See :c:type:`struct foo <foo>`.
408 See :c:type:`union bar <bar>`.
409 See :c:type:`enum baz <baz>`.
410 See :c:type:`typedef meh <meh>`.
411
412This will produce prettier links, and is in line with how kernel-doc does the
413cross-references.
414
415For further details, please refer to the `Sphinx C Domain`_ documentation.
416
417Function documentation
418----------------------
419
420The general format of a function and function-like macro kernel-doc comment is::
421
422 /**
423 * function_name() - Brief description of function.
424 * @arg1: Describe the first argument.
425 * @arg2: Describe the second argument.
426 * One can provide multiple line descriptions
427 * for arguments.
428 *
429 * A longer description, with more discussion of the function function_name()
430 * that might be useful to those using or modifying it. Begins with an
431 * empty comment line, and may include additional embedded empty
432 * comment lines.
433 *
434 * The longer description may have multiple paragraphs.
435 *
436 * Return: Describe the return value of foobar.
437 *
438 * The return value description can also have multiple paragraphs, and should
439 * be placed at the end of the comment block.
440 */
441
442The brief description following the function name may span multiple lines, and
443ends with an ``@argument:`` description, a blank comment line, or the end of the
444comment block.
445
446The kernel-doc function comments describe each parameter to the function, in
447order, with the ``@argument:`` descriptions. The ``@argument:`` descriptions
448must begin on the very next line following the opening brief function
449description line, with no intervening blank comment lines. The ``@argument:``
450descriptions may span multiple lines. The continuation lines may contain
451indentation. If a function parameter is ``...`` (varargs), it should be listed
452in kernel-doc notation as: ``@...:``.
453
454The return value, if any, should be described in a dedicated section at the end
455of the comment starting with "Return:".
456
457Structure, union, and enumeration documentation
458-----------------------------------------------
459
460The general format of a struct, union, and enum kernel-doc comment is::
461
462 /**
463 * struct struct_name - Brief description.
464 * @member_name: Description of member member_name.
465 *
466 * Description of the structure.
467 */
468
469Below, "struct" is used to mean structs, unions and enums, and "member" is used
470to mean struct and union members as well as enumerations in an enum.
471
472The brief description following the structure name may span multiple lines, and
473ends with a ``@member:`` description, a blank comment line, or the end of the
474comment block.
475
476The kernel-doc data structure comments describe each member of the structure, in
477order, with the ``@member:`` descriptions. The ``@member:`` descriptions must
478begin on the very next line following the opening brief function description
479line, with no intervening blank comment lines. The ``@member:`` descriptions may
480span multiple lines. The continuation lines may contain indentation.
481
482In-line member documentation comments
483~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
484
485The structure members may also be documented in-line within the definition::
486
487 /**
488 * struct foo - Brief description.
489 * @foo: The Foo member.
490 */
491 struct foo {
492 int foo;
493 /**
494 * @bar: The Bar member.
495 */
496 int bar;
497 /**
498 * @baz: The Baz member.
499 *
500 * Here, the member description may contain several paragraphs.
501 */
502 int baz;
503 }
504
505Private members
506~~~~~~~~~~~~~~~
507
508Inside a struct description, you can use the "private:" and "public:" comment
509tags. Structure fields that are inside a "private:" area are not listed in the
510generated output documentation. The "private:" and "public:" tags must begin
511immediately following a ``/*`` comment marker. They may optionally include
512comments between the ``:`` and the ending ``*/`` marker.
513
514Example::
515
516 /**
517 * struct my_struct - short description
518 * @a: first member
519 * @b: second member
520 *
521 * Longer description
522 */
523 struct my_struct {
524 int a;
525 int b;
526 /* private: internal use only */
527 int c;
528 };
529
530
531Typedef documentation
532---------------------
533
534The general format of a typedef kernel-doc comment is::
535
536 /**
537 * typedef type_name - Brief description.
538 *
539 * Description of the type.
540 */
541
542Overview documentation comments
543-------------------------------
544
545To facilitate having source code and comments close together, you can include
546kernel-doc documentation blocks that are free-form comments instead of being
547kernel-doc for functions, structures, unions, enums, or typedefs. This could be
548used for something like a theory of operation for a driver or library code, for
549example.
550
551This is done by using a ``DOC:`` section keyword with a section title.
552
553The general format of an overview or high-level documentation comment is::
554
555 /**
556 * DOC: Theory of Operation
557 *
558 * The whizbang foobar is a dilly of a gizmo. It can do whatever you
559 * want it to do, at any time. It reads your mind. Here's how it works.
560 *
561 * foo bar splat
562 *
563 * The only drawback to this gizmo is that is can sometimes damage
564 * hardware, software, or its subject(s).
565 */
566
567The title following ``DOC:`` acts as a heading within the source file, but also
568as an identifier for extracting the documentation comment. Thus, the title must
569be unique within the file.
570
571Recommendations
572---------------
573
574We definitely need kernel-doc formatted documentation for functions that are
575exported to loadable modules using ``EXPORT_SYMBOL`` or ``EXPORT_SYMBOL_GPL``.
576
577We also look to provide kernel-doc formatted documentation for functions
578externally visible to other kernel files (not marked "static").
579
580We also recommend providing kernel-doc formatted documentation for private (file
581"static") routines, for consistency of kernel source code layout. But this is
582lower priority and at the discretion of the MAINTAINER of that kernel source
583file.
584
585Data structures visible in kernel include files should also be documented using
586kernel-doc formatted comments.
587
588DocBook XML [DEPRECATED]
589========================
590
591.. attention::
592
593 This section describes the deprecated DocBook XML toolchain. Please do not
594 create new DocBook XML template files. Please consider converting existing
595 DocBook XML templates files to Sphinx/reStructuredText.
596
597Converting DocBook to Sphinx
598----------------------------
599
600Over time, we expect all of the documents under ``Documentation/DocBook`` to be
601converted to Sphinx and reStructuredText. For most DocBook XML documents, a good
602enough solution is to use the simple ``Documentation/sphinx/tmplcvt`` script,
603which uses ``pandoc`` under the hood. For example::
604
605 $ cd Documentation/sphinx
606 $ ./tmplcvt ../DocBook/in.tmpl ../out.rst
607
608Then edit the resulting rst files to fix any remaining issues, and add the
609document in the ``toctree`` in ``Documentation/index.rst``.
610
611Components of the kernel-doc system
612-----------------------------------
613
614Many places in the source tree have extractable documentation in the form of
615block comments above functions. The components of this system are:
616
617- ``scripts/kernel-doc``
618
619 This is a perl script that hunts for the block comments and can mark them up
620 directly into reStructuredText, DocBook, man, text, and HTML. (No, not
621 texinfo.)
622
623- ``Documentation/DocBook/*.tmpl``
624
625 These are XML template files, which are normal XML files with special
626 place-holders for where the extracted documentation should go.
627
628- ``scripts/docproc.c``
629
630 This is a program for converting XML template files into XML files. When a
631 file is referenced it is searched for symbols exported (EXPORT_SYMBOL), to be
632 able to distinguish between internal and external functions.
633
634 It invokes kernel-doc, giving it the list of functions that are to be
635 documented.
636
637 Additionally it is used to scan the XML template files to locate all the files
638 referenced herein. This is used to generate dependency information as used by
639 make.
640
641- ``Makefile``
642
643 The targets 'xmldocs', 'psdocs', 'pdfdocs', and 'htmldocs' are used to build
644 DocBook XML files, PostScript files, PDF files, and html files in
645 Documentation/DocBook. The older target 'sgmldocs' is equivalent to 'xmldocs'.
646
647- ``Documentation/DocBook/Makefile``
648
649 This is where C files are associated with SGML templates.
650
651How to use kernel-doc comments in DocBook XML template files
652------------------------------------------------------------
653
654DocBook XML template files (\*.tmpl) are like normal XML files, except that they
655can contain escape sequences where extracted documentation should be inserted.
656
657``!E<filename>`` is replaced by the documentation, in ``<filename>``, for
658functions that are exported using ``EXPORT_SYMBOL``: the function list is
659collected from files listed in ``Documentation/DocBook/Makefile``.
660
661``!I<filename>`` is replaced by the documentation for functions that are **not**
662exported using ``EXPORT_SYMBOL``.
663
664``!D<filename>`` is used to name additional files to search for functions
665exported using ``EXPORT_SYMBOL``.
666
667``!F<filename> <function [functions...]>`` is replaced by the documentation, in
668``<filename>``, for the functions listed.
669
670``!P<filename> <section title>`` is replaced by the contents of the ``DOC:``
671section titled ``<section title>`` from ``<filename>``. Spaces are allowed in
672``<section title>``; do not quote the ``<section title>``.
673
674``!C<filename>`` is replaced by nothing, but makes the tools check that all DOC:
675sections and documented functions, symbols, etc. are used. This makes sense to
676use when you use ``!F`` or ``!P`` only and want to verify that all documentation
677is included.
This page took 0.062955 seconds and 5 git commands to generate.