diff options
author | Alexander Potapenko <glider@google.com> | 2022-11-07 15:22:55 +0100 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2022-11-08 15:57:25 -0800 |
commit | 436fa4a699bcd1c368bea9199e22b0a1b9cf9e0f (patch) | |
tree | f5e15a8b124408860228a4826969bd75a9c89793 | |
parent | 1de09a7281edecfdba19b3a07417f6d65243ab5f (diff) | |
download | linux-stable-436fa4a699bcd1c368bea9199e22b0a1b9cf9e0f.tar.gz linux-stable-436fa4a699bcd1c368bea9199e22b0a1b9cf9e0f.tar.bz2 linux-stable-436fa4a699bcd1c368bea9199e22b0a1b9cf9e0f.zip |
docs: kmsan: fix formatting of "Example report"
Add a blank line to make the sentence before the list render as a separate
paragraph, not a definition.
Link: https://lkml.kernel.org/r/20221107142255.4038811-1-glider@google.com
Fixes: 93858ae70cf4 ("kmsan: add ReST documentation")
Signed-off-by: Alexander Potapenko <glider@google.com>
Suggested-by: Bagas Sanjaya <bagasdotme@gmail.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r-- | Documentation/dev-tools/kmsan.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/dev-tools/kmsan.rst b/Documentation/dev-tools/kmsan.rst index 2a53a801198c..55fa82212eb2 100644 --- a/Documentation/dev-tools/kmsan.rst +++ b/Documentation/dev-tools/kmsan.rst @@ -67,6 +67,7 @@ uninitialized in the local variable, as well as the stack where the value was copied to another memory location before use. A use of uninitialized value ``v`` is reported by KMSAN in the following cases: + - in a condition, e.g. ``if (v) { ... }``; - in an indexing or pointer dereferencing, e.g. ``array[v]`` or ``*v``; - when it is copied to userspace or hardware, e.g. ``copy_to_user(..., &v, ...)``; |