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

fuse: fix references to fuse.rst -> fuse/fuse.rst

Commit 6be0ddb20200 ("Documentation: fuse: Consolidate FUSE docs into its
own subdirectory") moved fuse docs to a subdirectory but didn't update
references inside the kernel tree.

Fixes: 6be0ddb20200 ("Documentation: fuse: Consolidate FUSE docs into its own subdirectory")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202508261621.EaNMWVjm-lkp@intel.com/
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>

+5 -5
+1 -1
Documentation/filesystems/sysfs.rst
··· 321 321 322 322 fs/ contains a directory for some filesystems. Currently each 323 323 filesystem wanting to export attributes must create its own hierarchy 324 - below fs/ (see ./fuse.rst for an example). 324 + below fs/ (see fuse/fuse.rst for an example). 325 325 326 326 module/ contains parameter values and state information for all 327 327 loaded system modules, for both builtin and loadable modules.
+1 -1
Documentation/translations/zh_CN/filesystems/sysfs.txt
··· 282 282 假定驱动没有跨越多个总线类型)。 283 283 284 284 fs/ 包含了一个为文件系统设立的目录。现在每个想要导出属性的文件系统必须 285 - 在 fs/ 下创建自己的层次结构(参见Documentation/filesystems/fuse.rst)。 285 + 在 fs/ 下创建自己的层次结构(参见Documentation/filesystems/fuse/fuse.rst)。 286 286 287 287 dev/ 包含两个子目录: char/ 和 block/。在这两个子目录中,有以 288 288 <major>:<minor> 格式命名的符号链接。这些符号链接指向 sysfs 目录
+1 -1
Documentation/translations/zh_TW/filesystems/sysfs.txt
··· 285 285 假定驅動沒有跨越多個總線類型)。 286 286 287 287 fs/ 包含了一個爲文件系統設立的目錄。現在每個想要導出屬性的文件系統必須 288 - 在 fs/ 下創建自己的層次結構(參見Documentation/filesystems/fuse.rst)。 288 + 在 fs/ 下創建自己的層次結構(參見Documentation/filesystems/fuse/fuse.rst)。 289 289 290 290 dev/ 包含兩個子目錄: char/ 和 block/。在這兩個子目錄中,有以 291 291 <major>:<minor> 格式命名的符號鏈接。這些符號鏈接指向 sysfs 目錄
+1 -1
fs/fuse/Kconfig
··· 13 13 although chances are your distribution already has that library 14 14 installed if you've installed the "fuse" package itself. 15 15 16 - See <file:Documentation/filesystems/fuse.rst> for more information. 16 + See <file:Documentation/filesystems/fuse/fuse.rst> for more information. 17 17 See <file:Documentation/Changes> for needed library/utility version. 18 18 19 19 If you want to develop a userspace FS, or if you want to use
+1 -1
fs/fuse/dev.c
··· 2415 2415 * The same effect is usually achievable through killing the filesystem daemon 2416 2416 * and all users of the filesystem. The exception is the combination of an 2417 2417 * asynchronous request and the tricky deadlock (see 2418 - * Documentation/filesystems/fuse.rst). 2418 + * Documentation/filesystems/fuse/fuse.rst). 2419 2419 * 2420 2420 * Aborting requests under I/O goes as follows: 1: Separate out unlocked 2421 2421 * requests, they should be finished off immediately. Locked requests will be