mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
btrfs: Make btrfs_ino take a struct btrfs_inode
Currently btrfs_ino takes a struct inode and this causes a lot of internal btrfs functions which consume this ino to take a VFS inode, rather than btrfs' own struct btrfs_inode. In order to fix this "leak" of VFS structs into the internals of btrfs first it's necessary to eliminate all uses of struct inode for the purpose of inode. This patch does that by using BTRFS_I to convert an inode to btrfs_inode. With this problem eliminated subsequent patches will start eliminating the passing of struct inode altogether, eventually resulting in a lot cleaner code. Signed-off-by: Nikolay Borisov <n.borisov.lkml@gmail.com> [ fix btrfs_get_extent tracepoint prototype ] Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
823bb20ab4
commit
4a0cc7ca6c
18 changed files with 151 additions and 151 deletions
|
@ -126,7 +126,7 @@ static int check_compressed_csum(struct inode *inode,
|
|||
if (csum != *cb_sum) {
|
||||
btrfs_info(BTRFS_I(inode)->root->fs_info,
|
||||
"csum failed ino %llu extent %llu csum %u wanted %u mirror %d",
|
||||
btrfs_ino(inode), disk_start, csum, *cb_sum,
|
||||
btrfs_ino(BTRFS_I(inode)), disk_start, csum, *cb_sum,
|
||||
cb->mirror_num);
|
||||
ret = -EIO;
|
||||
goto fail;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue