Commit b1f1382a authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge tag 'docs-6.3-2' of git://git.lwn.net/linux

Pull Documentation stragglers from Jonathan Corbet:
 "A handful of documentation patches that were ready before the merge
  window, but which I didn't get merged for the first round:

   - A recommendation from Thorsten (also akpm) on use of Link tags to
     point out problem reports

   - Some front-page formatting tweaks

   - Another Spanish translation

   - One typo(ish) fix"

* tag 'docs-6.3-2' of git://git.lwn.net/linux:
  docs: recommend using Link: whenever using Reported-by:
  Documentation: front page: use recommended heading adornments
  docs/sp_SP: Add process programming-language translation
  docs: locking: refer to the actual existing config names
parents e492250d 901578a4
Loading
Loading
Loading
Loading
+9 −8
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@

.. _linux_doc:

==============================
The Linux Kernel documentation
==============================

@@ -13,7 +14,7 @@ documentation are welcome; join the linux-doc list at vger.kernel.org if
you want to help out.

Working with the development community
--------------------------------------
======================================

The essential guides for interacting with the kernel's development
community and getting your work upstream.
@@ -29,7 +30,7 @@ community and getting your work upstream.


Internal API manuals
--------------------
====================

Manuals for use by developers working to interface with the rest of the
kernel.
@@ -43,7 +44,7 @@ kernel.
   Locking in the kernel <locking/index>

Development tools and processes
-------------------------------
===============================

Various other manuals with useful information for all kernel developers.

@@ -62,7 +63,7 @@ Various other manuals with useful information for all kernel developers.


User-oriented documentation
---------------------------
===========================

The following manuals are written for *users* of the kernel — those who are
trying to get it to work optimally on a given system and application
@@ -81,7 +82,7 @@ See also: the `Linux man pages <https://www.kernel.org/doc/man-pages/>`_,
which are kept separately from the kernel's own documentation.

Firmware-related documentation
------------------------------
==============================
The following holds information on the kernel's expectations regarding the
platform firmwares.

@@ -93,7 +94,7 @@ platform firmwares.


Architecture-specific documentation
-----------------------------------
===================================

.. toctree::
   :maxdepth: 2
@@ -102,7 +103,7 @@ Architecture-specific documentation


Other documentation
-------------------
===================

There are several unsorted documents that don't seem to fit on other parts
of the documentation body, or may require some adjustments and/or conversion
@@ -115,7 +116,7 @@ to ReStructured Text format, or are simply too old.


Translations
------------
============

.. toctree::
   :maxdepth: 2
+2 −2
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ Kernel Lock Torture Test Operation
CONFIG_LOCK_TORTURE_TEST
========================

The CONFIG LOCK_TORTURE_TEST config option provides a kernel module
The CONFIG_LOCK_TORTURE_TEST config option provides a kernel module
that runs torture tests on core kernel locking primitives. The kernel
module, 'locktorture', may be built after the fact on the running
kernel to be tested, if desired. The tests periodically output status
@@ -67,7 +67,7 @@ torture_type

		     - "rtmutex_lock":
				rtmutex_lock() and rtmutex_unlock() pairs.
				Kernel must have CONFIG_RT_MUTEX=y.
				Kernel must have CONFIG_RT_MUTEXES=y.

		     - "rwsem_lock":
				read/write down() and up() semaphore pairs.
+2 −1
Original line number Diff line number Diff line
@@ -251,7 +251,8 @@ The tags in common use are:
 - Reported-by: names a user who reported a problem which is fixed by this
   patch; this tag is used to give credit to the (often underappreciated)
   people who test our code and let us know when things do not work
   correctly.
   correctly. Note, this tag should be followed by a Link: tag pointing to the
   report, unless the report is not available on the web.

 - Cc: the named person received a copy of the patch and had the
   opportunity to comment on it.
+5 −4
Original line number Diff line number Diff line
@@ -496,10 +496,11 @@ Using Reported-by:, Tested-by:, Reviewed-by:, Suggested-by: and Fixes:
----------------------------------------------------------------------

The Reported-by tag gives credit to people who find bugs and report them and it
hopefully inspires them to help us again in the future.  Please note that if
the bug was reported in private, then ask for permission first before using the
Reported-by tag. The tag is intended for bugs; please do not use it to credit
feature requests.
hopefully inspires them to help us again in the future. The tag is intended for
bugs; please do not use it to credit feature requests. The tag should be
followed by a Link: tag pointing to the report, unless the report is not
available on the web. Please note that if the bug was reported in private, then
ask for permission first before using the Reported-by tag.

A Tested-by: tag indicates that the patch has been successfully tested (in
some environment) by the person named.  This tag informs maintainers that
+1 −0
Original line number Diff line number Diff line
@@ -17,3 +17,4 @@
   kernel-enforcement-statement
   email-clients
   magic-number
   programming-language
Loading