Commit 6f777dce authored by Alexander Potapenko's avatar Alexander Potapenko Committed by Jonathan Corbet

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.

Fixes: 93858ae7 ("kmsan: add ReST documentation")
Suggested-by: default avatarBagas Sanjaya <bagasdotme@gmail.com>
Signed-off-by: default avatarAlexander Potapenko <glider@google.com>
Link: https://lore.kernel.org/r/20221107142255.4038811-1-glider@google.comSigned-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent dc8ab029
......@@ -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, ...)``;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment