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