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