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