diff options
author | Chris Mason <chris.mason@oracle.com> | 2007-06-22 14:16:25 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@hera.kernel.org> | 2007-06-22 14:16:25 -0400 |
commit | 5eda7b5e9b0bed864dd18284c7df9b3c8207dad7 (patch) | |
tree | 9efe48de46e77f2b7b97a2ce3ee93c9da6451671 /fs/btrfs/inode.c | |
parent | 54aa1f4dfdacd60a19c4471220b24e581be6f774 (diff) |
Btrfs: Add the ability to find and remove dead roots after a crash.
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/inode.c')
-rw-r--r-- | fs/btrfs/inode.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 6d031daa7779..9d2a0a3f674d 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c | |||
@@ -2028,6 +2028,8 @@ static int create_subvol(struct btrfs_root *root, char *name, int namelen) | |||
2028 | 2028 | ||
2029 | btrfs_set_root_blocknr(&root_item, bh_blocknr(subvol)); | 2029 | btrfs_set_root_blocknr(&root_item, bh_blocknr(subvol)); |
2030 | btrfs_set_root_refs(&root_item, 1); | 2030 | btrfs_set_root_refs(&root_item, 1); |
2031 | memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress)); | ||
2032 | root_item.drop_level = 0; | ||
2031 | brelse(subvol); | 2033 | brelse(subvol); |
2032 | subvol = NULL; | 2034 | subvol = NULL; |
2033 | 2035 | ||