diff options
author | David Sterba <dsterba@suse.cz> | 2015-01-02 18:55:46 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.cz> | 2015-01-14 19:23:47 +0100 |
commit | 14692cc150d3ce10ea8766ccb2a8f483b77b49f0 (patch) | |
tree | 96954530d68d8a7d3ab9b3d741736f60b346d313 /fs/btrfs/backref.c | |
parent | 381cf6587f8a8a8e981bc0c1aaaa8859b51dc756 (diff) | |
download | linux-14692cc150d3ce10ea8766ccb2a8f483b77b49f0.tar.gz linux-14692cc150d3ce10ea8766ccb2a8f483b77b49f0.tar.bz2 linux-14692cc150d3ce10ea8766ccb2a8f483b77b49f0.zip |
btrfs: cleanup, remove inode_item_info helper
It's only a simple wrapper around btrfs_find_item, the locally defined
key is not used.
Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'fs/btrfs/backref.c')
-rw-r--r-- | fs/btrfs/backref.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/fs/btrfs/backref.c b/fs/btrfs/backref.c index 8729cf68d2fe..6fdf82bb03d4 100644 --- a/fs/btrfs/backref.c +++ b/fs/btrfs/backref.c @@ -1246,17 +1246,6 @@ int btrfs_check_shared(struct btrfs_trans_handle *trans, return ret; } -/* - * this makes the path point to (inum INODE_ITEM ioff) - */ -int inode_item_info(u64 inum, u64 ioff, struct btrfs_root *fs_root, - struct btrfs_path *path) -{ - struct btrfs_key key; - return btrfs_find_item(fs_root, path, inum, ioff, - BTRFS_INODE_ITEM_KEY, &key); -} - static int inode_ref_info(u64 inum, u64 ioff, struct btrfs_root *fs_root, struct btrfs_path *path, struct btrfs_key *found_key) |