summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorYan <yanzheng@21cn.com>2007-11-16 19:57:09 (GMT)
committerChris Mason <chris.mason@oracle.com>2008-09-25 15:03:57 (GMT)
commit5cf664263b05beb080bf95037e4c3bd50c80b096 (patch)
tree66ea7afe98b764a1c9ff76f567aff9058c882cfb /fs
parent5e5745dcaf73c5860a16c09572d59383ecee6d28 (diff)
downloadlinux-fsl-qoriq-5cf664263b05beb080bf95037e4c3bd50c80b096.tar.xz
Btrfs: Off by one fixes for extent-tree.c
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/extent-tree.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c
index e534067..6a7a9ba 100644
--- a/fs/btrfs/extent-tree.c
+++ b/fs/btrfs/extent-tree.c
@@ -150,12 +150,9 @@ struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
return NULL;
block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
-
-
- if (block_group->key.objectid <= bytenr && bytenr <=
+ if (block_group->key.objectid <= bytenr && bytenr <
block_group->key.objectid + block_group->key.offset)
return block_group;
-
return NULL;
}
static u64 find_search_start(struct btrfs_root *root,
@@ -195,7 +192,7 @@ again:
continue;
}
if (data != BTRFS_BLOCK_GROUP_MIXED &&
- start + num >= cache->key.objectid + cache->key.offset)
+ start + num > cache->key.objectid + cache->key.offset)
goto new_group;
return start;
}
@@ -1088,9 +1085,8 @@ check_pending:
if (ins->objectid + num_bytes >= search_end)
goto enospc;
-
if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
- ins->objectid + num_bytes >= block_group->
+ ins->objectid + num_bytes > block_group->
key.objectid + block_group->key.offset) {
search_start = block_group->key.objectid +
block_group->key.offset;