diff options
author | Hongbo Li <lihongbo22@huawei.com> | 2024-10-22 09:38:12 +0800 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-10-24 13:50:27 +0200 |
commit | 6b51b9f65cec2c5246b06eec0334ba465ba357a8 (patch) | |
tree | 8fa4de47b28d3150df12d97873cb8510a6218ab8 | |
parent | 35100ae2dc33fc4b20c3648ed375a81e1f4b6e3a (diff) | |
download | linux-stable-6b51b9f65cec2c5246b06eec0334ba465ba357a8.tar.gz linux-stable-6b51b9f65cec2c5246b06eec0334ba465ba357a8.tar.bz2 linux-stable-6b51b9f65cec2c5246b06eec0334ba465ba357a8.zip |
doc: correcting the debug path for cachefiles
The original debug path is under "/sys/modules", that's
wrong. The real path in kernel is "/sys/module". So we
can correct it.
Signed-off-by: Hongbo Li <lihongbo22@huawei.com>
Link: https://lore.kernel.org/r/20241022013812.2880883-1-lihongbo22@huawei.com
Signed-off-by: Christian Brauner <brauner@kernel.org>
-rw-r--r-- | Documentation/filesystems/caching/cachefiles.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/filesystems/caching/cachefiles.rst b/Documentation/filesystems/caching/cachefiles.rst index e04a27bdbe19..b3ccc782cb3b 100644 --- a/Documentation/filesystems/caching/cachefiles.rst +++ b/Documentation/filesystems/caching/cachefiles.rst @@ -115,7 +115,7 @@ set up cache ready for use. The following script commands are available: This mask can also be set through sysfs, eg:: - echo 5 >/sys/modules/cachefiles/parameters/debug + echo 5 > /sys/module/cachefiles/parameters/debug Starting the Cache |