Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 128362
b: refs/heads/master
c: 5e82849
h: refs/heads/master
v: v3
  • Loading branch information
Chris Mason authored and David Woodhouse committed Apr 23, 2007
1 parent dccdfcd commit 8934dd4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5d0c3e60fea7e23fbfbe3ab2886b444b4c702441
refs/heads/master: 5e82849e63723afe720d4b325d04a989f6247cce
6 changes: 4 additions & 2 deletions trunk/fs/btrfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -2013,6 +2013,8 @@ static int create_subvol(struct btrfs_root *root, char *name, int namelen)
BUG_ON(!trans);

subvol = btrfs_alloc_free_block(trans, root);
if (subvol == NULL)
return -ENOSPC;
leaf = btrfs_buffer_leaf(subvol);
btrfs_set_header_nritems(&leaf->header, 0);
btrfs_set_header_level(&leaf->header, 0);
Expand All @@ -2022,8 +2024,6 @@ static int create_subvol(struct btrfs_root *root, char *name, int namelen)
memcpy(leaf->header.fsid, root->fs_info->disk_super->fsid,
sizeof(leaf->header.fsid));
mark_buffer_dirty(subvol);
brelse(subvol);
subvol = NULL;

inode_item = &root_item.inode;
memset(inode_item, 0, sizeof(*inode_item));
Expand All @@ -2035,6 +2035,8 @@ static int create_subvol(struct btrfs_root *root, char *name, int namelen)

btrfs_set_root_blocknr(&root_item, bh_blocknr(subvol));
btrfs_set_root_refs(&root_item, 1);
brelse(subvol);
subvol = NULL;

ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
0, &objectid);
Expand Down

0 comments on commit 8934dd4

Please sign in to comment.