xref: /openbmc/linux/fs/btrfs/btrfs_inode.h (revision 5d4f98a28c7d334091c1b7744f48a1acdd2a4ae0)
16cbd5570SChris Mason /*
26cbd5570SChris Mason  * Copyright (C) 2007 Oracle.  All rights reserved.
36cbd5570SChris Mason  *
46cbd5570SChris Mason  * This program is free software; you can redistribute it and/or
56cbd5570SChris Mason  * modify it under the terms of the GNU General Public
66cbd5570SChris Mason  * License v2 as published by the Free Software Foundation.
76cbd5570SChris Mason  *
86cbd5570SChris Mason  * This program is distributed in the hope that it will be useful,
96cbd5570SChris Mason  * but WITHOUT ANY WARRANTY; without even the implied warranty of
106cbd5570SChris Mason  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
116cbd5570SChris Mason  * General Public License for more details.
126cbd5570SChris Mason  *
136cbd5570SChris Mason  * You should have received a copy of the GNU General Public
146cbd5570SChris Mason  * License along with this program; if not, write to the
156cbd5570SChris Mason  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
166cbd5570SChris Mason  * Boston, MA 021110-1307, USA.
176cbd5570SChris Mason  */
186cbd5570SChris Mason 
192c90e5d6SChris Mason #ifndef __BTRFS_I__
202c90e5d6SChris Mason #define __BTRFS_I__
212c90e5d6SChris Mason 
22a52d9a80SChris Mason #include "extent_map.h"
23d1310b2eSChris Mason #include "extent_io.h"
24e6dcd2dcSChris Mason #include "ordered-data.h"
25a52d9a80SChris Mason 
26f1ace244SAneesh /* in memory btrfs inode */
272c90e5d6SChris Mason struct btrfs_inode {
28d352ac68SChris Mason 	/* which subvolume this inode belongs to */
29d6e4a428SChris Mason 	struct btrfs_root *root;
30d352ac68SChris Mason 
31d352ac68SChris Mason 	/* key used to find this inode on disk.  This is used by the code
32d352ac68SChris Mason 	 * to read in roots of subvolumes
33d352ac68SChris Mason 	 */
34d6e4a428SChris Mason 	struct btrfs_key location;
35d352ac68SChris Mason 
36d352ac68SChris Mason 	/* the extent_tree has caches of all the extent mappings to disk */
37a52d9a80SChris Mason 	struct extent_map_tree extent_tree;
38d352ac68SChris Mason 
39d352ac68SChris Mason 	/* the io_tree does range state (DIRTY, LOCKED etc) */
40d1310b2eSChris Mason 	struct extent_io_tree io_tree;
41d352ac68SChris Mason 
42d352ac68SChris Mason 	/* special utility tree used to record which mirrors have already been
43d352ac68SChris Mason 	 * tried when checksums fail for a given block
44d352ac68SChris Mason 	 */
457e38326fSChris Mason 	struct extent_io_tree io_failure_tree;
46d352ac68SChris Mason 
47d352ac68SChris Mason 	/* held while inesrting or deleting extents from files */
48ee6e6504SChris Mason 	struct mutex extent_mutex;
49d352ac68SChris Mason 
50d352ac68SChris Mason 	/* held while logging the inode in tree-log.c */
51e02119d5SChris Mason 	struct mutex log_mutex;
52d352ac68SChris Mason 
53d352ac68SChris Mason 	/* used to order data wrt metadata */
54e6dcd2dcSChris Mason 	struct btrfs_ordered_inode_tree ordered_tree;
5515ee9bc7SJosef Bacik 
56d352ac68SChris Mason 	/* standard acl pointers */
5733268eafSJosef Bacik 	struct posix_acl *i_acl;
5833268eafSJosef Bacik 	struct posix_acl *i_default_acl;
5933268eafSJosef Bacik 
607b128766SJosef Bacik 	/* for keeping track of orphaned inodes */
617b128766SJosef Bacik 	struct list_head i_orphan;
627b128766SJosef Bacik 
63d352ac68SChris Mason 	/* list of all the delalloc inodes in the FS.  There are times we need
64d352ac68SChris Mason 	 * to write all the delalloc pages to disk, and this list is used
65d352ac68SChris Mason 	 * to walk them all.
66d352ac68SChris Mason 	 */
67ea8c2819SChris Mason 	struct list_head delalloc_inodes;
68ea8c2819SChris Mason 
695a3f23d5SChris Mason 	/*
705a3f23d5SChris Mason 	 * list for tracking inodes that must be sent to disk before a
715a3f23d5SChris Mason 	 * rename or truncate commit
725a3f23d5SChris Mason 	 */
735a3f23d5SChris Mason 	struct list_head ordered_operations;
745a3f23d5SChris Mason 
75*5d4f98a2SYan Zheng 	/* node for the red-black tree that links inodes in subvolume root */
76*5d4f98a2SYan Zheng 	struct rb_node rb_node;
77*5d4f98a2SYan Zheng 
786a63209fSJosef Bacik 	/* the space_info for where this inode's data allocations are done */
796a63209fSJosef Bacik 	struct btrfs_space_info *space_info;
806a63209fSJosef Bacik 
81d352ac68SChris Mason 	/* full 64 bit generation number, struct vfs_inode doesn't have a big
82d352ac68SChris Mason 	 * enough field for this.
83d352ac68SChris Mason 	 */
84e02119d5SChris Mason 	u64 generation;
85e02119d5SChris Mason 
86c3027eb5SChris Mason 	/* sequence number for NFS changes */
87c3027eb5SChris Mason 	u64 sequence;
88c3027eb5SChris Mason 
8915ee9bc7SJosef Bacik 	/*
9015ee9bc7SJosef Bacik 	 * transid of the trans_handle that last modified this inode
9115ee9bc7SJosef Bacik 	 */
9215ee9bc7SJosef Bacik 	u64 last_trans;
93e02119d5SChris Mason 	/*
94e02119d5SChris Mason 	 * transid that last logged this inode
95e02119d5SChris Mason 	 */
96e02119d5SChris Mason 	u64 logged_trans;
9749eb7e46SChris Mason 
98d352ac68SChris Mason 	/* total number of bytes pending delalloc, used by stat to calc the
99d352ac68SChris Mason 	 * real block usage of the file
100d352ac68SChris Mason 	 */
1019069218dSChris Mason 	u64 delalloc_bytes;
102d352ac68SChris Mason 
1036a63209fSJosef Bacik 	/* total number of bytes that may be used for this inode for
1046a63209fSJosef Bacik 	 * delalloc
1056a63209fSJosef Bacik 	 */
1066a63209fSJosef Bacik 	u64 reserved_bytes;
1076a63209fSJosef Bacik 
108d352ac68SChris Mason 	/*
109d352ac68SChris Mason 	 * the size of the file stored in the metadata on disk.  data=ordered
110d352ac68SChris Mason 	 * means the in-memory i_size might be larger than the size on disk
111d352ac68SChris Mason 	 * because not all the blocks are written yet.
112d352ac68SChris Mason 	 */
113dbe674a9SChris Mason 	u64 disk_i_size;
114d352ac68SChris Mason 
115d352ac68SChris Mason 	/* flags field from the on disk inode */
116b98b6767SYan 	u32 flags;
117aec7477bSJosef Bacik 
118aec7477bSJosef Bacik 	/*
119aec7477bSJosef Bacik 	 * if this is a directory then index_cnt is the counter for the index
120aec7477bSJosef Bacik 	 * number for new files that are created
121aec7477bSJosef Bacik 	 */
122aec7477bSJosef Bacik 	u64 index_cnt;
123d352ac68SChris Mason 
124d2fb3437SYan Zheng 	/* the start of block group preferred for allocations. */
125d2fb3437SYan Zheng 	u64 block_group;
126d2fb3437SYan Zheng 
12712fcfd22SChris Mason 	/* the fsync log has some corner cases that mean we have to check
12812fcfd22SChris Mason 	 * directories to see if any unlinks have been done before
12912fcfd22SChris Mason 	 * the directory was logged.  See tree-log.c for all the
13012fcfd22SChris Mason 	 * details
13112fcfd22SChris Mason 	 */
13212fcfd22SChris Mason 	u64 last_unlink_trans;
13312fcfd22SChris Mason 
1345a3f23d5SChris Mason 	/*
1355a3f23d5SChris Mason 	 * ordered_data_close is set by truncate when a file that used
1365a3f23d5SChris Mason 	 * to have good data has been truncated to zero.  When it is set
1375a3f23d5SChris Mason 	 * the btrfs file release call will add this inode to the
1385a3f23d5SChris Mason 	 * ordered operations list so that we make sure to flush out any
1395a3f23d5SChris Mason 	 * new data the application may have written before commit.
1405a3f23d5SChris Mason 	 *
1415a3f23d5SChris Mason 	 * yes, its silly to have a single bitflag, but we might grow more
1425a3f23d5SChris Mason 	 * of these.
1435a3f23d5SChris Mason 	 */
1445a3f23d5SChris Mason 	unsigned ordered_data_close:1;
1455a3f23d5SChris Mason 
146d352ac68SChris Mason 	struct inode vfs_inode;
1472c90e5d6SChris Mason };
148dbe674a9SChris Mason 
1492c90e5d6SChris Mason static inline struct btrfs_inode *BTRFS_I(struct inode *inode)
1502c90e5d6SChris Mason {
1512c90e5d6SChris Mason 	return container_of(inode, struct btrfs_inode, vfs_inode);
1522c90e5d6SChris Mason }
1532c90e5d6SChris Mason 
154dbe674a9SChris Mason static inline void btrfs_i_size_write(struct inode *inode, u64 size)
155dbe674a9SChris Mason {
156dbe674a9SChris Mason 	inode->i_size = size;
157dbe674a9SChris Mason 	BTRFS_I(inode)->disk_i_size = size;
158dbe674a9SChris Mason }
159dbe674a9SChris Mason 
160dbe674a9SChris Mason 
1612c90e5d6SChris Mason #endif
162