summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorliubo <liubo2009@cn.fujitsu.com>2011-06-01 09:42:49 +0000
committerChris Mason <chris.mason@oracle.com>2011-06-04 08:03:44 -0400
commitca456ae280c0646e1e571c3b9a3834c55e90adfe (patch)
tree945f70453e07c59739c02808f69598f637d35dfa /fs
parent211f96c24f117fcc6e9e2431e40d92f4de22625e (diff)
downloadop-kernel-dev-ca456ae280c0646e1e571c3b9a3834c55e90adfe.zip
op-kernel-dev-ca456ae280c0646e1e571c3b9a3834c55e90adfe.tar.gz
Btrfs: don't save the inode cache in non-FS roots
This adds extra checks to make sure the inode map we are caching really belongs to a FS root instead of a special relocation tree. It prevents crashes during balancing operations. Signed-off-by: Liu Bo <liubo2009@cn.fujitsu.com> Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/inode-map.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/btrfs/inode-map.c b/fs/btrfs/inode-map.c
index 3262cd1..04f7199 100644
--- a/fs/btrfs/inode-map.c
+++ b/fs/btrfs/inode-map.c
@@ -388,6 +388,12 @@ int btrfs_save_ino_cache(struct btrfs_root *root,
int prealloc;
bool retry = false;
+ /* only fs tree and subvol/snap needs ino cache */
+ if (root->root_key.objectid != BTRFS_FS_TREE_OBJECTID &&
+ (root->root_key.objectid < BTRFS_FIRST_FREE_OBJECTID ||
+ root->root_key.objectid > BTRFS_LAST_FREE_OBJECTID))
+ return 0;
+
path = btrfs_alloc_path();
if (!path)
return -ENOMEM;
OpenPOWER on IntegriCloud