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