new version fuse_2_5_0_pre1
authorMiklos Szeredi <miklos@szeredi.hu>
Fri, 9 Dec 2005 20:09:42 +0000 (20:09 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Fri, 9 Dec 2005 20:09:42 +0000 (20:09 +0000)
ChangeLog
NEWS
configure.in
include/fuse_opt.h
kernel/configure.ac
lib/fuse_lowlevel.c
lib/fuse_opt.c

index f71b18dcda443a0bdfd9f1ac7a453f260d30ede6..d1d98e9e7db2dccea2dc7de4366de6a77c77423a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
+
+       * Released 2.5.0-pre1
+
 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
 
        * libfuse: added option parsing interface, defined in
diff --git a/NEWS b/NEWS
index f87dab0002671d1acc62c943b5e8cebe210b42af..a98f7ab8b02bd487f74bda672ebc7b44f7d84481 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,17 @@
+What is new in 2.5
+
+ - Merge library part of FreeBSD port
+
+ - New atomic create+open, access and ftruncate operations
+
+ - On filesystems implementing the new create+open operation, and
+   running on Linux kernels 2.6.15 or later, the 'cp' operation will
+   work correctly when copying read-only files.
+
+ - New option parsing interface added to the library
+
+ - Lots of minor improvements and fixes
+
 What is new in 2.4
 
  - Simplify device opening.  Now '/dev/fuse' is a requirement
index bdd9502fa044b91714a2ed68eaa7fdadc0a4ba7c..a8aeccb7931cefb71495aebf441bbc69c5e7508c 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(fuse, 2.5.0-pre0)
+AC_INIT(fuse, 2.5.0-pre1)
 AC_CANONICAL_TARGET
 AM_INIT_AUTOMAKE
 AM_CONFIG_HEADER(include/config.h)
index 528ec9de25c43a45aa898e6c3e2cbb3ecc383f27..86099cde119f8b529cbb3b726714048fd00d9ba4 100644 (file)
@@ -146,23 +146,23 @@ typedef int (*fuse_opt_proc_t)(void *data, const char *arg, int key);
  * If 'argv' is NULL, the values pointed by argcout and argvout will
  * be used as input
  *
- * A NULL 'opts' is the same as an 'opts' array containing a single
+ * A NULL 'opts' is equivalent to an 'opts' array containing a single
  * end marker
  *
- * If 'proc' is NULL, then any non-matching options will cause an
- * error to be returned
+ * A NULL 'proc' is equivalent to a processing function always
+ * returning '1'
  *
  * If argvout is NULL, then any output arguments are discarded
  *
  * If argcout is NULL, then the output argument count is not stored
  *
  * @param argc is the input argument count
- * @param argv is the input argument vector, may be NULL
+ * @param argv is the input argument vector
  * @param data is the user data
- * @param opts is the option description array, may be NULL
- * @param proc is the processing function, may be NULL
- * @param argcout is pointer to output argument count, may be NULL
- * @param argvout is pointer to output argument vector, may be NULL
+ * @param opts is the option description array
+ * @param proc is the processing function
+ * @param argcout is pointer to output argument count
+ * @param argvout is pointer to output argument vector
  * @return -1 on error, 0 on success
  */
 int fuse_opt_parse(int argc, char *argv[], void *data,
index eca3a3b6f2a216da8fc7e204c92cfabed79149a7..5d85405a296e0ffc6039f5294d090788bd430f2c 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(fuse-kernel, 2.5.0-pre0)
+AC_INIT(fuse-kernel, 2.5.0-pre1)
 AC_CONFIG_HEADERS([config.h])
 
 AC_PROG_INSTALL
index 370e320df7c06157e6e9208ff83c539f121744bc..b35b16a8391a3a23be8e05f98df0381f85656578 100644 (file)
@@ -925,6 +925,14 @@ static struct fuse_opt fuse_ll_opts[] = {
     FUSE_OPT_END
 };
 
+static int fuse_ll_opt_proc(void *data, const char *arg, int key)
+{
+    (void) data;
+    (void) key;
+    fprintf(stderr, "fuse: unknown option `%s'\n", arg);
+    return -1;
+}
+
 int fuse_lowlevel_is_lib_option(const char *opt)
 {
     return fuse_opt_match(fuse_ll_opts, opt);
@@ -964,8 +972,8 @@ struct fuse_session *fuse_lowlevel_new(const char *opts,
 
     if (opts) {
         const char *argv[] = { "", "-o", opts, NULL };
-        if (fuse_opt_parse(3, (char **) argv, f, fuse_ll_opts, NULL,
-                           NULL, NULL) == -1)
+        if (fuse_opt_parse(3, (char **) argv, f, fuse_ll_opts,
+                           fuse_ll_opt_proc, NULL, NULL) == -1)
             goto out_free;
     }
 
index f49e85d15800711a330bf127f6574231bbedb8c9..e3234f2f2fe304378975ddc8b51782fdbca8f8ed 100644 (file)
@@ -114,17 +114,11 @@ static int insert_arg(struct fuse_opt_context *ctx, int pos, const char *arg)
 static int call_proc(struct fuse_opt_context *ctx, const char *arg, int key,
                      int iso)
 {
-    int res;
-
-    if (!ctx->proc) {
-        fprintf(stderr, "fuse: unknown option `%s'\n", arg);
-        return -1;
+    if (ctx->proc) {
+        int res = ctx->proc(ctx->data, arg, key);
+        if (res == -1 || !res)
+            return res;
     }
-
-    res = ctx->proc(ctx->data, arg, key);
-    if (res == -1 || !res)
-        return res;
-
     if (iso)
         return add_opt(ctx, arg);
     else