patch: document ignored fill parameter of readdir
authorAndré Schröder <andre.schroeder@andresco.de>
Mon, 18 Apr 2022 21:28:27 +0000 (23:28 +0200)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 20 Apr 2022 10:15:08 +0000 (11:15 +0100)
include/fuse.h

index 91486882824016602fe8c1d289986f2fabc841d1..1a2f841301d6f3cd5c595abef14670df14d020ed 100644 (file)
@@ -563,6 +563,13 @@ struct fuse_operations {
         * passes non-zero offset to the filler function.  When the buffer
         * is full (or an error happens) the filler function will return
         * '1'.
+        *
+        * When FUSE_READDIR_PLUS is not set, only some parameters of the
+        * fill function (the fuse_fill_dir_t parameter) are actually used:
+        * The file type (which is part of stat::st_mode) is used. And if
+        * fuse_config::use_ino is set, the inode (stat::st_ino) is also
+        * used. The other fields are ignored when FUSE_READDIR_PLUS is not
+        * set.
         */
        int (*readdir) (const char *, void *, fuse_fill_dir_t, off_t,
                        struct fuse_file_info *, enum fuse_readdir_flags);