search for: btrfs_root_generation

Displaying 8 results from an estimated 8 matches for "btrfs_root_generation".

2013 May 14
1
[PATCH] Btrfs-progs: fix missing recow roots when making btrfs filesystem
...rfs_trans_handle *trans, int ret; struct extent_buffer *tmp; struct btrfs_fs_info *info = root->fs_info; + u64 generation; - ret = __btrfs_cow_block(trans, info->fs_root, info->fs_root->node, - NULL, 0, &tmp, 0, 0); - BUG_ON(ret); - free_extent_buffer(tmp); + generation = btrfs_root_generation(&info->fs_root->root_item); + if (generation != trans->transid) { + ret = __btrfs_cow_block(trans, info->fs_root, + info->fs_root->node, NULL, 0, &tmp, 0, 0); + BUG_ON(ret); + free_extent_buffer(tmp); + } - ret = __btrfs_cow_block(trans, info->tree_root, info-&g...
2012 Aug 01
17
[PATCH] add crtime to the snapshot list
From: Anand <anand.jain@oracle.com> This patch adds creation-time to the snapshot list display, which would help user to better manage the snapshots when number of snapshots grow substantially. This patch is developed and on top of the send/receive btrfs and btrfs-progs repo at git://github.com/ablock84/linux-btrfs.git (send-v2) git://github.com/ablock84/btrfs-progs.git (send-v2)
2013 Nov 27
0
[PATCH] Btrfs-progs: fix the mismatch of extent buffer's space
...eb->refs = 1; eb->flags = 0; eb->tree = tree; eb->fd = -1; diff --git a/mkfs.c b/mkfs.c index cd0af9e..482e4df 100644 --- a/mkfs.c +++ b/mkfs.c @@ -163,6 +163,7 @@ static void __recow_root(struct btrfs_trans_handle *trans, struct extent_buffer *tmp; if (trans->transid != btrfs_root_generation(&root->root_item)) { + extent_buffer_get(root->node); ret = __btrfs_cow_block(trans, root, root->node, NULL, 0, &tmp, 0, 0); BUG_ON(ret); -- 1.8.2.1 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majord...
2013 Apr 11
0
[PATCH] Btrfs-progs: enhance 'btrfs subvolume list'
...0) { - if (ri->name) - free(ri->name); + if (root_offset) + rinfo->root_offset = root_offset; + if (ref_tree) + rinfo->ref_tree = ref_tree; + if (dir_id) + rinfo->dir_id = dir_id; - ri->name = malloc(name_len + 1); - if (!ri->name) { + if (ritem) { + rinfo->gen = btrfs_root_generation(ritem); + rinfo->flags = btrfs_root_flags(ritem); + } + + if (ritem && !is_v0) { + rinfo->cgen = btrfs_root_ctransid(ritem); + rinfo->ogen = btrfs_root_otransid(ritem); + rinfo->sgen = btrfs_root_stransid(ritem); + rinfo->rgen = btrfs_root_rtransid(ritem); + rinfo->c...
2012 Nov 01
41
[Request for review] [RFC] Add label support for snapshots and subvols
From: Anand Jain <anand.jain@oracle.com> (This patch is for the review/test not yet for the integration). Here is an implementation of the feature to add label to the subvolume and snapshots. Which would help sysadmin to better manager the subvol and snapshots. This can be done in two ways, one - using attr which is user land only changes but drawback is able to change the label
2010 Sep 03
0
[PATCH 1/2] btrfs: document where we use BUG_ON instead of error handling
...fs_fixable_bug_on(ret); if (!(rw & REQ_WRITE)) { /* @@ -974,7 +974,7 @@ static int find_and_setup_root(struct btrfs_root *tree_root, &root->root_item, &root->root_key); if (ret > 0) return -ENOENT; - BUG_ON(ret); + btrfs_fixable_bug_on(ret); generation = btrfs_root_generation(&root->root_item); blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item)); @@ -1501,7 +1501,7 @@ static int transaction_kthread(void *arg) trans = btrfs_join_transaction(root, 1); if (transid == trans->transid) { ret = btrfs_commit_transaction(trans, roo...
2012 Mar 20
13
[PATCH 0 of 3 v2] PV-GRUB: add support for ext4 and btrfs
Hi, The following patches add support for ext4 and btrfs to PV-GRUB. These patches are taken nearly verbatim from those provided by Fedora and Gentoo. We''ve been using these patches for the PV-GRUB images available in EC2 for some time now with no problems. Changes from v1: - Makefile has been changed to check the exit code from patch - The btrfs patch has been rebased to apply
2011 Oct 04
68
[patch 00/65] Error handling patchset v3
Hi all - Here''s my current error handling patchset, against 3.1-rc8. Almost all of this patchset is preparing for actual error handling. Before we start in on that work, I''m trying to reduce the surface we need to worry about. It turns out that there is a ton of code that returns an error code but never actually reports an error. The patchset has grown to 65 patches. 46 of them