]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ext4: Avoid corrupting the uninitialized bit in the extent during truncate
authorAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Wed, 10 Jun 2009 18:22:55 +0000 (14:22 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 10 Jun 2009 18:22:55 +0000 (14:22 -0400)
The unitialized bit was not properly getting preserved in in an extent
which is partially truncated because the it was geting set to the
value of the first extent to be removed or truncated as part of the
truncate operation, and if there are multiple extents are getting
removed or modified as part of the truncate operation, it is only the
last extent which will might be partially truncated, and its
uninitalized bit is not necessarily the same as the first extent to be
truncated.

Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/extents.c

index 9c35a7b1f0ae73ac22decaa937eba42a8299737c..2593f748c3a48040ef3e70c6a8032d58b8c714e5 100644 (file)
@@ -2083,12 +2083,16 @@ ext4_ext_rm_leaf(handle_t *handle, struct inode *inode,
        ex = EXT_LAST_EXTENT(eh);
 
        ex_ee_block = le32_to_cpu(ex->ee_block);
-       if (ext4_ext_is_uninitialized(ex))
-               uninitialized = 1;
        ex_ee_len = ext4_ext_get_actual_len(ex);
 
        while (ex >= EXT_FIRST_EXTENT(eh) &&
                        ex_ee_block + ex_ee_len > start) {
+
+               if (ext4_ext_is_uninitialized(ex))
+                       uninitialized = 1;
+               else
+                       uninitialized = 0;
+
                ext_debug("remove ext %lu:%u\n", ex_ee_block, ex_ee_len);
                path[depth].p_ext = ex;