search for: orig_generation

Displaying 1 result from an estimated 1 matches for "orig_generation".

2009 May 12
0
[PATCH 1/2] btrfs-progs: mixed back ref support
...nt-tree.c --- btrfs-progs-unstable/extent-tree.c 2009-01-08 08:30:09.758081132 +0800 +++ btrfs-progs-2/extent-tree.c 2009-05-11 09:41:38.000000000 +0800 @@ -41,13 +41,21 @@ struct pending_extent_op { int type; u64 bytenr; u64 num_bytes; - u64 parent; - u64 orig_parent; - u64 generation; - u64 orig_generation; + u64 flags; + struct btrfs_disk_key key; int level; }; +static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, + struct btrfs_root *root, + u64 root_objectid, u64 generation, + u64 flags, struct btrfs_disk_key *key, + int level, struct btrfs_ke...