git: f6df79ab8d36 - main - msan: Fix typo
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 11 Apr 2024 17:34:39 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=f6df79ab8d36176c91219840729baa56d738c9ba
commit f6df79ab8d36176c91219840729baa56d738c9ba
Author: Elyes Haouas <ehaouas@noos.fr>
AuthorDate: 2024-04-11 17:27:28 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-04-11 17:28:09 +0000
msan: Fix typo
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/885
---
sys/amd64/include/msan.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/amd64/include/msan.h b/sys/amd64/include/msan.h
index b62b3c243505..00b0b636d6d7 100644
--- a/sys/amd64/include/msan.h
+++ b/sys/amd64/include/msan.h
@@ -81,7 +81,7 @@ kmsan_md_unsupported(vm_offset_t addr)
* The kernel itself isn't shadowed: for most purposes global variables
* are always initialized, and because KMSAN kernels are large
* (GENERIC-KMSAN is ~80MB at the time of writing), shadowing would
- * incur signficant memory usage.
+ * incur significant memory usage.
*/
return (addr < VM_MIN_KERNEL_ADDRESS || addr >= KERNBASE);
}