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