diff options
author | Haoyang Liu <tttturtleruss@hust.edu.cn> | 2024-10-15 22:01:59 +0800 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2024-10-17 09:39:19 -0600 |
commit | 3f53d1b4a4d27daa7dcbab7b09c1c4052313ab87 (patch) | |
tree | cb3ee5be112d5084cb0b6abdb02bd646f56cb06b | |
parent | ce6fab9357a00296ff80bfea695619e481503b4a (diff) |
docs/dev-tools: fix a typo
fix a typo in dev-tools/kmsan.rst
[jc: this is not really a typo, but "iff" is clearly a confusing construct
for non-native speakers; changing it will prevent people from trying to
"fix" it repeatedly.]
Signed-off-by: Haoyang Liu <tttturtleruss@hust.edu.cn>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20241015140159.8082-1-tttturtleruss@hust.edu.cn
-rw-r--r-- | Documentation/dev-tools/kmsan.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/dev-tools/kmsan.rst b/Documentation/dev-tools/kmsan.rst index 6a48d96c5c85..0dc668b183f6 100644 --- a/Documentation/dev-tools/kmsan.rst +++ b/Documentation/dev-tools/kmsan.rst @@ -133,7 +133,7 @@ KMSAN shadow memory ------------------- KMSAN associates a metadata byte (also called shadow byte) with every byte of -kernel memory. A bit in the shadow byte is set iff the corresponding bit of the +kernel memory. A bit in the shadow byte is set if the corresponding bit of the kernel memory byte is uninitialized. Marking the memory uninitialized (i.e. setting its shadow bytes to ``0xff``) is called poisoning, marking it initialized (setting the shadow bytes to ``0x00``) is called unpoisoning. |