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