diff options
author | Josef Bacik <josef@redhat.com> | 2012-05-23 14:13:11 -0400 |
---|---|---|
committer | Josef Bacik <josef@redhat.com> | 2012-05-30 10:23:36 -0400 |
commit | 72ac3c0d7921f943d92d1ef42a549fb52e56817d (patch) | |
tree | c8825a2b3848f201a2b67b3a2ec0aaf9669f9ed3 /fs/btrfs/disk-io.c | |
parent | cd023e7b17fe86c530475da210b3348421c40e5f (diff) |
Btrfs: convert the inode bit field to use the actual bit operations
Miao pointed this out while I was working on an orphan problem that messing
with a bitfield where different ranges are protected by different locks
doesn't work out right. Turns out we've been doing this forever where we
have different parts of the bit field protected by either no lock at all or
different locks which could cause all sorts of weird problems including the
issue I was hitting. So instead make a runtime_flags thing that we use the
normal bit operations on that are all atomic so we can keep having our
no/different locking for the different flags and then make force_compress
it's own thing so it can be treated normally. Thanks,
Signed-off-by: Josef Bacik <josef@redhat.com>
Diffstat (limited to 'fs/btrfs/disk-io.c')
-rw-r--r-- | fs/btrfs/disk-io.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 19f5b450f405..0cf8ef2b5b1a 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c | |||
@@ -2001,7 +2001,8 @@ int open_ctree(struct super_block *sb, | |||
2001 | BTRFS_I(fs_info->btree_inode)->root = tree_root; | 2001 | BTRFS_I(fs_info->btree_inode)->root = tree_root; |
2002 | memset(&BTRFS_I(fs_info->btree_inode)->location, 0, | 2002 | memset(&BTRFS_I(fs_info->btree_inode)->location, 0, |
2003 | sizeof(struct btrfs_key)); | 2003 | sizeof(struct btrfs_key)); |
2004 | BTRFS_I(fs_info->btree_inode)->dummy_inode = 1; | 2004 | set_bit(BTRFS_INODE_DUMMY, |
2005 | &BTRFS_I(fs_info->btree_inode)->runtime_flags); | ||
2005 | insert_inode_hash(fs_info->btree_inode); | 2006 | insert_inode_hash(fs_info->btree_inode); |
2006 | 2007 | ||
2007 | spin_lock_init(&fs_info->block_group_cache_lock); | 2008 | spin_lock_init(&fs_info->block_group_cache_lock); |