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