Btrfs: Add checks for last byte in disk to allocator grouping
authorChris Mason <chris.mason@oracle.com>
Tue, 5 Feb 2008 15:20:17 +0000 (10:20 -0500)
committerChris Mason <chris.mason@oracle.com>
Thu, 25 Sep 2008 15:04:00 +0000 (11:04 -0400)
Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/extent-tree.c

index a340eee..9e08699 100644 (file)
@@ -1611,8 +1611,13 @@ check_pending:
        }
        ins->offset = num_bytes;
        btrfs_free_path(path);
-       if (last_ptr)
+       if (last_ptr) {
                *last_ptr = ins->objectid + ins->offset;
+               if (*last_ptr ==
+                   btrfs_super_total_bytes(&root->fs_info->super_copy)) {
+                       *last_ptr = 0;
+               }
+       }
        return 0;
 
 new_group: