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