From: Yu Watanabe Date: Thu, 8 Jan 2026 03:20:19 +0000 (+0900) Subject: core: fix typo X-Git-Tag: v260-rc1~418 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5366dbdbd44ba4dc0c914dd4daa1a5297e0b2bde;p=thirdparty%2Fsystemd.git core: fix typo Follow-up for 32614b9aab5a5c9b5be22b635fefdbccef90adc3. --- diff --git a/man/systemd.exec.xml b/man/systemd.exec.xml index be74cb52ef2..fa6f63c24fa 100644 --- a/man/systemd.exec.xml +++ b/man/systemd.exec.xml @@ -2157,7 +2157,7 @@ BindReadOnlyPaths=/var/lib/systemd When set to system, MemoryTHP= resets the THP policy to system wide policy. This can be used when the process that starts systemd has already disabled THPs via PR_SET_THP_DISABLE, and we want to restore the system default THP setting at - process invokation time. For details, see + process invocation time. For details, see Transparent Hugepage Support in the kernel documentation. Note that this functionality might not be available, for example if THP is disabled in the diff --git a/src/core/namespace.h b/src/core/namespace.h index 1a5ac537470..a44aced8221 100644 --- a/src/core/namespace.h +++ b/src/core/namespace.h @@ -96,12 +96,12 @@ typedef enum MemoryTHP { * any PR_SET_THP_DISABLE call. */ MEMORY_THP_INHERIT, - MEMORY_THP_DISABLE, /* Disable THPs completely for the prcess */ + MEMORY_THP_DISABLE, /* Disable THPs completely for the process */ MEMORY_THP_MADVISE, /* Disable THPs for the process except when madvised */ /* * Use system default THP setting. this can be used when the process that * starts systemd has already disabled THPs via PR_SET_THP_DISABLE, and we - * want to restore the system default THP setting at process invokation time. + * want to restore the system default THP setting at process invocation time. */ MEMORY_THP_SYSTEM, _MEMORY_THP_MAX,