]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Btrfs: don't call btrfs_qgroup_free if just btrfs_qgroup_reserve fails
authorWang Shilong <wangsl-fnst@cn.fujitsu.com>
Fri, 1 Mar 2013 11:33:01 +0000 (11:33 +0000)
committerJosef Bacik <jbacik@fusionio.com>
Fri, 1 Mar 2013 15:13:04 +0000 (10:13 -0500)
commit eb6b88d92c6df083dd09a8c471011e3788dfd7c6 leads into another bug.
If it is just because qgroup_reserve fails, the function btrfs_qgroup_free
should not be called, otherwise, it will cause the wrong quota accounting.

Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
fs/btrfs/extent-tree.c

index 7cb9d734f6e51cc0266f1170810cf61330c7eda3..075854e7a044bcfe50eaf3580b1c32c5bf6c437b 100644 (file)
@@ -4772,9 +4772,14 @@ int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
         * ret != 0 here means the qgroup reservation failed, we go straight to
         * the shared error handling then.
         */
-       if (ret == 0)
+       if (ret == 0) {
                ret = reserve_metadata_bytes(root, block_rsv,
                                             to_reserve, flush);
+               if (ret && root->fs_info->quota_enabled) {
+                       btrfs_qgroup_free(root, num_bytes +
+                                               nr_extents * root->leafsize);
+               }
+       }
 
        if (ret) {
                u64 to_free = 0;
@@ -4805,10 +4810,6 @@ int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
                                                      btrfs_ino(inode),
                                                      to_free, 0);
                }
-               if (root->fs_info->quota_enabled) {
-                       btrfs_qgroup_free(root, num_bytes +
-                                               nr_extents * root->leafsize);
-               }
                if (delalloc_lock)
                        mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
                return ret;