xref: /openbmc/linux/fs/btrfs/btrfs_inode.h (revision 3d45f221ce627d13e2e6ef3274f06750c84a6542)
19888c340SDavid Sterba /* SPDX-License-Identifier: GPL-2.0 */
26cbd5570SChris Mason /*
36cbd5570SChris Mason  * Copyright (C) 2007 Oracle.  All rights reserved.
46cbd5570SChris Mason  */
56cbd5570SChris Mason 
69888c340SDavid Sterba #ifndef BTRFS_INODE_H
79888c340SDavid Sterba #define BTRFS_INODE_H
82c90e5d6SChris Mason 
9778ba82bSFilipe David Borba Manana #include <linux/hash.h>
10e3b318d1SOmar Sandoval #include <linux/refcount.h>
11a52d9a80SChris Mason #include "extent_map.h"
12d1310b2eSChris Mason #include "extent_io.h"
13e6dcd2dcSChris Mason #include "ordered-data.h"
1416cdcec7SMiao Xie #include "delayed-inode.h"
15a52d9a80SChris Mason 
1672ac3c0dSJosef Bacik /*
1772ac3c0dSJosef Bacik  * ordered_data_close is set by truncate when a file that used
1872ac3c0dSJosef Bacik  * to have good data has been truncated to zero.  When it is set
1972ac3c0dSJosef Bacik  * the btrfs file release call will add this inode to the
2072ac3c0dSJosef Bacik  * ordered operations list so that we make sure to flush out any
2172ac3c0dSJosef Bacik  * new data the application may have written before commit.
2272ac3c0dSJosef Bacik  */
237efc3e34SOmar Sandoval enum {
241fd4033dSNikolay Borisov 	BTRFS_INODE_FLUSH_ON_CLOSE,
257efc3e34SOmar Sandoval 	BTRFS_INODE_DUMMY,
267efc3e34SOmar Sandoval 	BTRFS_INODE_IN_DEFRAG,
277efc3e34SOmar Sandoval 	BTRFS_INODE_HAS_ASYNC_EXTENT,
2848778179SFilipe Manana 	 /*
2948778179SFilipe Manana 	  * Always set under the VFS' inode lock, otherwise it can cause races
3048778179SFilipe Manana 	  * during fsync (we start as a fast fsync and then end up in a full
3148778179SFilipe Manana 	  * fsync racing with ordered extent completion).
3248778179SFilipe Manana 	  */
337efc3e34SOmar Sandoval 	BTRFS_INODE_NEEDS_FULL_SYNC,
347efc3e34SOmar Sandoval 	BTRFS_INODE_COPY_EVERYTHING,
357efc3e34SOmar Sandoval 	BTRFS_INODE_IN_DELALLOC_LIST,
367efc3e34SOmar Sandoval 	BTRFS_INODE_HAS_PROPS,
373cd24c69SEthan Lien 	BTRFS_INODE_SNAPSHOT_FLUSH,
38f2f121abSFilipe Manana 	/*
39f2f121abSFilipe Manana 	 * Set and used when logging an inode and it serves to signal that an
40f2f121abSFilipe Manana 	 * inode does not have xattrs, so subsequent fsyncs can avoid searching
41f2f121abSFilipe Manana 	 * for xattrs to log. This bit must be cleared whenever a xattr is added
42f2f121abSFilipe Manana 	 * to an inode.
43f2f121abSFilipe Manana 	 */
44f2f121abSFilipe Manana 	BTRFS_INODE_NO_XATTRS,
45*3d45f221SFilipe Manana 	/*
46*3d45f221SFilipe Manana 	 * Set when we are in a context where we need to start a transaction and
47*3d45f221SFilipe Manana 	 * have dirty pages with the respective file range locked. This is to
48*3d45f221SFilipe Manana 	 * ensure that when reserving space for the transaction, if we are low
49*3d45f221SFilipe Manana 	 * on available space and need to flush delalloc, we will not flush
50*3d45f221SFilipe Manana 	 * delalloc for this inode, because that could result in a deadlock (on
51*3d45f221SFilipe Manana 	 * the file range, inode's io_tree).
52*3d45f221SFilipe Manana 	 */
53*3d45f221SFilipe Manana 	BTRFS_INODE_NO_DELALLOC_FLUSH,
547efc3e34SOmar Sandoval };
5572ac3c0dSJosef Bacik 
56f1ace244SAneesh /* in memory btrfs inode */
572c90e5d6SChris Mason struct btrfs_inode {
58d352ac68SChris Mason 	/* which subvolume this inode belongs to */
59d6e4a428SChris Mason 	struct btrfs_root *root;
60d352ac68SChris Mason 
61d352ac68SChris Mason 	/* key used to find this inode on disk.  This is used by the code
62d352ac68SChris Mason 	 * to read in roots of subvolumes
63d352ac68SChris Mason 	 */
64d6e4a428SChris Mason 	struct btrfs_key location;
65d352ac68SChris Mason 
662f2ff0eeSFilipe Manana 	/*
672f2ff0eeSFilipe Manana 	 * Lock for counters and all fields used to determine if the inode is in
682f2ff0eeSFilipe Manana 	 * the log or not (last_trans, last_sub_trans, last_log_commit,
692766ff61SFilipe Manana 	 * logged_trans), to access/update new_delalloc_bytes and to update the
702766ff61SFilipe Manana 	 * VFS' inode number of bytes used.
712f2ff0eeSFilipe Manana 	 */
729e0baf60SJosef Bacik 	spinlock_t lock;
739e0baf60SJosef Bacik 
74d352ac68SChris Mason 	/* the extent_tree has caches of all the extent mappings to disk */
75a52d9a80SChris Mason 	struct extent_map_tree extent_tree;
76d352ac68SChris Mason 
77d352ac68SChris Mason 	/* the io_tree does range state (DIRTY, LOCKED etc) */
78d1310b2eSChris Mason 	struct extent_io_tree io_tree;
79d352ac68SChris Mason 
80d352ac68SChris Mason 	/* special utility tree used to record which mirrors have already been
81d352ac68SChris Mason 	 * tried when checksums fail for a given block
82d352ac68SChris Mason 	 */
837e38326fSChris Mason 	struct extent_io_tree io_failure_tree;
84d352ac68SChris Mason 
8541a2ee75SJosef Bacik 	/*
8641a2ee75SJosef Bacik 	 * Keep track of where the inode has extent items mapped in order to
8741a2ee75SJosef Bacik 	 * make sure the i_size adjustments are accurate
8841a2ee75SJosef Bacik 	 */
8941a2ee75SJosef Bacik 	struct extent_io_tree file_extent_tree;
9041a2ee75SJosef Bacik 
91d352ac68SChris Mason 	/* held while logging the inode in tree-log.c */
92e02119d5SChris Mason 	struct mutex log_mutex;
93d352ac68SChris Mason 
94d352ac68SChris Mason 	/* used to order data wrt metadata */
95e6dcd2dcSChris Mason 	struct btrfs_ordered_inode_tree ordered_tree;
9615ee9bc7SJosef Bacik 
97d352ac68SChris Mason 	/* list of all the delalloc inodes in the FS.  There are times we need
98d352ac68SChris Mason 	 * to write all the delalloc pages to disk, and this list is used
99d352ac68SChris Mason 	 * to walk them all.
100d352ac68SChris Mason 	 */
101ea8c2819SChris Mason 	struct list_head delalloc_inodes;
102ea8c2819SChris Mason 
1035d4f98a2SYan Zheng 	/* node for the red-black tree that links inodes in subvolume root */
1045d4f98a2SYan Zheng 	struct rb_node rb_node;
1055d4f98a2SYan Zheng 
10672ac3c0dSJosef Bacik 	unsigned long runtime_flags;
10772ac3c0dSJosef Bacik 
1089c931c5aSNathaniel Yazdani 	/* Keep track of who's O_SYNC/fsyncing currently */
109b812ce28SJosef Bacik 	atomic_t sync_writers;
110b812ce28SJosef Bacik 
111d352ac68SChris Mason 	/* full 64 bit generation number, struct vfs_inode doesn't have a big
112d352ac68SChris Mason 	 * enough field for this.
113d352ac68SChris Mason 	 */
114e02119d5SChris Mason 	u64 generation;
115e02119d5SChris Mason 
11615ee9bc7SJosef Bacik 	/*
11715ee9bc7SJosef Bacik 	 * transid of the trans_handle that last modified this inode
11815ee9bc7SJosef Bacik 	 */
11915ee9bc7SJosef Bacik 	u64 last_trans;
120257c62e1SChris Mason 
121257c62e1SChris Mason 	/*
122e02119d5SChris Mason 	 * transid that last logged this inode
123e02119d5SChris Mason 	 */
124e02119d5SChris Mason 	u64 logged_trans;
12549eb7e46SChris Mason 
126bb14a59bSMiao Xie 	/*
127bb14a59bSMiao Xie 	 * log transid when this inode was last modified
128bb14a59bSMiao Xie 	 */
129bb14a59bSMiao Xie 	int last_sub_trans;
130bb14a59bSMiao Xie 
131bb14a59bSMiao Xie 	/* a local copy of root's last_log_commit */
132bb14a59bSMiao Xie 	int last_log_commit;
133bb14a59bSMiao Xie 
134d352ac68SChris Mason 	/* total number of bytes pending delalloc, used by stat to calc the
135d352ac68SChris Mason 	 * real block usage of the file
136d352ac68SChris Mason 	 */
1379069218dSChris Mason 	u64 delalloc_bytes;
138d352ac68SChris Mason 
139d352ac68SChris Mason 	/*
140a7e3b975SFilipe Manana 	 * Total number of bytes pending delalloc that fall within a file
141a7e3b975SFilipe Manana 	 * range that is either a hole or beyond EOF (and no prealloc extent
142a7e3b975SFilipe Manana 	 * exists in the range). This is always <= delalloc_bytes.
143a7e3b975SFilipe Manana 	 */
144a7e3b975SFilipe Manana 	u64 new_delalloc_bytes;
145a7e3b975SFilipe Manana 
146a7e3b975SFilipe Manana 	/*
14747059d93SWang Shilong 	 * total number of bytes pending defrag, used by stat to check whether
14847059d93SWang Shilong 	 * it needs COW.
14947059d93SWang Shilong 	 */
15047059d93SWang Shilong 	u64 defrag_bytes;
15147059d93SWang Shilong 
15247059d93SWang Shilong 	/*
153d352ac68SChris Mason 	 * the size of the file stored in the metadata on disk.  data=ordered
154d352ac68SChris Mason 	 * means the in-memory i_size might be larger than the size on disk
155d352ac68SChris Mason 	 * because not all the blocks are written yet.
156d352ac68SChris Mason 	 */
157dbe674a9SChris Mason 	u64 disk_i_size;
158d352ac68SChris Mason 
159aec7477bSJosef Bacik 	/*
160aec7477bSJosef Bacik 	 * if this is a directory then index_cnt is the counter for the index
161aec7477bSJosef Bacik 	 * number for new files that are created
162aec7477bSJosef Bacik 	 */
163aec7477bSJosef Bacik 	u64 index_cnt;
164d352ac68SChris Mason 
16567de1176SMiao Xie 	/* Cache the directory index number to speed the dir/file remove */
16667de1176SMiao Xie 	u64 dir_index;
16767de1176SMiao Xie 
16812fcfd22SChris Mason 	/* the fsync log has some corner cases that mean we have to check
16912fcfd22SChris Mason 	 * directories to see if any unlinks have been done before
17012fcfd22SChris Mason 	 * the directory was logged.  See tree-log.c for all the
17112fcfd22SChris Mason 	 * details
17212fcfd22SChris Mason 	 */
17312fcfd22SChris Mason 	u64 last_unlink_trans;
17412fcfd22SChris Mason 
1757709cde3SJosef Bacik 	/*
1763ebac17cSFilipe Manana 	 * The id/generation of the last transaction where this inode was
1773ebac17cSFilipe Manana 	 * either the source or the destination of a clone/dedupe operation.
1783ebac17cSFilipe Manana 	 * Used when logging an inode to know if there are shared extents that
1793ebac17cSFilipe Manana 	 * need special care when logging checksum items, to avoid duplicate
1803ebac17cSFilipe Manana 	 * checksum items in a log (which can lead to a corruption where we end
1813ebac17cSFilipe Manana 	 * up with missing checksum ranges after log replay).
1823ebac17cSFilipe Manana 	 * Protected by the vfs inode lock.
1833ebac17cSFilipe Manana 	 */
1843ebac17cSFilipe Manana 	u64 last_reflink_trans;
1853ebac17cSFilipe Manana 
1863ebac17cSFilipe Manana 	/*
1877709cde3SJosef Bacik 	 * Number of bytes outstanding that are going to need csums.  This is
1887709cde3SJosef Bacik 	 * used in ENOSPC accounting.
1897709cde3SJosef Bacik 	 */
1907709cde3SJosef Bacik 	u64 csum_bytes;
1917709cde3SJosef Bacik 
192f1bdcc0aSJosef Bacik 	/* flags field from the on disk inode */
193f1bdcc0aSJosef Bacik 	u32 flags;
194f1bdcc0aSJosef Bacik 
1955a3f23d5SChris Mason 	/*
19632c00affSJosef Bacik 	 * Counters to keep track of the number of extent item's we may use due
19732c00affSJosef Bacik 	 * to delalloc and such.  outstanding_extents is the number of extent
19832c00affSJosef Bacik 	 * items we think we'll end up using, and reserved_extents is the number
19932c00affSJosef Bacik 	 * of extent items we've reserved metadata for.
2009ed74f2dSJosef Bacik 	 */
2019e0baf60SJosef Bacik 	unsigned outstanding_extents;
20269fe2d75SJosef Bacik 
20369fe2d75SJosef Bacik 	struct btrfs_block_rsv block_rsv;
2049ed74f2dSJosef Bacik 
2059ed74f2dSJosef Bacik 	/*
206b52aa8c9SDavid Sterba 	 * Cached values of inode properties
2071e701a32SChris Mason 	 */
208b52aa8c9SDavid Sterba 	unsigned prop_compress;		/* per-file compression algorithm */
209eec63c65SDavid Sterba 	/*
210eec63c65SDavid Sterba 	 * Force compression on the file using the defrag ioctl, could be
211eec63c65SDavid Sterba 	 * different from prop_compress and takes precedence if set
212eec63c65SDavid Sterba 	 */
213eec63c65SDavid Sterba 	unsigned defrag_compress;
2141e701a32SChris Mason 
21516cdcec7SMiao Xie 	struct btrfs_delayed_node *delayed_node;
21616cdcec7SMiao Xie 
2179cc97d64Schandan r 	/* File creation time. */
218d3c6be6fSArnd Bergmann 	struct timespec64 i_otime;
2199cc97d64Schandan r 
2208089fe62SDavid Sterba 	/* Hook into fs_info->delayed_iputs */
2218089fe62SDavid Sterba 	struct list_head delayed_iput;
2228089fe62SDavid Sterba 
223d352ac68SChris Mason 	struct inode vfs_inode;
2242c90e5d6SChris Mason };
225dbe674a9SChris Mason 
2266fee248dSNikolay Borisov static inline u32 btrfs_inode_sectorsize(const struct btrfs_inode *inode)
2276fee248dSNikolay Borisov {
2286fee248dSNikolay Borisov 	return inode->root->fs_info->sectorsize;
2296fee248dSNikolay Borisov }
2306fee248dSNikolay Borisov 
2319a35b637SJeff Mahoney static inline struct btrfs_inode *BTRFS_I(const struct inode *inode)
2322c90e5d6SChris Mason {
2332c90e5d6SChris Mason 	return container_of(inode, struct btrfs_inode, vfs_inode);
2342c90e5d6SChris Mason }
2352c90e5d6SChris Mason 
236778ba82bSFilipe David Borba Manana static inline unsigned long btrfs_inode_hash(u64 objectid,
237778ba82bSFilipe David Borba Manana 					     const struct btrfs_root *root)
238778ba82bSFilipe David Borba Manana {
2394fd786e6SMisono Tomohiro 	u64 h = objectid ^ (root->root_key.objectid * GOLDEN_RATIO_PRIME);
240778ba82bSFilipe David Borba Manana 
241778ba82bSFilipe David Borba Manana #if BITS_PER_LONG == 32
242778ba82bSFilipe David Borba Manana 	h = (h >> 32) ^ (h & 0xffffffff);
243778ba82bSFilipe David Borba Manana #endif
244778ba82bSFilipe David Borba Manana 
245778ba82bSFilipe David Borba Manana 	return (unsigned long)h;
246778ba82bSFilipe David Borba Manana }
247778ba82bSFilipe David Borba Manana 
248778ba82bSFilipe David Borba Manana static inline void btrfs_insert_inode_hash(struct inode *inode)
249778ba82bSFilipe David Borba Manana {
250778ba82bSFilipe David Borba Manana 	unsigned long h = btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root);
251778ba82bSFilipe David Borba Manana 
252778ba82bSFilipe David Borba Manana 	__insert_inode_hash(inode, h);
253778ba82bSFilipe David Borba Manana }
254778ba82bSFilipe David Borba Manana 
2559a35b637SJeff Mahoney static inline u64 btrfs_ino(const struct btrfs_inode *inode)
25633345d01SLi Zefan {
2574a0cc7caSNikolay Borisov 	u64 ino = inode->location.objectid;
25833345d01SLi Zefan 
25914c7cca7SLiu Bo 	/*
26014c7cca7SLiu Bo 	 * !ino: btree_inode
26114c7cca7SLiu Bo 	 * type == BTRFS_ROOT_ITEM_KEY: subvol dir
26214c7cca7SLiu Bo 	 */
2634a0cc7caSNikolay Borisov 	if (!ino || inode->location.type == BTRFS_ROOT_ITEM_KEY)
2644a0cc7caSNikolay Borisov 		ino = inode->vfs_inode.i_ino;
26533345d01SLi Zefan 	return ino;
26633345d01SLi Zefan }
26733345d01SLi Zefan 
2686ef06d27SNikolay Borisov static inline void btrfs_i_size_write(struct btrfs_inode *inode, u64 size)
269dbe674a9SChris Mason {
2706ef06d27SNikolay Borisov 	i_size_write(&inode->vfs_inode, size);
2716ef06d27SNikolay Borisov 	inode->disk_i_size = size;
272dbe674a9SChris Mason }
273dbe674a9SChris Mason 
27470ddc553SNikolay Borisov static inline bool btrfs_is_free_space_inode(struct btrfs_inode *inode)
2752cf8572dSChris Mason {
27670ddc553SNikolay Borisov 	struct btrfs_root *root = inode->root;
27783eea1f1SLiu Bo 
27851a8cf9dSLiu Bo 	if (root == root->fs_info->tree_root &&
27970ddc553SNikolay Borisov 	    btrfs_ino(inode) != BTRFS_BTREE_INODE_OBJECTID)
28051a8cf9dSLiu Bo 		return true;
28170ddc553SNikolay Borisov 	if (inode->location.objectid == BTRFS_FREE_INO_OBJECTID)
2822cf8572dSChris Mason 		return true;
2832cf8572dSChris Mason 	return false;
2842cf8572dSChris Mason }
2852cf8572dSChris Mason 
28606f2548fSNikolay Borisov static inline bool is_data_inode(struct inode *inode)
28706f2548fSNikolay Borisov {
28806f2548fSNikolay Borisov 	return btrfs_ino(BTRFS_I(inode)) != BTRFS_BTREE_INODE_OBJECTID;
28906f2548fSNikolay Borisov }
29006f2548fSNikolay Borisov 
2918b62f87bSJosef Bacik static inline void btrfs_mod_outstanding_extents(struct btrfs_inode *inode,
2928b62f87bSJosef Bacik 						 int mod)
2938b62f87bSJosef Bacik {
2948b62f87bSJosef Bacik 	lockdep_assert_held(&inode->lock);
2958b62f87bSJosef Bacik 	inode->outstanding_extents += mod;
2968b62f87bSJosef Bacik 	if (btrfs_is_free_space_inode(inode))
2978b62f87bSJosef Bacik 		return;
298dd48d407SJosef Bacik 	trace_btrfs_inode_mod_outstanding_extents(inode->root, btrfs_ino(inode),
299dd48d407SJosef Bacik 						  mod);
3008b62f87bSJosef Bacik }
3018b62f87bSJosef Bacik 
3020f8939b8SNikolay Borisov static inline int btrfs_inode_in_log(struct btrfs_inode *inode, u64 generation)
30322ee6985SJosef Bacik {
3042f2ff0eeSFilipe Manana 	int ret = 0;
3052f2ff0eeSFilipe Manana 
3060f8939b8SNikolay Borisov 	spin_lock(&inode->lock);
3070f8939b8SNikolay Borisov 	if (inode->logged_trans == generation &&
3080f8939b8SNikolay Borisov 	    inode->last_sub_trans <= inode->last_log_commit &&
3090f8939b8SNikolay Borisov 	    inode->last_sub_trans <= inode->root->last_log_commit) {
310125c4cf9SFilipe Manana 		/*
311125c4cf9SFilipe Manana 		 * After a ranged fsync we might have left some extent maps
312125c4cf9SFilipe Manana 		 * (that fall outside the fsync's range). So return false
313125c4cf9SFilipe Manana 		 * here if the list isn't empty, to make sure btrfs_log_inode()
314125c4cf9SFilipe Manana 		 * will be called and process those extent maps.
315125c4cf9SFilipe Manana 		 */
316125c4cf9SFilipe Manana 		smp_mb();
3170f8939b8SNikolay Borisov 		if (list_empty(&inode->extent_tree.modified_extents))
3182f2ff0eeSFilipe Manana 			ret = 1;
319125c4cf9SFilipe Manana 	}
3200f8939b8SNikolay Borisov 	spin_unlock(&inode->lock);
3212f2ff0eeSFilipe Manana 	return ret;
32222ee6985SJosef Bacik }
32322ee6985SJosef Bacik 
324facc8a22SMiao Xie struct btrfs_dio_private {
325facc8a22SMiao Xie 	struct inode *inode;
326facc8a22SMiao Xie 	u64 logical_offset;
327facc8a22SMiao Xie 	u64 disk_bytenr;
328facc8a22SMiao Xie 	u64 bytes;
329facc8a22SMiao Xie 
330e3b318d1SOmar Sandoval 	/*
331e3b318d1SOmar Sandoval 	 * References to this structure. There is one reference per in-flight
332e3b318d1SOmar Sandoval 	 * bio plus one while we're still setting up.
333e3b318d1SOmar Sandoval 	 */
334e3b318d1SOmar Sandoval 	refcount_t refs;
335facc8a22SMiao Xie 
336facc8a22SMiao Xie 	/* dio_bio came from fs/direct-io.c */
337facc8a22SMiao Xie 	struct bio *dio_bio;
338c1dc0896SMiao Xie 
33985879573SOmar Sandoval 	/* Array of checksums */
34085879573SOmar Sandoval 	u8 csums[];
341facc8a22SMiao Xie };
342facc8a22SMiao Xie 
3437ebc7e5fSJohannes Thumshirn /* Array of bytes with variable length, hexadecimal format 0x1234 */
3447ebc7e5fSJohannes Thumshirn #define CSUM_FMT				"0x%*phN"
3457ebc7e5fSJohannes Thumshirn #define CSUM_FMT_VALUE(size, bytes)		size, bytes
3467ebc7e5fSJohannes Thumshirn 
3470970a22eSNikolay Borisov static inline void btrfs_print_data_csum_error(struct btrfs_inode *inode,
348ea41d6b2SJohannes Thumshirn 		u64 logical_start, u8 *csum, u8 *csum_expected, int mirror_num)
3496f6b643eSQu Wenruo {
3500970a22eSNikolay Borisov 	struct btrfs_root *root = inode->root;
351223486c2SDavid Sterba 	const u32 csum_size = root->fs_info->csum_size;
3526f6b643eSQu Wenruo 
3536f6b643eSQu Wenruo 	/* Output minus objectid, which is more meaningful */
3544fd786e6SMisono Tomohiro 	if (root->root_key.objectid >= BTRFS_LAST_FREE_OBJECTID)
3556f6b643eSQu Wenruo 		btrfs_warn_rl(root->fs_info,
3567ebc7e5fSJohannes Thumshirn "csum failed root %lld ino %lld off %llu csum " CSUM_FMT " expected csum " CSUM_FMT " mirror %d",
3574fd786e6SMisono Tomohiro 			root->root_key.objectid, btrfs_ino(inode),
3587ebc7e5fSJohannes Thumshirn 			logical_start,
359ea41d6b2SJohannes Thumshirn 			CSUM_FMT_VALUE(csum_size, csum),
360ea41d6b2SJohannes Thumshirn 			CSUM_FMT_VALUE(csum_size, csum_expected),
3617ebc7e5fSJohannes Thumshirn 			mirror_num);
3626f6b643eSQu Wenruo 	else
3636f6b643eSQu Wenruo 		btrfs_warn_rl(root->fs_info,
3647ebc7e5fSJohannes Thumshirn "csum failed root %llu ino %llu off %llu csum " CSUM_FMT " expected csum " CSUM_FMT " mirror %d",
3654fd786e6SMisono Tomohiro 			root->root_key.objectid, btrfs_ino(inode),
3667ebc7e5fSJohannes Thumshirn 			logical_start,
367ea41d6b2SJohannes Thumshirn 			CSUM_FMT_VALUE(csum_size, csum),
368ea41d6b2SJohannes Thumshirn 			CSUM_FMT_VALUE(csum_size, csum_expected),
3697ebc7e5fSJohannes Thumshirn 			mirror_num);
3706f6b643eSQu Wenruo }
3716f6b643eSQu Wenruo 
3722c90e5d6SChris Mason #endif
373