]>
Commit | Line | Data |
---|---|---|
0a8165d7 | 1 | /* |
39a53e0c JK |
2 | * fs/f2fs/f2fs.h |
3 | * | |
4 | * Copyright (c) 2012 Samsung Electronics Co., Ltd. | |
5 | * http://www.samsung.com/ | |
6 | * | |
7 | * This program is free software; you can redistribute it and/or modify | |
8 | * it under the terms of the GNU General Public License version 2 as | |
9 | * published by the Free Software Foundation. | |
10 | */ | |
11 | #ifndef _LINUX_F2FS_H | |
12 | #define _LINUX_F2FS_H | |
13 | ||
14 | #include <linux/types.h> | |
15 | #include <linux/page-flags.h> | |
16 | #include <linux/buffer_head.h> | |
39a53e0c JK |
17 | #include <linux/slab.h> |
18 | #include <linux/crc32.h> | |
19 | #include <linux/magic.h> | |
c2d715d1 | 20 | #include <linux/kobject.h> |
7bd59381 | 21 | #include <linux/sched.h> |
39307a8e | 22 | #include <linux/vmalloc.h> |
740432f8 | 23 | #include <linux/bio.h> |
d0239e1b | 24 | #include <linux/blkdev.h> |
0abd675e | 25 | #include <linux/quotaops.h> |
46f47e48 EB |
26 | #ifdef CONFIG_F2FS_FS_ENCRYPTION |
27 | #include <linux/fscrypt_supp.h> | |
28 | #else | |
29 | #include <linux/fscrypt_notsupp.h> | |
30 | #endif | |
43b6573b | 31 | #include <crypto/hash.h> |
39a53e0c | 32 | |
5d56b671 | 33 | #ifdef CONFIG_F2FS_CHECK_FS |
9850cf4a | 34 | #define f2fs_bug_on(sbi, condition) BUG_ON(condition) |
5d56b671 | 35 | #else |
9850cf4a JK |
36 | #define f2fs_bug_on(sbi, condition) \ |
37 | do { \ | |
38 | if (unlikely(condition)) { \ | |
39 | WARN_ON(1); \ | |
caf0047e | 40 | set_sbi_flag(sbi, SBI_NEED_FSCK); \ |
9850cf4a JK |
41 | } \ |
42 | } while (0) | |
5d56b671 JK |
43 | #endif |
44 | ||
2c63fead JK |
45 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
46 | enum { | |
47 | FAULT_KMALLOC, | |
c41f3cc3 | 48 | FAULT_PAGE_ALLOC, |
cb78942b JK |
49 | FAULT_ALLOC_NID, |
50 | FAULT_ORPHAN, | |
51 | FAULT_BLOCK, | |
52 | FAULT_DIR_DEPTH, | |
53aa6bbf | 53 | FAULT_EVICT_INODE, |
14b44d23 | 54 | FAULT_TRUNCATE, |
8b038c70 | 55 | FAULT_IO, |
0f348028 | 56 | FAULT_CHECKPOINT, |
2c63fead JK |
57 | FAULT_MAX, |
58 | }; | |
59 | ||
08796897 SY |
60 | struct f2fs_fault_info { |
61 | atomic_t inject_ops; | |
62 | unsigned int inject_rate; | |
63 | unsigned int inject_type; | |
64 | }; | |
65 | ||
2c63fead | 66 | extern char *fault_name[FAULT_MAX]; |
68afcf2d | 67 | #define IS_FAULT_SET(fi, type) ((fi)->inject_type & (1 << (type))) |
2c63fead JK |
68 | #endif |
69 | ||
39a53e0c JK |
70 | /* |
71 | * For mount options | |
72 | */ | |
73 | #define F2FS_MOUNT_BG_GC 0x00000001 | |
74 | #define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002 | |
75 | #define F2FS_MOUNT_DISCARD 0x00000004 | |
76 | #define F2FS_MOUNT_NOHEAP 0x00000008 | |
77 | #define F2FS_MOUNT_XATTR_USER 0x00000010 | |
78 | #define F2FS_MOUNT_POSIX_ACL 0x00000020 | |
79 | #define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040 | |
444c580f | 80 | #define F2FS_MOUNT_INLINE_XATTR 0x00000080 |
1001b347 | 81 | #define F2FS_MOUNT_INLINE_DATA 0x00000100 |
34d67deb CY |
82 | #define F2FS_MOUNT_INLINE_DENTRY 0x00000200 |
83 | #define F2FS_MOUNT_FLUSH_MERGE 0x00000400 | |
84 | #define F2FS_MOUNT_NOBARRIER 0x00000800 | |
d5053a34 | 85 | #define F2FS_MOUNT_FASTBOOT 0x00001000 |
89672159 | 86 | #define F2FS_MOUNT_EXTENT_CACHE 0x00002000 |
6aefd93b | 87 | #define F2FS_MOUNT_FORCE_FG_GC 0x00004000 |
343f40f0 | 88 | #define F2FS_MOUNT_DATA_FLUSH 0x00008000 |
73faec4d | 89 | #define F2FS_MOUNT_FAULT_INJECTION 0x00010000 |
36abef4e JK |
90 | #define F2FS_MOUNT_ADAPTIVE 0x00020000 |
91 | #define F2FS_MOUNT_LFS 0x00040000 | |
0abd675e CY |
92 | #define F2FS_MOUNT_USRQUOTA 0x00080000 |
93 | #define F2FS_MOUNT_GRPQUOTA 0x00100000 | |
5c57132e | 94 | #define F2FS_MOUNT_PRJQUOTA 0x00200000 |
4b2414d0 | 95 | #define F2FS_MOUNT_QUOTA 0x00400000 |
39a53e0c | 96 | |
68afcf2d TK |
97 | #define clear_opt(sbi, option) ((sbi)->mount_opt.opt &= ~F2FS_MOUNT_##option) |
98 | #define set_opt(sbi, option) ((sbi)->mount_opt.opt |= F2FS_MOUNT_##option) | |
99 | #define test_opt(sbi, option) ((sbi)->mount_opt.opt & F2FS_MOUNT_##option) | |
39a53e0c JK |
100 | |
101 | #define ver_after(a, b) (typecheck(unsigned long long, a) && \ | |
102 | typecheck(unsigned long long, b) && \ | |
103 | ((long long)((a) - (b)) > 0)) | |
104 | ||
a9841c4d JK |
105 | typedef u32 block_t; /* |
106 | * should not change u32, since it is the on-disk block | |
107 | * address format, __le32. | |
108 | */ | |
39a53e0c JK |
109 | typedef u32 nid_t; |
110 | ||
111 | struct f2fs_mount_info { | |
112 | unsigned int opt; | |
113 | }; | |
114 | ||
7a2af766 CY |
115 | #define F2FS_FEATURE_ENCRYPT 0x0001 |
116 | #define F2FS_FEATURE_BLKZONED 0x0002 | |
117 | #define F2FS_FEATURE_ATOMIC_WRITE 0x0004 | |
118 | #define F2FS_FEATURE_EXTRA_ATTR 0x0008 | |
5c57132e | 119 | #define F2FS_FEATURE_PRJQUOTA 0x0010 |
704956ec | 120 | #define F2FS_FEATURE_INODE_CHKSUM 0x0020 |
cde4de12 | 121 | |
76f105a2 JK |
122 | #define F2FS_HAS_FEATURE(sb, mask) \ |
123 | ((F2FS_SB(sb)->raw_super->feature & cpu_to_le32(mask)) != 0) | |
124 | #define F2FS_SET_FEATURE(sb, mask) \ | |
c64ab12e | 125 | (F2FS_SB(sb)->raw_super->feature |= cpu_to_le32(mask)) |
76f105a2 | 126 | #define F2FS_CLEAR_FEATURE(sb, mask) \ |
c64ab12e | 127 | (F2FS_SB(sb)->raw_super->feature &= ~cpu_to_le32(mask)) |
76f105a2 | 128 | |
39a53e0c JK |
129 | /* |
130 | * For checkpoint manager | |
131 | */ | |
132 | enum { | |
133 | NAT_BITMAP, | |
134 | SIT_BITMAP | |
135 | }; | |
136 | ||
c473f1a9 CY |
137 | #define CP_UMOUNT 0x00000001 |
138 | #define CP_FASTBOOT 0x00000002 | |
139 | #define CP_SYNC 0x00000004 | |
140 | #define CP_RECOVERY 0x00000008 | |
141 | #define CP_DISCARD 0x00000010 | |
1f43e2ad | 142 | #define CP_TRIMMED 0x00000020 |
75ab4cb8 | 143 | |
47b89808 | 144 | #define DEF_BATCHED_TRIM_SECTIONS 2048 |
bba681cb | 145 | #define BATCHED_TRIM_SEGMENTS(sbi) \ |
4ddb1a4d | 146 | (GET_SEG_FROM_SEC(sbi, SM_I(sbi)->trim_sections)) |
a66cdd98 JK |
147 | #define BATCHED_TRIM_BLOCKS(sbi) \ |
148 | (BATCHED_TRIM_SEGMENTS(sbi) << (sbi)->log_blocks_per_seg) | |
4ddb1a4d | 149 | #define MAX_DISCARD_BLOCKS(sbi) BLKS_PER_SEC(sbi) |
ecc9aa00 | 150 | #define DEF_MAX_DISCARD_REQUEST 8 /* issue 8 discards per round */ |
969d1b18 CY |
151 | #define DEF_MIN_DISCARD_ISSUE_TIME 50 /* 50 ms, if exists */ |
152 | #define DEF_MAX_DISCARD_ISSUE_TIME 60000 /* 60 s, if no candidates */ | |
60b99b48 | 153 | #define DEF_CP_INTERVAL 60 /* 60 secs */ |
dcf25fe8 | 154 | #define DEF_IDLE_INTERVAL 5 /* 5 secs */ |
bba681cb | 155 | |
75ab4cb8 JK |
156 | struct cp_control { |
157 | int reason; | |
4b2fecc8 JK |
158 | __u64 trim_start; |
159 | __u64 trim_end; | |
160 | __u64 trim_minlen; | |
161 | __u64 trimmed; | |
75ab4cb8 JK |
162 | }; |
163 | ||
662befda | 164 | /* |
81c1a0f1 | 165 | * For CP/NAT/SIT/SSA readahead |
662befda CY |
166 | */ |
167 | enum { | |
168 | META_CP, | |
169 | META_NAT, | |
81c1a0f1 | 170 | META_SIT, |
4c521f49 JK |
171 | META_SSA, |
172 | META_POR, | |
662befda CY |
173 | }; |
174 | ||
6451e041 JK |
175 | /* for the list of ino */ |
176 | enum { | |
177 | ORPHAN_INO, /* for orphan ino list */ | |
fff04f90 JK |
178 | APPEND_INO, /* for append ino list */ |
179 | UPDATE_INO, /* for update ino list */ | |
39d787be | 180 | FLUSH_INO, /* for multiple device flushing */ |
6451e041 JK |
181 | MAX_INO_ENTRY, /* max. list */ |
182 | }; | |
183 | ||
184 | struct ino_entry { | |
39d787be CY |
185 | struct list_head list; /* list head */ |
186 | nid_t ino; /* inode number */ | |
187 | unsigned int dirty_device; /* dirty device bitmap */ | |
39a53e0c JK |
188 | }; |
189 | ||
2710fd7e | 190 | /* for the list of inodes to be GCed */ |
06292073 | 191 | struct inode_entry { |
39a53e0c JK |
192 | struct list_head list; /* list head */ |
193 | struct inode *inode; /* vfs inode pointer */ | |
194 | }; | |
195 | ||
a7eeb823 | 196 | /* for the bitmap indicate blocks to be discarded */ |
7fd9e544 JK |
197 | struct discard_entry { |
198 | struct list_head list; /* list head */ | |
a7eeb823 CY |
199 | block_t start_blkaddr; /* start blockaddr of current segment */ |
200 | unsigned char discard_map[SIT_VBLOCK_MAP_SIZE]; /* segment discard bitmap */ | |
7fd9e544 JK |
201 | }; |
202 | ||
969d1b18 CY |
203 | /* default discard granularity of inner discard thread, unit: block count */ |
204 | #define DEFAULT_DISCARD_GRANULARITY 16 | |
205 | ||
ba48a33e CY |
206 | /* max discard pend list number */ |
207 | #define MAX_PLIST_NUM 512 | |
208 | #define plist_idx(blk_num) ((blk_num) >= MAX_PLIST_NUM ? \ | |
209 | (MAX_PLIST_NUM - 1) : (blk_num - 1)) | |
210 | ||
15469963 JK |
211 | enum { |
212 | D_PREP, | |
213 | D_SUBMIT, | |
214 | D_DONE, | |
215 | }; | |
216 | ||
004b6862 CY |
217 | struct discard_info { |
218 | block_t lstart; /* logical start address */ | |
219 | block_t len; /* length */ | |
220 | block_t start; /* actual start address in dev */ | |
221 | }; | |
222 | ||
b01a9201 | 223 | struct discard_cmd { |
004b6862 CY |
224 | struct rb_node rb_node; /* rb node located in rb-tree */ |
225 | union { | |
226 | struct { | |
227 | block_t lstart; /* logical start address */ | |
228 | block_t len; /* length */ | |
229 | block_t start; /* actual start address in dev */ | |
230 | }; | |
231 | struct discard_info di; /* discard info */ | |
232 | ||
233 | }; | |
b01a9201 JK |
234 | struct list_head list; /* command list */ |
235 | struct completion wait; /* compleation */ | |
c81abe34 | 236 | struct block_device *bdev; /* bdev */ |
ec9895ad | 237 | unsigned short ref; /* reference count */ |
9a744b92 | 238 | unsigned char state; /* state */ |
c81abe34 | 239 | int error; /* bio error */ |
275b66b0 CY |
240 | }; |
241 | ||
78997b56 CY |
242 | enum { |
243 | DPOLICY_BG, | |
244 | DPOLICY_FORCE, | |
245 | DPOLICY_FSTRIM, | |
246 | DPOLICY_UMOUNT, | |
247 | MAX_DPOLICY, | |
248 | }; | |
249 | ||
ecc9aa00 | 250 | struct discard_policy { |
78997b56 | 251 | int type; /* type of discard */ |
ecc9aa00 CY |
252 | unsigned int min_interval; /* used for candidates exist */ |
253 | unsigned int max_interval; /* used for candidates not exist */ | |
254 | unsigned int max_requests; /* # of discards issued per round */ | |
255 | unsigned int io_aware_gran; /* minimum granularity discard not be aware of I/O */ | |
256 | bool io_aware; /* issue discard in idle time */ | |
257 | bool sync; /* submit discard with REQ_SYNC flag */ | |
78997b56 | 258 | unsigned int granularity; /* discard granularity */ |
ecc9aa00 CY |
259 | }; |
260 | ||
0b54fb84 | 261 | struct discard_cmd_control { |
15469963 | 262 | struct task_struct *f2fs_issue_discard; /* discard thread */ |
46f84c2c | 263 | struct list_head entry_list; /* 4KB discard entry list */ |
ba48a33e | 264 | struct list_head pend_list[MAX_PLIST_NUM];/* store pending entries */ |
969d1b18 | 265 | unsigned char pend_list_tag[MAX_PLIST_NUM];/* tag for pending entries */ |
46f84c2c | 266 | struct list_head wait_list; /* store on-flushing entries */ |
8412663d | 267 | struct list_head fstrim_list; /* in-flight discard from fstrim */ |
15469963 | 268 | wait_queue_head_t discard_wait_queue; /* waiting queue for wake-up */ |
969d1b18 | 269 | unsigned int discard_wake; /* to wake up discard thread */ |
15469963 | 270 | struct mutex cmd_lock; |
d618ebaf CY |
271 | unsigned int nr_discards; /* # of discards in the list */ |
272 | unsigned int max_discards; /* max. discards to be issued */ | |
969d1b18 | 273 | unsigned int discard_granularity; /* discard granularity */ |
d84d1cbd | 274 | unsigned int undiscard_blks; /* # of undiscard blocks */ |
8b8dd65f CY |
275 | atomic_t issued_discard; /* # of issued discard */ |
276 | atomic_t issing_discard; /* # of issing discard */ | |
5f32366a | 277 | atomic_t discard_cmd_cnt; /* # of cached cmd count */ |
004b6862 | 278 | struct rb_root root; /* root of discard rb-tree */ |
275b66b0 CY |
279 | }; |
280 | ||
39a53e0c JK |
281 | /* for the list of fsync inodes, used only during recovery */ |
282 | struct fsync_inode_entry { | |
283 | struct list_head list; /* list head */ | |
284 | struct inode *inode; /* vfs inode pointer */ | |
c52e1b10 JK |
285 | block_t blkaddr; /* block address locating the last fsync */ |
286 | block_t last_dentry; /* block address locating the last dentry */ | |
39a53e0c JK |
287 | }; |
288 | ||
68afcf2d TK |
289 | #define nats_in_cursum(jnl) (le16_to_cpu((jnl)->n_nats)) |
290 | #define sits_in_cursum(jnl) (le16_to_cpu((jnl)->n_sits)) | |
39a53e0c | 291 | |
68afcf2d TK |
292 | #define nat_in_journal(jnl, i) ((jnl)->nat_j.entries[i].ne) |
293 | #define nid_in_journal(jnl, i) ((jnl)->nat_j.entries[i].nid) | |
294 | #define sit_in_journal(jnl, i) ((jnl)->sit_j.entries[i].se) | |
295 | #define segno_in_journal(jnl, i) ((jnl)->sit_j.entries[i].segno) | |
39a53e0c | 296 | |
dfc08a12 CY |
297 | #define MAX_NAT_JENTRIES(jnl) (NAT_JOURNAL_ENTRIES - nats_in_cursum(jnl)) |
298 | #define MAX_SIT_JENTRIES(jnl) (SIT_JOURNAL_ENTRIES - sits_in_cursum(jnl)) | |
309cc2b6 | 299 | |
dfc08a12 | 300 | static inline int update_nats_in_cursum(struct f2fs_journal *journal, int i) |
39a53e0c | 301 | { |
dfc08a12 | 302 | int before = nats_in_cursum(journal); |
cac5a3d8 | 303 | |
dfc08a12 | 304 | journal->n_nats = cpu_to_le16(before + i); |
39a53e0c JK |
305 | return before; |
306 | } | |
307 | ||
dfc08a12 | 308 | static inline int update_sits_in_cursum(struct f2fs_journal *journal, int i) |
39a53e0c | 309 | { |
dfc08a12 | 310 | int before = sits_in_cursum(journal); |
cac5a3d8 | 311 | |
dfc08a12 | 312 | journal->n_sits = cpu_to_le16(before + i); |
39a53e0c JK |
313 | return before; |
314 | } | |
315 | ||
dfc08a12 CY |
316 | static inline bool __has_cursum_space(struct f2fs_journal *journal, |
317 | int size, int type) | |
184a5cd2 CY |
318 | { |
319 | if (type == NAT_JOURNAL) | |
dfc08a12 CY |
320 | return size <= MAX_NAT_JENTRIES(journal); |
321 | return size <= MAX_SIT_JENTRIES(journal); | |
184a5cd2 CY |
322 | } |
323 | ||
e9750824 NJ |
324 | /* |
325 | * ioctl commands | |
326 | */ | |
88b88a66 JK |
327 | #define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS |
328 | #define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS | |
d49f3e89 | 329 | #define F2FS_IOC_GETVERSION FS_IOC_GETVERSION |
88b88a66 JK |
330 | |
331 | #define F2FS_IOCTL_MAGIC 0xf5 | |
332 | #define F2FS_IOC_START_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 1) | |
333 | #define F2FS_IOC_COMMIT_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 2) | |
02a1335f | 334 | #define F2FS_IOC_START_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 3) |
1e84371f JK |
335 | #define F2FS_IOC_RELEASE_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 4) |
336 | #define F2FS_IOC_ABORT_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 5) | |
d07efb50 | 337 | #define F2FS_IOC_GARBAGE_COLLECT _IOW(F2FS_IOCTL_MAGIC, 6, __u32) |
456b88e4 | 338 | #define F2FS_IOC_WRITE_CHECKPOINT _IO(F2FS_IOCTL_MAGIC, 7) |
d07efb50 JK |
339 | #define F2FS_IOC_DEFRAGMENT _IOWR(F2FS_IOCTL_MAGIC, 8, \ |
340 | struct f2fs_defragment) | |
4dd6f977 JK |
341 | #define F2FS_IOC_MOVE_RANGE _IOWR(F2FS_IOCTL_MAGIC, 9, \ |
342 | struct f2fs_move_range) | |
e066b83c JK |
343 | #define F2FS_IOC_FLUSH_DEVICE _IOW(F2FS_IOCTL_MAGIC, 10, \ |
344 | struct f2fs_flush_device) | |
34dc77ad JK |
345 | #define F2FS_IOC_GARBAGE_COLLECT_RANGE _IOW(F2FS_IOCTL_MAGIC, 11, \ |
346 | struct f2fs_gc_range) | |
e65ef207 | 347 | #define F2FS_IOC_GET_FEATURES _IOR(F2FS_IOCTL_MAGIC, 12, __u32) |
e9750824 | 348 | |
0b81d077 JK |
349 | #define F2FS_IOC_SET_ENCRYPTION_POLICY FS_IOC_SET_ENCRYPTION_POLICY |
350 | #define F2FS_IOC_GET_ENCRYPTION_POLICY FS_IOC_GET_ENCRYPTION_POLICY | |
351 | #define F2FS_IOC_GET_ENCRYPTION_PWSALT FS_IOC_GET_ENCRYPTION_PWSALT | |
f424f664 | 352 | |
1abff93d JK |
353 | /* |
354 | * should be same as XFS_IOC_GOINGDOWN. | |
355 | * Flags for going down operation used by FS_IOC_GOINGDOWN | |
356 | */ | |
357 | #define F2FS_IOC_SHUTDOWN _IOR('X', 125, __u32) /* Shutdown */ | |
358 | #define F2FS_GOING_DOWN_FULLSYNC 0x0 /* going down with full sync */ | |
359 | #define F2FS_GOING_DOWN_METASYNC 0x1 /* going down with metadata */ | |
360 | #define F2FS_GOING_DOWN_NOSYNC 0x2 /* going down */ | |
c912a829 | 361 | #define F2FS_GOING_DOWN_METAFLUSH 0x3 /* going down with meta flush */ |
1abff93d | 362 | |
e9750824 NJ |
363 | #if defined(__KERNEL__) && defined(CONFIG_COMPAT) |
364 | /* | |
365 | * ioctl commands in 32 bit emulation | |
366 | */ | |
04ef4b62 CY |
367 | #define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS |
368 | #define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS | |
369 | #define F2FS_IOC32_GETVERSION FS_IOC32_GETVERSION | |
e9750824 NJ |
370 | #endif |
371 | ||
2c1d0305 CY |
372 | #define F2FS_IOC_FSGETXATTR FS_IOC_FSGETXATTR |
373 | #define F2FS_IOC_FSSETXATTR FS_IOC_FSSETXATTR | |
374 | ||
34dc77ad JK |
375 | struct f2fs_gc_range { |
376 | u32 sync; | |
377 | u64 start; | |
378 | u64 len; | |
379 | }; | |
380 | ||
d323d005 CY |
381 | struct f2fs_defragment { |
382 | u64 start; | |
383 | u64 len; | |
384 | }; | |
385 | ||
4dd6f977 JK |
386 | struct f2fs_move_range { |
387 | u32 dst_fd; /* destination fd */ | |
388 | u64 pos_in; /* start position in src_fd */ | |
389 | u64 pos_out; /* start position in dst_fd */ | |
390 | u64 len; /* size to move */ | |
391 | }; | |
392 | ||
e066b83c JK |
393 | struct f2fs_flush_device { |
394 | u32 dev_num; /* device number to flush */ | |
395 | u32 segments; /* # of segments to flush */ | |
396 | }; | |
397 | ||
f2470371 CY |
398 | /* for inline stuff */ |
399 | #define DEF_INLINE_RESERVED_SIZE 1 | |
7a2af766 CY |
400 | static inline int get_extra_isize(struct inode *inode); |
401 | #define MAX_INLINE_DATA(inode) (sizeof(__le32) * \ | |
402 | (CUR_ADDRS_PER_INODE(inode) - \ | |
403 | DEF_INLINE_RESERVED_SIZE - \ | |
f2470371 CY |
404 | F2FS_INLINE_XATTR_ADDRS)) |
405 | ||
406 | /* for inline dir */ | |
407 | #define NR_INLINE_DENTRY(inode) (MAX_INLINE_DATA(inode) * BITS_PER_BYTE / \ | |
408 | ((SIZE_OF_DIR_ENTRY + F2FS_SLOT_LEN) * \ | |
409 | BITS_PER_BYTE + 1)) | |
410 | #define INLINE_DENTRY_BITMAP_SIZE(inode) ((NR_INLINE_DENTRY(inode) + \ | |
411 | BITS_PER_BYTE - 1) / BITS_PER_BYTE) | |
412 | #define INLINE_RESERVED_SIZE(inode) (MAX_INLINE_DATA(inode) - \ | |
413 | ((SIZE_OF_DIR_ENTRY + F2FS_SLOT_LEN) * \ | |
414 | NR_INLINE_DENTRY(inode) + \ | |
415 | INLINE_DENTRY_BITMAP_SIZE(inode))) | |
416 | ||
39a53e0c JK |
417 | /* |
418 | * For INODE and NODE manager | |
419 | */ | |
7b3cd7d6 JK |
420 | /* for directory operations */ |
421 | struct f2fs_dentry_ptr { | |
d8c6822a | 422 | struct inode *inode; |
76a9dd85 | 423 | void *bitmap; |
7b3cd7d6 JK |
424 | struct f2fs_dir_entry *dentry; |
425 | __u8 (*filename)[F2FS_SLOT_LEN]; | |
426 | int max; | |
76a9dd85 | 427 | int nr_bitmap; |
7b3cd7d6 JK |
428 | }; |
429 | ||
64c24ecb TK |
430 | static inline void make_dentry_ptr_block(struct inode *inode, |
431 | struct f2fs_dentry_ptr *d, struct f2fs_dentry_block *t) | |
7b3cd7d6 | 432 | { |
d8c6822a | 433 | d->inode = inode; |
64c24ecb | 434 | d->max = NR_DENTRY_IN_BLOCK; |
76a9dd85 | 435 | d->nr_bitmap = SIZE_OF_DENTRY_BITMAP; |
64c24ecb TK |
436 | d->bitmap = &t->dentry_bitmap; |
437 | d->dentry = t->dentry; | |
438 | d->filename = t->filename; | |
439 | } | |
d8c6822a | 440 | |
64c24ecb | 441 | static inline void make_dentry_ptr_inline(struct inode *inode, |
f2470371 | 442 | struct f2fs_dentry_ptr *d, void *t) |
64c24ecb | 443 | { |
f2470371 CY |
444 | int entry_cnt = NR_INLINE_DENTRY(inode); |
445 | int bitmap_size = INLINE_DENTRY_BITMAP_SIZE(inode); | |
446 | int reserved_size = INLINE_RESERVED_SIZE(inode); | |
447 | ||
64c24ecb | 448 | d->inode = inode; |
f2470371 CY |
449 | d->max = entry_cnt; |
450 | d->nr_bitmap = bitmap_size; | |
451 | d->bitmap = t; | |
452 | d->dentry = t + bitmap_size + reserved_size; | |
453 | d->filename = t + bitmap_size + reserved_size + | |
454 | SIZE_OF_DIR_ENTRY * entry_cnt; | |
7b3cd7d6 JK |
455 | } |
456 | ||
dbe6a5ff JK |
457 | /* |
458 | * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1 | |
459 | * as its node offset to distinguish from index node blocks. | |
460 | * But some bits are used to mark the node block. | |
461 | */ | |
462 | #define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \ | |
463 | >> OFFSET_BIT_SHIFT) | |
266e97a8 JK |
464 | enum { |
465 | ALLOC_NODE, /* allocate a new node page if needed */ | |
466 | LOOKUP_NODE, /* look up a node without readahead */ | |
467 | LOOKUP_NODE_RA, /* | |
468 | * look up a node with readahead called | |
4f4124d0 | 469 | * by get_data_block. |
39a53e0c | 470 | */ |
266e97a8 JK |
471 | }; |
472 | ||
a6db67f0 | 473 | #define F2FS_LINK_MAX 0xffffffff /* maximum link count per file */ |
39a53e0c | 474 | |
817202d9 CY |
475 | #define MAX_DIR_RA_PAGES 4 /* maximum ra pages of dir */ |
476 | ||
13054c54 CY |
477 | /* vector size for gang look-up from extent cache that consists of radix tree */ |
478 | #define EXT_TREE_VEC_SIZE 64 | |
479 | ||
39a53e0c | 480 | /* for in-memory extent cache entry */ |
13054c54 CY |
481 | #define F2FS_MIN_EXTENT_LEN 64 /* minimum extent length */ |
482 | ||
483 | /* number of extent info in extent cache we try to shrink */ | |
484 | #define EXTENT_CACHE_SHRINK_NUMBER 128 | |
c11abd1a | 485 | |
54c2258c CY |
486 | struct rb_entry { |
487 | struct rb_node rb_node; /* rb node located in rb-tree */ | |
488 | unsigned int ofs; /* start offset of the entry */ | |
489 | unsigned int len; /* length of the entry */ | |
490 | }; | |
491 | ||
39a53e0c | 492 | struct extent_info { |
13054c54 | 493 | unsigned int fofs; /* start offset in a file */ |
13054c54 | 494 | unsigned int len; /* length of the extent */ |
54c2258c | 495 | u32 blk; /* start block address of the extent */ |
13054c54 CY |
496 | }; |
497 | ||
498 | struct extent_node { | |
54c2258c CY |
499 | struct rb_node rb_node; |
500 | union { | |
501 | struct { | |
502 | unsigned int fofs; | |
503 | unsigned int len; | |
504 | u32 blk; | |
505 | }; | |
506 | struct extent_info ei; /* extent info */ | |
507 | ||
508 | }; | |
13054c54 | 509 | struct list_head list; /* node in global extent list of sbi */ |
201ef5e0 | 510 | struct extent_tree *et; /* extent tree pointer */ |
13054c54 CY |
511 | }; |
512 | ||
513 | struct extent_tree { | |
514 | nid_t ino; /* inode number */ | |
515 | struct rb_root root; /* root of extent info rb-tree */ | |
62c8af65 | 516 | struct extent_node *cached_en; /* recently accessed extent node */ |
3e72f721 | 517 | struct extent_info largest; /* largested extent info */ |
137d09f0 | 518 | struct list_head list; /* to be used by sbi->zombie_list */ |
13054c54 | 519 | rwlock_t lock; /* protect extent info rb-tree */ |
68e35385 | 520 | atomic_t node_cnt; /* # of extent node in rb-tree*/ |
39a53e0c JK |
521 | }; |
522 | ||
003a3e1d JK |
523 | /* |
524 | * This structure is taken from ext4_map_blocks. | |
525 | * | |
526 | * Note that, however, f2fs uses NEW and MAPPED flags for f2fs_map_blocks(). | |
527 | */ | |
528 | #define F2FS_MAP_NEW (1 << BH_New) | |
529 | #define F2FS_MAP_MAPPED (1 << BH_Mapped) | |
7f63eb77 JK |
530 | #define F2FS_MAP_UNWRITTEN (1 << BH_Unwritten) |
531 | #define F2FS_MAP_FLAGS (F2FS_MAP_NEW | F2FS_MAP_MAPPED |\ | |
532 | F2FS_MAP_UNWRITTEN) | |
003a3e1d JK |
533 | |
534 | struct f2fs_map_blocks { | |
535 | block_t m_pblk; | |
536 | block_t m_lblk; | |
537 | unsigned int m_len; | |
538 | unsigned int m_flags; | |
da85985c | 539 | pgoff_t *m_next_pgofs; /* point next possible non-hole pgofs */ |
003a3e1d JK |
540 | }; |
541 | ||
e2b4e2bc | 542 | /* for flag in get_data_block */ |
f2220c7f QS |
543 | enum { |
544 | F2FS_GET_BLOCK_DEFAULT, | |
545 | F2FS_GET_BLOCK_FIEMAP, | |
546 | F2FS_GET_BLOCK_BMAP, | |
547 | F2FS_GET_BLOCK_PRE_DIO, | |
548 | F2FS_GET_BLOCK_PRE_AIO, | |
549 | }; | |
e2b4e2bc | 550 | |
39a53e0c JK |
551 | /* |
552 | * i_advise uses FADVISE_XXX_BIT. We can add additional hints later. | |
553 | */ | |
554 | #define FADVISE_COLD_BIT 0x01 | |
354a3399 | 555 | #define FADVISE_LOST_PINO_BIT 0x02 |
cde4de12 | 556 | #define FADVISE_ENCRYPT_BIT 0x04 |
e7d55452 | 557 | #define FADVISE_ENC_NAME_BIT 0x08 |
26787236 | 558 | #define FADVISE_KEEP_SIZE_BIT 0x10 |
39a53e0c | 559 | |
b5492af7 JK |
560 | #define file_is_cold(inode) is_file(inode, FADVISE_COLD_BIT) |
561 | #define file_wrong_pino(inode) is_file(inode, FADVISE_LOST_PINO_BIT) | |
562 | #define file_set_cold(inode) set_file(inode, FADVISE_COLD_BIT) | |
563 | #define file_lost_pino(inode) set_file(inode, FADVISE_LOST_PINO_BIT) | |
564 | #define file_clear_cold(inode) clear_file(inode, FADVISE_COLD_BIT) | |
565 | #define file_got_pino(inode) clear_file(inode, FADVISE_LOST_PINO_BIT) | |
cde4de12 JK |
566 | #define file_is_encrypt(inode) is_file(inode, FADVISE_ENCRYPT_BIT) |
567 | #define file_set_encrypt(inode) set_file(inode, FADVISE_ENCRYPT_BIT) | |
568 | #define file_clear_encrypt(inode) clear_file(inode, FADVISE_ENCRYPT_BIT) | |
e7d55452 JK |
569 | #define file_enc_name(inode) is_file(inode, FADVISE_ENC_NAME_BIT) |
570 | #define file_set_enc_name(inode) set_file(inode, FADVISE_ENC_NAME_BIT) | |
26787236 JK |
571 | #define file_keep_isize(inode) is_file(inode, FADVISE_KEEP_SIZE_BIT) |
572 | #define file_set_keep_isize(inode) set_file(inode, FADVISE_KEEP_SIZE_BIT) | |
cde4de12 | 573 | |
ab9fa662 JK |
574 | #define DEF_DIR_LEVEL 0 |
575 | ||
39a53e0c JK |
576 | struct f2fs_inode_info { |
577 | struct inode vfs_inode; /* serve a vfs inode */ | |
578 | unsigned long i_flags; /* keep an inode flags for ioctl */ | |
579 | unsigned char i_advise; /* use to give file attribute hints */ | |
38431545 | 580 | unsigned char i_dir_level; /* use for dentry level for large dir */ |
39a53e0c | 581 | unsigned int i_current_depth; /* use only in directory structure */ |
6666e6aa | 582 | unsigned int i_pino; /* parent inode number */ |
39a53e0c JK |
583 | umode_t i_acl_mode; /* keep file acl mode temporarily */ |
584 | ||
585 | /* Use below internally in f2fs*/ | |
586 | unsigned long flags; /* use to pass per-file flags */ | |
d928bfbf | 587 | struct rw_semaphore i_sem; /* protect fi info */ |
204706c7 | 588 | atomic_t dirty_pages; /* # of dirty pages */ |
39a53e0c JK |
589 | f2fs_hash_t chash; /* hash value of given file name */ |
590 | unsigned int clevel; /* maximum level of given file name */ | |
88c5c13a | 591 | struct task_struct *task; /* lookup and create consistency */ |
b0af6d49 | 592 | struct task_struct *cp_task; /* separate cp/wb IO stats*/ |
39a53e0c | 593 | nid_t i_xattr_nid; /* node id that contains xattrs */ |
26de9b11 | 594 | loff_t last_disk_size; /* lastly written file size */ |
88b88a66 | 595 | |
0abd675e CY |
596 | #ifdef CONFIG_QUOTA |
597 | struct dquot *i_dquot[MAXQUOTAS]; | |
598 | ||
599 | /* quota space reservation, managed internally by quota code */ | |
600 | qsize_t i_reserved_quota; | |
601 | #endif | |
0f18b462 JK |
602 | struct list_head dirty_list; /* dirty list for dirs and files */ |
603 | struct list_head gdirty_list; /* linked in global dirty list */ | |
88b88a66 | 604 | struct list_head inmem_pages; /* inmemory pages managed by f2fs */ |
7a10f017 | 605 | struct task_struct *inmem_task; /* store inmemory task */ |
88b88a66 | 606 | struct mutex inmem_lock; /* lock for inmemory pages */ |
3e72f721 | 607 | struct extent_tree *extent_tree; /* cached extent_tree entry */ |
82e0a5aa | 608 | struct rw_semaphore dio_rwsem[2];/* avoid racing between dio and gc */ |
5a3a2d83 | 609 | struct rw_semaphore i_mmap_sem; |
27161f13 | 610 | struct rw_semaphore i_xattr_sem; /* avoid racing between reading and changing EAs */ |
f2470371 | 611 | |
7a2af766 | 612 | int i_extra_isize; /* size of extra space located in i_addr */ |
5c57132e | 613 | kprojid_t i_projid; /* id for project quota */ |
39a53e0c JK |
614 | }; |
615 | ||
616 | static inline void get_extent_info(struct extent_info *ext, | |
bd933d4f | 617 | struct f2fs_extent *i_ext) |
39a53e0c | 618 | { |
bd933d4f CY |
619 | ext->fofs = le32_to_cpu(i_ext->fofs); |
620 | ext->blk = le32_to_cpu(i_ext->blk); | |
621 | ext->len = le32_to_cpu(i_ext->len); | |
39a53e0c JK |
622 | } |
623 | ||
624 | static inline void set_raw_extent(struct extent_info *ext, | |
625 | struct f2fs_extent *i_ext) | |
626 | { | |
39a53e0c | 627 | i_ext->fofs = cpu_to_le32(ext->fofs); |
4d0b0bd4 | 628 | i_ext->blk = cpu_to_le32(ext->blk); |
39a53e0c | 629 | i_ext->len = cpu_to_le32(ext->len); |
39a53e0c JK |
630 | } |
631 | ||
429511cd CY |
632 | static inline void set_extent_info(struct extent_info *ei, unsigned int fofs, |
633 | u32 blk, unsigned int len) | |
634 | { | |
635 | ei->fofs = fofs; | |
636 | ei->blk = blk; | |
637 | ei->len = len; | |
638 | } | |
639 | ||
004b6862 CY |
640 | static inline bool __is_discard_mergeable(struct discard_info *back, |
641 | struct discard_info *front) | |
642 | { | |
643 | return back->lstart + back->len == front->lstart; | |
644 | } | |
645 | ||
646 | static inline bool __is_discard_back_mergeable(struct discard_info *cur, | |
647 | struct discard_info *back) | |
648 | { | |
649 | return __is_discard_mergeable(back, cur); | |
650 | } | |
651 | ||
652 | static inline bool __is_discard_front_mergeable(struct discard_info *cur, | |
653 | struct discard_info *front) | |
654 | { | |
655 | return __is_discard_mergeable(cur, front); | |
656 | } | |
657 | ||
429511cd CY |
658 | static inline bool __is_extent_mergeable(struct extent_info *back, |
659 | struct extent_info *front) | |
660 | { | |
661 | return (back->fofs + back->len == front->fofs && | |
662 | back->blk + back->len == front->blk); | |
663 | } | |
664 | ||
665 | static inline bool __is_back_mergeable(struct extent_info *cur, | |
666 | struct extent_info *back) | |
667 | { | |
668 | return __is_extent_mergeable(back, cur); | |
669 | } | |
670 | ||
671 | static inline bool __is_front_mergeable(struct extent_info *cur, | |
672 | struct extent_info *front) | |
673 | { | |
674 | return __is_extent_mergeable(cur, front); | |
675 | } | |
676 | ||
cac5a3d8 | 677 | extern void f2fs_mark_inode_dirty_sync(struct inode *inode, bool sync); |
205b9822 JK |
678 | static inline void __try_update_largest_extent(struct inode *inode, |
679 | struct extent_tree *et, struct extent_node *en) | |
4abd3f5a | 680 | { |
205b9822 | 681 | if (en->ei.len > et->largest.len) { |
4abd3f5a | 682 | et->largest = en->ei; |
7c45729a | 683 | f2fs_mark_inode_dirty_sync(inode, true); |
205b9822 | 684 | } |
4abd3f5a CY |
685 | } |
686 | ||
9a4ffdf5 CY |
687 | /* |
688 | * For free nid management | |
689 | */ | |
690 | enum nid_state { | |
691 | FREE_NID, /* newly added to free nid list */ | |
692 | PREALLOC_NID, /* it is preallocated */ | |
693 | MAX_NID_STATE, | |
b8559dc2 CY |
694 | }; |
695 | ||
39a53e0c JK |
696 | struct f2fs_nm_info { |
697 | block_t nat_blkaddr; /* base disk address of NAT */ | |
698 | nid_t max_nid; /* maximum possible node ids */ | |
04d47e67 | 699 | nid_t available_nids; /* # of available node ids */ |
39a53e0c | 700 | nid_t next_scan_nid; /* the next nid to be scanned */ |
cdfc41c1 | 701 | unsigned int ram_thresh; /* control the memory footprint */ |
ea1a29a0 | 702 | unsigned int ra_nid_pages; /* # of nid pages to be readaheaded */ |
2304cb0c | 703 | unsigned int dirty_nats_ratio; /* control dirty nats ratio threshold */ |
39a53e0c JK |
704 | |
705 | /* NAT cache management */ | |
706 | struct radix_tree_root nat_root;/* root of the nat entry cache */ | |
309cc2b6 | 707 | struct radix_tree_root nat_set_root;/* root of the nat set cache */ |
b873b798 | 708 | struct rw_semaphore nat_tree_lock; /* protect nat_tree_lock */ |
39a53e0c | 709 | struct list_head nat_entries; /* cached nat entry list (clean) */ |
309cc2b6 | 710 | unsigned int nat_cnt; /* the # of cached nat entries */ |
aec71382 | 711 | unsigned int dirty_nat_cnt; /* total num of nat entries in set */ |
22ad0b6a | 712 | unsigned int nat_blocks; /* # of nat blocks */ |
39a53e0c JK |
713 | |
714 | /* free node ids management */ | |
8a7ed66a | 715 | struct radix_tree_root free_nid_root;/* root of the free_nid cache */ |
9a4ffdf5 CY |
716 | struct list_head free_nid_list; /* list for free nids excluding preallocated nids */ |
717 | unsigned int nid_cnt[MAX_NID_STATE]; /* the number of free node id */ | |
b8559dc2 | 718 | spinlock_t nid_list_lock; /* protect nid lists ops */ |
39a53e0c | 719 | struct mutex build_lock; /* lock for build free nids */ |
4ac91242 CY |
720 | unsigned char (*free_nid_bitmap)[NAT_ENTRY_BITMAP_SIZE]; |
721 | unsigned char *nat_block_bitmap; | |
586d1492 | 722 | unsigned short *free_nid_count; /* free nid count of NAT block */ |
39a53e0c JK |
723 | |
724 | /* for checkpoint */ | |
725 | char *nat_bitmap; /* NAT bitmap pointer */ | |
22ad0b6a JK |
726 | |
727 | unsigned int nat_bits_blocks; /* # of nat bits blocks */ | |
728 | unsigned char *nat_bits; /* NAT bits blocks */ | |
729 | unsigned char *full_nat_bits; /* full NAT pages */ | |
730 | unsigned char *empty_nat_bits; /* empty NAT pages */ | |
599a09b2 CY |
731 | #ifdef CONFIG_F2FS_CHECK_FS |
732 | char *nat_bitmap_mir; /* NAT bitmap mirror */ | |
733 | #endif | |
39a53e0c JK |
734 | int bitmap_size; /* bitmap size */ |
735 | }; | |
736 | ||
737 | /* | |
738 | * this structure is used as one of function parameters. | |
739 | * all the information are dedicated to a given direct node block determined | |
740 | * by the data offset in a file. | |
741 | */ | |
742 | struct dnode_of_data { | |
743 | struct inode *inode; /* vfs inode pointer */ | |
744 | struct page *inode_page; /* its inode page, NULL is possible */ | |
745 | struct page *node_page; /* cached direct node page */ | |
746 | nid_t nid; /* node id of the direct node block */ | |
747 | unsigned int ofs_in_node; /* data offset in the node page */ | |
748 | bool inode_page_locked; /* inode page is locked or not */ | |
93bae099 | 749 | bool node_changed; /* is node block changed */ |
3cf45747 CY |
750 | char cur_level; /* level of hole node page */ |
751 | char max_level; /* level of current page located */ | |
39a53e0c JK |
752 | block_t data_blkaddr; /* block address of the node block */ |
753 | }; | |
754 | ||
755 | static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode, | |
756 | struct page *ipage, struct page *npage, nid_t nid) | |
757 | { | |
d66d1f76 | 758 | memset(dn, 0, sizeof(*dn)); |
39a53e0c JK |
759 | dn->inode = inode; |
760 | dn->inode_page = ipage; | |
761 | dn->node_page = npage; | |
762 | dn->nid = nid; | |
39a53e0c JK |
763 | } |
764 | ||
765 | /* | |
766 | * For SIT manager | |
767 | * | |
768 | * By default, there are 6 active log areas across the whole main area. | |
769 | * When considering hot and cold data separation to reduce cleaning overhead, | |
770 | * we split 3 for data logs and 3 for node logs as hot, warm, and cold types, | |
771 | * respectively. | |
772 | * In the current design, you should not change the numbers intentionally. | |
773 | * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6 | |
774 | * logs individually according to the underlying devices. (default: 6) | |
775 | * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for | |
776 | * data and 8 for node logs. | |
777 | */ | |
778 | #define NR_CURSEG_DATA_TYPE (3) | |
779 | #define NR_CURSEG_NODE_TYPE (3) | |
780 | #define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE) | |
781 | ||
782 | enum { | |
783 | CURSEG_HOT_DATA = 0, /* directory entry blocks */ | |
784 | CURSEG_WARM_DATA, /* data blocks */ | |
785 | CURSEG_COLD_DATA, /* multimedia or GCed data blocks */ | |
786 | CURSEG_HOT_NODE, /* direct node blocks of directory files */ | |
787 | CURSEG_WARM_NODE, /* direct node blocks of normal files */ | |
788 | CURSEG_COLD_NODE, /* indirect node blocks */ | |
38aa0889 | 789 | NO_CHECK_TYPE, |
39a53e0c JK |
790 | }; |
791 | ||
6b4afdd7 | 792 | struct flush_cmd { |
6b4afdd7 | 793 | struct completion wait; |
721bd4d5 | 794 | struct llist_node llnode; |
39d787be | 795 | nid_t ino; |
6b4afdd7 JK |
796 | int ret; |
797 | }; | |
798 | ||
a688b9d9 GZ |
799 | struct flush_cmd_control { |
800 | struct task_struct *f2fs_issue_flush; /* flush thread */ | |
801 | wait_queue_head_t flush_wait_queue; /* waiting queue for wake-up */ | |
8b8dd65f CY |
802 | atomic_t issued_flush; /* # of issued flushes */ |
803 | atomic_t issing_flush; /* # of issing flushes */ | |
721bd4d5 GZ |
804 | struct llist_head issue_list; /* list for command issue */ |
805 | struct llist_node *dispatch_list; /* list for command dispatch */ | |
a688b9d9 GZ |
806 | }; |
807 | ||
39a53e0c JK |
808 | struct f2fs_sm_info { |
809 | struct sit_info *sit_info; /* whole segment information */ | |
810 | struct free_segmap_info *free_info; /* free segment information */ | |
811 | struct dirty_seglist_info *dirty_info; /* dirty segment information */ | |
812 | struct curseg_info *curseg_array; /* active segment information */ | |
813 | ||
39a53e0c JK |
814 | block_t seg0_blkaddr; /* block address of 0'th segment */ |
815 | block_t main_blkaddr; /* start block address of main area */ | |
816 | block_t ssa_blkaddr; /* start block address of SSA area */ | |
817 | ||
818 | unsigned int segment_count; /* total # of segments */ | |
819 | unsigned int main_segments; /* # of segments in main area */ | |
820 | unsigned int reserved_segments; /* # of reserved segments */ | |
821 | unsigned int ovp_segments; /* # of overprovision segments */ | |
81eb8d6e JK |
822 | |
823 | /* a threshold to reclaim prefree segments */ | |
824 | unsigned int rec_prefree_segments; | |
7fd9e544 | 825 | |
bba681cb JK |
826 | /* for batched trimming */ |
827 | unsigned int trim_sections; /* # of sections to trim */ | |
828 | ||
184a5cd2 CY |
829 | struct list_head sit_entry_set; /* sit entry set list */ |
830 | ||
216fbd64 JK |
831 | unsigned int ipu_policy; /* in-place-update policy */ |
832 | unsigned int min_ipu_util; /* in-place-update threshold */ | |
c1ce1b02 | 833 | unsigned int min_fsync_blocks; /* threshold for fsync */ |
ef095d19 | 834 | unsigned int min_hot_blocks; /* threshold for hot block allocation */ |
6b4afdd7 JK |
835 | |
836 | /* for flush command control */ | |
b01a9201 | 837 | struct flush_cmd_control *fcc_info; |
a688b9d9 | 838 | |
0b54fb84 JK |
839 | /* for discard command control */ |
840 | struct discard_cmd_control *dcc_info; | |
39a53e0c JK |
841 | }; |
842 | ||
39a53e0c JK |
843 | /* |
844 | * For superblock | |
845 | */ | |
846 | /* | |
847 | * COUNT_TYPE for monitoring | |
848 | * | |
849 | * f2fs monitors the number of several block types such as on-writeback, | |
850 | * dirty dentry blocks, dirty node blocks, and dirty meta blocks. | |
851 | */ | |
36951b38 | 852 | #define WB_DATA_TYPE(p) (__is_cp_guaranteed(p) ? F2FS_WB_CP_DATA : F2FS_WB_DATA) |
39a53e0c | 853 | enum count_type { |
39a53e0c | 854 | F2FS_DIRTY_DENTS, |
c227f912 | 855 | F2FS_DIRTY_DATA, |
39a53e0c JK |
856 | F2FS_DIRTY_NODES, |
857 | F2FS_DIRTY_META, | |
8dcf2ff7 | 858 | F2FS_INMEM_PAGES, |
0f18b462 | 859 | F2FS_DIRTY_IMETA, |
36951b38 CY |
860 | F2FS_WB_CP_DATA, |
861 | F2FS_WB_DATA, | |
39a53e0c JK |
862 | NR_COUNT_TYPE, |
863 | }; | |
864 | ||
39a53e0c | 865 | /* |
e1c42045 | 866 | * The below are the page types of bios used in submit_bio(). |
39a53e0c JK |
867 | * The available types are: |
868 | * DATA User data pages. It operates as async mode. | |
869 | * NODE Node pages. It operates as async mode. | |
870 | * META FS metadata pages such as SIT, NAT, CP. | |
871 | * NR_PAGE_TYPE The number of page types. | |
872 | * META_FLUSH Make sure the previous pages are written | |
873 | * with waiting the bio's completion | |
874 | * ... Only can be used with META. | |
875 | */ | |
7d5e5109 | 876 | #define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type)) |
39a53e0c JK |
877 | enum page_type { |
878 | DATA, | |
879 | NODE, | |
880 | META, | |
881 | NR_PAGE_TYPE, | |
882 | META_FLUSH, | |
8ce67cb0 JK |
883 | INMEM, /* the below types are used by tracepoints only. */ |
884 | INMEM_DROP, | |
8c242db9 | 885 | INMEM_INVALIDATE, |
28bc106b | 886 | INMEM_REVOKE, |
8ce67cb0 JK |
887 | IPU, |
888 | OPU, | |
39a53e0c JK |
889 | }; |
890 | ||
a912b54d JK |
891 | enum temp_type { |
892 | HOT = 0, /* must be zero for meta bio */ | |
893 | WARM, | |
894 | COLD, | |
895 | NR_TEMP_TYPE, | |
896 | }; | |
897 | ||
cc15620b JK |
898 | enum need_lock_type { |
899 | LOCK_REQ = 0, | |
900 | LOCK_DONE, | |
901 | LOCK_RETRY, | |
902 | }; | |
903 | ||
b0af6d49 CY |
904 | enum iostat_type { |
905 | APP_DIRECT_IO, /* app direct IOs */ | |
906 | APP_BUFFERED_IO, /* app buffered IOs */ | |
907 | APP_WRITE_IO, /* app write IOs */ | |
908 | APP_MAPPED_IO, /* app mapped IOs */ | |
909 | FS_DATA_IO, /* data IOs from kworker/fsync/reclaimer */ | |
910 | FS_NODE_IO, /* node IOs from kworker/fsync/reclaimer */ | |
911 | FS_META_IO, /* meta IOs from kworker/reclaimer */ | |
912 | FS_GC_DATA_IO, /* data IOs from forground gc */ | |
913 | FS_GC_NODE_IO, /* node IOs from forground gc */ | |
914 | FS_CP_DATA_IO, /* data IOs from checkpoint */ | |
915 | FS_CP_NODE_IO, /* node IOs from checkpoint */ | |
916 | FS_CP_META_IO, /* meta IOs from checkpoint */ | |
917 | FS_DISCARD, /* discard */ | |
918 | NR_IO_TYPE, | |
919 | }; | |
920 | ||
458e6197 | 921 | struct f2fs_io_info { |
05ca3632 | 922 | struct f2fs_sb_info *sbi; /* f2fs_sb_info pointer */ |
39d787be | 923 | nid_t ino; /* inode number */ |
7e8f2308 | 924 | enum page_type type; /* contains DATA/NODE/META/META_FLUSH */ |
a912b54d | 925 | enum temp_type temp; /* contains HOT/WARM/COLD */ |
04d328de | 926 | int op; /* contains REQ_OP_ */ |
ef295ecf | 927 | int op_flags; /* req_flag_bits */ |
7a9d7548 | 928 | block_t new_blkaddr; /* new block address to be written */ |
28bc106b | 929 | block_t old_blkaddr; /* old block address before Cow */ |
05ca3632 | 930 | struct page *page; /* page to be written */ |
4375a336 | 931 | struct page *encrypted_page; /* encrypted page */ |
fb830fc5 | 932 | struct list_head list; /* serialize IOs */ |
d68f735b | 933 | bool submitted; /* indicate IO submission */ |
cc15620b | 934 | int need_lock; /* indicate we need to lock cp_rwsem */ |
fb830fc5 | 935 | bool in_list; /* indicate fio is in io_list */ |
b0af6d49 | 936 | enum iostat_type io_type; /* io type */ |
458e6197 JK |
937 | }; |
938 | ||
68afcf2d | 939 | #define is_read_io(rw) ((rw) == READ) |
1ff7bd3b | 940 | struct f2fs_bio_info { |
458e6197 | 941 | struct f2fs_sb_info *sbi; /* f2fs superblock */ |
1ff7bd3b JK |
942 | struct bio *bio; /* bios to merge */ |
943 | sector_t last_block_in_bio; /* last block number */ | |
458e6197 | 944 | struct f2fs_io_info fio; /* store buffered io info. */ |
df0f8dc0 | 945 | struct rw_semaphore io_rwsem; /* blocking op for bio */ |
fb830fc5 CY |
946 | spinlock_t io_lock; /* serialize DATA/NODE IOs */ |
947 | struct list_head io_list; /* track fios */ | |
1ff7bd3b JK |
948 | }; |
949 | ||
3c62be17 JK |
950 | #define FDEV(i) (sbi->devs[i]) |
951 | #define RDEV(i) (raw_super->devs[i]) | |
952 | struct f2fs_dev_info { | |
953 | struct block_device *bdev; | |
954 | char path[MAX_PATH_LEN]; | |
955 | unsigned int total_segments; | |
956 | block_t start_blk; | |
957 | block_t end_blk; | |
958 | #ifdef CONFIG_BLK_DEV_ZONED | |
959 | unsigned int nr_blkz; /* Total number of zones */ | |
960 | u8 *blkz_type; /* Array of zones type */ | |
961 | #endif | |
962 | }; | |
963 | ||
c227f912 CY |
964 | enum inode_type { |
965 | DIR_INODE, /* for dirty dir inode */ | |
966 | FILE_INODE, /* for dirty regular/symlink inode */ | |
0f18b462 | 967 | DIRTY_META, /* for all dirtied inode metadata */ |
c227f912 CY |
968 | NR_INODE_TYPE, |
969 | }; | |
970 | ||
67298804 CY |
971 | /* for inner inode cache management */ |
972 | struct inode_management { | |
973 | struct radix_tree_root ino_root; /* ino entry array */ | |
974 | spinlock_t ino_lock; /* for ino entry lock */ | |
975 | struct list_head ino_list; /* inode list head */ | |
976 | unsigned long ino_num; /* number of entries */ | |
977 | }; | |
978 | ||
caf0047e CY |
979 | /* For s_flag in struct f2fs_sb_info */ |
980 | enum { | |
981 | SBI_IS_DIRTY, /* dirty flag for checkpoint */ | |
982 | SBI_IS_CLOSE, /* specify unmounting */ | |
983 | SBI_NEED_FSCK, /* need fsck.f2fs to fix */ | |
984 | SBI_POR_DOING, /* recovery is doing or not */ | |
df728b0f | 985 | SBI_NEED_SB_WRITE, /* need to recover superblock */ |
bbf156f7 | 986 | SBI_NEED_CP, /* need to checkpoint */ |
caf0047e CY |
987 | }; |
988 | ||
6beceb54 JK |
989 | enum { |
990 | CP_TIME, | |
d0239e1b | 991 | REQ_TIME, |
6beceb54 JK |
992 | MAX_TIME, |
993 | }; | |
994 | ||
39a53e0c JK |
995 | struct f2fs_sb_info { |
996 | struct super_block *sb; /* pointer to VFS super block */ | |
5e176d54 | 997 | struct proc_dir_entry *s_proc; /* proc entry */ |
39a53e0c | 998 | struct f2fs_super_block *raw_super; /* raw super block pointer */ |
e8240f65 | 999 | int valid_super_block; /* valid super block no */ |
fadb2fb8 | 1000 | unsigned long s_flag; /* flags for sbi */ |
39a53e0c | 1001 | |
178053e2 | 1002 | #ifdef CONFIG_BLK_DEV_ZONED |
178053e2 DLM |
1003 | unsigned int blocks_per_blkz; /* F2FS blocks per zone */ |
1004 | unsigned int log_blocks_per_blkz; /* log2 F2FS blocks per zone */ | |
178053e2 DLM |
1005 | #endif |
1006 | ||
39a53e0c JK |
1007 | /* for node-related operations */ |
1008 | struct f2fs_nm_info *nm_info; /* node manager */ | |
1009 | struct inode *node_inode; /* cache node blocks */ | |
1010 | ||
1011 | /* for segment-related operations */ | |
1012 | struct f2fs_sm_info *sm_info; /* segment manager */ | |
1ff7bd3b JK |
1013 | |
1014 | /* for bio operations */ | |
a912b54d | 1015 | struct f2fs_bio_info *write_io[NR_PAGE_TYPE]; /* for write bios */ |
e41e6d75 CY |
1016 | struct mutex wio_mutex[NR_PAGE_TYPE - 1][NR_TEMP_TYPE]; |
1017 | /* bio ordering for NODE/DATA */ | |
0a595eba JK |
1018 | int write_io_size_bits; /* Write IO size bits */ |
1019 | mempool_t *write_io_dummy; /* Dummy pages */ | |
39a53e0c JK |
1020 | |
1021 | /* for checkpoint */ | |
1022 | struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */ | |
8508e44a | 1023 | int cur_cp_pack; /* remain current cp pack */ |
aaec2b1d | 1024 | spinlock_t cp_lock; /* for flag in ckpt */ |
39a53e0c | 1025 | struct inode *meta_inode; /* cache meta blocks */ |
39936837 | 1026 | struct mutex cp_mutex; /* checkpoint procedure lock */ |
b873b798 | 1027 | struct rw_semaphore cp_rwsem; /* blocking FS operations */ |
b3582c68 | 1028 | struct rw_semaphore node_write; /* locking node writes */ |
59c9081b | 1029 | struct rw_semaphore node_change; /* locking node change */ |
fb51b5ef | 1030 | wait_queue_head_t cp_wait; |
6beceb54 JK |
1031 | unsigned long last_time[MAX_TIME]; /* to store time in jiffies */ |
1032 | long interval_time[MAX_TIME]; /* to store thresholds */ | |
39a53e0c | 1033 | |
67298804 | 1034 | struct inode_management im[MAX_INO_ENTRY]; /* manage inode cache */ |
6451e041 JK |
1035 | |
1036 | /* for orphan inode, use 0'th array */ | |
0d47c1ad | 1037 | unsigned int max_orphans; /* max orphan inodes */ |
39a53e0c | 1038 | |
c227f912 CY |
1039 | /* for inode management */ |
1040 | struct list_head inode_list[NR_INODE_TYPE]; /* dirty inode list */ | |
1041 | spinlock_t inode_lock[NR_INODE_TYPE]; /* for dirty inode list lock */ | |
39a53e0c | 1042 | |
13054c54 CY |
1043 | /* for extent tree cache */ |
1044 | struct radix_tree_root extent_tree_root;/* cache extent cache entries */ | |
5e8256ac | 1045 | struct mutex extent_tree_lock; /* locking extent radix tree */ |
13054c54 CY |
1046 | struct list_head extent_list; /* lru list for shrinker */ |
1047 | spinlock_t extent_lock; /* locking extent lru list */ | |
7441ccef | 1048 | atomic_t total_ext_tree; /* extent tree count */ |
137d09f0 | 1049 | struct list_head zombie_list; /* extent zombie tree list */ |
74fd8d99 | 1050 | atomic_t total_zombie_tree; /* extent zombie tree count */ |
13054c54 CY |
1051 | atomic_t total_ext_node; /* extent info count */ |
1052 | ||
e1c42045 | 1053 | /* basic filesystem units */ |
39a53e0c JK |
1054 | unsigned int log_sectors_per_block; /* log2 sectors per block */ |
1055 | unsigned int log_blocksize; /* log2 block size */ | |
1056 | unsigned int blocksize; /* block size */ | |
1057 | unsigned int root_ino_num; /* root inode number*/ | |
1058 | unsigned int node_ino_num; /* node inode number*/ | |
1059 | unsigned int meta_ino_num; /* meta inode number*/ | |
1060 | unsigned int log_blocks_per_seg; /* log2 blocks per segment */ | |
1061 | unsigned int blocks_per_seg; /* blocks per segment */ | |
1062 | unsigned int segs_per_sec; /* segments per section */ | |
1063 | unsigned int secs_per_zone; /* sections per zone */ | |
1064 | unsigned int total_sections; /* total section count */ | |
1065 | unsigned int total_node_count; /* total node block count */ | |
1066 | unsigned int total_valid_node_count; /* valid node block count */ | |
e0afc4d6 | 1067 | loff_t max_file_blocks; /* max block index of file */ |
39a53e0c | 1068 | int active_logs; /* # of active logs */ |
ab9fa662 | 1069 | int dir_level; /* directory level */ |
39a53e0c JK |
1070 | |
1071 | block_t user_block_count; /* # of user blocks */ | |
1072 | block_t total_valid_block_count; /* # of valid blocks */ | |
a66cdd98 | 1073 | block_t discard_blks; /* discard command candidats */ |
39a53e0c | 1074 | block_t last_valid_block_count; /* for recovery */ |
daeb433e CY |
1075 | block_t reserved_blocks; /* configurable reserved blocks */ |
1076 | ||
39a53e0c | 1077 | u32 s_next_generation; /* for NFS support */ |
523be8a6 JK |
1078 | |
1079 | /* # of pages, see count_type */ | |
35782b23 | 1080 | atomic_t nr_pages[NR_COUNT_TYPE]; |
41382ec4 JK |
1081 | /* # of allocated blocks */ |
1082 | struct percpu_counter alloc_valid_block_count; | |
39a53e0c | 1083 | |
687de7f1 JK |
1084 | /* writeback control */ |
1085 | atomic_t wb_sync_req; /* count # of WB_SYNC threads */ | |
1086 | ||
513c5f37 JK |
1087 | /* valid inode count */ |
1088 | struct percpu_counter total_valid_inode_count; | |
1089 | ||
39a53e0c JK |
1090 | struct f2fs_mount_info mount_opt; /* mount options */ |
1091 | ||
1092 | /* for cleaning operations */ | |
1093 | struct mutex gc_mutex; /* mutex for GC */ | |
1094 | struct f2fs_gc_kthread *gc_thread; /* GC thread */ | |
5ec4e49f | 1095 | unsigned int cur_victim_sec; /* current victim section num */ |
39a53e0c | 1096 | |
e93b9865 HP |
1097 | /* threshold for converting bg victims for fg */ |
1098 | u64 fggc_threshold; | |
1099 | ||
b1c57c1c JK |
1100 | /* maximum # of trials to find a victim segment for SSR and GC */ |
1101 | unsigned int max_victim_search; | |
1102 | ||
39a53e0c JK |
1103 | /* |
1104 | * for stat information. | |
1105 | * one is for the LFS mode, and the other is for the SSR mode. | |
1106 | */ | |
35b09d82 | 1107 | #ifdef CONFIG_F2FS_STAT_FS |
39a53e0c JK |
1108 | struct f2fs_stat_info *stat_info; /* FS status information */ |
1109 | unsigned int segment_count[2]; /* # of allocated segments */ | |
1110 | unsigned int block_count[2]; /* # of allocated blocks */ | |
b9a2c252 | 1111 | atomic_t inplace_count; /* # of inplace update */ |
5b7ee374 CY |
1112 | atomic64_t total_hit_ext; /* # of lookup extent cache */ |
1113 | atomic64_t read_hit_rbtree; /* # of hit rbtree extent node */ | |
1114 | atomic64_t read_hit_largest; /* # of hit largest extent node */ | |
1115 | atomic64_t read_hit_cached; /* # of hit cached extent node */ | |
d5e8f6c9 | 1116 | atomic_t inline_xattr; /* # of inline_xattr inodes */ |
03e14d52 CY |
1117 | atomic_t inline_inode; /* # of inline_data inodes */ |
1118 | atomic_t inline_dir; /* # of inline_dentry inodes */ | |
26a28a0c | 1119 | atomic_t aw_cnt; /* # of atomic writes */ |
648d50ba | 1120 | atomic_t vw_cnt; /* # of volatile writes */ |
26a28a0c | 1121 | atomic_t max_aw_cnt; /* max # of atomic writes */ |
648d50ba | 1122 | atomic_t max_vw_cnt; /* max # of volatile writes */ |
39a53e0c | 1123 | int bg_gc; /* background gc calls */ |
33fbd510 | 1124 | unsigned int ndirty_inode[NR_INODE_TYPE]; /* # of dirty inodes */ |
35b09d82 | 1125 | #endif |
39a53e0c | 1126 | spinlock_t stat_lock; /* lock for stat operations */ |
b59d0bae | 1127 | |
b0af6d49 CY |
1128 | /* For app/fs IO statistics */ |
1129 | spinlock_t iostat_lock; | |
1130 | unsigned long long write_iostat[NR_IO_TYPE]; | |
1131 | bool iostat_enable; | |
1132 | ||
b59d0bae NJ |
1133 | /* For sysfs suppport */ |
1134 | struct kobject s_kobj; | |
1135 | struct completion s_kobj_unregister; | |
2658e50d JK |
1136 | |
1137 | /* For shrinker support */ | |
1138 | struct list_head s_list; | |
3c62be17 JK |
1139 | int s_ndevs; /* number of devices */ |
1140 | struct f2fs_dev_info *devs; /* for device list */ | |
1228b482 CY |
1141 | unsigned int dirty_device; /* for checkpoint data flush */ |
1142 | spinlock_t dev_lock; /* protect dirty_device */ | |
2658e50d JK |
1143 | struct mutex umount_mutex; |
1144 | unsigned int shrinker_run_no; | |
8f1dbbbb SL |
1145 | |
1146 | /* For write statistics */ | |
1147 | u64 sectors_written_start; | |
1148 | u64 kbytes_written; | |
43b6573b KM |
1149 | |
1150 | /* Reference to checksum algorithm driver via cryptoapi */ | |
1151 | struct crypto_shash *s_chksum_driver; | |
1ecc0c5c | 1152 | |
704956ec CY |
1153 | /* Precomputed FS UUID checksum for seeding other checksums */ |
1154 | __u32 s_chksum_seed; | |
1155 | ||
1ecc0c5c CY |
1156 | /* For fault injection */ |
1157 | #ifdef CONFIG_F2FS_FAULT_INJECTION | |
1158 | struct f2fs_fault_info fault_info; | |
1159 | #endif | |
4b2414d0 CY |
1160 | |
1161 | #ifdef CONFIG_QUOTA | |
1162 | /* Names of quota files with journalled quota */ | |
1163 | char *s_qf_names[MAXQUOTAS]; | |
1164 | int s_jquota_fmt; /* Format of quota to use */ | |
1165 | #endif | |
39a53e0c JK |
1166 | }; |
1167 | ||
1ecc0c5c | 1168 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
55523519 CY |
1169 | #define f2fs_show_injection_info(type) \ |
1170 | printk("%sF2FS-fs : inject %s in %s of %pF\n", \ | |
1171 | KERN_INFO, fault_name[type], \ | |
1172 | __func__, __builtin_return_address(0)) | |
1ecc0c5c CY |
1173 | static inline bool time_to_inject(struct f2fs_sb_info *sbi, int type) |
1174 | { | |
1175 | struct f2fs_fault_info *ffi = &sbi->fault_info; | |
1176 | ||
1177 | if (!ffi->inject_rate) | |
1178 | return false; | |
1179 | ||
1180 | if (!IS_FAULT_SET(ffi, type)) | |
1181 | return false; | |
1182 | ||
1183 | atomic_inc(&ffi->inject_ops); | |
1184 | if (atomic_read(&ffi->inject_ops) >= ffi->inject_rate) { | |
1185 | atomic_set(&ffi->inject_ops, 0); | |
1ecc0c5c CY |
1186 | return true; |
1187 | } | |
1188 | return false; | |
1189 | } | |
1190 | #endif | |
1191 | ||
8f1dbbbb SL |
1192 | /* For write statistics. Suppose sector size is 512 bytes, |
1193 | * and the return value is in kbytes. s is of struct f2fs_sb_info. | |
1194 | */ | |
1195 | #define BD_PART_WRITTEN(s) \ | |
68afcf2d TK |
1196 | (((u64)part_stat_read((s)->sb->s_bdev->bd_part, sectors[1]) - \ |
1197 | (s)->sectors_written_start) >> 1) | |
8f1dbbbb | 1198 | |
6beceb54 JK |
1199 | static inline void f2fs_update_time(struct f2fs_sb_info *sbi, int type) |
1200 | { | |
1201 | sbi->last_time[type] = jiffies; | |
1202 | } | |
1203 | ||
1204 | static inline bool f2fs_time_over(struct f2fs_sb_info *sbi, int type) | |
1205 | { | |
1206 | struct timespec ts = {sbi->interval_time[type], 0}; | |
1207 | unsigned long interval = timespec_to_jiffies(&ts); | |
1208 | ||
1209 | return time_after(jiffies, sbi->last_time[type] + interval); | |
1210 | } | |
1211 | ||
d0239e1b JK |
1212 | static inline bool is_idle(struct f2fs_sb_info *sbi) |
1213 | { | |
1214 | struct block_device *bdev = sbi->sb->s_bdev; | |
1215 | struct request_queue *q = bdev_get_queue(bdev); | |
1216 | struct request_list *rl = &q->root_rl; | |
1217 | ||
1218 | if (rl->count[BLK_RW_SYNC] || rl->count[BLK_RW_ASYNC]) | |
1219 | return 0; | |
1220 | ||
1221 | return f2fs_time_over(sbi, REQ_TIME); | |
1222 | } | |
1223 | ||
39a53e0c JK |
1224 | /* |
1225 | * Inline functions | |
1226 | */ | |
43b6573b KM |
1227 | static inline u32 f2fs_crc32(struct f2fs_sb_info *sbi, const void *address, |
1228 | unsigned int length) | |
1229 | { | |
1230 | SHASH_DESC_ON_STACK(shash, sbi->s_chksum_driver); | |
1231 | u32 *ctx = (u32 *)shash_desc_ctx(shash); | |
d41519a6 | 1232 | u32 retval; |
43b6573b KM |
1233 | int err; |
1234 | ||
1235 | shash->tfm = sbi->s_chksum_driver; | |
1236 | shash->flags = 0; | |
1237 | *ctx = F2FS_SUPER_MAGIC; | |
1238 | ||
1239 | err = crypto_shash_update(shash, address, length); | |
1240 | BUG_ON(err); | |
1241 | ||
d41519a6 DM |
1242 | retval = *ctx; |
1243 | barrier_data(ctx); | |
1244 | return retval; | |
43b6573b KM |
1245 | } |
1246 | ||
1247 | static inline bool f2fs_crc_valid(struct f2fs_sb_info *sbi, __u32 blk_crc, | |
1248 | void *buf, size_t buf_size) | |
1249 | { | |
1250 | return f2fs_crc32(sbi, buf, buf_size) == blk_crc; | |
1251 | } | |
1252 | ||
704956ec CY |
1253 | static inline u32 f2fs_chksum(struct f2fs_sb_info *sbi, u32 crc, |
1254 | const void *address, unsigned int length) | |
1255 | { | |
1256 | struct { | |
1257 | struct shash_desc shash; | |
1258 | char ctx[4]; | |
1259 | } desc; | |
1260 | int err; | |
1261 | ||
1262 | BUG_ON(crypto_shash_descsize(sbi->s_chksum_driver) != sizeof(desc.ctx)); | |
1263 | ||
1264 | desc.shash.tfm = sbi->s_chksum_driver; | |
1265 | desc.shash.flags = 0; | |
1266 | *(u32 *)desc.ctx = crc; | |
1267 | ||
1268 | err = crypto_shash_update(&desc.shash, address, length); | |
1269 | BUG_ON(err); | |
1270 | ||
1271 | return *(u32 *)desc.ctx; | |
1272 | } | |
1273 | ||
39a53e0c JK |
1274 | static inline struct f2fs_inode_info *F2FS_I(struct inode *inode) |
1275 | { | |
1276 | return container_of(inode, struct f2fs_inode_info, vfs_inode); | |
1277 | } | |
1278 | ||
1279 | static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb) | |
1280 | { | |
1281 | return sb->s_fs_info; | |
1282 | } | |
1283 | ||
4081363f JK |
1284 | static inline struct f2fs_sb_info *F2FS_I_SB(struct inode *inode) |
1285 | { | |
1286 | return F2FS_SB(inode->i_sb); | |
1287 | } | |
1288 | ||
1289 | static inline struct f2fs_sb_info *F2FS_M_SB(struct address_space *mapping) | |
1290 | { | |
1291 | return F2FS_I_SB(mapping->host); | |
1292 | } | |
1293 | ||
1294 | static inline struct f2fs_sb_info *F2FS_P_SB(struct page *page) | |
1295 | { | |
1296 | return F2FS_M_SB(page->mapping); | |
1297 | } | |
1298 | ||
39a53e0c JK |
1299 | static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi) |
1300 | { | |
1301 | return (struct f2fs_super_block *)(sbi->raw_super); | |
1302 | } | |
1303 | ||
1304 | static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi) | |
1305 | { | |
1306 | return (struct f2fs_checkpoint *)(sbi->ckpt); | |
1307 | } | |
1308 | ||
45590710 GZ |
1309 | static inline struct f2fs_node *F2FS_NODE(struct page *page) |
1310 | { | |
1311 | return (struct f2fs_node *)page_address(page); | |
1312 | } | |
1313 | ||
58bfaf44 JK |
1314 | static inline struct f2fs_inode *F2FS_INODE(struct page *page) |
1315 | { | |
1316 | return &((struct f2fs_node *)page_address(page))->i; | |
1317 | } | |
1318 | ||
39a53e0c JK |
1319 | static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi) |
1320 | { | |
1321 | return (struct f2fs_nm_info *)(sbi->nm_info); | |
1322 | } | |
1323 | ||
1324 | static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi) | |
1325 | { | |
1326 | return (struct f2fs_sm_info *)(sbi->sm_info); | |
1327 | } | |
1328 | ||
1329 | static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi) | |
1330 | { | |
1331 | return (struct sit_info *)(SM_I(sbi)->sit_info); | |
1332 | } | |
1333 | ||
1334 | static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi) | |
1335 | { | |
1336 | return (struct free_segmap_info *)(SM_I(sbi)->free_info); | |
1337 | } | |
1338 | ||
1339 | static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi) | |
1340 | { | |
1341 | return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info); | |
1342 | } | |
1343 | ||
9df27d98 GZ |
1344 | static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi) |
1345 | { | |
1346 | return sbi->meta_inode->i_mapping; | |
1347 | } | |
1348 | ||
4ef51a8f JK |
1349 | static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi) |
1350 | { | |
1351 | return sbi->node_inode->i_mapping; | |
1352 | } | |
1353 | ||
caf0047e CY |
1354 | static inline bool is_sbi_flag_set(struct f2fs_sb_info *sbi, unsigned int type) |
1355 | { | |
fadb2fb8 | 1356 | return test_bit(type, &sbi->s_flag); |
caf0047e CY |
1357 | } |
1358 | ||
1359 | static inline void set_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type) | |
39a53e0c | 1360 | { |
fadb2fb8 | 1361 | set_bit(type, &sbi->s_flag); |
39a53e0c JK |
1362 | } |
1363 | ||
caf0047e | 1364 | static inline void clear_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type) |
39a53e0c | 1365 | { |
fadb2fb8 | 1366 | clear_bit(type, &sbi->s_flag); |
39a53e0c JK |
1367 | } |
1368 | ||
d71b5564 JK |
1369 | static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp) |
1370 | { | |
1371 | return le64_to_cpu(cp->checkpoint_ver); | |
1372 | } | |
1373 | ||
ced2c7ea KM |
1374 | static inline __u64 cur_cp_crc(struct f2fs_checkpoint *cp) |
1375 | { | |
1376 | size_t crc_offset = le32_to_cpu(cp->checksum_offset); | |
1377 | return le32_to_cpu(*((__le32 *)((unsigned char *)cp + crc_offset))); | |
1378 | } | |
1379 | ||
aaec2b1d | 1380 | static inline bool __is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f) |
25ca923b JK |
1381 | { |
1382 | unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags); | |
aaec2b1d | 1383 | |
25ca923b JK |
1384 | return ckpt_flags & f; |
1385 | } | |
1386 | ||
aaec2b1d | 1387 | static inline bool is_set_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f) |
25ca923b | 1388 | { |
aaec2b1d CY |
1389 | return __is_set_ckpt_flags(F2FS_CKPT(sbi), f); |
1390 | } | |
1391 | ||
1392 | static inline void __set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f) | |
1393 | { | |
1394 | unsigned int ckpt_flags; | |
1395 | ||
1396 | ckpt_flags = le32_to_cpu(cp->ckpt_flags); | |
25ca923b JK |
1397 | ckpt_flags |= f; |
1398 | cp->ckpt_flags = cpu_to_le32(ckpt_flags); | |
1399 | } | |
1400 | ||
aaec2b1d | 1401 | static inline void set_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f) |
25ca923b | 1402 | { |
d1aa2453 CY |
1403 | unsigned long flags; |
1404 | ||
1405 | spin_lock_irqsave(&sbi->cp_lock, flags); | |
aaec2b1d | 1406 | __set_ckpt_flags(F2FS_CKPT(sbi), f); |
d1aa2453 | 1407 | spin_unlock_irqrestore(&sbi->cp_lock, flags); |
aaec2b1d CY |
1408 | } |
1409 | ||
1410 | static inline void __clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f) | |
1411 | { | |
1412 | unsigned int ckpt_flags; | |
1413 | ||
1414 | ckpt_flags = le32_to_cpu(cp->ckpt_flags); | |
25ca923b JK |
1415 | ckpt_flags &= (~f); |
1416 | cp->ckpt_flags = cpu_to_le32(ckpt_flags); | |
1417 | } | |
1418 | ||
aaec2b1d CY |
1419 | static inline void clear_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f) |
1420 | { | |
d1aa2453 CY |
1421 | unsigned long flags; |
1422 | ||
1423 | spin_lock_irqsave(&sbi->cp_lock, flags); | |
aaec2b1d | 1424 | __clear_ckpt_flags(F2FS_CKPT(sbi), f); |
d1aa2453 | 1425 | spin_unlock_irqrestore(&sbi->cp_lock, flags); |
aaec2b1d CY |
1426 | } |
1427 | ||
22ad0b6a JK |
1428 | static inline void disable_nat_bits(struct f2fs_sb_info *sbi, bool lock) |
1429 | { | |
d1aa2453 CY |
1430 | unsigned long flags; |
1431 | ||
22ad0b6a JK |
1432 | set_sbi_flag(sbi, SBI_NEED_FSCK); |
1433 | ||
1434 | if (lock) | |
d1aa2453 | 1435 | spin_lock_irqsave(&sbi->cp_lock, flags); |
22ad0b6a JK |
1436 | __clear_ckpt_flags(F2FS_CKPT(sbi), CP_NAT_BITS_FLAG); |
1437 | kfree(NM_I(sbi)->nat_bits); | |
1438 | NM_I(sbi)->nat_bits = NULL; | |
1439 | if (lock) | |
d1aa2453 | 1440 | spin_unlock_irqrestore(&sbi->cp_lock, flags); |
22ad0b6a JK |
1441 | } |
1442 | ||
1443 | static inline bool enabled_nat_bits(struct f2fs_sb_info *sbi, | |
1444 | struct cp_control *cpc) | |
1445 | { | |
1446 | bool set = is_set_ckpt_flags(sbi, CP_NAT_BITS_FLAG); | |
1447 | ||
c473f1a9 | 1448 | return (cpc) ? (cpc->reason & CP_UMOUNT) && set : set; |
22ad0b6a JK |
1449 | } |
1450 | ||
e479556b | 1451 | static inline void f2fs_lock_op(struct f2fs_sb_info *sbi) |
39936837 | 1452 | { |
b873b798 | 1453 | down_read(&sbi->cp_rwsem); |
39936837 JK |
1454 | } |
1455 | ||
cc15620b JK |
1456 | static inline int f2fs_trylock_op(struct f2fs_sb_info *sbi) |
1457 | { | |
1458 | return down_read_trylock(&sbi->cp_rwsem); | |
1459 | } | |
1460 | ||
e479556b | 1461 | static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi) |
39a53e0c | 1462 | { |
b873b798 | 1463 | up_read(&sbi->cp_rwsem); |
39a53e0c JK |
1464 | } |
1465 | ||
e479556b | 1466 | static inline void f2fs_lock_all(struct f2fs_sb_info *sbi) |
39a53e0c | 1467 | { |
b873b798 | 1468 | down_write(&sbi->cp_rwsem); |
39936837 JK |
1469 | } |
1470 | ||
e479556b | 1471 | static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi) |
39936837 | 1472 | { |
b873b798 | 1473 | up_write(&sbi->cp_rwsem); |
39a53e0c JK |
1474 | } |
1475 | ||
119ee914 JK |
1476 | static inline int __get_cp_reason(struct f2fs_sb_info *sbi) |
1477 | { | |
1478 | int reason = CP_SYNC; | |
1479 | ||
1480 | if (test_opt(sbi, FASTBOOT)) | |
1481 | reason = CP_FASTBOOT; | |
1482 | if (is_sbi_flag_set(sbi, SBI_IS_CLOSE)) | |
1483 | reason = CP_UMOUNT; | |
1484 | return reason; | |
1485 | } | |
1486 | ||
1487 | static inline bool __remain_node_summaries(int reason) | |
1488 | { | |
c473f1a9 | 1489 | return (reason & (CP_UMOUNT | CP_FASTBOOT)); |
119ee914 JK |
1490 | } |
1491 | ||
1492 | static inline bool __exist_node_summaries(struct f2fs_sb_info *sbi) | |
1493 | { | |
aaec2b1d CY |
1494 | return (is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG) || |
1495 | is_set_ckpt_flags(sbi, CP_FASTBOOT_FLAG)); | |
119ee914 JK |
1496 | } |
1497 | ||
39a53e0c JK |
1498 | /* |
1499 | * Check whether the given nid is within node id range. | |
1500 | */ | |
064e0823 | 1501 | static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid) |
39a53e0c | 1502 | { |
d6b7d4b3 CY |
1503 | if (unlikely(nid < F2FS_ROOT_INO(sbi))) |
1504 | return -EINVAL; | |
cfb271d4 | 1505 | if (unlikely(nid >= NM_I(sbi)->max_nid)) |
064e0823 NJ |
1506 | return -EINVAL; |
1507 | return 0; | |
39a53e0c JK |
1508 | } |
1509 | ||
39a53e0c JK |
1510 | /* |
1511 | * Check whether the inode has blocks or not | |
1512 | */ | |
1513 | static inline int F2FS_HAS_BLOCKS(struct inode *inode) | |
1514 | { | |
0eb0adad CY |
1515 | block_t xattr_block = F2FS_I(inode)->i_xattr_nid ? 1 : 0; |
1516 | ||
000519f2 | 1517 | return (inode->i_blocks >> F2FS_LOG_SECTORS_PER_BLOCK) > xattr_block; |
39a53e0c JK |
1518 | } |
1519 | ||
4bc8e9bc CY |
1520 | static inline bool f2fs_has_xattr_block(unsigned int ofs) |
1521 | { | |
1522 | return ofs == XATTR_NODE_OFFSET; | |
1523 | } | |
1524 | ||
0abd675e CY |
1525 | static inline void f2fs_i_blocks_write(struct inode *, block_t, bool, bool); |
1526 | static inline int inc_valid_block_count(struct f2fs_sb_info *sbi, | |
46008c6d | 1527 | struct inode *inode, blkcnt_t *count) |
39a53e0c | 1528 | { |
0abd675e | 1529 | blkcnt_t diff = 0, release = 0; |
daeb433e | 1530 | block_t avail_user_block_count; |
0abd675e CY |
1531 | int ret; |
1532 | ||
1533 | ret = dquot_reserve_block(inode, *count); | |
1534 | if (ret) | |
1535 | return ret; | |
39a53e0c | 1536 | |
cb78942b | 1537 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
55523519 CY |
1538 | if (time_to_inject(sbi, FAULT_BLOCK)) { |
1539 | f2fs_show_injection_info(FAULT_BLOCK); | |
0abd675e CY |
1540 | release = *count; |
1541 | goto enospc; | |
55523519 | 1542 | } |
cb78942b | 1543 | #endif |
dd11a5df JK |
1544 | /* |
1545 | * let's increase this in prior to actual block count change in order | |
1546 | * for f2fs_sync_file to avoid data races when deciding checkpoint. | |
1547 | */ | |
1548 | percpu_counter_add(&sbi->alloc_valid_block_count, (*count)); | |
1549 | ||
2555a2d5 JK |
1550 | spin_lock(&sbi->stat_lock); |
1551 | sbi->total_valid_block_count += (block_t)(*count); | |
daeb433e CY |
1552 | avail_user_block_count = sbi->user_block_count - sbi->reserved_blocks; |
1553 | if (unlikely(sbi->total_valid_block_count > avail_user_block_count)) { | |
1554 | diff = sbi->total_valid_block_count - avail_user_block_count; | |
dd11a5df | 1555 | *count -= diff; |
0abd675e | 1556 | release = diff; |
daeb433e | 1557 | sbi->total_valid_block_count = avail_user_block_count; |
46008c6d CY |
1558 | if (!*count) { |
1559 | spin_unlock(&sbi->stat_lock); | |
dd11a5df | 1560 | percpu_counter_sub(&sbi->alloc_valid_block_count, diff); |
0abd675e | 1561 | goto enospc; |
46008c6d | 1562 | } |
39a53e0c | 1563 | } |
39a53e0c | 1564 | spin_unlock(&sbi->stat_lock); |
41382ec4 | 1565 | |
0abd675e CY |
1566 | if (release) |
1567 | dquot_release_reservation_block(inode, release); | |
1568 | f2fs_i_blocks_write(inode, *count, true, true); | |
1569 | return 0; | |
1570 | ||
1571 | enospc: | |
1572 | dquot_release_reservation_block(inode, release); | |
1573 | return -ENOSPC; | |
39a53e0c JK |
1574 | } |
1575 | ||
da19b0dc | 1576 | static inline void dec_valid_block_count(struct f2fs_sb_info *sbi, |
39a53e0c | 1577 | struct inode *inode, |
0eb0adad | 1578 | block_t count) |
39a53e0c | 1579 | { |
0eb0adad CY |
1580 | blkcnt_t sectors = count << F2FS_LOG_SECTORS_PER_BLOCK; |
1581 | ||
39a53e0c | 1582 | spin_lock(&sbi->stat_lock); |
9850cf4a | 1583 | f2fs_bug_on(sbi, sbi->total_valid_block_count < (block_t) count); |
0eb0adad | 1584 | f2fs_bug_on(sbi, inode->i_blocks < sectors); |
39a53e0c JK |
1585 | sbi->total_valid_block_count -= (block_t)count; |
1586 | spin_unlock(&sbi->stat_lock); | |
0abd675e | 1587 | f2fs_i_blocks_write(inode, count, false, true); |
39a53e0c JK |
1588 | } |
1589 | ||
1590 | static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type) | |
1591 | { | |
35782b23 | 1592 | atomic_inc(&sbi->nr_pages[count_type]); |
7c4abcbe | 1593 | |
36951b38 CY |
1594 | if (count_type == F2FS_DIRTY_DATA || count_type == F2FS_INMEM_PAGES || |
1595 | count_type == F2FS_WB_CP_DATA || count_type == F2FS_WB_DATA) | |
7c4abcbe CY |
1596 | return; |
1597 | ||
caf0047e | 1598 | set_sbi_flag(sbi, SBI_IS_DIRTY); |
39a53e0c JK |
1599 | } |
1600 | ||
a7ffdbe2 | 1601 | static inline void inode_inc_dirty_pages(struct inode *inode) |
39a53e0c | 1602 | { |
204706c7 | 1603 | atomic_inc(&F2FS_I(inode)->dirty_pages); |
c227f912 CY |
1604 | inc_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ? |
1605 | F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA); | |
39a53e0c JK |
1606 | } |
1607 | ||
1608 | static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type) | |
1609 | { | |
35782b23 | 1610 | atomic_dec(&sbi->nr_pages[count_type]); |
39a53e0c JK |
1611 | } |
1612 | ||
a7ffdbe2 | 1613 | static inline void inode_dec_dirty_pages(struct inode *inode) |
39a53e0c | 1614 | { |
5ac9f36f CY |
1615 | if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) && |
1616 | !S_ISLNK(inode->i_mode)) | |
1fe54f9d JK |
1617 | return; |
1618 | ||
204706c7 | 1619 | atomic_dec(&F2FS_I(inode)->dirty_pages); |
c227f912 CY |
1620 | dec_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ? |
1621 | F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA); | |
39a53e0c JK |
1622 | } |
1623 | ||
523be8a6 | 1624 | static inline s64 get_pages(struct f2fs_sb_info *sbi, int count_type) |
39a53e0c | 1625 | { |
35782b23 | 1626 | return atomic_read(&sbi->nr_pages[count_type]); |
39a53e0c JK |
1627 | } |
1628 | ||
204706c7 | 1629 | static inline int get_dirty_pages(struct inode *inode) |
f8b2c1f9 | 1630 | { |
204706c7 | 1631 | return atomic_read(&F2FS_I(inode)->dirty_pages); |
f8b2c1f9 JK |
1632 | } |
1633 | ||
5ac206cf NJ |
1634 | static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type) |
1635 | { | |
3519e3f9 | 1636 | unsigned int pages_per_sec = sbi->segs_per_sec * sbi->blocks_per_seg; |
523be8a6 JK |
1637 | unsigned int segs = (get_pages(sbi, block_type) + pages_per_sec - 1) >> |
1638 | sbi->log_blocks_per_seg; | |
1639 | ||
1640 | return segs / sbi->segs_per_sec; | |
5ac206cf NJ |
1641 | } |
1642 | ||
39a53e0c JK |
1643 | static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi) |
1644 | { | |
8b8343fa | 1645 | return sbi->total_valid_block_count; |
39a53e0c JK |
1646 | } |
1647 | ||
f83a2584 YH |
1648 | static inline block_t discard_blocks(struct f2fs_sb_info *sbi) |
1649 | { | |
1650 | return sbi->discard_blks; | |
1651 | } | |
1652 | ||
39a53e0c JK |
1653 | static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag) |
1654 | { | |
1655 | struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); | |
1656 | ||
1657 | /* return NAT or SIT bitmap */ | |
1658 | if (flag == NAT_BITMAP) | |
1659 | return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize); | |
1660 | else if (flag == SIT_BITMAP) | |
1661 | return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize); | |
1662 | ||
1663 | return 0; | |
1664 | } | |
1665 | ||
55141486 WL |
1666 | static inline block_t __cp_payload(struct f2fs_sb_info *sbi) |
1667 | { | |
1668 | return le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload); | |
1669 | } | |
1670 | ||
39a53e0c JK |
1671 | static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag) |
1672 | { | |
1673 | struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); | |
1dbe4152 CL |
1674 | int offset; |
1675 | ||
55141486 | 1676 | if (__cp_payload(sbi) > 0) { |
1dbe4152 CL |
1677 | if (flag == NAT_BITMAP) |
1678 | return &ckpt->sit_nat_version_bitmap; | |
1679 | else | |
65b85ccc | 1680 | return (unsigned char *)ckpt + F2FS_BLKSIZE; |
1dbe4152 CL |
1681 | } else { |
1682 | offset = (flag == NAT_BITMAP) ? | |
25ca923b | 1683 | le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0; |
1dbe4152 CL |
1684 | return &ckpt->sit_nat_version_bitmap + offset; |
1685 | } | |
39a53e0c JK |
1686 | } |
1687 | ||
1688 | static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi) | |
1689 | { | |
8508e44a | 1690 | block_t start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr); |
39a53e0c | 1691 | |
8508e44a | 1692 | if (sbi->cur_cp_pack == 2) |
39a53e0c | 1693 | start_addr += sbi->blocks_per_seg; |
8508e44a JK |
1694 | return start_addr; |
1695 | } | |
39a53e0c | 1696 | |
8508e44a JK |
1697 | static inline block_t __start_cp_next_addr(struct f2fs_sb_info *sbi) |
1698 | { | |
1699 | block_t start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr); | |
39a53e0c | 1700 | |
8508e44a JK |
1701 | if (sbi->cur_cp_pack == 1) |
1702 | start_addr += sbi->blocks_per_seg; | |
39a53e0c JK |
1703 | return start_addr; |
1704 | } | |
1705 | ||
8508e44a JK |
1706 | static inline void __set_cp_next_pack(struct f2fs_sb_info *sbi) |
1707 | { | |
1708 | sbi->cur_cp_pack = (sbi->cur_cp_pack == 1) ? 2 : 1; | |
1709 | } | |
1710 | ||
39a53e0c JK |
1711 | static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi) |
1712 | { | |
1713 | return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum); | |
1714 | } | |
1715 | ||
0abd675e | 1716 | static inline int inc_valid_node_count(struct f2fs_sb_info *sbi, |
000519f2 | 1717 | struct inode *inode, bool is_inode) |
39a53e0c JK |
1718 | { |
1719 | block_t valid_block_count; | |
1720 | unsigned int valid_node_count; | |
0abd675e CY |
1721 | bool quota = inode && !is_inode; |
1722 | ||
1723 | if (quota) { | |
1724 | int ret = dquot_reserve_block(inode, 1); | |
1725 | if (ret) | |
1726 | return ret; | |
1727 | } | |
39a53e0c JK |
1728 | |
1729 | spin_lock(&sbi->stat_lock); | |
1730 | ||
ef86d709 | 1731 | valid_block_count = sbi->total_valid_block_count + 1; |
daeb433e CY |
1732 | if (unlikely(valid_block_count + sbi->reserved_blocks > |
1733 | sbi->user_block_count)) { | |
39a53e0c | 1734 | spin_unlock(&sbi->stat_lock); |
0abd675e | 1735 | goto enospc; |
39a53e0c JK |
1736 | } |
1737 | ||
ef86d709 | 1738 | valid_node_count = sbi->total_valid_node_count + 1; |
cfb271d4 | 1739 | if (unlikely(valid_node_count > sbi->total_node_count)) { |
39a53e0c | 1740 | spin_unlock(&sbi->stat_lock); |
0abd675e | 1741 | goto enospc; |
39a53e0c JK |
1742 | } |
1743 | ||
ef86d709 GZ |
1744 | sbi->total_valid_node_count++; |
1745 | sbi->total_valid_block_count++; | |
39a53e0c JK |
1746 | spin_unlock(&sbi->stat_lock); |
1747 | ||
000519f2 CY |
1748 | if (inode) { |
1749 | if (is_inode) | |
1750 | f2fs_mark_inode_dirty_sync(inode, true); | |
1751 | else | |
0abd675e | 1752 | f2fs_i_blocks_write(inode, 1, true, true); |
000519f2 | 1753 | } |
ef86d709 | 1754 | |
41382ec4 | 1755 | percpu_counter_inc(&sbi->alloc_valid_block_count); |
0abd675e CY |
1756 | return 0; |
1757 | ||
1758 | enospc: | |
1759 | if (quota) | |
1760 | dquot_release_reservation_block(inode, 1); | |
1761 | return -ENOSPC; | |
39a53e0c JK |
1762 | } |
1763 | ||
1764 | static inline void dec_valid_node_count(struct f2fs_sb_info *sbi, | |
000519f2 | 1765 | struct inode *inode, bool is_inode) |
39a53e0c JK |
1766 | { |
1767 | spin_lock(&sbi->stat_lock); | |
1768 | ||
9850cf4a JK |
1769 | f2fs_bug_on(sbi, !sbi->total_valid_block_count); |
1770 | f2fs_bug_on(sbi, !sbi->total_valid_node_count); | |
000519f2 | 1771 | f2fs_bug_on(sbi, !is_inode && !inode->i_blocks); |
39a53e0c | 1772 | |
ef86d709 GZ |
1773 | sbi->total_valid_node_count--; |
1774 | sbi->total_valid_block_count--; | |
39a53e0c JK |
1775 | |
1776 | spin_unlock(&sbi->stat_lock); | |
0abd675e CY |
1777 | |
1778 | if (!is_inode) | |
1779 | f2fs_i_blocks_write(inode, 1, false, true); | |
39a53e0c JK |
1780 | } |
1781 | ||
1782 | static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi) | |
1783 | { | |
8b8343fa | 1784 | return sbi->total_valid_node_count; |
39a53e0c JK |
1785 | } |
1786 | ||
1787 | static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi) | |
1788 | { | |
513c5f37 | 1789 | percpu_counter_inc(&sbi->total_valid_inode_count); |
39a53e0c JK |
1790 | } |
1791 | ||
0e80220a | 1792 | static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi) |
39a53e0c | 1793 | { |
513c5f37 | 1794 | percpu_counter_dec(&sbi->total_valid_inode_count); |
39a53e0c JK |
1795 | } |
1796 | ||
513c5f37 | 1797 | static inline s64 valid_inode_count(struct f2fs_sb_info *sbi) |
39a53e0c | 1798 | { |
513c5f37 | 1799 | return percpu_counter_sum_positive(&sbi->total_valid_inode_count); |
39a53e0c JK |
1800 | } |
1801 | ||
a56c7c6f JK |
1802 | static inline struct page *f2fs_grab_cache_page(struct address_space *mapping, |
1803 | pgoff_t index, bool for_write) | |
1804 | { | |
c41f3cc3 JK |
1805 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
1806 | struct page *page = find_lock_page(mapping, index); | |
cac5a3d8 | 1807 | |
c41f3cc3 JK |
1808 | if (page) |
1809 | return page; | |
1810 | ||
55523519 CY |
1811 | if (time_to_inject(F2FS_M_SB(mapping), FAULT_PAGE_ALLOC)) { |
1812 | f2fs_show_injection_info(FAULT_PAGE_ALLOC); | |
c41f3cc3 | 1813 | return NULL; |
55523519 | 1814 | } |
c41f3cc3 | 1815 | #endif |
a56c7c6f JK |
1816 | if (!for_write) |
1817 | return grab_cache_page(mapping, index); | |
1818 | return grab_cache_page_write_begin(mapping, index, AOP_FLAG_NOFS); | |
1819 | } | |
1820 | ||
6e2c64ad JK |
1821 | static inline void f2fs_copy_page(struct page *src, struct page *dst) |
1822 | { | |
1823 | char *src_kaddr = kmap(src); | |
1824 | char *dst_kaddr = kmap(dst); | |
1825 | ||
1826 | memcpy(dst_kaddr, src_kaddr, PAGE_SIZE); | |
1827 | kunmap(dst); | |
1828 | kunmap(src); | |
1829 | } | |
1830 | ||
39a53e0c JK |
1831 | static inline void f2fs_put_page(struct page *page, int unlock) |
1832 | { | |
031fa8cc | 1833 | if (!page) |
39a53e0c JK |
1834 | return; |
1835 | ||
1836 | if (unlock) { | |
9850cf4a | 1837 | f2fs_bug_on(F2FS_P_SB(page), !PageLocked(page)); |
39a53e0c JK |
1838 | unlock_page(page); |
1839 | } | |
09cbfeaf | 1840 | put_page(page); |
39a53e0c JK |
1841 | } |
1842 | ||
1843 | static inline void f2fs_put_dnode(struct dnode_of_data *dn) | |
1844 | { | |
1845 | if (dn->node_page) | |
1846 | f2fs_put_page(dn->node_page, 1); | |
1847 | if (dn->inode_page && dn->node_page != dn->inode_page) | |
1848 | f2fs_put_page(dn->inode_page, 0); | |
1849 | dn->node_page = NULL; | |
1850 | dn->inode_page = NULL; | |
1851 | } | |
1852 | ||
1853 | static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name, | |
e8512d2e | 1854 | size_t size) |
39a53e0c | 1855 | { |
e8512d2e | 1856 | return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL); |
39a53e0c JK |
1857 | } |
1858 | ||
7bd59381 GZ |
1859 | static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep, |
1860 | gfp_t flags) | |
1861 | { | |
1862 | void *entry; | |
7bd59381 | 1863 | |
80c54505 JK |
1864 | entry = kmem_cache_alloc(cachep, flags); |
1865 | if (!entry) | |
1866 | entry = kmem_cache_alloc(cachep, flags | __GFP_NOFAIL); | |
7bd59381 GZ |
1867 | return entry; |
1868 | } | |
1869 | ||
740432f8 JK |
1870 | static inline struct bio *f2fs_bio_alloc(int npages) |
1871 | { | |
1872 | struct bio *bio; | |
1873 | ||
1874 | /* No failure on bio allocation */ | |
740432f8 | 1875 | bio = bio_alloc(GFP_NOIO, npages); |
80c54505 JK |
1876 | if (!bio) |
1877 | bio = bio_alloc(GFP_NOIO | __GFP_NOFAIL, npages); | |
740432f8 JK |
1878 | return bio; |
1879 | } | |
1880 | ||
9be32d72 JK |
1881 | static inline void f2fs_radix_tree_insert(struct radix_tree_root *root, |
1882 | unsigned long index, void *item) | |
1883 | { | |
1884 | while (radix_tree_insert(root, index, item)) | |
1885 | cond_resched(); | |
1886 | } | |
1887 | ||
39a53e0c JK |
1888 | #define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino) |
1889 | ||
1890 | static inline bool IS_INODE(struct page *page) | |
1891 | { | |
45590710 | 1892 | struct f2fs_node *p = F2FS_NODE(page); |
cac5a3d8 | 1893 | |
39a53e0c JK |
1894 | return RAW_IS_INODE(p); |
1895 | } | |
1896 | ||
7a2af766 CY |
1897 | static inline int offset_in_addr(struct f2fs_inode *i) |
1898 | { | |
1899 | return (i->i_inline & F2FS_EXTRA_ATTR) ? | |
1900 | (le16_to_cpu(i->i_extra_isize) / sizeof(__le32)) : 0; | |
1901 | } | |
1902 | ||
39a53e0c JK |
1903 | static inline __le32 *blkaddr_in_node(struct f2fs_node *node) |
1904 | { | |
1905 | return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr; | |
1906 | } | |
1907 | ||
7a2af766 CY |
1908 | static inline int f2fs_has_extra_attr(struct inode *inode); |
1909 | static inline block_t datablock_addr(struct inode *inode, | |
1910 | struct page *node_page, unsigned int offset) | |
39a53e0c JK |
1911 | { |
1912 | struct f2fs_node *raw_node; | |
1913 | __le32 *addr_array; | |
7a2af766 CY |
1914 | int base = 0; |
1915 | bool is_inode = IS_INODE(node_page); | |
cac5a3d8 | 1916 | |
45590710 | 1917 | raw_node = F2FS_NODE(node_page); |
7a2af766 CY |
1918 | |
1919 | /* from GC path only */ | |
1920 | if (!inode) { | |
1921 | if (is_inode) | |
1922 | base = offset_in_addr(&raw_node->i); | |
1923 | } else if (f2fs_has_extra_attr(inode) && is_inode) { | |
1924 | base = get_extra_isize(inode); | |
1925 | } | |
1926 | ||
39a53e0c | 1927 | addr_array = blkaddr_in_node(raw_node); |
7a2af766 | 1928 | return le32_to_cpu(addr_array[base + offset]); |
39a53e0c JK |
1929 | } |
1930 | ||
1931 | static inline int f2fs_test_bit(unsigned int nr, char *addr) | |
1932 | { | |
1933 | int mask; | |
1934 | ||
1935 | addr += (nr >> 3); | |
1936 | mask = 1 << (7 - (nr & 0x07)); | |
1937 | return mask & *addr; | |
1938 | } | |
1939 | ||
a66cdd98 JK |
1940 | static inline void f2fs_set_bit(unsigned int nr, char *addr) |
1941 | { | |
1942 | int mask; | |
1943 | ||
1944 | addr += (nr >> 3); | |
1945 | mask = 1 << (7 - (nr & 0x07)); | |
1946 | *addr |= mask; | |
1947 | } | |
1948 | ||
1949 | static inline void f2fs_clear_bit(unsigned int nr, char *addr) | |
1950 | { | |
1951 | int mask; | |
1952 | ||
1953 | addr += (nr >> 3); | |
1954 | mask = 1 << (7 - (nr & 0x07)); | |
1955 | *addr &= ~mask; | |
1956 | } | |
1957 | ||
52aca074 | 1958 | static inline int f2fs_test_and_set_bit(unsigned int nr, char *addr) |
39a53e0c JK |
1959 | { |
1960 | int mask; | |
1961 | int ret; | |
1962 | ||
1963 | addr += (nr >> 3); | |
1964 | mask = 1 << (7 - (nr & 0x07)); | |
1965 | ret = mask & *addr; | |
1966 | *addr |= mask; | |
1967 | return ret; | |
1968 | } | |
1969 | ||
52aca074 | 1970 | static inline int f2fs_test_and_clear_bit(unsigned int nr, char *addr) |
39a53e0c JK |
1971 | { |
1972 | int mask; | |
1973 | int ret; | |
1974 | ||
1975 | addr += (nr >> 3); | |
1976 | mask = 1 << (7 - (nr & 0x07)); | |
1977 | ret = mask & *addr; | |
1978 | *addr &= ~mask; | |
1979 | return ret; | |
1980 | } | |
1981 | ||
c6ac4c0e GZ |
1982 | static inline void f2fs_change_bit(unsigned int nr, char *addr) |
1983 | { | |
1984 | int mask; | |
1985 | ||
1986 | addr += (nr >> 3); | |
1987 | mask = 1 << (7 - (nr & 0x07)); | |
1988 | *addr ^= mask; | |
1989 | } | |
1990 | ||
5c57132e CY |
1991 | #define F2FS_REG_FLMASK (~(FS_DIRSYNC_FL | FS_TOPDIR_FL)) |
1992 | #define F2FS_OTHER_FLMASK (FS_NODUMP_FL | FS_NOATIME_FL) | |
1993 | #define F2FS_FL_INHERITED (FS_PROJINHERIT_FL) | |
1994 | ||
1995 | static inline __u32 f2fs_mask_flags(umode_t mode, __u32 flags) | |
1996 | { | |
1997 | if (S_ISDIR(mode)) | |
1998 | return flags; | |
1999 | else if (S_ISREG(mode)) | |
2000 | return flags & F2FS_REG_FLMASK; | |
2001 | else | |
2002 | return flags & F2FS_OTHER_FLMASK; | |
2003 | } | |
2004 | ||
39a53e0c JK |
2005 | /* used for f2fs_inode_info->flags */ |
2006 | enum { | |
2007 | FI_NEW_INODE, /* indicate newly allocated inode */ | |
b3783873 | 2008 | FI_DIRTY_INODE, /* indicate inode is dirty or not */ |
26de9b11 | 2009 | FI_AUTO_RECOVER, /* indicate inode is recoverable */ |
ed57c27f | 2010 | FI_DIRTY_DIR, /* indicate directory has dirty pages */ |
39a53e0c JK |
2011 | FI_INC_LINK, /* need to increment i_nlink */ |
2012 | FI_ACL_MODE, /* indicate acl mode */ | |
2013 | FI_NO_ALLOC, /* should not allocate any blocks */ | |
c9b63bd0 | 2014 | FI_FREE_NID, /* free allocated nide */ |
c11abd1a | 2015 | FI_NO_EXTENT, /* not to use the extent cache */ |
444c580f | 2016 | FI_INLINE_XATTR, /* used for inline xattr */ |
1001b347 | 2017 | FI_INLINE_DATA, /* used for inline data*/ |
34d67deb | 2018 | FI_INLINE_DENTRY, /* used for inline dentry */ |
fff04f90 JK |
2019 | FI_APPEND_WRITE, /* inode has appended data */ |
2020 | FI_UPDATE_WRITE, /* inode has in-place-update data */ | |
88b88a66 JK |
2021 | FI_NEED_IPU, /* used for ipu per file */ |
2022 | FI_ATOMIC_FILE, /* indicate atomic file */ | |
5fe45743 | 2023 | FI_ATOMIC_COMMIT, /* indicate the state of atomical committing */ |
02a1335f | 2024 | FI_VOLATILE_FILE, /* indicate volatile file */ |
3c6c2beb | 2025 | FI_FIRST_BLOCK_WRITTEN, /* indicate #0 data block was written */ |
1e84371f | 2026 | FI_DROP_CACHE, /* drop dirty page cache */ |
b3d208f9 | 2027 | FI_DATA_EXIST, /* indicate data exists */ |
510022a8 | 2028 | FI_INLINE_DOTS, /* indicate inline dot dentries */ |
d323d005 | 2029 | FI_DO_DEFRAG, /* indicate defragment is running */ |
c227f912 | 2030 | FI_DIRTY_FILE, /* indicate regular/symlink has dirty pages */ |
dc91de78 | 2031 | FI_NO_PREALLOC, /* indicate skipped preallocated blocks */ |
ef095d19 | 2032 | FI_HOT_DATA, /* indicate file is hot */ |
7a2af766 | 2033 | FI_EXTRA_ATTR, /* indicate file has extra attribute */ |
5c57132e | 2034 | FI_PROJ_INHERIT, /* indicate file inherits projectid */ |
39a53e0c JK |
2035 | }; |
2036 | ||
205b9822 JK |
2037 | static inline void __mark_inode_dirty_flag(struct inode *inode, |
2038 | int flag, bool set) | |
2039 | { | |
2040 | switch (flag) { | |
2041 | case FI_INLINE_XATTR: | |
2042 | case FI_INLINE_DATA: | |
2043 | case FI_INLINE_DENTRY: | |
2044 | if (set) | |
2045 | return; | |
2046 | case FI_DATA_EXIST: | |
2047 | case FI_INLINE_DOTS: | |
7c45729a | 2048 | f2fs_mark_inode_dirty_sync(inode, true); |
205b9822 JK |
2049 | } |
2050 | } | |
2051 | ||
91942321 | 2052 | static inline void set_inode_flag(struct inode *inode, int flag) |
39a53e0c | 2053 | { |
91942321 JK |
2054 | if (!test_bit(flag, &F2FS_I(inode)->flags)) |
2055 | set_bit(flag, &F2FS_I(inode)->flags); | |
205b9822 | 2056 | __mark_inode_dirty_flag(inode, flag, true); |
39a53e0c JK |
2057 | } |
2058 | ||
91942321 | 2059 | static inline int is_inode_flag_set(struct inode *inode, int flag) |
39a53e0c | 2060 | { |
91942321 | 2061 | return test_bit(flag, &F2FS_I(inode)->flags); |
39a53e0c JK |
2062 | } |
2063 | ||
91942321 | 2064 | static inline void clear_inode_flag(struct inode *inode, int flag) |
39a53e0c | 2065 | { |
91942321 JK |
2066 | if (test_bit(flag, &F2FS_I(inode)->flags)) |
2067 | clear_bit(flag, &F2FS_I(inode)->flags); | |
205b9822 | 2068 | __mark_inode_dirty_flag(inode, flag, false); |
39a53e0c JK |
2069 | } |
2070 | ||
91942321 | 2071 | static inline void set_acl_inode(struct inode *inode, umode_t mode) |
39a53e0c | 2072 | { |
91942321 JK |
2073 | F2FS_I(inode)->i_acl_mode = mode; |
2074 | set_inode_flag(inode, FI_ACL_MODE); | |
7c45729a | 2075 | f2fs_mark_inode_dirty_sync(inode, false); |
39a53e0c JK |
2076 | } |
2077 | ||
a1961246 | 2078 | static inline void f2fs_i_links_write(struct inode *inode, bool inc) |
39a53e0c | 2079 | { |
a1961246 JK |
2080 | if (inc) |
2081 | inc_nlink(inode); | |
2082 | else | |
2083 | drop_nlink(inode); | |
7c45729a | 2084 | f2fs_mark_inode_dirty_sync(inode, true); |
a1961246 JK |
2085 | } |
2086 | ||
8edd03c8 | 2087 | static inline void f2fs_i_blocks_write(struct inode *inode, |
0abd675e | 2088 | block_t diff, bool add, bool claim) |
8edd03c8 | 2089 | { |
26de9b11 JK |
2090 | bool clean = !is_inode_flag_set(inode, FI_DIRTY_INODE); |
2091 | bool recover = is_inode_flag_set(inode, FI_AUTO_RECOVER); | |
2092 | ||
0abd675e CY |
2093 | /* add = 1, claim = 1 should be dquot_reserve_block in pair */ |
2094 | if (add) { | |
2095 | if (claim) | |
2096 | dquot_claim_block(inode, diff); | |
2097 | else | |
2098 | dquot_alloc_block_nofail(inode, diff); | |
2099 | } else { | |
2100 | dquot_free_block(inode, diff); | |
2101 | } | |
2102 | ||
7c45729a | 2103 | f2fs_mark_inode_dirty_sync(inode, true); |
26de9b11 JK |
2104 | if (clean || recover) |
2105 | set_inode_flag(inode, FI_AUTO_RECOVER); | |
8edd03c8 JK |
2106 | } |
2107 | ||
fc9581c8 JK |
2108 | static inline void f2fs_i_size_write(struct inode *inode, loff_t i_size) |
2109 | { | |
26de9b11 JK |
2110 | bool clean = !is_inode_flag_set(inode, FI_DIRTY_INODE); |
2111 | bool recover = is_inode_flag_set(inode, FI_AUTO_RECOVER); | |
2112 | ||
fc9581c8 JK |
2113 | if (i_size_read(inode) == i_size) |
2114 | return; | |
2115 | ||
2116 | i_size_write(inode, i_size); | |
7c45729a | 2117 | f2fs_mark_inode_dirty_sync(inode, true); |
26de9b11 JK |
2118 | if (clean || recover) |
2119 | set_inode_flag(inode, FI_AUTO_RECOVER); | |
39a53e0c JK |
2120 | } |
2121 | ||
205b9822 | 2122 | static inline void f2fs_i_depth_write(struct inode *inode, unsigned int depth) |
39a53e0c | 2123 | { |
205b9822 | 2124 | F2FS_I(inode)->i_current_depth = depth; |
7c45729a | 2125 | f2fs_mark_inode_dirty_sync(inode, true); |
39a53e0c JK |
2126 | } |
2127 | ||
205b9822 | 2128 | static inline void f2fs_i_xnid_write(struct inode *inode, nid_t xnid) |
444c580f | 2129 | { |
205b9822 | 2130 | F2FS_I(inode)->i_xattr_nid = xnid; |
7c45729a | 2131 | f2fs_mark_inode_dirty_sync(inode, true); |
205b9822 JK |
2132 | } |
2133 | ||
2134 | static inline void f2fs_i_pino_write(struct inode *inode, nid_t pino) | |
2135 | { | |
2136 | F2FS_I(inode)->i_pino = pino; | |
7c45729a | 2137 | f2fs_mark_inode_dirty_sync(inode, true); |
205b9822 JK |
2138 | } |
2139 | ||
91942321 | 2140 | static inline void get_inline_info(struct inode *inode, struct f2fs_inode *ri) |
444c580f | 2141 | { |
205b9822 JK |
2142 | struct f2fs_inode_info *fi = F2FS_I(inode); |
2143 | ||
444c580f | 2144 | if (ri->i_inline & F2FS_INLINE_XATTR) |
205b9822 | 2145 | set_bit(FI_INLINE_XATTR, &fi->flags); |
1001b347 | 2146 | if (ri->i_inline & F2FS_INLINE_DATA) |
205b9822 | 2147 | set_bit(FI_INLINE_DATA, &fi->flags); |
34d67deb | 2148 | if (ri->i_inline & F2FS_INLINE_DENTRY) |
205b9822 | 2149 | set_bit(FI_INLINE_DENTRY, &fi->flags); |
b3d208f9 | 2150 | if (ri->i_inline & F2FS_DATA_EXIST) |
205b9822 | 2151 | set_bit(FI_DATA_EXIST, &fi->flags); |
510022a8 | 2152 | if (ri->i_inline & F2FS_INLINE_DOTS) |
205b9822 | 2153 | set_bit(FI_INLINE_DOTS, &fi->flags); |
7a2af766 CY |
2154 | if (ri->i_inline & F2FS_EXTRA_ATTR) |
2155 | set_bit(FI_EXTRA_ATTR, &fi->flags); | |
444c580f JK |
2156 | } |
2157 | ||
91942321 | 2158 | static inline void set_raw_inline(struct inode *inode, struct f2fs_inode *ri) |
444c580f JK |
2159 | { |
2160 | ri->i_inline = 0; | |
2161 | ||
91942321 | 2162 | if (is_inode_flag_set(inode, FI_INLINE_XATTR)) |
444c580f | 2163 | ri->i_inline |= F2FS_INLINE_XATTR; |
91942321 | 2164 | if (is_inode_flag_set(inode, FI_INLINE_DATA)) |
1001b347 | 2165 | ri->i_inline |= F2FS_INLINE_DATA; |
91942321 | 2166 | if (is_inode_flag_set(inode, FI_INLINE_DENTRY)) |
34d67deb | 2167 | ri->i_inline |= F2FS_INLINE_DENTRY; |
91942321 | 2168 | if (is_inode_flag_set(inode, FI_DATA_EXIST)) |
b3d208f9 | 2169 | ri->i_inline |= F2FS_DATA_EXIST; |
91942321 | 2170 | if (is_inode_flag_set(inode, FI_INLINE_DOTS)) |
510022a8 | 2171 | ri->i_inline |= F2FS_INLINE_DOTS; |
7a2af766 CY |
2172 | if (is_inode_flag_set(inode, FI_EXTRA_ATTR)) |
2173 | ri->i_inline |= F2FS_EXTRA_ATTR; | |
2174 | } | |
2175 | ||
2176 | static inline int f2fs_has_extra_attr(struct inode *inode) | |
2177 | { | |
2178 | return is_inode_flag_set(inode, FI_EXTRA_ATTR); | |
444c580f JK |
2179 | } |
2180 | ||
987c7c31 CY |
2181 | static inline int f2fs_has_inline_xattr(struct inode *inode) |
2182 | { | |
91942321 | 2183 | return is_inode_flag_set(inode, FI_INLINE_XATTR); |
987c7c31 CY |
2184 | } |
2185 | ||
81ca7350 | 2186 | static inline unsigned int addrs_per_inode(struct inode *inode) |
de93653f | 2187 | { |
81ca7350 | 2188 | if (f2fs_has_inline_xattr(inode)) |
7a2af766 CY |
2189 | return CUR_ADDRS_PER_INODE(inode) - F2FS_INLINE_XATTR_ADDRS; |
2190 | return CUR_ADDRS_PER_INODE(inode); | |
de93653f JK |
2191 | } |
2192 | ||
65985d93 JK |
2193 | static inline void *inline_xattr_addr(struct page *page) |
2194 | { | |
695fd1ed | 2195 | struct f2fs_inode *ri = F2FS_INODE(page); |
cac5a3d8 | 2196 | |
65985d93 JK |
2197 | return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE - |
2198 | F2FS_INLINE_XATTR_ADDRS]); | |
2199 | } | |
2200 | ||
2201 | static inline int inline_xattr_size(struct inode *inode) | |
2202 | { | |
987c7c31 | 2203 | if (f2fs_has_inline_xattr(inode)) |
65985d93 JK |
2204 | return F2FS_INLINE_XATTR_ADDRS << 2; |
2205 | else | |
2206 | return 0; | |
2207 | } | |
2208 | ||
0dbdc2ae JK |
2209 | static inline int f2fs_has_inline_data(struct inode *inode) |
2210 | { | |
91942321 | 2211 | return is_inode_flag_set(inode, FI_INLINE_DATA); |
0dbdc2ae JK |
2212 | } |
2213 | ||
b3d208f9 JK |
2214 | static inline int f2fs_exist_data(struct inode *inode) |
2215 | { | |
91942321 | 2216 | return is_inode_flag_set(inode, FI_DATA_EXIST); |
b3d208f9 JK |
2217 | } |
2218 | ||
510022a8 JK |
2219 | static inline int f2fs_has_inline_dots(struct inode *inode) |
2220 | { | |
91942321 | 2221 | return is_inode_flag_set(inode, FI_INLINE_DOTS); |
510022a8 JK |
2222 | } |
2223 | ||
88b88a66 JK |
2224 | static inline bool f2fs_is_atomic_file(struct inode *inode) |
2225 | { | |
91942321 | 2226 | return is_inode_flag_set(inode, FI_ATOMIC_FILE); |
88b88a66 JK |
2227 | } |
2228 | ||
5fe45743 CY |
2229 | static inline bool f2fs_is_commit_atomic_write(struct inode *inode) |
2230 | { | |
2231 | return is_inode_flag_set(inode, FI_ATOMIC_COMMIT); | |
2232 | } | |
2233 | ||
02a1335f JK |
2234 | static inline bool f2fs_is_volatile_file(struct inode *inode) |
2235 | { | |
91942321 | 2236 | return is_inode_flag_set(inode, FI_VOLATILE_FILE); |
02a1335f JK |
2237 | } |
2238 | ||
3c6c2beb JK |
2239 | static inline bool f2fs_is_first_block_written(struct inode *inode) |
2240 | { | |
91942321 | 2241 | return is_inode_flag_set(inode, FI_FIRST_BLOCK_WRITTEN); |
3c6c2beb JK |
2242 | } |
2243 | ||
1e84371f JK |
2244 | static inline bool f2fs_is_drop_cache(struct inode *inode) |
2245 | { | |
91942321 | 2246 | return is_inode_flag_set(inode, FI_DROP_CACHE); |
1e84371f JK |
2247 | } |
2248 | ||
f2470371 | 2249 | static inline void *inline_data_addr(struct inode *inode, struct page *page) |
1001b347 | 2250 | { |
695fd1ed | 2251 | struct f2fs_inode *ri = F2FS_INODE(page); |
7a2af766 | 2252 | int extra_size = get_extra_isize(inode); |
cac5a3d8 | 2253 | |
7a2af766 | 2254 | return (void *)&(ri->i_addr[extra_size + DEF_INLINE_RESERVED_SIZE]); |
1001b347 HL |
2255 | } |
2256 | ||
34d67deb CY |
2257 | static inline int f2fs_has_inline_dentry(struct inode *inode) |
2258 | { | |
91942321 | 2259 | return is_inode_flag_set(inode, FI_INLINE_DENTRY); |
34d67deb CY |
2260 | } |
2261 | ||
9486ba44 JK |
2262 | static inline void f2fs_dentry_kunmap(struct inode *dir, struct page *page) |
2263 | { | |
2264 | if (!f2fs_has_inline_dentry(dir)) | |
2265 | kunmap(page); | |
2266 | } | |
2267 | ||
b5492af7 JK |
2268 | static inline int is_file(struct inode *inode, int type) |
2269 | { | |
2270 | return F2FS_I(inode)->i_advise & type; | |
2271 | } | |
2272 | ||
2273 | static inline void set_file(struct inode *inode, int type) | |
2274 | { | |
2275 | F2FS_I(inode)->i_advise |= type; | |
7c45729a | 2276 | f2fs_mark_inode_dirty_sync(inode, true); |
b5492af7 JK |
2277 | } |
2278 | ||
2279 | static inline void clear_file(struct inode *inode, int type) | |
2280 | { | |
2281 | F2FS_I(inode)->i_advise &= ~type; | |
7c45729a | 2282 | f2fs_mark_inode_dirty_sync(inode, true); |
b5492af7 JK |
2283 | } |
2284 | ||
26787236 JK |
2285 | static inline bool f2fs_skip_inode_update(struct inode *inode, int dsync) |
2286 | { | |
2287 | if (dsync) { | |
2288 | struct f2fs_sb_info *sbi = F2FS_I_SB(inode); | |
2289 | bool ret; | |
2290 | ||
2291 | spin_lock(&sbi->inode_lock[DIRTY_META]); | |
2292 | ret = list_empty(&F2FS_I(inode)->gdirty_list); | |
2293 | spin_unlock(&sbi->inode_lock[DIRTY_META]); | |
2294 | return ret; | |
2295 | } | |
2296 | if (!is_inode_flag_set(inode, FI_AUTO_RECOVER) || | |
2297 | file_keep_isize(inode) || | |
2298 | i_size_read(inode) & PAGE_MASK) | |
2299 | return false; | |
2300 | return F2FS_I(inode)->last_disk_size == i_size_read(inode); | |
b5492af7 JK |
2301 | } |
2302 | ||
77888c1e JK |
2303 | static inline int f2fs_readonly(struct super_block *sb) |
2304 | { | |
2305 | return sb->s_flags & MS_RDONLY; | |
2306 | } | |
2307 | ||
1e968fdf JK |
2308 | static inline bool f2fs_cp_error(struct f2fs_sb_info *sbi) |
2309 | { | |
aaec2b1d | 2310 | return is_set_ckpt_flags(sbi, CP_ERROR_FLAG); |
1e968fdf JK |
2311 | } |
2312 | ||
eaa693f4 JK |
2313 | static inline bool is_dot_dotdot(const struct qstr *str) |
2314 | { | |
2315 | if (str->len == 1 && str->name[0] == '.') | |
2316 | return true; | |
2317 | ||
2318 | if (str->len == 2 && str->name[0] == '.' && str->name[1] == '.') | |
2319 | return true; | |
2320 | ||
2321 | return false; | |
2322 | } | |
2323 | ||
3e72f721 JK |
2324 | static inline bool f2fs_may_extent_tree(struct inode *inode) |
2325 | { | |
3e72f721 | 2326 | if (!test_opt(F2FS_I_SB(inode), EXTENT_CACHE) || |
91942321 | 2327 | is_inode_flag_set(inode, FI_NO_EXTENT)) |
3e72f721 JK |
2328 | return false; |
2329 | ||
886f56f9 | 2330 | return S_ISREG(inode->i_mode); |
3e72f721 JK |
2331 | } |
2332 | ||
1ecc0c5c CY |
2333 | static inline void *f2fs_kmalloc(struct f2fs_sb_info *sbi, |
2334 | size_t size, gfp_t flags) | |
0414b004 | 2335 | { |
2c63fead | 2336 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
55523519 CY |
2337 | if (time_to_inject(sbi, FAULT_KMALLOC)) { |
2338 | f2fs_show_injection_info(FAULT_KMALLOC); | |
2c63fead | 2339 | return NULL; |
55523519 | 2340 | } |
2c63fead | 2341 | #endif |
0414b004 JK |
2342 | return kmalloc(size, flags); |
2343 | } | |
2344 | ||
7a2af766 | 2345 | static inline int get_extra_isize(struct inode *inode) |
f2470371 | 2346 | { |
7a2af766 | 2347 | return F2FS_I(inode)->i_extra_isize / sizeof(__le32); |
f2470371 CY |
2348 | } |
2349 | ||
a6dda0e6 | 2350 | #define get_inode_mode(i) \ |
91942321 | 2351 | ((is_inode_flag_set(i, FI_ACL_MODE)) ? \ |
a6dda0e6 CH |
2352 | (F2FS_I(i)->i_acl_mode) : ((i)->i_mode)) |
2353 | ||
7a2af766 CY |
2354 | #define F2FS_TOTAL_EXTRA_ATTR_SIZE \ |
2355 | (offsetof(struct f2fs_inode, i_extra_end) - \ | |
2356 | offsetof(struct f2fs_inode, i_extra_isize)) \ | |
2357 | ||
5c57132e CY |
2358 | #define F2FS_OLD_ATTRIBUTE_SIZE (offsetof(struct f2fs_inode, i_addr)) |
2359 | #define F2FS_FITS_IN_INODE(f2fs_inode, extra_isize, field) \ | |
2360 | ((offsetof(typeof(*f2fs_inode), field) + \ | |
2361 | sizeof((f2fs_inode)->field)) \ | |
2362 | <= (F2FS_OLD_ATTRIBUTE_SIZE + extra_isize)) \ | |
2363 | ||
b0af6d49 CY |
2364 | static inline void f2fs_reset_iostat(struct f2fs_sb_info *sbi) |
2365 | { | |
2366 | int i; | |
2367 | ||
2368 | spin_lock(&sbi->iostat_lock); | |
2369 | for (i = 0; i < NR_IO_TYPE; i++) | |
2370 | sbi->write_iostat[i] = 0; | |
2371 | spin_unlock(&sbi->iostat_lock); | |
2372 | } | |
2373 | ||
2374 | static inline void f2fs_update_iostat(struct f2fs_sb_info *sbi, | |
2375 | enum iostat_type type, unsigned long long io_bytes) | |
2376 | { | |
2377 | if (!sbi->iostat_enable) | |
2378 | return; | |
2379 | spin_lock(&sbi->iostat_lock); | |
2380 | sbi->write_iostat[type] += io_bytes; | |
2381 | ||
2382 | if (type == APP_WRITE_IO || type == APP_DIRECT_IO) | |
2383 | sbi->write_iostat[APP_BUFFERED_IO] = | |
2384 | sbi->write_iostat[APP_WRITE_IO] - | |
2385 | sbi->write_iostat[APP_DIRECT_IO]; | |
2386 | spin_unlock(&sbi->iostat_lock); | |
2387 | } | |
2388 | ||
39a53e0c JK |
2389 | /* |
2390 | * file.c | |
2391 | */ | |
cac5a3d8 DS |
2392 | int f2fs_sync_file(struct file *file, loff_t start, loff_t end, int datasync); |
2393 | void truncate_data_blocks(struct dnode_of_data *dn); | |
2394 | int truncate_blocks(struct inode *inode, u64 from, bool lock); | |
2395 | int f2fs_truncate(struct inode *inode); | |
a528d35e DH |
2396 | int f2fs_getattr(const struct path *path, struct kstat *stat, |
2397 | u32 request_mask, unsigned int flags); | |
cac5a3d8 DS |
2398 | int f2fs_setattr(struct dentry *dentry, struct iattr *attr); |
2399 | int truncate_hole(struct inode *inode, pgoff_t pg_start, pgoff_t pg_end); | |
2400 | int truncate_data_blocks_range(struct dnode_of_data *dn, int count); | |
2401 | long f2fs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg); | |
2402 | long f2fs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg); | |
39a53e0c JK |
2403 | |
2404 | /* | |
2405 | * inode.c | |
2406 | */ | |
cac5a3d8 | 2407 | void f2fs_set_inode_flags(struct inode *inode); |
704956ec CY |
2408 | bool f2fs_inode_chksum_verify(struct f2fs_sb_info *sbi, struct page *page); |
2409 | void f2fs_inode_chksum_set(struct f2fs_sb_info *sbi, struct page *page); | |
cac5a3d8 DS |
2410 | struct inode *f2fs_iget(struct super_block *sb, unsigned long ino); |
2411 | struct inode *f2fs_iget_retry(struct super_block *sb, unsigned long ino); | |
2412 | int try_to_free_nats(struct f2fs_sb_info *sbi, int nr_shrink); | |
2413 | int update_inode(struct inode *inode, struct page *node_page); | |
2414 | int update_inode_page(struct inode *inode); | |
2415 | int f2fs_write_inode(struct inode *inode, struct writeback_control *wbc); | |
2416 | void f2fs_evict_inode(struct inode *inode); | |
2417 | void handle_failed_inode(struct inode *inode); | |
39a53e0c JK |
2418 | |
2419 | /* | |
2420 | * namei.c | |
2421 | */ | |
2422 | struct dentry *f2fs_get_parent(struct dentry *child); | |
2423 | ||
2424 | /* | |
2425 | * dir.c | |
2426 | */ | |
cac5a3d8 DS |
2427 | void set_de_type(struct f2fs_dir_entry *de, umode_t mode); |
2428 | unsigned char get_de_type(struct f2fs_dir_entry *de); | |
2429 | struct f2fs_dir_entry *find_target_dentry(struct fscrypt_name *fname, | |
2430 | f2fs_hash_t namehash, int *max_slots, | |
2431 | struct f2fs_dentry_ptr *d); | |
2432 | int f2fs_fill_dentries(struct dir_context *ctx, struct f2fs_dentry_ptr *d, | |
2433 | unsigned int start_pos, struct fscrypt_str *fstr); | |
2434 | void do_make_empty_dir(struct inode *inode, struct inode *parent, | |
2435 | struct f2fs_dentry_ptr *d); | |
2436 | struct page *init_inode_metadata(struct inode *inode, struct inode *dir, | |
2437 | const struct qstr *new_name, | |
2438 | const struct qstr *orig_name, struct page *dpage); | |
2439 | void update_parent_metadata(struct inode *dir, struct inode *inode, | |
2440 | unsigned int current_depth); | |
2441 | int room_for_filename(const void *bitmap, int slots, int max_slots); | |
2442 | void f2fs_drop_nlink(struct inode *dir, struct inode *inode); | |
2443 | struct f2fs_dir_entry *__f2fs_find_entry(struct inode *dir, | |
2444 | struct fscrypt_name *fname, struct page **res_page); | |
2445 | struct f2fs_dir_entry *f2fs_find_entry(struct inode *dir, | |
2446 | const struct qstr *child, struct page **res_page); | |
2447 | struct f2fs_dir_entry *f2fs_parent_dir(struct inode *dir, struct page **p); | |
2448 | ino_t f2fs_inode_by_name(struct inode *dir, const struct qstr *qstr, | |
2449 | struct page **page); | |
2450 | void f2fs_set_link(struct inode *dir, struct f2fs_dir_entry *de, | |
2451 | struct page *page, struct inode *inode); | |
cac5a3d8 DS |
2452 | void f2fs_update_dentry(nid_t ino, umode_t mode, struct f2fs_dentry_ptr *d, |
2453 | const struct qstr *name, f2fs_hash_t name_hash, | |
2454 | unsigned int bit_pos); | |
2455 | int f2fs_add_regular_entry(struct inode *dir, const struct qstr *new_name, | |
2456 | const struct qstr *orig_name, | |
2457 | struct inode *inode, nid_t ino, umode_t mode); | |
2458 | int __f2fs_do_add_link(struct inode *dir, struct fscrypt_name *fname, | |
2459 | struct inode *inode, nid_t ino, umode_t mode); | |
2460 | int __f2fs_add_link(struct inode *dir, const struct qstr *name, | |
2461 | struct inode *inode, nid_t ino, umode_t mode); | |
2462 | void f2fs_delete_entry(struct f2fs_dir_entry *dentry, struct page *page, | |
2463 | struct inode *dir, struct inode *inode); | |
2464 | int f2fs_do_tmpfile(struct inode *inode, struct inode *dir); | |
2465 | bool f2fs_empty_dir(struct inode *dir); | |
39a53e0c | 2466 | |
b7f7a5e0 AV |
2467 | static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode) |
2468 | { | |
2b0143b5 | 2469 | return __f2fs_add_link(d_inode(dentry->d_parent), &dentry->d_name, |
510022a8 | 2470 | inode, inode->i_ino, inode->i_mode); |
b7f7a5e0 AV |
2471 | } |
2472 | ||
39a53e0c JK |
2473 | /* |
2474 | * super.c | |
2475 | */ | |
cac5a3d8 DS |
2476 | int f2fs_inode_dirtied(struct inode *inode, bool sync); |
2477 | void f2fs_inode_synced(struct inode *inode); | |
4b2414d0 CY |
2478 | void f2fs_enable_quota_files(struct f2fs_sb_info *sbi); |
2479 | void f2fs_quota_off_umount(struct super_block *sb); | |
cac5a3d8 DS |
2480 | int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover); |
2481 | int f2fs_sync_fs(struct super_block *sb, int sync); | |
a07ef784 | 2482 | extern __printf(3, 4) |
cac5a3d8 | 2483 | void f2fs_msg(struct super_block *sb, const char *level, const char *fmt, ...); |
984ec63c | 2484 | int sanity_check_ckpt(struct f2fs_sb_info *sbi); |
39a53e0c JK |
2485 | |
2486 | /* | |
2487 | * hash.c | |
2488 | */ | |
6332cd32 JK |
2489 | f2fs_hash_t f2fs_dentry_hash(const struct qstr *name_info, |
2490 | struct fscrypt_name *fname); | |
39a53e0c JK |
2491 | |
2492 | /* | |
2493 | * node.c | |
2494 | */ | |
2495 | struct dnode_of_data; | |
2496 | struct node_info; | |
2497 | ||
cac5a3d8 DS |
2498 | bool available_free_memory(struct f2fs_sb_info *sbi, int type); |
2499 | int need_dentry_mark(struct f2fs_sb_info *sbi, nid_t nid); | |
2500 | bool is_checkpointed_node(struct f2fs_sb_info *sbi, nid_t nid); | |
2501 | bool need_inode_block_update(struct f2fs_sb_info *sbi, nid_t ino); | |
2502 | void get_node_info(struct f2fs_sb_info *sbi, nid_t nid, struct node_info *ni); | |
2503 | pgoff_t get_next_page_offset(struct dnode_of_data *dn, pgoff_t pgofs); | |
2504 | int get_dnode_of_data(struct dnode_of_data *dn, pgoff_t index, int mode); | |
2505 | int truncate_inode_blocks(struct inode *inode, pgoff_t from); | |
2506 | int truncate_xattr_node(struct inode *inode, struct page *page); | |
2507 | int wait_on_node_pages_writeback(struct f2fs_sb_info *sbi, nid_t ino); | |
2508 | int remove_inode_page(struct inode *inode); | |
2509 | struct page *new_inode_page(struct inode *inode); | |
5f4ce6ab | 2510 | struct page *new_node_page(struct dnode_of_data *dn, unsigned int ofs); |
cac5a3d8 DS |
2511 | void ra_node_page(struct f2fs_sb_info *sbi, nid_t nid); |
2512 | struct page *get_node_page(struct f2fs_sb_info *sbi, pgoff_t nid); | |
2513 | struct page *get_node_page_ra(struct page *parent, int start); | |
2514 | void move_node_page(struct page *node_page, int gc_type); | |
2515 | int fsync_node_pages(struct f2fs_sb_info *sbi, struct inode *inode, | |
2516 | struct writeback_control *wbc, bool atomic); | |
401db79f | 2517 | int sync_node_pages(struct f2fs_sb_info *sbi, struct writeback_control *wbc, |
b0af6d49 | 2518 | bool do_balance, enum iostat_type io_type); |
22ad0b6a | 2519 | void build_free_nids(struct f2fs_sb_info *sbi, bool sync, bool mount); |
cac5a3d8 DS |
2520 | bool alloc_nid(struct f2fs_sb_info *sbi, nid_t *nid); |
2521 | void alloc_nid_done(struct f2fs_sb_info *sbi, nid_t nid); | |
2522 | void alloc_nid_failed(struct f2fs_sb_info *sbi, nid_t nid); | |
2523 | int try_to_free_nids(struct f2fs_sb_info *sbi, int nr_shrink); | |
2524 | void recover_inline_xattr(struct inode *inode, struct page *page); | |
d260081c | 2525 | int recover_xattr_data(struct inode *inode, struct page *page, |
cac5a3d8 DS |
2526 | block_t blkaddr); |
2527 | int recover_inode_page(struct f2fs_sb_info *sbi, struct page *page); | |
2528 | int restore_node_summary(struct f2fs_sb_info *sbi, | |
2529 | unsigned int segno, struct f2fs_summary_block *sum); | |
22ad0b6a | 2530 | void flush_nat_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc); |
cac5a3d8 DS |
2531 | int build_node_manager(struct f2fs_sb_info *sbi); |
2532 | void destroy_node_manager(struct f2fs_sb_info *sbi); | |
6e6093a8 | 2533 | int __init create_node_manager_caches(void); |
39a53e0c JK |
2534 | void destroy_node_manager_caches(void); |
2535 | ||
2536 | /* | |
2537 | * segment.c | |
2538 | */ | |
b3a97a2a | 2539 | bool need_SSR(struct f2fs_sb_info *sbi); |
cac5a3d8 DS |
2540 | void register_inmem_page(struct inode *inode, struct page *page); |
2541 | void drop_inmem_pages(struct inode *inode); | |
8c242db9 | 2542 | void drop_inmem_page(struct inode *inode, struct page *page); |
cac5a3d8 DS |
2543 | int commit_inmem_pages(struct inode *inode); |
2544 | void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need); | |
2545 | void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi); | |
39d787be | 2546 | int f2fs_issue_flush(struct f2fs_sb_info *sbi, nid_t ino); |
cac5a3d8 | 2547 | int create_flush_cmd_control(struct f2fs_sb_info *sbi); |
1228b482 | 2548 | int f2fs_flush_device_cache(struct f2fs_sb_info *sbi); |
cac5a3d8 DS |
2549 | void destroy_flush_cmd_control(struct f2fs_sb_info *sbi, bool free); |
2550 | void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr); | |
2551 | bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr); | |
78997b56 CY |
2552 | void init_discard_policy(struct discard_policy *dpolicy, int discard_type, |
2553 | unsigned int granularity); | |
cac5a3d8 | 2554 | void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new); |
cce13252 | 2555 | void stop_discard_thread(struct f2fs_sb_info *sbi); |
8412663d | 2556 | void f2fs_wait_discard_bios(struct f2fs_sb_info *sbi); |
cac5a3d8 DS |
2557 | void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc); |
2558 | void release_discard_addrs(struct f2fs_sb_info *sbi); | |
2559 | int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra); | |
2560 | void allocate_new_segments(struct f2fs_sb_info *sbi); | |
2561 | int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range); | |
2562 | bool exist_trim_candidates(struct f2fs_sb_info *sbi, struct cp_control *cpc); | |
2563 | struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno); | |
2564 | void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr); | |
b0af6d49 CY |
2565 | void write_meta_page(struct f2fs_sb_info *sbi, struct page *page, |
2566 | enum iostat_type io_type); | |
cac5a3d8 DS |
2567 | void write_node_page(unsigned int nid, struct f2fs_io_info *fio); |
2568 | void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio); | |
d1b3e72d | 2569 | int rewrite_data_page(struct f2fs_io_info *fio); |
cac5a3d8 DS |
2570 | void __f2fs_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum, |
2571 | block_t old_blkaddr, block_t new_blkaddr, | |
2572 | bool recover_curseg, bool recover_newaddr); | |
2573 | void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn, | |
2574 | block_t old_addr, block_t new_addr, | |
2575 | unsigned char version, bool recover_curseg, | |
2576 | bool recover_newaddr); | |
2577 | void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page, | |
2578 | block_t old_blkaddr, block_t *new_blkaddr, | |
fb830fc5 CY |
2579 | struct f2fs_summary *sum, int type, |
2580 | struct f2fs_io_info *fio, bool add_list); | |
cac5a3d8 DS |
2581 | void f2fs_wait_on_page_writeback(struct page *page, |
2582 | enum page_type type, bool ordered); | |
d4c759ee | 2583 | void f2fs_wait_on_block_writeback(struct f2fs_sb_info *sbi, block_t blkaddr); |
cac5a3d8 DS |
2584 | void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk); |
2585 | void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk); | |
2586 | int lookup_journal_in_cursum(struct f2fs_journal *journal, int type, | |
2587 | unsigned int val, int alloc); | |
2588 | void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc); | |
2589 | int build_segment_manager(struct f2fs_sb_info *sbi); | |
2590 | void destroy_segment_manager(struct f2fs_sb_info *sbi); | |
7fd9e544 JK |
2591 | int __init create_segment_manager_caches(void); |
2592 | void destroy_segment_manager_caches(void); | |
39a53e0c JK |
2593 | |
2594 | /* | |
2595 | * checkpoint.c | |
2596 | */ | |
cac5a3d8 DS |
2597 | void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi, bool end_io); |
2598 | struct page *grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index); | |
2599 | struct page *get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index); | |
2600 | struct page *get_tmp_page(struct f2fs_sb_info *sbi, pgoff_t index); | |
2601 | bool is_valid_blkaddr(struct f2fs_sb_info *sbi, block_t blkaddr, int type); | |
2602 | int ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages, | |
2603 | int type, bool sync); | |
2604 | void ra_meta_pages_cond(struct f2fs_sb_info *sbi, pgoff_t index); | |
2605 | long sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type, | |
b0af6d49 | 2606 | long nr_to_write, enum iostat_type io_type); |
cac5a3d8 DS |
2607 | void add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type); |
2608 | void remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type); | |
2609 | void release_ino_entry(struct f2fs_sb_info *sbi, bool all); | |
2610 | bool exist_written_data(struct f2fs_sb_info *sbi, nid_t ino, int mode); | |
39d787be CY |
2611 | void set_dirty_device(struct f2fs_sb_info *sbi, nid_t ino, |
2612 | unsigned int devidx, int type); | |
2613 | bool is_dirty_device(struct f2fs_sb_info *sbi, nid_t ino, | |
2614 | unsigned int devidx, int type); | |
cac5a3d8 DS |
2615 | int f2fs_sync_inode_meta(struct f2fs_sb_info *sbi); |
2616 | int acquire_orphan_inode(struct f2fs_sb_info *sbi); | |
2617 | void release_orphan_inode(struct f2fs_sb_info *sbi); | |
2618 | void add_orphan_inode(struct inode *inode); | |
2619 | void remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino); | |
2620 | int recover_orphan_inodes(struct f2fs_sb_info *sbi); | |
2621 | int get_valid_checkpoint(struct f2fs_sb_info *sbi); | |
2622 | void update_dirty_page(struct inode *inode, struct page *page); | |
2623 | void remove_dirty_inode(struct inode *inode); | |
2624 | int sync_dirty_inodes(struct f2fs_sb_info *sbi, enum inode_type type); | |
2625 | int write_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc); | |
2626 | void init_ino_entry_info(struct f2fs_sb_info *sbi); | |
6e6093a8 | 2627 | int __init create_checkpoint_caches(void); |
39a53e0c JK |
2628 | void destroy_checkpoint_caches(void); |
2629 | ||
2630 | /* | |
2631 | * data.c | |
2632 | */ | |
b9109b0e JK |
2633 | void f2fs_submit_merged_write(struct f2fs_sb_info *sbi, enum page_type type); |
2634 | void f2fs_submit_merged_write_cond(struct f2fs_sb_info *sbi, | |
942fd319 | 2635 | struct inode *inode, nid_t ino, pgoff_t idx, |
b9109b0e JK |
2636 | enum page_type type); |
2637 | void f2fs_flush_merged_writes(struct f2fs_sb_info *sbi); | |
cac5a3d8 | 2638 | int f2fs_submit_page_bio(struct f2fs_io_info *fio); |
b9109b0e | 2639 | int f2fs_submit_page_write(struct f2fs_io_info *fio); |
cac5a3d8 DS |
2640 | struct block_device *f2fs_target_device(struct f2fs_sb_info *sbi, |
2641 | block_t blk_addr, struct bio *bio); | |
2642 | int f2fs_target_device_index(struct f2fs_sb_info *sbi, block_t blkaddr); | |
2643 | void set_data_blkaddr(struct dnode_of_data *dn); | |
2644 | void f2fs_update_data_blkaddr(struct dnode_of_data *dn, block_t blkaddr); | |
2645 | int reserve_new_blocks(struct dnode_of_data *dn, blkcnt_t count); | |
2646 | int reserve_new_block(struct dnode_of_data *dn); | |
2647 | int f2fs_get_block(struct dnode_of_data *dn, pgoff_t index); | |
2648 | int f2fs_preallocate_blocks(struct kiocb *iocb, struct iov_iter *from); | |
2649 | int f2fs_reserve_block(struct dnode_of_data *dn, pgoff_t index); | |
2650 | struct page *get_read_data_page(struct inode *inode, pgoff_t index, | |
2651 | int op_flags, bool for_write); | |
2652 | struct page *find_data_page(struct inode *inode, pgoff_t index); | |
2653 | struct page *get_lock_data_page(struct inode *inode, pgoff_t index, | |
2654 | bool for_write); | |
2655 | struct page *get_new_data_page(struct inode *inode, | |
2656 | struct page *ipage, pgoff_t index, bool new_i_size); | |
2657 | int do_write_data_page(struct f2fs_io_info *fio); | |
2658 | int f2fs_map_blocks(struct inode *inode, struct f2fs_map_blocks *map, | |
2659 | int create, int flag); | |
2660 | int f2fs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, | |
2661 | u64 start, u64 len); | |
2662 | void f2fs_set_page_dirty_nobuffers(struct page *page); | |
b0af6d49 CY |
2663 | int __f2fs_write_data_pages(struct address_space *mapping, |
2664 | struct writeback_control *wbc, | |
2665 | enum iostat_type io_type); | |
cac5a3d8 DS |
2666 | void f2fs_invalidate_page(struct page *page, unsigned int offset, |
2667 | unsigned int length); | |
2668 | int f2fs_release_page(struct page *page, gfp_t wait); | |
5b7a487c | 2669 | #ifdef CONFIG_MIGRATION |
cac5a3d8 DS |
2670 | int f2fs_migrate_page(struct address_space *mapping, struct page *newpage, |
2671 | struct page *page, enum migrate_mode mode); | |
5b7a487c | 2672 | #endif |
39a53e0c JK |
2673 | |
2674 | /* | |
2675 | * gc.c | |
2676 | */ | |
cac5a3d8 DS |
2677 | int start_gc_thread(struct f2fs_sb_info *sbi); |
2678 | void stop_gc_thread(struct f2fs_sb_info *sbi); | |
2679 | block_t start_bidx_of_node(unsigned int node_ofs, struct inode *inode); | |
e066b83c JK |
2680 | int f2fs_gc(struct f2fs_sb_info *sbi, bool sync, bool background, |
2681 | unsigned int segno); | |
cac5a3d8 | 2682 | void build_gc_manager(struct f2fs_sb_info *sbi); |
39a53e0c JK |
2683 | |
2684 | /* | |
2685 | * recovery.c | |
2686 | */ | |
cac5a3d8 DS |
2687 | int recover_fsync_data(struct f2fs_sb_info *sbi, bool check_only); |
2688 | bool space_for_roll_forward(struct f2fs_sb_info *sbi); | |
39a53e0c JK |
2689 | |
2690 | /* | |
2691 | * debug.c | |
2692 | */ | |
2693 | #ifdef CONFIG_F2FS_STAT_FS | |
2694 | struct f2fs_stat_info { | |
2695 | struct list_head stat_list; | |
2696 | struct f2fs_sb_info *sbi; | |
39a53e0c JK |
2697 | int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs; |
2698 | int main_area_segs, main_area_sections, main_area_zones; | |
5b7ee374 CY |
2699 | unsigned long long hit_largest, hit_cached, hit_rbtree; |
2700 | unsigned long long hit_total, total_ext; | |
c00ba554 | 2701 | int ext_tree, zombie_tree, ext_node; |
35782b23 JK |
2702 | int ndirty_node, ndirty_dent, ndirty_meta, ndirty_data, ndirty_imeta; |
2703 | int inmem_pages; | |
0f18b462 | 2704 | unsigned int ndirty_dirs, ndirty_files, ndirty_all; |
5b0ef73c JK |
2705 | int nats, dirty_nats, sits, dirty_sits; |
2706 | int free_nids, avail_nids, alloc_nids; | |
39a53e0c | 2707 | int total_count, utilization; |
8b8dd65f | 2708 | int bg_gc, nr_wb_cp_data, nr_wb_data; |
14d8d5f7 CY |
2709 | int nr_flushing, nr_flushed, flush_list_empty; |
2710 | int nr_discarding, nr_discarded; | |
5f32366a | 2711 | int nr_discard_cmd; |
d84d1cbd | 2712 | unsigned int undiscard_blks; |
a00861db | 2713 | int inline_xattr, inline_inode, inline_dir, append, update, orphans; |
648d50ba | 2714 | int aw_cnt, max_aw_cnt, vw_cnt, max_vw_cnt; |
f83a2584 | 2715 | unsigned int valid_count, valid_node_count, valid_inode_count, discard_blks; |
39a53e0c JK |
2716 | unsigned int bimodal, avg_vblocks; |
2717 | int util_free, util_valid, util_invalid; | |
2718 | int rsvd_segs, overp_segs; | |
2719 | int dirty_count, node_pages, meta_pages; | |
42190d2a | 2720 | int prefree_count, call_count, cp_count, bg_cp_count; |
39a53e0c | 2721 | int tot_segs, node_segs, data_segs, free_segs, free_secs; |
e1235983 | 2722 | int bg_node_segs, bg_data_segs; |
39a53e0c | 2723 | int tot_blks, data_blks, node_blks; |
e1235983 | 2724 | int bg_data_blks, bg_node_blks; |
39a53e0c JK |
2725 | int curseg[NR_CURSEG_TYPE]; |
2726 | int cursec[NR_CURSEG_TYPE]; | |
2727 | int curzone[NR_CURSEG_TYPE]; | |
2728 | ||
2729 | unsigned int segment_count[2]; | |
2730 | unsigned int block_count[2]; | |
b9a2c252 | 2731 | unsigned int inplace_count; |
9edcdabf | 2732 | unsigned long long base_mem, cache_mem, page_mem; |
39a53e0c JK |
2733 | }; |
2734 | ||
963d4f7d GZ |
2735 | static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi) |
2736 | { | |
6c311ec6 | 2737 | return (struct f2fs_stat_info *)sbi->stat_info; |
963d4f7d GZ |
2738 | } |
2739 | ||
942e0be6 | 2740 | #define stat_inc_cp_count(si) ((si)->cp_count++) |
42190d2a | 2741 | #define stat_inc_bg_cp_count(si) ((si)->bg_cp_count++) |
dcdfff65 JK |
2742 | #define stat_inc_call_count(si) ((si)->call_count++) |
2743 | #define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++) | |
33fbd510 CY |
2744 | #define stat_inc_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]++) |
2745 | #define stat_dec_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]--) | |
5b7ee374 CY |
2746 | #define stat_inc_total_hit(sbi) (atomic64_inc(&(sbi)->total_hit_ext)) |
2747 | #define stat_inc_rbtree_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_rbtree)) | |
2748 | #define stat_inc_largest_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_largest)) | |
2749 | #define stat_inc_cached_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_cached)) | |
d5e8f6c9 CY |
2750 | #define stat_inc_inline_xattr(inode) \ |
2751 | do { \ | |
2752 | if (f2fs_has_inline_xattr(inode)) \ | |
2753 | (atomic_inc(&F2FS_I_SB(inode)->inline_xattr)); \ | |
2754 | } while (0) | |
2755 | #define stat_dec_inline_xattr(inode) \ | |
2756 | do { \ | |
2757 | if (f2fs_has_inline_xattr(inode)) \ | |
2758 | (atomic_dec(&F2FS_I_SB(inode)->inline_xattr)); \ | |
2759 | } while (0) | |
0dbdc2ae JK |
2760 | #define stat_inc_inline_inode(inode) \ |
2761 | do { \ | |
2762 | if (f2fs_has_inline_data(inode)) \ | |
03e14d52 | 2763 | (atomic_inc(&F2FS_I_SB(inode)->inline_inode)); \ |
0dbdc2ae JK |
2764 | } while (0) |
2765 | #define stat_dec_inline_inode(inode) \ | |
2766 | do { \ | |
2767 | if (f2fs_has_inline_data(inode)) \ | |
03e14d52 | 2768 | (atomic_dec(&F2FS_I_SB(inode)->inline_inode)); \ |
0dbdc2ae | 2769 | } while (0) |
3289c061 JK |
2770 | #define stat_inc_inline_dir(inode) \ |
2771 | do { \ | |
2772 | if (f2fs_has_inline_dentry(inode)) \ | |
03e14d52 | 2773 | (atomic_inc(&F2FS_I_SB(inode)->inline_dir)); \ |
3289c061 JK |
2774 | } while (0) |
2775 | #define stat_dec_inline_dir(inode) \ | |
2776 | do { \ | |
2777 | if (f2fs_has_inline_dentry(inode)) \ | |
03e14d52 | 2778 | (atomic_dec(&F2FS_I_SB(inode)->inline_dir)); \ |
3289c061 | 2779 | } while (0) |
dcdfff65 JK |
2780 | #define stat_inc_seg_type(sbi, curseg) \ |
2781 | ((sbi)->segment_count[(curseg)->alloc_type]++) | |
2782 | #define stat_inc_block_count(sbi, curseg) \ | |
2783 | ((sbi)->block_count[(curseg)->alloc_type]++) | |
b9a2c252 CL |
2784 | #define stat_inc_inplace_blocks(sbi) \ |
2785 | (atomic_inc(&(sbi)->inplace_count)) | |
26a28a0c | 2786 | #define stat_inc_atomic_write(inode) \ |
cac5a3d8 | 2787 | (atomic_inc(&F2FS_I_SB(inode)->aw_cnt)) |
26a28a0c | 2788 | #define stat_dec_atomic_write(inode) \ |
cac5a3d8 | 2789 | (atomic_dec(&F2FS_I_SB(inode)->aw_cnt)) |
26a28a0c JK |
2790 | #define stat_update_max_atomic_write(inode) \ |
2791 | do { \ | |
2792 | int cur = atomic_read(&F2FS_I_SB(inode)->aw_cnt); \ | |
2793 | int max = atomic_read(&F2FS_I_SB(inode)->max_aw_cnt); \ | |
2794 | if (cur > max) \ | |
2795 | atomic_set(&F2FS_I_SB(inode)->max_aw_cnt, cur); \ | |
2796 | } while (0) | |
648d50ba CY |
2797 | #define stat_inc_volatile_write(inode) \ |
2798 | (atomic_inc(&F2FS_I_SB(inode)->vw_cnt)) | |
2799 | #define stat_dec_volatile_write(inode) \ | |
2800 | (atomic_dec(&F2FS_I_SB(inode)->vw_cnt)) | |
2801 | #define stat_update_max_volatile_write(inode) \ | |
2802 | do { \ | |
2803 | int cur = atomic_read(&F2FS_I_SB(inode)->vw_cnt); \ | |
2804 | int max = atomic_read(&F2FS_I_SB(inode)->max_vw_cnt); \ | |
2805 | if (cur > max) \ | |
2806 | atomic_set(&F2FS_I_SB(inode)->max_vw_cnt, cur); \ | |
2807 | } while (0) | |
e1235983 | 2808 | #define stat_inc_seg_count(sbi, type, gc_type) \ |
39a53e0c | 2809 | do { \ |
963d4f7d | 2810 | struct f2fs_stat_info *si = F2FS_STAT(sbi); \ |
68afcf2d TK |
2811 | si->tot_segs++; \ |
2812 | if ((type) == SUM_TYPE_DATA) { \ | |
39a53e0c | 2813 | si->data_segs++; \ |
e1235983 CL |
2814 | si->bg_data_segs += (gc_type == BG_GC) ? 1 : 0; \ |
2815 | } else { \ | |
39a53e0c | 2816 | si->node_segs++; \ |
e1235983 CL |
2817 | si->bg_node_segs += (gc_type == BG_GC) ? 1 : 0; \ |
2818 | } \ | |
39a53e0c JK |
2819 | } while (0) |
2820 | ||
2821 | #define stat_inc_tot_blk_count(si, blks) \ | |
68afcf2d | 2822 | ((si)->tot_blks += (blks)) |
39a53e0c | 2823 | |
e1235983 | 2824 | #define stat_inc_data_blk_count(sbi, blks, gc_type) \ |
39a53e0c | 2825 | do { \ |
963d4f7d | 2826 | struct f2fs_stat_info *si = F2FS_STAT(sbi); \ |
39a53e0c JK |
2827 | stat_inc_tot_blk_count(si, blks); \ |
2828 | si->data_blks += (blks); \ | |
68afcf2d | 2829 | si->bg_data_blks += ((gc_type) == BG_GC) ? (blks) : 0; \ |
39a53e0c JK |
2830 | } while (0) |
2831 | ||
e1235983 | 2832 | #define stat_inc_node_blk_count(sbi, blks, gc_type) \ |
39a53e0c | 2833 | do { \ |
963d4f7d | 2834 | struct f2fs_stat_info *si = F2FS_STAT(sbi); \ |
39a53e0c JK |
2835 | stat_inc_tot_blk_count(si, blks); \ |
2836 | si->node_blks += (blks); \ | |
68afcf2d | 2837 | si->bg_node_blks += ((gc_type) == BG_GC) ? (blks) : 0; \ |
39a53e0c JK |
2838 | } while (0) |
2839 | ||
cac5a3d8 DS |
2840 | int f2fs_build_stats(struct f2fs_sb_info *sbi); |
2841 | void f2fs_destroy_stats(struct f2fs_sb_info *sbi); | |
787c7b8c | 2842 | int __init f2fs_create_root_stats(void); |
4589d25d | 2843 | void f2fs_destroy_root_stats(void); |
39a53e0c | 2844 | #else |
d66450e7 AB |
2845 | #define stat_inc_cp_count(si) do { } while (0) |
2846 | #define stat_inc_bg_cp_count(si) do { } while (0) | |
2847 | #define stat_inc_call_count(si) do { } while (0) | |
2848 | #define stat_inc_bggc_count(si) do { } while (0) | |
2849 | #define stat_inc_dirty_inode(sbi, type) do { } while (0) | |
2850 | #define stat_dec_dirty_inode(sbi, type) do { } while (0) | |
2851 | #define stat_inc_total_hit(sb) do { } while (0) | |
2852 | #define stat_inc_rbtree_node_hit(sb) do { } while (0) | |
2853 | #define stat_inc_largest_node_hit(sbi) do { } while (0) | |
2854 | #define stat_inc_cached_node_hit(sbi) do { } while (0) | |
2855 | #define stat_inc_inline_xattr(inode) do { } while (0) | |
2856 | #define stat_dec_inline_xattr(inode) do { } while (0) | |
2857 | #define stat_inc_inline_inode(inode) do { } while (0) | |
2858 | #define stat_dec_inline_inode(inode) do { } while (0) | |
2859 | #define stat_inc_inline_dir(inode) do { } while (0) | |
2860 | #define stat_dec_inline_dir(inode) do { } while (0) | |
2861 | #define stat_inc_atomic_write(inode) do { } while (0) | |
2862 | #define stat_dec_atomic_write(inode) do { } while (0) | |
2863 | #define stat_update_max_atomic_write(inode) do { } while (0) | |
2864 | #define stat_inc_volatile_write(inode) do { } while (0) | |
2865 | #define stat_dec_volatile_write(inode) do { } while (0) | |
2866 | #define stat_update_max_volatile_write(inode) do { } while (0) | |
2867 | #define stat_inc_seg_type(sbi, curseg) do { } while (0) | |
2868 | #define stat_inc_block_count(sbi, curseg) do { } while (0) | |
2869 | #define stat_inc_inplace_blocks(sbi) do { } while (0) | |
2870 | #define stat_inc_seg_count(sbi, type, gc_type) do { } while (0) | |
2871 | #define stat_inc_tot_blk_count(si, blks) do { } while (0) | |
2872 | #define stat_inc_data_blk_count(sbi, blks, gc_type) do { } while (0) | |
2873 | #define stat_inc_node_blk_count(sbi, blks, gc_type) do { } while (0) | |
39a53e0c JK |
2874 | |
2875 | static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; } | |
2876 | static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { } | |
787c7b8c | 2877 | static inline int __init f2fs_create_root_stats(void) { return 0; } |
4589d25d | 2878 | static inline void f2fs_destroy_root_stats(void) { } |
39a53e0c JK |
2879 | #endif |
2880 | ||
2881 | extern const struct file_operations f2fs_dir_operations; | |
2882 | extern const struct file_operations f2fs_file_operations; | |
2883 | extern const struct inode_operations f2fs_file_inode_operations; | |
2884 | extern const struct address_space_operations f2fs_dblock_aops; | |
2885 | extern const struct address_space_operations f2fs_node_aops; | |
2886 | extern const struct address_space_operations f2fs_meta_aops; | |
2887 | extern const struct inode_operations f2fs_dir_inode_operations; | |
2888 | extern const struct inode_operations f2fs_symlink_inode_operations; | |
cbaf042a | 2889 | extern const struct inode_operations f2fs_encrypted_symlink_inode_operations; |
39a53e0c | 2890 | extern const struct inode_operations f2fs_special_inode_operations; |
29e7043f | 2891 | extern struct kmem_cache *inode_entry_slab; |
1001b347 | 2892 | |
e18c65b2 HL |
2893 | /* |
2894 | * inline.c | |
2895 | */ | |
cac5a3d8 DS |
2896 | bool f2fs_may_inline_data(struct inode *inode); |
2897 | bool f2fs_may_inline_dentry(struct inode *inode); | |
2898 | void read_inline_data(struct page *page, struct page *ipage); | |
bd4667cb | 2899 | void truncate_inline_inode(struct inode *inode, struct page *ipage, u64 from); |
cac5a3d8 DS |
2900 | int f2fs_read_inline_data(struct inode *inode, struct page *page); |
2901 | int f2fs_convert_inline_page(struct dnode_of_data *dn, struct page *page); | |
2902 | int f2fs_convert_inline_inode(struct inode *inode); | |
2903 | int f2fs_write_inline_data(struct inode *inode, struct page *page); | |
2904 | bool recover_inline_data(struct inode *inode, struct page *npage); | |
2905 | struct f2fs_dir_entry *find_in_inline_dir(struct inode *dir, | |
2906 | struct fscrypt_name *fname, struct page **res_page); | |
2907 | int make_empty_inline_dir(struct inode *inode, struct inode *parent, | |
2908 | struct page *ipage); | |
2909 | int f2fs_add_inline_entry(struct inode *dir, const struct qstr *new_name, | |
2910 | const struct qstr *orig_name, | |
2911 | struct inode *inode, nid_t ino, umode_t mode); | |
2912 | void f2fs_delete_inline_entry(struct f2fs_dir_entry *dentry, struct page *page, | |
2913 | struct inode *dir, struct inode *inode); | |
2914 | bool f2fs_empty_inline_dir(struct inode *dir); | |
2915 | int f2fs_read_inline_dir(struct file *file, struct dir_context *ctx, | |
2916 | struct fscrypt_str *fstr); | |
2917 | int f2fs_inline_data_fiemap(struct inode *inode, | |
2918 | struct fiemap_extent_info *fieinfo, | |
2919 | __u64 start, __u64 len); | |
cde4de12 | 2920 | |
2658e50d JK |
2921 | /* |
2922 | * shrinker.c | |
2923 | */ | |
cac5a3d8 DS |
2924 | unsigned long f2fs_shrink_count(struct shrinker *shrink, |
2925 | struct shrink_control *sc); | |
2926 | unsigned long f2fs_shrink_scan(struct shrinker *shrink, | |
2927 | struct shrink_control *sc); | |
2928 | void f2fs_join_shrinker(struct f2fs_sb_info *sbi); | |
2929 | void f2fs_leave_shrinker(struct f2fs_sb_info *sbi); | |
2658e50d | 2930 | |
a28ef1f5 CY |
2931 | /* |
2932 | * extent_cache.c | |
2933 | */ | |
004b6862 CY |
2934 | struct rb_entry *__lookup_rb_tree(struct rb_root *root, |
2935 | struct rb_entry *cached_re, unsigned int ofs); | |
2936 | struct rb_node **__lookup_rb_tree_for_insert(struct f2fs_sb_info *sbi, | |
2937 | struct rb_root *root, struct rb_node **parent, | |
2938 | unsigned int ofs); | |
2939 | struct rb_entry *__lookup_rb_tree_ret(struct rb_root *root, | |
2940 | struct rb_entry *cached_re, unsigned int ofs, | |
2941 | struct rb_entry **prev_entry, struct rb_entry **next_entry, | |
2942 | struct rb_node ***insert_p, struct rb_node **insert_parent, | |
2943 | bool force); | |
df0f6b44 CY |
2944 | bool __check_rb_tree_consistence(struct f2fs_sb_info *sbi, |
2945 | struct rb_root *root); | |
cac5a3d8 DS |
2946 | unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *sbi, int nr_shrink); |
2947 | bool f2fs_init_extent_tree(struct inode *inode, struct f2fs_extent *i_ext); | |
2948 | void f2fs_drop_extent_tree(struct inode *inode); | |
2949 | unsigned int f2fs_destroy_extent_node(struct inode *inode); | |
2950 | void f2fs_destroy_extent_tree(struct inode *inode); | |
2951 | bool f2fs_lookup_extent_cache(struct inode *inode, pgoff_t pgofs, | |
2952 | struct extent_info *ei); | |
2953 | void f2fs_update_extent_cache(struct dnode_of_data *dn); | |
19b2c30d | 2954 | void f2fs_update_extent_cache_range(struct dnode_of_data *dn, |
cac5a3d8 DS |
2955 | pgoff_t fofs, block_t blkaddr, unsigned int len); |
2956 | void init_extent_cache_info(struct f2fs_sb_info *sbi); | |
a28ef1f5 CY |
2957 | int __init create_extent_cache(void); |
2958 | void destroy_extent_cache(void); | |
2959 | ||
8ceffcb2 CY |
2960 | /* |
2961 | * sysfs.c | |
2962 | */ | |
dc6b2055 JK |
2963 | int __init f2fs_init_sysfs(void); |
2964 | void f2fs_exit_sysfs(void); | |
2965 | int f2fs_register_sysfs(struct f2fs_sb_info *sbi); | |
2966 | void f2fs_unregister_sysfs(struct f2fs_sb_info *sbi); | |
8ceffcb2 | 2967 | |
cde4de12 JK |
2968 | /* |
2969 | * crypto support | |
2970 | */ | |
0b81d077 | 2971 | static inline bool f2fs_encrypted_inode(struct inode *inode) |
cde4de12 | 2972 | { |
cde4de12 | 2973 | return file_is_encrypt(inode); |
cde4de12 JK |
2974 | } |
2975 | ||
1958593e JK |
2976 | static inline bool f2fs_encrypted_file(struct inode *inode) |
2977 | { | |
2978 | return f2fs_encrypted_inode(inode) && S_ISREG(inode->i_mode); | |
2979 | } | |
2980 | ||
cde4de12 JK |
2981 | static inline void f2fs_set_encrypted_inode(struct inode *inode) |
2982 | { | |
2983 | #ifdef CONFIG_F2FS_FS_ENCRYPTION | |
2984 | file_set_encrypt(inode); | |
2985 | #endif | |
2986 | } | |
2987 | ||
2988 | static inline bool f2fs_bio_encrypted(struct bio *bio) | |
2989 | { | |
0b81d077 | 2990 | return bio->bi_private != NULL; |
cde4de12 JK |
2991 | } |
2992 | ||
2993 | static inline int f2fs_sb_has_crypto(struct super_block *sb) | |
2994 | { | |
cde4de12 | 2995 | return F2FS_HAS_FEATURE(sb, F2FS_FEATURE_ENCRYPT); |
cde4de12 | 2996 | } |
f424f664 | 2997 | |
0bfd7a09 | 2998 | static inline int f2fs_sb_mounted_blkzoned(struct super_block *sb) |
52763a4b | 2999 | { |
0bfd7a09 | 3000 | return F2FS_HAS_FEATURE(sb, F2FS_FEATURE_BLKZONED); |
52763a4b JK |
3001 | } |
3002 | ||
7a2af766 CY |
3003 | static inline int f2fs_sb_has_extra_attr(struct super_block *sb) |
3004 | { | |
3005 | return F2FS_HAS_FEATURE(sb, F2FS_FEATURE_EXTRA_ATTR); | |
3006 | } | |
3007 | ||
5c57132e CY |
3008 | static inline int f2fs_sb_has_project_quota(struct super_block *sb) |
3009 | { | |
3010 | return F2FS_HAS_FEATURE(sb, F2FS_FEATURE_PRJQUOTA); | |
3011 | } | |
3012 | ||
704956ec CY |
3013 | static inline int f2fs_sb_has_inode_chksum(struct super_block *sb) |
3014 | { | |
3015 | return F2FS_HAS_FEATURE(sb, F2FS_FEATURE_INODE_CHKSUM); | |
3016 | } | |
3017 | ||
178053e2 DLM |
3018 | #ifdef CONFIG_BLK_DEV_ZONED |
3019 | static inline int get_blkz_type(struct f2fs_sb_info *sbi, | |
3c62be17 | 3020 | struct block_device *bdev, block_t blkaddr) |
178053e2 DLM |
3021 | { |
3022 | unsigned int zno = blkaddr >> sbi->log_blocks_per_blkz; | |
3c62be17 | 3023 | int i; |
178053e2 | 3024 | |
3c62be17 JK |
3025 | for (i = 0; i < sbi->s_ndevs; i++) |
3026 | if (FDEV(i).bdev == bdev) | |
3027 | return FDEV(i).blkz_type[zno]; | |
3028 | return -EINVAL; | |
178053e2 DLM |
3029 | } |
3030 | #endif | |
3031 | ||
96ba2dec | 3032 | static inline bool f2fs_discard_en(struct f2fs_sb_info *sbi) |
52763a4b | 3033 | { |
96ba2dec DLM |
3034 | struct request_queue *q = bdev_get_queue(sbi->sb->s_bdev); |
3035 | ||
3036 | return blk_queue_discard(q) || f2fs_sb_mounted_blkzoned(sbi->sb); | |
52763a4b JK |
3037 | } |
3038 | ||
3039 | static inline void set_opt_mode(struct f2fs_sb_info *sbi, unsigned int mt) | |
3040 | { | |
3041 | clear_opt(sbi, ADAPTIVE); | |
3042 | clear_opt(sbi, LFS); | |
3043 | ||
3044 | switch (mt) { | |
3045 | case F2FS_MOUNT_ADAPTIVE: | |
3046 | set_opt(sbi, ADAPTIVE); | |
3047 | break; | |
3048 | case F2FS_MOUNT_LFS: | |
3049 | set_opt(sbi, LFS); | |
3050 | break; | |
3051 | } | |
3052 | } | |
3053 | ||
fcc85a4d JK |
3054 | static inline bool f2fs_may_encrypt(struct inode *inode) |
3055 | { | |
3056 | #ifdef CONFIG_F2FS_FS_ENCRYPTION | |
886f56f9 | 3057 | umode_t mode = inode->i_mode; |
fcc85a4d JK |
3058 | |
3059 | return (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)); | |
3060 | #else | |
3061 | return 0; | |
3062 | #endif | |
3063 | } | |
3064 | ||
39a53e0c | 3065 | #endif |