The quilt patch titled Subject: docs: kmsan: fix formatting of "Example report" has been removed from the -mm tree. Its filename was docs-kmsan-fix-formatting-of-example-report.patch This patch was dropped because it was merged into the mm-hotfixes-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ 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