diff options
author | Kees Cook <keescook@chromium.org> | 2019-07-16 19:27:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-07-16 22:23:22 -0400 |
commit | 92bae787c483b015d8985c43784e5afb5ec67895 (patch) | |
tree | fdcef80f29abb3fff022292518f69dc59d395598 /init/Kconfig | |
parent | aa94b1dc5bca1c23d1a1f4110b4e77bfe88c0061 (diff) |
init/Kconfig: fix neighboring typos
This fixes a couple typos I noticed in the slab Kconfig:
sacrifies -> sacrifices
accellerate -> accelerate
Seeing as no other instances of these typos are found elsewhere in the
kernel and that I originally added one of the two, I can only assume
working on slab must have caused damage to the spelling centers of my
brain.
Link: http://lkml.kernel.org/r/201905292203.CD000546EB@keescook
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'init/Kconfig')
-rw-r--r-- | init/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init/Kconfig b/init/Kconfig index 9697c6b5303c..99da78db0440 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -1827,7 +1827,7 @@ config SLAB_FREELIST_HARDENED | |||
1827 | help | 1827 | help |
1828 | Many kernel heap attacks try to target slab cache metadata and | 1828 | Many kernel heap attacks try to target slab cache metadata and |
1829 | other infrastructure. This options makes minor performance | 1829 | other infrastructure. This options makes minor performance |
1830 | sacrifies to harden the kernel slab allocator against common | 1830 | sacrifices to harden the kernel slab allocator against common |
1831 | freelist exploit methods. | 1831 | freelist exploit methods. |
1832 | 1832 | ||
1833 | config SHUFFLE_PAGE_ALLOCATOR | 1833 | config SHUFFLE_PAGE_ALLOCATOR |
@@ -1859,7 +1859,7 @@ config SLUB_CPU_PARTIAL | |||
1859 | depends on SLUB && SMP | 1859 | depends on SLUB && SMP |
1860 | bool "SLUB per cpu partial cache" | 1860 | bool "SLUB per cpu partial cache" |
1861 | help | 1861 | help |
1862 | Per cpu partial caches accellerate objects allocation and freeing | 1862 | Per cpu partial caches accelerate objects allocation and freeing |
1863 | that is local to a processor at the price of more indeterminism | 1863 | that is local to a processor at the price of more indeterminism |
1864 | in the latency of the free. On overflow these caches will be cleared | 1864 | in the latency of the free. On overflow these caches will be cleared |
1865 | which requires the taking of locks that may cause latency spikes. | 1865 | which requires the taking of locks that may cause latency spikes. |