]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 8 Jan 2026 03:20:19 +0000 (12:20 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 8 Jan 2026 03:20:22 +0000 (12:20 +0900)
Follow-up for 32614b9aab5a5c9b5be22b635fefdbccef90adc3.

man/systemd.exec.xml
src/core/namespace.h

index be74cb52ef2d9531b882563d01cbffdf9a81295f..fa6f63c24fa793c3b334bd407999dd7d613fe280 100644 (file)
@@ -2157,7 +2157,7 @@ BindReadOnlyPaths=/var/lib/systemd</programlisting>
         When set to <literal>system</literal>, <varname>MemoryTHP=</varname> resets the THP policy to system wide policy.
         This can be used when the process that starts systemd has already disabled THPs via
         <constant>PR_SET_THP_DISABLE</constant>, and we want to restore the system default THP setting at
-        process invokation time. For details, see
+        process invocation time. For details, see
         <ulink url="https://docs.kernel.org/admin-guide/mm/transhuge.html">Transparent Hugepage Support</ulink>
         in the kernel documentation.</para>
         <para>Note that this functionality might not be available, for example if THP is disabled in the
index 1a5ac5374707053ba1b213b5c49edf2ac75d245e..a44aced82216b099de30b4e016f29d7bc865024e 100644 (file)
@@ -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,