The patch titled Subject: docs: kmsan: fix formatting of "Example report" has been added to the -mm mm-hotfixes-unstable branch. Its filename is docs-kmsan-fix-formatting-of-example-report.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/docs-kmsan-fix-formatting-of-example-report.patch This patch will later appear in the mm-hotfixes-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Alexander Potapenko <glider@xxxxxxxxxx> Subject: docs: kmsan: fix formatting of "Example report" Date: Mon, 7 Nov 2022 15:22:55 +0100 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@xxxxxxxxxx Fixes: 93858ae70cf4 ("kmsan: add ReST documentation") Signed-off-by: Alexander Potapenko <glider@xxxxxxxxxx> Suggested-by: Bagas Sanjaya <bagasdotme@xxxxxxxxx> Cc: Jonathan Corbet <corbet@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- Documentation/dev-tools/kmsan.rst | 1 + 1 file changed, 1 insertion(+) --- a/Documentation/dev-tools/kmsan.rst~docs-kmsan-fix-formatting-of-example-report +++ a/Documentation/dev-tools/kmsan.rst @@ -67,6 +67,7 @@ uninitialized in the local variable, as 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, ...)``; _ Patches currently in -mm which might be from glider@xxxxxxxxxx are kmsan-core-kmsan_in_runtime-should-return-true-in-nmi-context.patch x86-uaccess-instrument-copy_from_user_nmi.patch kconfigdebug-ensure-early-check-for-kmsan-in-config_kmsan_warn.patch kmsan-make-sure-preempt_rt-is-off.patch x86-traps-avoid-kmsan-bugs-originating-from-handle_bug.patch docs-kmsan-fix-formatting-of-example-report.patch