fuse_session_loop_mt: Accept a NULL config - use defaults
authorBernd Schubert <bschubert@ddn.com>
Mon, 11 Apr 2022 10:02:54 +0000 (12:02 +0200)
committerNikolaus Rath <Nikolaus@rath.org>
Sun, 4 Sep 2022 12:07:15 +0000 (13:07 +0100)
If an application does not want to bother with the session
and wants to keep defaults, it can now just pass a NULL
as config parameter.

include/fuse.h
lib/fuse_loop_mt.c

index 917a91c1c48b1d7669497c0914a2431da05e019c..9897c85b4d04f57d3a6ca40f9372b92622c59dd1 100644 (file)
@@ -1041,7 +1041,7 @@ int fuse_loop_mt_32(struct fuse *f, struct fuse_loop_config *config);
  * in the callback function of fuse_operations is also thread-safe.
  *
  * @param f the FUSE handle
- * @param config loop configuration
+ * @param config loop configuration, may be NULL and defaults will be used then
  * @return see fuse_session_loop()
  *
  * See also: fuse_loop()
index 9ec1fb275eab7ee769c7eec21c2c5c7efe334586..6002e19b9d240316c91dbdc668d8bb8b6b94876f 100644 (file)
@@ -328,10 +328,18 @@ int fuse_session_loop_mt_312(struct fuse_session *se, struct fuse_loop_config *c
 int err;
        struct fuse_mt mt;
        struct fuse_worker *w;
+       int created_config = 0;
+
+       if (config) {
+               err = fuse_loop_cfg_verify(config);
+               if (err)
+                       return err;
+       } else {
+               /* The caller does not care about parameters - use the default */
+               config = fuse_loop_cfg_create();
+               created_config = 1;
+       }
 
-       err = fuse_loop_cfg_verify(config);
-       if (err)
-               return err;
 
        memset(&mt, 0, sizeof(struct fuse_mt));
        mt.se = se;
@@ -372,6 +380,11 @@ int err;
                err = se->error;
        fuse_session_reset(se);
 
+       if (created_config) {
+               fuse_loop_cfg_destroy(config);
+               config = NULL;
+       }
+
        return err;
 }
 
@@ -380,12 +393,16 @@ FUSE_SYMVER("fuse_session_loop_mt_32", "fuse_session_loop_mt@FUSE_3.2")
 int fuse_session_loop_mt_32(struct fuse_session *se, struct fuse_loop_config_v1 *config_v1)
 {
        int err;
+       struct fuse_loop_config *config = NULL;
 
-       struct fuse_loop_config *config = fuse_loop_cfg_create();
-       if (config == NULL)
-               return ENOMEM;
+       if (config_v1 != NULL) {
+               /* convert the given v1 config */
+               config = fuse_loop_cfg_create();
+               if (config == NULL)
+                       return ENOMEM;
 
-       fuse_loop_cfg_convert(config, config_v1);
+               fuse_loop_cfg_convert(config, config_v1);
+       }
 
        err = fuse_session_loop_mt_312(se, config);