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