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