mirror of https://github.com/torvalds/linux.git
If we add ``thp_anon=32,64K:always`` to the kernel command line, we
will see the following error:
[ 0.000000] huge_memory: thp_anon=32,64K:always: error parsing string, ignoring setting
This happens because the correct format isn't ``thp_anon=<size>,<size>[KMG]:<state>```,
as [KMG] must follow each number to especify its unit. So, the correct
format is ``thp_anon=<size>[KMG],<size>[KMG]:<state>```.
Therefore, adjust the documentation to reflect the correct format of the
parameter ``thp_anon=``.
Link: https://lkml.kernel.org/r/20241101165719.1074234-3-mcanal@igalia.com
Fixes:
|
||
|---|---|---|
| .. | ||
| damon | ||
| cma_debugfs.rst | ||
| concepts.rst | ||
| hugetlbpage.rst | ||
| idle_page_tracking.rst | ||
| index.rst | ||
| ksm.rst | ||
| memory-hotplug.rst | ||
| multigen_lru.rst | ||
| nommu-mmap.rst | ||
| numa_memory_policy.rst | ||
| numaperf.rst | ||
| pagemap.rst | ||
| shrinker_debugfs.rst | ||
| soft-dirty.rst | ||
| swap_numa.rst | ||
| transhuge.rst | ||
| userfaultfd.rst | ||
| zswap.rst | ||