Add FUSE_FILL_DIR_DEFAULTS enum (#903)
authorFredyVia <942513309@qq.com>
Wed, 20 Mar 2024 15:08:04 +0000 (23:08 +0800)
committerGitHub <noreply@github.com>
Wed, 20 Mar 2024 15:08:04 +0000 (16:08 +0100)
In order to use the fuse_fill_dir_t function in a C++ program, add the enum item:
FUSE_FILL_DIR_DEFAULTS

Without this change g++ compilation failed with
example/hello.c:94:35: error: invalid conversion from ‘int’ to ‘fuse_fill_dir_flags’ [-fpermissive]
   94 |         filler(buf, ".", NULL, 0, 0);
      |                                   ^
      |                                   |
      |                                   int

example/hello.c
example/invalidate_path.c
example/ioctl.c
example/passthrough_fh.c
example/poll.c
include/fuse.h

index b24ebfe13219d0db5adcec4ce74a019e5f9f8a56..6df8173373734bf3d1ccb432aa22f1d588732cd1 100644 (file)
@@ -91,9 +91,9 @@ static int hello_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
        if (strcmp(path, "/") != 0)
                return -ENOENT;
 
-       filler(buf, ".", NULL, 0, 0);
-       filler(buf, "..", NULL, 0, 0);
-       filler(buf, options.filename, NULL, 0, 0);
+       filler(buf, ".", NULL, 0, FUSE_FILL_DIR_DEFAULTS);
+       filler(buf, "..", NULL, 0, FUSE_FILL_DIR_DEFAULTS);
+       filler(buf, options.filename, NULL, 0, FUSE_FILL_DIR_DEFAULTS);
 
        return 0;
 }
index 9159b2fd55e73fa20864949c820d8b7d6dcdd23f..0e8d77f86cbe0bb137a921c5ce857086cdce11be 100644 (file)
@@ -117,9 +117,9 @@ static int xmp_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
                (void) buf;
                struct stat file_stat;
                xmp_getattr("/" TIME_FILE_NAME, &file_stat, NULL);
-               filler(buf, TIME_FILE_NAME, &file_stat, 0, 0);
+               filler(buf, TIME_FILE_NAME, &file_stat, 0, FUSE_FILL_DIR_DEFAULTS);
                xmp_getattr("/" GROW_FILE_NAME, &file_stat, NULL);
-               filler(buf, GROW_FILE_NAME, &file_stat, 0, 0);
+               filler(buf, GROW_FILE_NAME, &file_stat, 0, FUSE_FILL_DIR_DEFAULTS);
                return 0;
        }
 }
index b8dab0017027eced8a7f971717302f7a380d6cc2..9fe5c5bc5c739955daad7d040528ccb4895f5218 100644 (file)
@@ -181,9 +181,9 @@ static int fioc_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
        if (fioc_file_type(path) != FIOC_ROOT)
                return -ENOENT;
 
-       filler(buf, ".", NULL, 0, 0);
-       filler(buf, "..", NULL, 0, 0);
-       filler(buf, FIOC_NAME, NULL, 0, 0);
+       filler(buf, ".", NULL, 0, FUSE_FILL_DIR_DEFAULTS);
+       filler(buf, "..", NULL, 0, FUSE_FILL_DIR_DEFAULTS);
+       filler(buf, FIOC_NAME, NULL, 0, FUSE_FILL_DIR_DEFAULTS);
 
        return 0;
 }
index 701d59e2a530fd9e757a6ff95d9a90ca912c5645..3602c969f2338f7548ac8e500b589d04c777cd75 100644 (file)
@@ -167,7 +167,7 @@ static int xmp_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
        while (1) {
                struct stat st;
                off_t nextoff;
-               enum fuse_fill_dir_flags fill_flags = 0;
+               enum fuse_fill_dir_flags fill_flags = FUSE_FILL_DIR_DEFAULTS;
 
                if (!d->entry) {
                        d->entry = readdir(d->dp);
index fd53ec0cafabb5e16bd0fed26b1f233f3c237d06..ffcb4f1fa0e60e1b3dabf52325ec5d1d32685fd8 100644 (file)
@@ -114,7 +114,7 @@ static int fsel_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
 
        for (i = 0; i < FSEL_FILES; i++) {
                name[0] = fsel_hex_map[i];
-               filler(buf, name, NULL, 0, 0);
+               filler(buf, name, NULL, 0, FUSE_FILL_DIR_DEFAULTS);
        }
 
        return 0;
index f0c6f1028bcc1bb25ded6db2e6aefe8defea7a84..90ee4bbaa8673661ebfa1e9d4ba30f3f04fbfc37 100644 (file)
@@ -48,6 +48,7 @@ enum fuse_readdir_flags {
         * FUSE_FILL_DIR_FLAGS for the filler function.  The filesystem may also
         * just ignore this flag completely.
         */
+       FUSE_READDIR_DEFAULTS = 0,
        FUSE_READDIR_PLUS = (1 << 0)
 };
 
@@ -64,6 +65,7 @@ enum fuse_fill_dir_flags {
         * It is okay to set FUSE_FILL_DIR_PLUS if FUSE_READDIR_PLUS is not set
         * and vice versa.
         */
+       FUSE_FILL_DIR_DEFAULTS = 0,
        FUSE_FILL_DIR_PLUS = (1 << 1)
 };