]> git.sven.stormbind.net Git - sven/exfat-utils.git/commitdiff
Imported Upstream version 1.2.2
authorSven Hoexter <sven@timegate.de>
Sun, 6 Dec 2015 13:38:13 +0000 (14:38 +0100)
committerSven Hoexter <sven@timegate.de>
Sun, 6 Dec 2015 13:38:13 +0000 (14:38 +0100)
ChangeLog
README
configure
configure.ac
libexfat/cluster.c
libexfat/exfat.h
libexfat/mount.c
libexfat/node.c
libexfat/platform.h

index 2ff856c2621ae7a2053391f19222e13f5bd896af..d6f99d037219522dfaa051816cb82fb27ef72cd3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+1.2.2 (2015-11-09)
+
+* Improved reliability in case of a sudden unplug: FS will be in a clean state
+after closing all files and performing sync(1).
+* Fixed compilation on Debian GNU/kFreeBSD and GNU/Hurd platforms.
+* Updated mount.exfat-fuse man page.
+
 1.2.1 (2015-09-24)
 
 * Fixed compatibility with Zalman VE-200: now newly created directories do not
diff --git a/README b/README
index 1e3dff5b310609d7cbfaa509635929ca94d205a4..8f2fe85cb9a9689824098855ce027a9bc8a93f7b 100644 (file)
--- a/README
+++ b/README
@@ -31,6 +31,10 @@ Then install driver and utilities:
 
     sudo make install
 
+You can remove them using this command:
+
+    sudo make uninstall
+
 Mounting
 --------
 
index 6be5c731c82b9ba1e7266628878b9ef897db0c0b..3f05b77d30b3f527ddd8c16838eaffeeab926149 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for Free exFAT implementation 1.2.1.
+# Generated by GNU Autoconf 2.69 for Free exFAT implementation 1.2.2.
 #
 # Report bugs to <relan@users.noreply.github.com>.
 #
@@ -579,8 +579,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='Free exFAT implementation'
 PACKAGE_TARNAME='exfat-utils'
-PACKAGE_VERSION='1.2.1'
-PACKAGE_STRING='Free exFAT implementation 1.2.1'
+PACKAGE_VERSION='1.2.2'
+PACKAGE_STRING='Free exFAT implementation 1.2.2'
 PACKAGE_BUGREPORT='relan@users.noreply.github.com'
 PACKAGE_URL='https://github.com/relan/exfat'
 
@@ -1228,7 +1228,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures Free exFAT implementation 1.2.1 to adapt to many kinds of systems.
+\`configure' configures Free exFAT implementation 1.2.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1294,7 +1294,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of Free exFAT implementation 1.2.1:";;
+     short | recursive ) echo "Configuration of Free exFAT implementation 1.2.2:";;
    esac
   cat <<\_ACEOF
 
@@ -1386,7 +1386,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-Free exFAT implementation configure 1.2.1
+Free exFAT implementation configure 1.2.2
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1441,7 +1441,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by Free exFAT implementation $as_me 1.2.1, which was
+It was created by Free exFAT implementation $as_me 1.2.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2304,7 +2304,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='exfat-utils'
- VERSION='1.2.1'
+ VERSION='1.2.2'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -4611,7 +4611,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by Free exFAT implementation $as_me 1.2.1, which was
+This file was extended by Free exFAT implementation $as_me 1.2.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -4678,7 +4678,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-Free exFAT implementation config.status 1.2.1
+Free exFAT implementation config.status 1.2.2
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
index ac9e71f743274e7d75a7a97d381e018eb77dfc33..c6fc314266684fac10eda593af550b7862c6fc14 100644 (file)
@@ -21,7 +21,7 @@
 #
 
 AC_INIT([Free exFAT implementation],
-       [1.2.1],
+       [1.2.2],
        [relan@users.noreply.github.com],
        [exfat-utils],
        [https://github.com/relan/exfat])
index 523e9fbf523f4adf7df20485d899da26cb578f35..fc3657b53f62e0ba101d6ed2be35b36ca87f8d38 100644 (file)
@@ -149,10 +149,13 @@ static int flush_nodes(struct exfat* ef, struct exfat_node* node)
        return exfat_flush_node(ef, node);
 }
 
-int exfat_flush(struct exfat* ef)
+int exfat_flush_nodes(struct exfat* ef)
 {
-       int rc = flush_nodes(ef, ef->root);
+       return flush_nodes(ef, ef->root);
+}
 
+int exfat_flush(struct exfat* ef)
+{
        if (ef->cmap.dirty)
        {
                if (exfat_pwrite(ef->dev, ef->cmap.chunk,
@@ -165,7 +168,7 @@ int exfat_flush(struct exfat* ef)
                ef->cmap.dirty = false;
        }
 
-       return rc;
+       return 0;
 }
 
 static bool set_next_cluster(const struct exfat* ef, bool contiguous,
index 122ac5be75c3ba4803a0b0764762ee21a3ccded6..97d3692b0a08decd527a9850dfab37cdf0a38aab 100644 (file)
@@ -169,6 +169,7 @@ cluster_t exfat_next_cluster(const struct exfat* ef,
                const struct exfat_node* node, cluster_t cluster);
 cluster_t exfat_advance_cluster(const struct exfat* ef,
                struct exfat_node* node, uint32_t count);
+int exfat_flush_nodes(struct exfat* ef);
 int exfat_flush(struct exfat* ef);
 int exfat_truncate(struct exfat* ef, struct exfat_node* node, uint64_t size,
                bool erase);
index f1fb01a9a88c8ee20eb3730c6669ee905cfbfcd3..0d6ce9ead7514b08283d1e0fe8f58b6edcec3fdc 100644 (file)
@@ -359,7 +359,8 @@ static void finalize_super_block(struct exfat* ef)
 
 void exfat_unmount(struct exfat* ef)
 {
-       exfat_flush(ef);        /* ignore return code */
+       exfat_flush_nodes(ef);  /* ignore return code */
+       exfat_flush(ef);                /* ignore return code */
        exfat_put_node(ef, ef->root);
        exfat_reset_cache(ef);
        free(ef->root);
index f3d10e0ef8d05cc1a6be8c162f919b73e1071011..d05f20dc15aecb729c52557186a778eb8530e368 100644 (file)
@@ -664,7 +664,7 @@ int exfat_flush_node(struct exfat* ef, struct exfat_node* node)
        }
 
        node->flags &= ~EXFAT_ATTRIB_DIRTY;
-       return 0;
+       return exfat_flush(ef);
 }
 
 static bool erase_entry(struct exfat* ef, struct exfat_node* node)
index eaa92f8d904b17b175c66f058c58a418a2a9d6d1..99fe507af3c429ec83768196ece1435a4727c564 100644 (file)
@@ -24,7 +24,7 @@
 #ifndef PLATFORM_H_INCLUDED
 #define PLATFORM_H_INCLUDED
 
-#if defined(__linux__)
+#if defined(__linux__) || defined(__GLIBC__) || defined(__GNU__)
 
 #include <endian.h>
 #include <byteswap.h>