Displaying 5 results from an estimated 5 matches for "__resolve_indirect_refs".
2013 May 07
2
Kernel BUG: __tree_mod_log_rewind
...7 02:09:21 caper kernel: [ 726.752237] [<ffffffffa00f25cb>]
btrfs_search_old_slot+0x4cb/0x670 [btrfs]
May 7 02:09:21 caper kernel: [ 726.752351] [<ffffffffa016d118>]
__resolve_indirect_ref+0xc8/0x150 [btrfs]
May 7 02:09:21 caper kernel: [ 726.752462] [<ffffffffa016d23e>]
__resolve_indirect_refs+0x9e/0x200 [btrfs]
May 7 02:09:21 caper kernel: [ 726.752573] [<ffffffffa016da3d>]
find_parent_nodes+0x45d/0x6b0 [btrfs]
May 7 02:09:21 caper kernel: [ 726.752684] [<ffffffffa016dd29>]
btrfs_find_all_roots+0x99/0x100 [btrfs]
May 7 02:09:21 caper kernel: [ 726.752792] [<fffff...
2013 Feb 13
0
Re: Heavy memory leak when using quota groups
...;ffffffffa055849e>] ?
> release_extent_buffer.isra.26+0x5e/0xf0 [btrfs]
> [ 5123.800273] [<ffffffffa055da17>] ? free_extent_buffer+0x37/0x90 [btrfs]
> [ 5123.800280] [<ffffffffa0522d5d>] btrfs_next_old_leaf+0xed/0x450 [btrfs]
> [ 5123.800290] [<ffffffffa05955b4>] __resolve_indirect_refs+0x334/0x620 [btrfs]
> [ 5123.800301] [<ffffffffa059616a>] find_parent_nodes+0x7da/0xf90 [btrfs]
> [ 5123.800311] [<ffffffffa05969b9>] btrfs_find_all_roots+0x99/0x100 [btrfs]
> [ 5123.800313] [<ffffffff81183beb>] ? kfree+0x3b/0x150
> [ 5123.800323] [<ffffffffa059...
2012 Oct 30
8
Crashes in extent_io.c after "btrfs bad mapping eb" notice
...? map_private_extent_buffer+0x83/0xc9
Oct 30 22:42:36 localhost kernel: [<ffffffff81249353>] ? generic_bin_search.clone.50+0xaa/0x130
Oct 30 22:42:36 localhost kernel: [<ffffffff8124c11a>] ? btrfs_search_old_slot+0x333/0x6ad
Oct 30 22:42:36 localhost kernel: [<ffffffff812a737d>] ? __resolve_indirect_refs+0x147/0x4b1
Oct 30 22:42:36 localhost kernel: [<ffffffff812a70bf>] ? __add_keyed_refs.clone.6+0x9e/0x215
Oct 30 22:42:36 localhost kernel: [<ffffffff812a6ba6>] ? __add_prelim_ref+0x3a/0xb9
Oct 30 22:42:36 localhost kernel: [<ffffffff812a7d54>] ? find_parent_nodes+0x553/0x7ca
Oct 3...
2012 Oct 04
3
[PATCH] btrfs ulist use rbtree instead
...+++++++++++++++++++++++---------------
fs/btrfs/ulist.h | 45 ++++++++++++---
5 files changed, 161 insertions(+), 66 deletions(-)
diff --git a/fs/btrfs/backref.c b/fs/btrfs/backref.c
index ff6475f..a5bebc8 100644
--- a/fs/btrfs/backref.c
+++ b/fs/btrfs/backref.c
@@ -360,7 +360,7 @@ static int __resolve_indirect_refs(struct btrfs_fs_info *fs_info,
}
/* we put the first parent into the ref at hand */
- ULIST_ITER_INIT(&uiter);
+ ULIST_ITER_INIT(parents, &uiter);
node = ulist_next(parents, &uiter);
ref->parent = node ? node->val : 0;
ref->inode_list =
@@ -955,7 +955,7 @@ st...
2011 Oct 06
26
[PATCH v0 00/18] btfs: Subvolume Quota Groups
This is a first draft of a subvolume quota implementation. It is possible
to limit subvolumes and any group of subvolumes and also to track the amount
of space that will get freed when deleting snapshots.
The current version is functionally incomplete, with the main missing feature
being the initial scan and rescan of an existing filesystem.
I put some effort into writing an introduction into