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