Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Documentation: zram: fix dictionary spelling

Fixes a typo in the ZRAM documentation where 'dictioary' was
misspelled. Corrected it to 'dictionary' in the example usage
of 'algorithm_params'.

Signed-off-by: Sarveshwaar SS <sarvesh20123@gmail.com>
Reviewed-by: Sergey Senozhatsky <senozhatsky@chromium.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20241125165122.17521-1-sarvesh20123@gmail.com

authored by

Saru2003 and committed by
Jonathan Corbet
5c14b685 b76d3242

+3 -3
+3 -3
Documentation/admin-guide/blockdev/zram.rst
··· 121 121 path to the `dict` along with other parameters:: 122 122 123 123 #pass path to pre-trained zstd dictionary 124 - echo "algo=zstd dict=/etc/dictioary" > /sys/block/zram0/algorithm_params 124 + echo "algo=zstd dict=/etc/dictionary" > /sys/block/zram0/algorithm_params 125 125 126 126 #same, but using algorithm priority 127 - echo "priority=1 dict=/etc/dictioary" > \ 127 + echo "priority=1 dict=/etc/dictionary" > \ 128 128 /sys/block/zram0/algorithm_params 129 129 130 130 #pass path to pre-trained zstd dictionary and compression level 131 - echo "algo=zstd level=8 dict=/etc/dictioary" > \ 131 + echo "algo=zstd level=8 dict=/etc/dictionary" > \ 132 132 /sys/block/zram0/algorithm_params 133 133 134 134 Parameters are algorithm specific: not all algorithms support pre-trained