Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Documentation: *san: drop "the" from article titles

Drop "the" from the titles of documentation articles for KASAN, KCSAN,
and KMSAN, as it is redundant.

Also add SPDX-License-Identifier for kasan.rst.

Link: https://lkml.kernel.org/r/1c4eb354a3a7b8ab56bf0c2fc6157c22050793ca.1696605143.git.andreyknvl@google.com
Signed-off-by: Andrey Konovalov <andreyknvl@google.com>
Cc: Alexander Potapenko <glider@google.com>
Cc: Andrey Ryabinin <ryabinin.a.a@gmail.com>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: kernel test robot <lkp@intel.com>
Cc: Marco Elver <elver@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

Andrey Konovalov and committed by
Andrew Morton
651acf0c ff093a96

+10 -7
+5 -2
Documentation/dev-tools/kasan.rst
··· 1 - The Kernel Address Sanitizer (KASAN) 2 - ==================================== 1 + .. SPDX-License-Identifier: GPL-2.0 2 + .. Copyright (C) 2023, Google LLC. 3 + 4 + Kernel Address Sanitizer (KASAN) 5 + ================================ 3 6 4 7 Overview 5 8 --------
+2 -2
Documentation/dev-tools/kcsan.rst
··· 1 1 .. SPDX-License-Identifier: GPL-2.0 2 2 .. Copyright (C) 2019, Google LLC. 3 3 4 - The Kernel Concurrency Sanitizer (KCSAN) 5 - ======================================== 4 + Kernel Concurrency Sanitizer (KCSAN) 5 + ==================================== 6 6 7 7 The Kernel Concurrency Sanitizer (KCSAN) is a dynamic race detector, which 8 8 relies on compile-time instrumentation, and uses a watchpoint-based sampling
+3 -3
Documentation/dev-tools/kmsan.rst
··· 1 1 .. SPDX-License-Identifier: GPL-2.0 2 2 .. Copyright (C) 2022, Google LLC. 3 3 4 - =================================== 5 - The Kernel Memory Sanitizer (KMSAN) 6 - =================================== 4 + =============================== 5 + Kernel Memory Sanitizer (KMSAN) 6 + =============================== 7 7 8 8 KMSAN is a dynamic error detector aimed at finding uses of uninitialized 9 9 values. It is based on compiler instrumentation, and is quite similar to the