search for: btrfs_iget_arg

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

Did you mean: btrfs_iget_args
2008 Aug 30
0
[PATCH] btrfs: remove unused function btrfs_ilookup
....000000000 -0300 +++ btrfs-unstable/inode.c 2008-08-30 11:09:03.000000000 -0300 @@ -1781,19 +1781,6 @@ static int btrfs_find_actor(struct inode args->root == BTRFS_I(inode)->root); } -struct inode *btrfs_ilookup(struct super_block *s, u64 objectid, - u64 root_objectid) -{ - struct btrfs_iget_args args; - args.ino = objectid; - args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid); - - if (!args.root) - return NULL; - - return ilookup5(s, objectid, btrfs_find_actor, (void *)&args); -} - struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid, struct...
2012 Sep 17
13
[PATCH 1/2 v3] Btrfs: use flag EXTENT_DEFRAG for snapshot-aware defrag
We''re going to use this flag EXTENT_DEFRAG to indicate which range belongs to defragment so that we can implement snapshow-aware defrag: We set the EXTENT_DEFRAG flag when dirtying the extents that need defragmented, so later on writeback thread can differentiate between normal writeback and writeback started by defragmentation. This patch is used for the latter one. Originally patch