search for: ulist_iterator

Displaying 2 results from an estimated 2 matches for "ulist_iterator".

Did you mean: ilist_iterator
2012 Oct 04
3
[PATCH] btrfs ulist use rbtree instead
...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 @@ static void free_leaf_list(struct ulist *blocks) struct extent_inode_elem *eie_next; struct ulist_iterator uiter; - ULIST_ITER_INIT(&uiter); + ULIST_ITER_INIT(blocks, &uiter); while ((node = ulist_next(blocks, &uiter))) { if (!node->aux) continue; @@ -1038,7 +1038,7 @@ int btrfs_find_all_roots(struct btrfs_trans_handle *trans, return -ENOMEM; } - ULIST_ITER_INIT(&uit...
2013 Apr 25
10
[PATCH v4 0/3] Btrfs: quota rescan for 3.10
The kernel side for rescan, which is needed if you want to enable qgroup tracking on a non-empty volume. The first patch splits btrfs_qgroup_account_ref into readable ans reusable units. The second patch adds the rescan implementation (refer to its commit message for a description of the algorithm). The third patch starts an automatic rescan when qgroups are enabled. It is only separated to