f2fs: add core functions for rb-tree extent cache
[deliverable/linux.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>
39a53e0c 22
5d56b671 23#ifdef CONFIG_F2FS_CHECK_FS
9850cf4a 24#define f2fs_bug_on(sbi, condition) BUG_ON(condition)
0daaad97 25#define f2fs_down_write(x, y) down_write_nest_lock(x, y)
5d56b671 26#else
9850cf4a
JK
27#define f2fs_bug_on(sbi, condition) \
28 do { \
29 if (unlikely(condition)) { \
30 WARN_ON(1); \
caf0047e 31 set_sbi_flag(sbi, SBI_NEED_FSCK); \
9850cf4a
JK
32 } \
33 } while (0)
0daaad97 34#define f2fs_down_write(x, y) down_write(x)
5d56b671
JK
35#endif
36
39a53e0c
JK
37/*
38 * For mount options
39 */
40#define F2FS_MOUNT_BG_GC 0x00000001
41#define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002
42#define F2FS_MOUNT_DISCARD 0x00000004
43#define F2FS_MOUNT_NOHEAP 0x00000008
44#define F2FS_MOUNT_XATTR_USER 0x00000010
45#define F2FS_MOUNT_POSIX_ACL 0x00000020
46#define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040
444c580f 47#define F2FS_MOUNT_INLINE_XATTR 0x00000080
1001b347 48#define F2FS_MOUNT_INLINE_DATA 0x00000100
34d67deb
CY
49#define F2FS_MOUNT_INLINE_DENTRY 0x00000200
50#define F2FS_MOUNT_FLUSH_MERGE 0x00000400
51#define F2FS_MOUNT_NOBARRIER 0x00000800
d5053a34 52#define F2FS_MOUNT_FASTBOOT 0x00001000
39a53e0c
JK
53
54#define clear_opt(sbi, option) (sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
55#define set_opt(sbi, option) (sbi->mount_opt.opt |= F2FS_MOUNT_##option)
56#define test_opt(sbi, option) (sbi->mount_opt.opt & F2FS_MOUNT_##option)
57
58#define ver_after(a, b) (typecheck(unsigned long long, a) && \
59 typecheck(unsigned long long, b) && \
60 ((long long)((a) - (b)) > 0))
61
a9841c4d
JK
62typedef u32 block_t; /*
63 * should not change u32, since it is the on-disk block
64 * address format, __le32.
65 */
39a53e0c
JK
66typedef u32 nid_t;
67
68struct f2fs_mount_info {
69 unsigned int opt;
70};
71
7e586fa0
JK
72#define CRCPOLY_LE 0xedb88320
73
74static inline __u32 f2fs_crc32(void *buf, size_t len)
39a53e0c 75{
7e586fa0
JK
76 unsigned char *p = (unsigned char *)buf;
77 __u32 crc = F2FS_SUPER_MAGIC;
78 int i;
79
80 while (len--) {
81 crc ^= *p++;
82 for (i = 0; i < 8; i++)
83 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
84 }
85 return crc;
39a53e0c
JK
86}
87
7e586fa0 88static inline bool f2fs_crc_valid(__u32 blk_crc, void *buf, size_t buf_size)
39a53e0c 89{
7e586fa0 90 return f2fs_crc32(buf, buf_size) == blk_crc;
39a53e0c
JK
91}
92
93/*
94 * For checkpoint manager
95 */
96enum {
97 NAT_BITMAP,
98 SIT_BITMAP
99};
100
75ab4cb8
JK
101enum {
102 CP_UMOUNT,
119ee914 103 CP_FASTBOOT,
75ab4cb8 104 CP_SYNC,
4b2fecc8 105 CP_DISCARD,
75ab4cb8
JK
106};
107
bba681cb
JK
108#define DEF_BATCHED_TRIM_SECTIONS 32
109#define BATCHED_TRIM_SEGMENTS(sbi) \
110 (SM_I(sbi)->trim_sections * (sbi)->segs_per_sec)
111
75ab4cb8
JK
112struct cp_control {
113 int reason;
4b2fecc8
JK
114 __u64 trim_start;
115 __u64 trim_end;
116 __u64 trim_minlen;
117 __u64 trimmed;
75ab4cb8
JK
118};
119
662befda 120/*
81c1a0f1 121 * For CP/NAT/SIT/SSA readahead
662befda
CY
122 */
123enum {
124 META_CP,
125 META_NAT,
81c1a0f1 126 META_SIT,
4c521f49
JK
127 META_SSA,
128 META_POR,
662befda
CY
129};
130
6451e041
JK
131/* for the list of ino */
132enum {
133 ORPHAN_INO, /* for orphan ino list */
fff04f90
JK
134 APPEND_INO, /* for append ino list */
135 UPDATE_INO, /* for update ino list */
6451e041
JK
136 MAX_INO_ENTRY, /* max. list */
137};
138
139struct ino_entry {
39a53e0c
JK
140 struct list_head list; /* list head */
141 nid_t ino; /* inode number */
142};
143
06292073
CY
144/*
145 * for the list of directory inodes or gc inodes.
146 * NOTE: there are two slab users for this structure, if we add/modify/delete
147 * fields in structure for one of slab users, it may affect fields or size of
148 * other one, in this condition, it's better to split both of slab and related
149 * data structure.
150 */
151struct inode_entry {
39a53e0c
JK
152 struct list_head list; /* list head */
153 struct inode *inode; /* vfs inode pointer */
154};
155
7fd9e544
JK
156/* for the list of blockaddresses to be discarded */
157struct discard_entry {
158 struct list_head list; /* list head */
159 block_t blkaddr; /* block address to be discarded */
160 int len; /* # of consecutive blocks of the discard */
161};
162
39a53e0c
JK
163/* for the list of fsync inodes, used only during recovery */
164struct fsync_inode_entry {
165 struct list_head list; /* list head */
166 struct inode *inode; /* vfs inode pointer */
c52e1b10
JK
167 block_t blkaddr; /* block address locating the last fsync */
168 block_t last_dentry; /* block address locating the last dentry */
169 block_t last_inode; /* block address locating the last inode */
39a53e0c
JK
170};
171
172#define nats_in_cursum(sum) (le16_to_cpu(sum->n_nats))
173#define sits_in_cursum(sum) (le16_to_cpu(sum->n_sits))
174
175#define nat_in_journal(sum, i) (sum->nat_j.entries[i].ne)
176#define nid_in_journal(sum, i) (sum->nat_j.entries[i].nid)
177#define sit_in_journal(sum, i) (sum->sit_j.entries[i].se)
178#define segno_in_journal(sum, i) (sum->sit_j.entries[i].segno)
179
309cc2b6
JK
180#define MAX_NAT_JENTRIES(sum) (NAT_JOURNAL_ENTRIES - nats_in_cursum(sum))
181#define MAX_SIT_JENTRIES(sum) (SIT_JOURNAL_ENTRIES - sits_in_cursum(sum))
182
39a53e0c
JK
183static inline int update_nats_in_cursum(struct f2fs_summary_block *rs, int i)
184{
185 int before = nats_in_cursum(rs);
186 rs->n_nats = cpu_to_le16(before + i);
187 return before;
188}
189
190static inline int update_sits_in_cursum(struct f2fs_summary_block *rs, int i)
191{
192 int before = sits_in_cursum(rs);
193 rs->n_sits = cpu_to_le16(before + i);
194 return before;
195}
196
184a5cd2
CY
197static inline bool __has_cursum_space(struct f2fs_summary_block *sum, int size,
198 int type)
199{
200 if (type == NAT_JOURNAL)
309cc2b6
JK
201 return size <= MAX_NAT_JENTRIES(sum);
202 return size <= MAX_SIT_JENTRIES(sum);
184a5cd2
CY
203}
204
e9750824
NJ
205/*
206 * ioctl commands
207 */
88b88a66
JK
208#define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS
209#define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS
d49f3e89 210#define F2FS_IOC_GETVERSION FS_IOC_GETVERSION
88b88a66
JK
211
212#define F2FS_IOCTL_MAGIC 0xf5
213#define F2FS_IOC_START_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 1)
214#define F2FS_IOC_COMMIT_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 2)
02a1335f 215#define F2FS_IOC_START_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 3)
1e84371f
JK
216#define F2FS_IOC_RELEASE_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 4)
217#define F2FS_IOC_ABORT_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 5)
e9750824
NJ
218
219#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
220/*
221 * ioctl commands in 32 bit emulation
222 */
223#define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS
224#define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS
225#endif
226
39a53e0c
JK
227/*
228 * For INODE and NODE manager
229 */
7b3cd7d6
JK
230/* for directory operations */
231struct f2fs_dentry_ptr {
232 const void *bitmap;
233 struct f2fs_dir_entry *dentry;
234 __u8 (*filename)[F2FS_SLOT_LEN];
235 int max;
236};
237
238static inline void make_dentry_ptr(struct f2fs_dentry_ptr *d,
239 void *src, int type)
240{
241 if (type == 1) {
242 struct f2fs_dentry_block *t = (struct f2fs_dentry_block *)src;
243 d->max = NR_DENTRY_IN_BLOCK;
244 d->bitmap = &t->dentry_bitmap;
245 d->dentry = t->dentry;
246 d->filename = t->filename;
247 } else {
248 struct f2fs_inline_dentry *t = (struct f2fs_inline_dentry *)src;
249 d->max = NR_INLINE_DENTRY;
250 d->bitmap = &t->dentry_bitmap;
251 d->dentry = t->dentry;
252 d->filename = t->filename;
253 }
254}
255
dbe6a5ff
JK
256/*
257 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
258 * as its node offset to distinguish from index node blocks.
259 * But some bits are used to mark the node block.
260 */
261#define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \
262 >> OFFSET_BIT_SHIFT)
266e97a8
JK
263enum {
264 ALLOC_NODE, /* allocate a new node page if needed */
265 LOOKUP_NODE, /* look up a node without readahead */
266 LOOKUP_NODE_RA, /*
267 * look up a node with readahead called
4f4124d0 268 * by get_data_block.
39a53e0c 269 */
266e97a8
JK
270};
271
39a53e0c
JK
272#define F2FS_LINK_MAX 32000 /* maximum link count per file */
273
817202d9
CY
274#define MAX_DIR_RA_PAGES 4 /* maximum ra pages of dir */
275
13054c54
CY
276/* vector size for gang look-up from extent cache that consists of radix tree */
277#define EXT_TREE_VEC_SIZE 64
278
39a53e0c 279/* for in-memory extent cache entry */
13054c54
CY
280#define F2FS_MIN_EXTENT_LEN 64 /* minimum extent length */
281
282/* number of extent info in extent cache we try to shrink */
283#define EXTENT_CACHE_SHRINK_NUMBER 128
c11abd1a 284
39a53e0c 285struct extent_info {
13054c54
CY
286 unsigned int fofs; /* start offset in a file */
287 u32 blk; /* start block address of the extent */
288 unsigned int len; /* length of the extent */
289};
290
291struct extent_node {
292 struct rb_node rb_node; /* rb node located in rb-tree */
293 struct list_head list; /* node in global extent list of sbi */
294 struct extent_info ei; /* extent info */
295};
296
297struct extent_tree {
298 nid_t ino; /* inode number */
299 struct rb_root root; /* root of extent info rb-tree */
300 rwlock_t lock; /* protect extent info rb-tree */
301 atomic_t refcount; /* reference count of rb-tree */
302 unsigned int count; /* # of extent node in rb-tree*/
39a53e0c
JK
303};
304
305/*
306 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
307 */
308#define FADVISE_COLD_BIT 0x01
354a3399 309#define FADVISE_LOST_PINO_BIT 0x02
39a53e0c 310
ab9fa662
JK
311#define DEF_DIR_LEVEL 0
312
39a53e0c
JK
313struct f2fs_inode_info {
314 struct inode vfs_inode; /* serve a vfs inode */
315 unsigned long i_flags; /* keep an inode flags for ioctl */
316 unsigned char i_advise; /* use to give file attribute hints */
38431545 317 unsigned char i_dir_level; /* use for dentry level for large dir */
39a53e0c 318 unsigned int i_current_depth; /* use only in directory structure */
6666e6aa 319 unsigned int i_pino; /* parent inode number */
39a53e0c
JK
320 umode_t i_acl_mode; /* keep file acl mode temporarily */
321
322 /* Use below internally in f2fs*/
323 unsigned long flags; /* use to pass per-file flags */
d928bfbf 324 struct rw_semaphore i_sem; /* protect fi info */
a7ffdbe2 325 atomic_t dirty_pages; /* # of dirty pages */
39a53e0c
JK
326 f2fs_hash_t chash; /* hash value of given file name */
327 unsigned int clevel; /* maximum level of given file name */
328 nid_t i_xattr_nid; /* node id that contains xattrs */
e518ff81 329 unsigned long long xattr_ver; /* cp version of xattr modification */
39a53e0c 330 struct extent_info ext; /* in-memory extent cache entry */
0c872e2d 331 rwlock_t ext_lock; /* rwlock for single extent cache */
06292073 332 struct inode_entry *dirty_dir; /* the pointer of dirty dir */
88b88a66 333
34ba94ba 334 struct radix_tree_root inmem_root; /* radix tree for inmem pages */
88b88a66
JK
335 struct list_head inmem_pages; /* inmemory pages managed by f2fs */
336 struct mutex inmem_lock; /* lock for inmemory pages */
39a53e0c
JK
337};
338
339static inline void get_extent_info(struct extent_info *ext,
340 struct f2fs_extent i_ext)
341{
39a53e0c 342 ext->fofs = le32_to_cpu(i_ext.fofs);
4d0b0bd4 343 ext->blk = le32_to_cpu(i_ext.blk);
39a53e0c 344 ext->len = le32_to_cpu(i_ext.len);
39a53e0c
JK
345}
346
347static inline void set_raw_extent(struct extent_info *ext,
348 struct f2fs_extent *i_ext)
349{
39a53e0c 350 i_ext->fofs = cpu_to_le32(ext->fofs);
4d0b0bd4 351 i_ext->blk = cpu_to_le32(ext->blk);
39a53e0c 352 i_ext->len = cpu_to_le32(ext->len);
39a53e0c
JK
353}
354
429511cd
CY
355static inline void set_extent_info(struct extent_info *ei, unsigned int fofs,
356 u32 blk, unsigned int len)
357{
358 ei->fofs = fofs;
359 ei->blk = blk;
360 ei->len = len;
361}
362
363static inline bool __is_extent_mergeable(struct extent_info *back,
364 struct extent_info *front)
365{
366 return (back->fofs + back->len == front->fofs &&
367 back->blk + back->len == front->blk);
368}
369
370static inline bool __is_back_mergeable(struct extent_info *cur,
371 struct extent_info *back)
372{
373 return __is_extent_mergeable(back, cur);
374}
375
376static inline bool __is_front_mergeable(struct extent_info *cur,
377 struct extent_info *front)
378{
379 return __is_extent_mergeable(cur, front);
380}
381
39a53e0c
JK
382struct f2fs_nm_info {
383 block_t nat_blkaddr; /* base disk address of NAT */
384 nid_t max_nid; /* maximum possible node ids */
7ee0eeab 385 nid_t available_nids; /* maximum available node ids */
39a53e0c 386 nid_t next_scan_nid; /* the next nid to be scanned */
cdfc41c1 387 unsigned int ram_thresh; /* control the memory footprint */
39a53e0c
JK
388
389 /* NAT cache management */
390 struct radix_tree_root nat_root;/* root of the nat entry cache */
309cc2b6 391 struct radix_tree_root nat_set_root;/* root of the nat set cache */
8b26ef98 392 struct rw_semaphore nat_tree_lock; /* protect nat_tree_lock */
39a53e0c 393 struct list_head nat_entries; /* cached nat entry list (clean) */
309cc2b6 394 unsigned int nat_cnt; /* the # of cached nat entries */
aec71382 395 unsigned int dirty_nat_cnt; /* total num of nat entries in set */
39a53e0c
JK
396
397 /* free node ids management */
8a7ed66a 398 struct radix_tree_root free_nid_root;/* root of the free_nid cache */
39a53e0c
JK
399 struct list_head free_nid_list; /* a list for free nids */
400 spinlock_t free_nid_list_lock; /* protect free nid list */
401 unsigned int fcnt; /* the number of free node id */
402 struct mutex build_lock; /* lock for build free nids */
403
404 /* for checkpoint */
405 char *nat_bitmap; /* NAT bitmap pointer */
406 int bitmap_size; /* bitmap size */
407};
408
409/*
410 * this structure is used as one of function parameters.
411 * all the information are dedicated to a given direct node block determined
412 * by the data offset in a file.
413 */
414struct dnode_of_data {
415 struct inode *inode; /* vfs inode pointer */
416 struct page *inode_page; /* its inode page, NULL is possible */
417 struct page *node_page; /* cached direct node page */
418 nid_t nid; /* node id of the direct node block */
419 unsigned int ofs_in_node; /* data offset in the node page */
420 bool inode_page_locked; /* inode page is locked or not */
421 block_t data_blkaddr; /* block address of the node block */
422};
423
424static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
425 struct page *ipage, struct page *npage, nid_t nid)
426{
d66d1f76 427 memset(dn, 0, sizeof(*dn));
39a53e0c
JK
428 dn->inode = inode;
429 dn->inode_page = ipage;
430 dn->node_page = npage;
431 dn->nid = nid;
39a53e0c
JK
432}
433
434/*
435 * For SIT manager
436 *
437 * By default, there are 6 active log areas across the whole main area.
438 * When considering hot and cold data separation to reduce cleaning overhead,
439 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
440 * respectively.
441 * In the current design, you should not change the numbers intentionally.
442 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
443 * logs individually according to the underlying devices. (default: 6)
444 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
445 * data and 8 for node logs.
446 */
447#define NR_CURSEG_DATA_TYPE (3)
448#define NR_CURSEG_NODE_TYPE (3)
449#define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
450
451enum {
452 CURSEG_HOT_DATA = 0, /* directory entry blocks */
453 CURSEG_WARM_DATA, /* data blocks */
454 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */
455 CURSEG_HOT_NODE, /* direct node blocks of directory files */
456 CURSEG_WARM_NODE, /* direct node blocks of normal files */
457 CURSEG_COLD_NODE, /* indirect node blocks */
38aa0889
JK
458 NO_CHECK_TYPE,
459 CURSEG_DIRECT_IO, /* to use for the direct IO path */
39a53e0c
JK
460};
461
6b4afdd7 462struct flush_cmd {
6b4afdd7 463 struct completion wait;
721bd4d5 464 struct llist_node llnode;
6b4afdd7
JK
465 int ret;
466};
467
a688b9d9
GZ
468struct flush_cmd_control {
469 struct task_struct *f2fs_issue_flush; /* flush thread */
470 wait_queue_head_t flush_wait_queue; /* waiting queue for wake-up */
721bd4d5
GZ
471 struct llist_head issue_list; /* list for command issue */
472 struct llist_node *dispatch_list; /* list for command dispatch */
a688b9d9
GZ
473};
474
39a53e0c
JK
475struct f2fs_sm_info {
476 struct sit_info *sit_info; /* whole segment information */
477 struct free_segmap_info *free_info; /* free segment information */
478 struct dirty_seglist_info *dirty_info; /* dirty segment information */
479 struct curseg_info *curseg_array; /* active segment information */
480
39a53e0c
JK
481 block_t seg0_blkaddr; /* block address of 0'th segment */
482 block_t main_blkaddr; /* start block address of main area */
483 block_t ssa_blkaddr; /* start block address of SSA area */
484
485 unsigned int segment_count; /* total # of segments */
486 unsigned int main_segments; /* # of segments in main area */
487 unsigned int reserved_segments; /* # of reserved segments */
488 unsigned int ovp_segments; /* # of overprovision segments */
81eb8d6e
JK
489
490 /* a threshold to reclaim prefree segments */
491 unsigned int rec_prefree_segments;
7fd9e544
JK
492
493 /* for small discard management */
494 struct list_head discard_list; /* 4KB discard list */
495 int nr_discards; /* # of discards in the list */
496 int max_discards; /* max. discards to be issued */
216fbd64 497
bba681cb
JK
498 /* for batched trimming */
499 unsigned int trim_sections; /* # of sections to trim */
500
184a5cd2
CY
501 struct list_head sit_entry_set; /* sit entry set list */
502
216fbd64
JK
503 unsigned int ipu_policy; /* in-place-update policy */
504 unsigned int min_ipu_util; /* in-place-update threshold */
c1ce1b02 505 unsigned int min_fsync_blocks; /* threshold for fsync */
6b4afdd7
JK
506
507 /* for flush command control */
a688b9d9
GZ
508 struct flush_cmd_control *cmd_control_info;
509
39a53e0c
JK
510};
511
39a53e0c
JK
512/*
513 * For superblock
514 */
515/*
516 * COUNT_TYPE for monitoring
517 *
518 * f2fs monitors the number of several block types such as on-writeback,
519 * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
520 */
521enum count_type {
522 F2FS_WRITEBACK,
523 F2FS_DIRTY_DENTS,
524 F2FS_DIRTY_NODES,
525 F2FS_DIRTY_META,
8dcf2ff7 526 F2FS_INMEM_PAGES,
39a53e0c
JK
527 NR_COUNT_TYPE,
528};
529
39a53e0c 530/*
e1c42045 531 * The below are the page types of bios used in submit_bio().
39a53e0c
JK
532 * The available types are:
533 * DATA User data pages. It operates as async mode.
534 * NODE Node pages. It operates as async mode.
535 * META FS metadata pages such as SIT, NAT, CP.
536 * NR_PAGE_TYPE The number of page types.
537 * META_FLUSH Make sure the previous pages are written
538 * with waiting the bio's completion
539 * ... Only can be used with META.
540 */
7d5e5109 541#define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type))
39a53e0c
JK
542enum page_type {
543 DATA,
544 NODE,
545 META,
546 NR_PAGE_TYPE,
547 META_FLUSH,
548};
549
458e6197 550struct f2fs_io_info {
7e8f2308
GZ
551 enum page_type type; /* contains DATA/NODE/META/META_FLUSH */
552 int rw; /* contains R/RS/W/WS with REQ_META/REQ_PRIO */
cf04e8eb 553 block_t blk_addr; /* block address to be written */
458e6197
JK
554};
555
93dfe2ac 556#define is_read_io(rw) (((rw) & 1) == READ)
1ff7bd3b 557struct f2fs_bio_info {
458e6197 558 struct f2fs_sb_info *sbi; /* f2fs superblock */
1ff7bd3b
JK
559 struct bio *bio; /* bios to merge */
560 sector_t last_block_in_bio; /* last block number */
458e6197 561 struct f2fs_io_info fio; /* store buffered io info. */
df0f8dc0 562 struct rw_semaphore io_rwsem; /* blocking op for bio */
1ff7bd3b
JK
563};
564
67298804
CY
565/* for inner inode cache management */
566struct inode_management {
567 struct radix_tree_root ino_root; /* ino entry array */
568 spinlock_t ino_lock; /* for ino entry lock */
569 struct list_head ino_list; /* inode list head */
570 unsigned long ino_num; /* number of entries */
571};
572
caf0047e
CY
573/* For s_flag in struct f2fs_sb_info */
574enum {
575 SBI_IS_DIRTY, /* dirty flag for checkpoint */
576 SBI_IS_CLOSE, /* specify unmounting */
577 SBI_NEED_FSCK, /* need fsck.f2fs to fix */
578 SBI_POR_DOING, /* recovery is doing or not */
579};
580
39a53e0c
JK
581struct f2fs_sb_info {
582 struct super_block *sb; /* pointer to VFS super block */
5e176d54 583 struct proc_dir_entry *s_proc; /* proc entry */
39a53e0c
JK
584 struct buffer_head *raw_super_buf; /* buffer head of raw sb */
585 struct f2fs_super_block *raw_super; /* raw super block pointer */
caf0047e 586 int s_flag; /* flags for sbi */
39a53e0c
JK
587
588 /* for node-related operations */
589 struct f2fs_nm_info *nm_info; /* node manager */
590 struct inode *node_inode; /* cache node blocks */
591
592 /* for segment-related operations */
593 struct f2fs_sm_info *sm_info; /* segment manager */
1ff7bd3b
JK
594
595 /* for bio operations */
924b720b 596 struct f2fs_bio_info read_io; /* for read bios */
1ff7bd3b 597 struct f2fs_bio_info write_io[NR_PAGE_TYPE]; /* for write bios */
39a53e0c
JK
598
599 /* for checkpoint */
600 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
601 struct inode *meta_inode; /* cache meta blocks */
39936837 602 struct mutex cp_mutex; /* checkpoint procedure lock */
e479556b 603 struct rw_semaphore cp_rwsem; /* blocking FS operations */
b3582c68 604 struct rw_semaphore node_write; /* locking node writes */
39a53e0c 605 struct mutex writepages; /* mutex for writepages() */
fb51b5ef 606 wait_queue_head_t cp_wait;
39a53e0c 607
67298804 608 struct inode_management im[MAX_INO_ENTRY]; /* manage inode cache */
6451e041
JK
609
610 /* for orphan inode, use 0'th array */
0d47c1ad 611 unsigned int max_orphans; /* max orphan inodes */
39a53e0c
JK
612
613 /* for directory inode management */
614 struct list_head dir_inode_list; /* dir inode list */
615 spinlock_t dir_inode_lock; /* for dir inode list lock */
39a53e0c 616
13054c54
CY
617 /* for extent tree cache */
618 struct radix_tree_root extent_tree_root;/* cache extent cache entries */
619 struct rw_semaphore extent_tree_lock; /* locking extent radix tree */
620 struct list_head extent_list; /* lru list for shrinker */
621 spinlock_t extent_lock; /* locking extent lru list */
622 int total_ext_tree; /* extent tree count */
623 atomic_t total_ext_node; /* extent info count */
624
e1c42045 625 /* basic filesystem units */
39a53e0c
JK
626 unsigned int log_sectors_per_block; /* log2 sectors per block */
627 unsigned int log_blocksize; /* log2 block size */
628 unsigned int blocksize; /* block size */
629 unsigned int root_ino_num; /* root inode number*/
630 unsigned int node_ino_num; /* node inode number*/
631 unsigned int meta_ino_num; /* meta inode number*/
632 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
633 unsigned int blocks_per_seg; /* blocks per segment */
634 unsigned int segs_per_sec; /* segments per section */
635 unsigned int secs_per_zone; /* sections per zone */
636 unsigned int total_sections; /* total section count */
637 unsigned int total_node_count; /* total node block count */
638 unsigned int total_valid_node_count; /* valid node block count */
639 unsigned int total_valid_inode_count; /* valid inode count */
640 int active_logs; /* # of active logs */
ab9fa662 641 int dir_level; /* directory level */
39a53e0c
JK
642
643 block_t user_block_count; /* # of user blocks */
644 block_t total_valid_block_count; /* # of valid blocks */
645 block_t alloc_valid_block_count; /* # of allocated blocks */
646 block_t last_valid_block_count; /* for recovery */
647 u32 s_next_generation; /* for NFS support */
648 atomic_t nr_pages[NR_COUNT_TYPE]; /* # of pages, see count_type */
649
650 struct f2fs_mount_info mount_opt; /* mount options */
651
652 /* for cleaning operations */
653 struct mutex gc_mutex; /* mutex for GC */
654 struct f2fs_gc_kthread *gc_thread; /* GC thread */
5ec4e49f 655 unsigned int cur_victim_sec; /* current victim section num */
39a53e0c 656
b1c57c1c
JK
657 /* maximum # of trials to find a victim segment for SSR and GC */
658 unsigned int max_victim_search;
659
39a53e0c
JK
660 /*
661 * for stat information.
662 * one is for the LFS mode, and the other is for the SSR mode.
663 */
35b09d82 664#ifdef CONFIG_F2FS_STAT_FS
39a53e0c
JK
665 struct f2fs_stat_info *stat_info; /* FS status information */
666 unsigned int segment_count[2]; /* # of allocated segments */
667 unsigned int block_count[2]; /* # of allocated blocks */
b9a2c252 668 atomic_t inplace_count; /* # of inplace update */
39a53e0c 669 int total_hit_ext, read_hit_ext; /* extent cache hit ratio */
03e14d52
CY
670 atomic_t inline_inode; /* # of inline_data inodes */
671 atomic_t inline_dir; /* # of inline_dentry inodes */
39a53e0c 672 int bg_gc; /* background gc calls */
35b09d82
NJ
673 unsigned int n_dirty_dirs; /* # of dir inodes */
674#endif
675 unsigned int last_victim[2]; /* last victim segment # */
39a53e0c 676 spinlock_t stat_lock; /* lock for stat operations */
b59d0bae
NJ
677
678 /* For sysfs suppport */
679 struct kobject s_kobj;
680 struct completion s_kobj_unregister;
39a53e0c
JK
681};
682
683/*
684 * Inline functions
685 */
686static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
687{
688 return container_of(inode, struct f2fs_inode_info, vfs_inode);
689}
690
691static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
692{
693 return sb->s_fs_info;
694}
695
4081363f
JK
696static inline struct f2fs_sb_info *F2FS_I_SB(struct inode *inode)
697{
698 return F2FS_SB(inode->i_sb);
699}
700
701static inline struct f2fs_sb_info *F2FS_M_SB(struct address_space *mapping)
702{
703 return F2FS_I_SB(mapping->host);
704}
705
706static inline struct f2fs_sb_info *F2FS_P_SB(struct page *page)
707{
708 return F2FS_M_SB(page->mapping);
709}
710
39a53e0c
JK
711static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
712{
713 return (struct f2fs_super_block *)(sbi->raw_super);
714}
715
716static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
717{
718 return (struct f2fs_checkpoint *)(sbi->ckpt);
719}
720
45590710
GZ
721static inline struct f2fs_node *F2FS_NODE(struct page *page)
722{
723 return (struct f2fs_node *)page_address(page);
724}
725
58bfaf44
JK
726static inline struct f2fs_inode *F2FS_INODE(struct page *page)
727{
728 return &((struct f2fs_node *)page_address(page))->i;
729}
730
39a53e0c
JK
731static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
732{
733 return (struct f2fs_nm_info *)(sbi->nm_info);
734}
735
736static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
737{
738 return (struct f2fs_sm_info *)(sbi->sm_info);
739}
740
741static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
742{
743 return (struct sit_info *)(SM_I(sbi)->sit_info);
744}
745
746static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
747{
748 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
749}
750
751static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
752{
753 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
754}
755
9df27d98
GZ
756static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi)
757{
758 return sbi->meta_inode->i_mapping;
759}
760
4ef51a8f
JK
761static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi)
762{
763 return sbi->node_inode->i_mapping;
764}
765
caf0047e
CY
766static inline bool is_sbi_flag_set(struct f2fs_sb_info *sbi, unsigned int type)
767{
768 return sbi->s_flag & (0x01 << type);
769}
770
771static inline void set_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
39a53e0c 772{
caf0047e 773 sbi->s_flag |= (0x01 << type);
39a53e0c
JK
774}
775
caf0047e 776static inline void clear_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
39a53e0c 777{
caf0047e 778 sbi->s_flag &= ~(0x01 << type);
39a53e0c
JK
779}
780
d71b5564
JK
781static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
782{
783 return le64_to_cpu(cp->checkpoint_ver);
784}
785
25ca923b
JK
786static inline bool is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
787{
788 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
789 return ckpt_flags & f;
790}
791
792static inline void set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
793{
794 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
795 ckpt_flags |= f;
796 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
797}
798
799static inline void clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
800{
801 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
802 ckpt_flags &= (~f);
803 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
804}
805
e479556b 806static inline void f2fs_lock_op(struct f2fs_sb_info *sbi)
39936837 807{
e479556b 808 down_read(&sbi->cp_rwsem);
39936837
JK
809}
810
e479556b 811static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi)
39a53e0c 812{
e479556b 813 up_read(&sbi->cp_rwsem);
39a53e0c
JK
814}
815
e479556b 816static inline void f2fs_lock_all(struct f2fs_sb_info *sbi)
39a53e0c 817{
0daaad97 818 f2fs_down_write(&sbi->cp_rwsem, &sbi->cp_mutex);
39936837
JK
819}
820
e479556b 821static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi)
39936837 822{
e479556b 823 up_write(&sbi->cp_rwsem);
39a53e0c
JK
824}
825
119ee914
JK
826static inline int __get_cp_reason(struct f2fs_sb_info *sbi)
827{
828 int reason = CP_SYNC;
829
830 if (test_opt(sbi, FASTBOOT))
831 reason = CP_FASTBOOT;
832 if (is_sbi_flag_set(sbi, SBI_IS_CLOSE))
833 reason = CP_UMOUNT;
834 return reason;
835}
836
837static inline bool __remain_node_summaries(int reason)
838{
839 return (reason == CP_UMOUNT || reason == CP_FASTBOOT);
840}
841
842static inline bool __exist_node_summaries(struct f2fs_sb_info *sbi)
843{
844 return (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_UMOUNT_FLAG) ||
845 is_set_ckpt_flags(F2FS_CKPT(sbi), CP_FASTBOOT_FLAG));
846}
847
39a53e0c
JK
848/*
849 * Check whether the given nid is within node id range.
850 */
064e0823 851static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid)
39a53e0c 852{
d6b7d4b3
CY
853 if (unlikely(nid < F2FS_ROOT_INO(sbi)))
854 return -EINVAL;
cfb271d4 855 if (unlikely(nid >= NM_I(sbi)->max_nid))
064e0823
NJ
856 return -EINVAL;
857 return 0;
39a53e0c
JK
858}
859
860#define F2FS_DEFAULT_ALLOCATED_BLOCKS 1
861
862/*
863 * Check whether the inode has blocks or not
864 */
865static inline int F2FS_HAS_BLOCKS(struct inode *inode)
866{
867 if (F2FS_I(inode)->i_xattr_nid)
6c311ec6 868 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1;
39a53e0c 869 else
6c311ec6 870 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS;
39a53e0c
JK
871}
872
4bc8e9bc
CY
873static inline bool f2fs_has_xattr_block(unsigned int ofs)
874{
875 return ofs == XATTR_NODE_OFFSET;
876}
877
39a53e0c
JK
878static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi,
879 struct inode *inode, blkcnt_t count)
880{
881 block_t valid_block_count;
882
883 spin_lock(&sbi->stat_lock);
884 valid_block_count =
885 sbi->total_valid_block_count + (block_t)count;
cfb271d4 886 if (unlikely(valid_block_count > sbi->user_block_count)) {
39a53e0c
JK
887 spin_unlock(&sbi->stat_lock);
888 return false;
889 }
890 inode->i_blocks += count;
891 sbi->total_valid_block_count = valid_block_count;
892 sbi->alloc_valid_block_count += (block_t)count;
893 spin_unlock(&sbi->stat_lock);
894 return true;
895}
896
da19b0dc 897static inline void dec_valid_block_count(struct f2fs_sb_info *sbi,
39a53e0c
JK
898 struct inode *inode,
899 blkcnt_t count)
900{
901 spin_lock(&sbi->stat_lock);
9850cf4a
JK
902 f2fs_bug_on(sbi, sbi->total_valid_block_count < (block_t) count);
903 f2fs_bug_on(sbi, inode->i_blocks < count);
39a53e0c
JK
904 inode->i_blocks -= count;
905 sbi->total_valid_block_count -= (block_t)count;
906 spin_unlock(&sbi->stat_lock);
39a53e0c
JK
907}
908
909static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
910{
911 atomic_inc(&sbi->nr_pages[count_type]);
caf0047e 912 set_sbi_flag(sbi, SBI_IS_DIRTY);
39a53e0c
JK
913}
914
a7ffdbe2 915static inline void inode_inc_dirty_pages(struct inode *inode)
39a53e0c 916{
a7ffdbe2
JK
917 atomic_inc(&F2FS_I(inode)->dirty_pages);
918 if (S_ISDIR(inode->i_mode))
919 inc_page_count(F2FS_I_SB(inode), F2FS_DIRTY_DENTS);
39a53e0c
JK
920}
921
922static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
923{
924 atomic_dec(&sbi->nr_pages[count_type]);
925}
926
a7ffdbe2 927static inline void inode_dec_dirty_pages(struct inode *inode)
39a53e0c 928{
a7ffdbe2 929 if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode))
1fe54f9d
JK
930 return;
931
a7ffdbe2
JK
932 atomic_dec(&F2FS_I(inode)->dirty_pages);
933
934 if (S_ISDIR(inode->i_mode))
935 dec_page_count(F2FS_I_SB(inode), F2FS_DIRTY_DENTS);
39a53e0c
JK
936}
937
938static inline int get_pages(struct f2fs_sb_info *sbi, int count_type)
939{
940 return atomic_read(&sbi->nr_pages[count_type]);
941}
942
a7ffdbe2 943static inline int get_dirty_pages(struct inode *inode)
f8b2c1f9 944{
a7ffdbe2 945 return atomic_read(&F2FS_I(inode)->dirty_pages);
f8b2c1f9
JK
946}
947
5ac206cf
NJ
948static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
949{
950 unsigned int pages_per_sec = sbi->segs_per_sec *
951 (1 << sbi->log_blocks_per_seg);
952 return ((get_pages(sbi, block_type) + pages_per_sec - 1)
953 >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
954}
955
39a53e0c
JK
956static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
957{
8b8343fa 958 return sbi->total_valid_block_count;
39a53e0c
JK
959}
960
961static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
962{
963 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
964
965 /* return NAT or SIT bitmap */
966 if (flag == NAT_BITMAP)
967 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
968 else if (flag == SIT_BITMAP)
969 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
970
971 return 0;
972}
973
974static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
975{
976 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1dbe4152
CL
977 int offset;
978
979 if (le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload) > 0) {
980 if (flag == NAT_BITMAP)
981 return &ckpt->sit_nat_version_bitmap;
982 else
65b85ccc 983 return (unsigned char *)ckpt + F2FS_BLKSIZE;
1dbe4152
CL
984 } else {
985 offset = (flag == NAT_BITMAP) ?
25ca923b 986 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
1dbe4152
CL
987 return &ckpt->sit_nat_version_bitmap + offset;
988 }
39a53e0c
JK
989}
990
991static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
992{
993 block_t start_addr;
994 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
d71b5564 995 unsigned long long ckpt_version = cur_cp_version(ckpt);
39a53e0c 996
25ca923b 997 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
39a53e0c
JK
998
999 /*
1000 * odd numbered checkpoint should at cp segment 0
e1c42045 1001 * and even segment must be at cp segment 1
39a53e0c
JK
1002 */
1003 if (!(ckpt_version & 1))
1004 start_addr += sbi->blocks_per_seg;
1005
1006 return start_addr;
1007}
1008
1009static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
1010{
1011 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
1012}
1013
1014static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi,
ef86d709 1015 struct inode *inode)
39a53e0c
JK
1016{
1017 block_t valid_block_count;
1018 unsigned int valid_node_count;
1019
1020 spin_lock(&sbi->stat_lock);
1021
ef86d709 1022 valid_block_count = sbi->total_valid_block_count + 1;
cfb271d4 1023 if (unlikely(valid_block_count > sbi->user_block_count)) {
39a53e0c
JK
1024 spin_unlock(&sbi->stat_lock);
1025 return false;
1026 }
1027
ef86d709 1028 valid_node_count = sbi->total_valid_node_count + 1;
cfb271d4 1029 if (unlikely(valid_node_count > sbi->total_node_count)) {
39a53e0c
JK
1030 spin_unlock(&sbi->stat_lock);
1031 return false;
1032 }
1033
1034 if (inode)
ef86d709
GZ
1035 inode->i_blocks++;
1036
1037 sbi->alloc_valid_block_count++;
1038 sbi->total_valid_node_count++;
1039 sbi->total_valid_block_count++;
39a53e0c
JK
1040 spin_unlock(&sbi->stat_lock);
1041
1042 return true;
1043}
1044
1045static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
ef86d709 1046 struct inode *inode)
39a53e0c
JK
1047{
1048 spin_lock(&sbi->stat_lock);
1049
9850cf4a
JK
1050 f2fs_bug_on(sbi, !sbi->total_valid_block_count);
1051 f2fs_bug_on(sbi, !sbi->total_valid_node_count);
1052 f2fs_bug_on(sbi, !inode->i_blocks);
39a53e0c 1053
ef86d709
GZ
1054 inode->i_blocks--;
1055 sbi->total_valid_node_count--;
1056 sbi->total_valid_block_count--;
39a53e0c
JK
1057
1058 spin_unlock(&sbi->stat_lock);
1059}
1060
1061static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
1062{
8b8343fa 1063 return sbi->total_valid_node_count;
39a53e0c
JK
1064}
1065
1066static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
1067{
1068 spin_lock(&sbi->stat_lock);
9850cf4a 1069 f2fs_bug_on(sbi, sbi->total_valid_inode_count == sbi->total_node_count);
39a53e0c
JK
1070 sbi->total_valid_inode_count++;
1071 spin_unlock(&sbi->stat_lock);
1072}
1073
0e80220a 1074static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi)
39a53e0c
JK
1075{
1076 spin_lock(&sbi->stat_lock);
9850cf4a 1077 f2fs_bug_on(sbi, !sbi->total_valid_inode_count);
39a53e0c
JK
1078 sbi->total_valid_inode_count--;
1079 spin_unlock(&sbi->stat_lock);
39a53e0c
JK
1080}
1081
1082static inline unsigned int valid_inode_count(struct f2fs_sb_info *sbi)
1083{
8b8343fa 1084 return sbi->total_valid_inode_count;
39a53e0c
JK
1085}
1086
1087static inline void f2fs_put_page(struct page *page, int unlock)
1088{
031fa8cc 1089 if (!page)
39a53e0c
JK
1090 return;
1091
1092 if (unlock) {
9850cf4a 1093 f2fs_bug_on(F2FS_P_SB(page), !PageLocked(page));
39a53e0c
JK
1094 unlock_page(page);
1095 }
1096 page_cache_release(page);
1097}
1098
1099static inline void f2fs_put_dnode(struct dnode_of_data *dn)
1100{
1101 if (dn->node_page)
1102 f2fs_put_page(dn->node_page, 1);
1103 if (dn->inode_page && dn->node_page != dn->inode_page)
1104 f2fs_put_page(dn->inode_page, 0);
1105 dn->node_page = NULL;
1106 dn->inode_page = NULL;
1107}
1108
1109static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
e8512d2e 1110 size_t size)
39a53e0c 1111{
e8512d2e 1112 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL);
39a53e0c
JK
1113}
1114
7bd59381
GZ
1115static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep,
1116 gfp_t flags)
1117{
1118 void *entry;
1119retry:
1120 entry = kmem_cache_alloc(cachep, flags);
1121 if (!entry) {
1122 cond_resched();
1123 goto retry;
1124 }
1125
1126 return entry;
1127}
1128
9be32d72
JK
1129static inline void f2fs_radix_tree_insert(struct radix_tree_root *root,
1130 unsigned long index, void *item)
1131{
1132 while (radix_tree_insert(root, index, item))
1133 cond_resched();
1134}
1135
39a53e0c
JK
1136#define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
1137
1138static inline bool IS_INODE(struct page *page)
1139{
45590710 1140 struct f2fs_node *p = F2FS_NODE(page);
39a53e0c
JK
1141 return RAW_IS_INODE(p);
1142}
1143
1144static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
1145{
1146 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
1147}
1148
1149static inline block_t datablock_addr(struct page *node_page,
1150 unsigned int offset)
1151{
1152 struct f2fs_node *raw_node;
1153 __le32 *addr_array;
45590710 1154 raw_node = F2FS_NODE(node_page);
39a53e0c
JK
1155 addr_array = blkaddr_in_node(raw_node);
1156 return le32_to_cpu(addr_array[offset]);
1157}
1158
1159static inline int f2fs_test_bit(unsigned int nr, char *addr)
1160{
1161 int mask;
1162
1163 addr += (nr >> 3);
1164 mask = 1 << (7 - (nr & 0x07));
1165 return mask & *addr;
1166}
1167
52aca074 1168static inline int f2fs_test_and_set_bit(unsigned int nr, char *addr)
39a53e0c
JK
1169{
1170 int mask;
1171 int ret;
1172
1173 addr += (nr >> 3);
1174 mask = 1 << (7 - (nr & 0x07));
1175 ret = mask & *addr;
1176 *addr |= mask;
1177 return ret;
1178}
1179
52aca074 1180static inline int f2fs_test_and_clear_bit(unsigned int nr, char *addr)
39a53e0c
JK
1181{
1182 int mask;
1183 int ret;
1184
1185 addr += (nr >> 3);
1186 mask = 1 << (7 - (nr & 0x07));
1187 ret = mask & *addr;
1188 *addr &= ~mask;
1189 return ret;
1190}
1191
c6ac4c0e
GZ
1192static inline void f2fs_change_bit(unsigned int nr, char *addr)
1193{
1194 int mask;
1195
1196 addr += (nr >> 3);
1197 mask = 1 << (7 - (nr & 0x07));
1198 *addr ^= mask;
1199}
1200
39a53e0c
JK
1201/* used for f2fs_inode_info->flags */
1202enum {
1203 FI_NEW_INODE, /* indicate newly allocated inode */
b3783873 1204 FI_DIRTY_INODE, /* indicate inode is dirty or not */
ed57c27f 1205 FI_DIRTY_DIR, /* indicate directory has dirty pages */
39a53e0c
JK
1206 FI_INC_LINK, /* need to increment i_nlink */
1207 FI_ACL_MODE, /* indicate acl mode */
1208 FI_NO_ALLOC, /* should not allocate any blocks */
699489bb 1209 FI_UPDATE_DIR, /* should update inode block for consistency */
74d0b917 1210 FI_DELAY_IPUT, /* used for the recovery */
c11abd1a 1211 FI_NO_EXTENT, /* not to use the extent cache */
444c580f 1212 FI_INLINE_XATTR, /* used for inline xattr */
1001b347 1213 FI_INLINE_DATA, /* used for inline data*/
34d67deb 1214 FI_INLINE_DENTRY, /* used for inline dentry */
fff04f90
JK
1215 FI_APPEND_WRITE, /* inode has appended data */
1216 FI_UPDATE_WRITE, /* inode has in-place-update data */
88b88a66
JK
1217 FI_NEED_IPU, /* used for ipu per file */
1218 FI_ATOMIC_FILE, /* indicate atomic file */
02a1335f 1219 FI_VOLATILE_FILE, /* indicate volatile file */
1e84371f 1220 FI_DROP_CACHE, /* drop dirty page cache */
b3d208f9 1221 FI_DATA_EXIST, /* indicate data exists */
39a53e0c
JK
1222};
1223
1224static inline void set_inode_flag(struct f2fs_inode_info *fi, int flag)
1225{
61e0f2d0
JK
1226 if (!test_bit(flag, &fi->flags))
1227 set_bit(flag, &fi->flags);
39a53e0c
JK
1228}
1229
1230static inline int is_inode_flag_set(struct f2fs_inode_info *fi, int flag)
1231{
1232 return test_bit(flag, &fi->flags);
1233}
1234
1235static inline void clear_inode_flag(struct f2fs_inode_info *fi, int flag)
1236{
61e0f2d0
JK
1237 if (test_bit(flag, &fi->flags))
1238 clear_bit(flag, &fi->flags);
39a53e0c
JK
1239}
1240
1241static inline void set_acl_inode(struct f2fs_inode_info *fi, umode_t mode)
1242{
1243 fi->i_acl_mode = mode;
1244 set_inode_flag(fi, FI_ACL_MODE);
1245}
1246
444c580f
JK
1247static inline void get_inline_info(struct f2fs_inode_info *fi,
1248 struct f2fs_inode *ri)
1249{
1250 if (ri->i_inline & F2FS_INLINE_XATTR)
1251 set_inode_flag(fi, FI_INLINE_XATTR);
1001b347
HL
1252 if (ri->i_inline & F2FS_INLINE_DATA)
1253 set_inode_flag(fi, FI_INLINE_DATA);
34d67deb
CY
1254 if (ri->i_inline & F2FS_INLINE_DENTRY)
1255 set_inode_flag(fi, FI_INLINE_DENTRY);
b3d208f9
JK
1256 if (ri->i_inline & F2FS_DATA_EXIST)
1257 set_inode_flag(fi, FI_DATA_EXIST);
444c580f
JK
1258}
1259
1260static inline void set_raw_inline(struct f2fs_inode_info *fi,
1261 struct f2fs_inode *ri)
1262{
1263 ri->i_inline = 0;
1264
1265 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
1266 ri->i_inline |= F2FS_INLINE_XATTR;
1001b347
HL
1267 if (is_inode_flag_set(fi, FI_INLINE_DATA))
1268 ri->i_inline |= F2FS_INLINE_DATA;
34d67deb
CY
1269 if (is_inode_flag_set(fi, FI_INLINE_DENTRY))
1270 ri->i_inline |= F2FS_INLINE_DENTRY;
b3d208f9
JK
1271 if (is_inode_flag_set(fi, FI_DATA_EXIST))
1272 ri->i_inline |= F2FS_DATA_EXIST;
444c580f
JK
1273}
1274
987c7c31
CY
1275static inline int f2fs_has_inline_xattr(struct inode *inode)
1276{
1277 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR);
1278}
1279
de93653f
JK
1280static inline unsigned int addrs_per_inode(struct f2fs_inode_info *fi)
1281{
987c7c31 1282 if (f2fs_has_inline_xattr(&fi->vfs_inode))
de93653f
JK
1283 return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS;
1284 return DEF_ADDRS_PER_INODE;
1285}
1286
65985d93
JK
1287static inline void *inline_xattr_addr(struct page *page)
1288{
695fd1ed 1289 struct f2fs_inode *ri = F2FS_INODE(page);
65985d93
JK
1290 return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE -
1291 F2FS_INLINE_XATTR_ADDRS]);
1292}
1293
1294static inline int inline_xattr_size(struct inode *inode)
1295{
987c7c31 1296 if (f2fs_has_inline_xattr(inode))
65985d93
JK
1297 return F2FS_INLINE_XATTR_ADDRS << 2;
1298 else
1299 return 0;
1300}
1301
0dbdc2ae
JK
1302static inline int f2fs_has_inline_data(struct inode *inode)
1303{
1304 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DATA);
1305}
1306
b3d208f9
JK
1307static inline void f2fs_clear_inline_inode(struct inode *inode)
1308{
1309 clear_inode_flag(F2FS_I(inode), FI_INLINE_DATA);
1310 clear_inode_flag(F2FS_I(inode), FI_DATA_EXIST);
1311}
1312
1313static inline int f2fs_exist_data(struct inode *inode)
1314{
1315 return is_inode_flag_set(F2FS_I(inode), FI_DATA_EXIST);
1316}
1317
88b88a66
JK
1318static inline bool f2fs_is_atomic_file(struct inode *inode)
1319{
1320 return is_inode_flag_set(F2FS_I(inode), FI_ATOMIC_FILE);
1321}
1322
02a1335f
JK
1323static inline bool f2fs_is_volatile_file(struct inode *inode)
1324{
1325 return is_inode_flag_set(F2FS_I(inode), FI_VOLATILE_FILE);
1326}
1327
1e84371f
JK
1328static inline bool f2fs_is_drop_cache(struct inode *inode)
1329{
1330 return is_inode_flag_set(F2FS_I(inode), FI_DROP_CACHE);
1331}
1332
1001b347
HL
1333static inline void *inline_data_addr(struct page *page)
1334{
695fd1ed 1335 struct f2fs_inode *ri = F2FS_INODE(page);
1001b347
HL
1336 return (void *)&(ri->i_addr[1]);
1337}
1338
34d67deb
CY
1339static inline int f2fs_has_inline_dentry(struct inode *inode)
1340{
1341 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DENTRY);
1342}
1343
9486ba44
JK
1344static inline void f2fs_dentry_kunmap(struct inode *dir, struct page *page)
1345{
1346 if (!f2fs_has_inline_dentry(dir))
1347 kunmap(page);
1348}
1349
77888c1e
JK
1350static inline int f2fs_readonly(struct super_block *sb)
1351{
1352 return sb->s_flags & MS_RDONLY;
1353}
1354
1e968fdf
JK
1355static inline bool f2fs_cp_error(struct f2fs_sb_info *sbi)
1356{
1357 return is_set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1358}
1359
744602cf
JK
1360static inline void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi)
1361{
1362 set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1363 sbi->sb->s_flags |= MS_RDONLY;
1364}
1365
a6dda0e6
CH
1366#define get_inode_mode(i) \
1367 ((is_inode_flag_set(F2FS_I(i), FI_ACL_MODE)) ? \
1368 (F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
1369
267378d4
CY
1370/* get offset of first page in next direct node */
1371#define PGOFS_OF_NEXT_DNODE(pgofs, fi) \
1372 ((pgofs < ADDRS_PER_INODE(fi)) ? ADDRS_PER_INODE(fi) : \
1373 (pgofs - ADDRS_PER_INODE(fi) + ADDRS_PER_BLOCK) / \
1374 ADDRS_PER_BLOCK * ADDRS_PER_BLOCK + ADDRS_PER_INODE(fi))
1375
39a53e0c
JK
1376/*
1377 * file.c
1378 */
1379int f2fs_sync_file(struct file *, loff_t, loff_t, int);
1380void truncate_data_blocks(struct dnode_of_data *);
764aa3e9 1381int truncate_blocks(struct inode *, u64, bool);
39a53e0c 1382void f2fs_truncate(struct inode *);
2d4d9fb5 1383int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
39a53e0c
JK
1384int f2fs_setattr(struct dentry *, struct iattr *);
1385int truncate_hole(struct inode *, pgoff_t, pgoff_t);
b292dcab 1386int truncate_data_blocks_range(struct dnode_of_data *, int);
39a53e0c 1387long f2fs_ioctl(struct file *, unsigned int, unsigned long);
e9750824 1388long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long);
39a53e0c
JK
1389
1390/*
1391 * inode.c
1392 */
1393void f2fs_set_inode_flags(struct inode *);
39a53e0c 1394struct inode *f2fs_iget(struct super_block *, unsigned long);
4660f9c0 1395int try_to_free_nats(struct f2fs_sb_info *, int);
39a53e0c 1396void update_inode(struct inode *, struct page *);
744602cf 1397void update_inode_page(struct inode *);
39a53e0c
JK
1398int f2fs_write_inode(struct inode *, struct writeback_control *);
1399void f2fs_evict_inode(struct inode *);
44c16156 1400void handle_failed_inode(struct inode *);
39a53e0c
JK
1401
1402/*
1403 * namei.c
1404 */
1405struct dentry *f2fs_get_parent(struct dentry *child);
1406
1407/*
1408 * dir.c
1409 */
dbeacf02 1410extern unsigned char f2fs_filetype_table[F2FS_FT_MAX];
dbeacf02 1411void set_de_type(struct f2fs_dir_entry *, struct inode *);
7b3cd7d6
JK
1412struct f2fs_dir_entry *find_target_dentry(struct qstr *, int *,
1413 struct f2fs_dentry_ptr *);
1414bool f2fs_fill_dentries(struct dir_context *, struct f2fs_dentry_ptr *,
1415 unsigned int);
062a3e7b
JK
1416void do_make_empty_dir(struct inode *, struct inode *,
1417 struct f2fs_dentry_ptr *);
dbeacf02 1418struct page *init_inode_metadata(struct inode *, struct inode *,
bce8d112 1419 const struct qstr *, struct page *);
dbeacf02 1420void update_parent_metadata(struct inode *, struct inode *, unsigned int);
a82afa20 1421int room_for_filename(const void *, int, int);
dbeacf02 1422void f2fs_drop_nlink(struct inode *, struct inode *, struct page *);
39a53e0c
JK
1423struct f2fs_dir_entry *f2fs_find_entry(struct inode *, struct qstr *,
1424 struct page **);
1425struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **);
1426ino_t f2fs_inode_by_name(struct inode *, struct qstr *);
1427void f2fs_set_link(struct inode *, struct f2fs_dir_entry *,
1428 struct page *, struct inode *);
1cd14caf 1429int update_dent_inode(struct inode *, const struct qstr *);
3b4d732a
CY
1430void f2fs_update_dentry(struct inode *, struct f2fs_dentry_ptr *,
1431 const struct qstr *, f2fs_hash_t , unsigned int);
b7f7a5e0 1432int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *);
dbeacf02
CY
1433void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *,
1434 struct inode *);
b97a9b5d 1435int f2fs_do_tmpfile(struct inode *, struct inode *);
39a53e0c
JK
1436int f2fs_make_empty(struct inode *, struct inode *);
1437bool f2fs_empty_dir(struct inode *);
1438
b7f7a5e0
AV
1439static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
1440{
1441 return __f2fs_add_link(dentry->d_parent->d_inode, &dentry->d_name,
1442 inode);
1443}
1444
39a53e0c
JK
1445/*
1446 * super.c
1447 */
1448int f2fs_sync_fs(struct super_block *, int);
a07ef784
NJ
1449extern __printf(3, 4)
1450void f2fs_msg(struct super_block *, const char *, const char *, ...);
39a53e0c
JK
1451
1452/*
1453 * hash.c
1454 */
eee6160f 1455f2fs_hash_t f2fs_dentry_hash(const struct qstr *);
39a53e0c
JK
1456
1457/*
1458 * node.c
1459 */
1460struct dnode_of_data;
1461struct node_info;
1462
6fb03f3a 1463bool available_free_memory(struct f2fs_sb_info *, int);
88bd02c9
JK
1464bool is_checkpointed_node(struct f2fs_sb_info *, nid_t);
1465bool has_fsynced_inode(struct f2fs_sb_info *, nid_t);
1466bool need_inode_block_update(struct f2fs_sb_info *, nid_t);
39a53e0c
JK
1467void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *);
1468int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int);
1469int truncate_inode_blocks(struct inode *, pgoff_t);
4f16fb0f 1470int truncate_xattr_node(struct inode *, struct page *);
cfe58f9d 1471int wait_on_node_pages_writeback(struct f2fs_sb_info *, nid_t);
58e674d6 1472void remove_inode_page(struct inode *);
a014e037 1473struct page *new_inode_page(struct inode *);
8ae8f162 1474struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *);
39a53e0c
JK
1475void ra_node_page(struct f2fs_sb_info *, nid_t);
1476struct page *get_node_page(struct f2fs_sb_info *, pgoff_t);
1477struct page *get_node_page_ra(struct page *, int);
1478void sync_inode_page(struct dnode_of_data *);
1479int sync_node_pages(struct f2fs_sb_info *, nid_t, struct writeback_control *);
1480bool alloc_nid(struct f2fs_sb_info *, nid_t *);
1481void alloc_nid_done(struct f2fs_sb_info *, nid_t);
1482void alloc_nid_failed(struct f2fs_sb_info *, nid_t);
70cfed88 1483void recover_inline_xattr(struct inode *, struct page *);
1c35a90e 1484void recover_xattr_data(struct inode *, struct page *, block_t);
39a53e0c
JK
1485int recover_inode_page(struct f2fs_sb_info *, struct page *);
1486int restore_node_summary(struct f2fs_sb_info *, unsigned int,
1487 struct f2fs_summary_block *);
1488void flush_nat_entries(struct f2fs_sb_info *);
1489int build_node_manager(struct f2fs_sb_info *);
1490void destroy_node_manager(struct f2fs_sb_info *);
6e6093a8 1491int __init create_node_manager_caches(void);
39a53e0c
JK
1492void destroy_node_manager_caches(void);
1493
1494/*
1495 * segment.c
1496 */
88b88a66
JK
1497void register_inmem_page(struct inode *, struct page *);
1498void commit_inmem_pages(struct inode *, bool);
39a53e0c 1499void f2fs_balance_fs(struct f2fs_sb_info *);
4660f9c0 1500void f2fs_balance_fs_bg(struct f2fs_sb_info *);
6b4afdd7 1501int f2fs_issue_flush(struct f2fs_sb_info *);
2163d198
GZ
1502int create_flush_cmd_control(struct f2fs_sb_info *);
1503void destroy_flush_cmd_control(struct f2fs_sb_info *);
39a53e0c 1504void invalidate_blocks(struct f2fs_sb_info *, block_t);
5e443818 1505void refresh_sit_entry(struct f2fs_sb_info *, block_t, block_t);
39a53e0c 1506void clear_prefree_segments(struct f2fs_sb_info *);
4b2fecc8 1507void release_discard_addrs(struct f2fs_sb_info *);
cf2271e7 1508void discard_next_dnode(struct f2fs_sb_info *, block_t);
3fa06d7b 1509int npages_for_summary_flush(struct f2fs_sb_info *, bool);
39a53e0c 1510void allocate_new_segments(struct f2fs_sb_info *);
4b2fecc8 1511int f2fs_trim_fs(struct f2fs_sb_info *, struct fstrim_range *);
39a53e0c 1512struct page *get_sum_page(struct f2fs_sb_info *, unsigned int);
577e3495 1513void write_meta_page(struct f2fs_sb_info *, struct page *);
fb5566da 1514void write_node_page(struct f2fs_sb_info *, struct page *,
cf04e8eb
JK
1515 unsigned int, struct f2fs_io_info *);
1516void write_data_page(struct page *, struct dnode_of_data *,
1517 struct f2fs_io_info *);
1518void rewrite_data_page(struct page *, struct f2fs_io_info *);
39a53e0c
JK
1519void recover_data_page(struct f2fs_sb_info *, struct page *,
1520 struct f2fs_summary *, block_t, block_t);
bfad7c2d
JK
1521void allocate_data_block(struct f2fs_sb_info *, struct page *,
1522 block_t, block_t *, struct f2fs_summary *, int);
5514f0aa 1523void f2fs_wait_on_page_writeback(struct page *, enum page_type);
39a53e0c
JK
1524void write_data_summaries(struct f2fs_sb_info *, block_t);
1525void write_node_summaries(struct f2fs_sb_info *, block_t);
1526int lookup_journal_in_cursum(struct f2fs_summary_block *,
1527 int, unsigned int, int);
4b2fecc8 1528void flush_sit_entries(struct f2fs_sb_info *, struct cp_control *);
39a53e0c 1529int build_segment_manager(struct f2fs_sb_info *);
39a53e0c 1530void destroy_segment_manager(struct f2fs_sb_info *);
7fd9e544
JK
1531int __init create_segment_manager_caches(void);
1532void destroy_segment_manager_caches(void);
39a53e0c
JK
1533
1534/*
1535 * checkpoint.c
1536 */
1537struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t);
1538struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t);
4c521f49 1539int ra_meta_pages(struct f2fs_sb_info *, block_t, int, int);
635aee1f 1540void ra_meta_pages_cond(struct f2fs_sb_info *, pgoff_t);
39a53e0c 1541long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long);
fff04f90
JK
1542void add_dirty_inode(struct f2fs_sb_info *, nid_t, int type);
1543void remove_dirty_inode(struct f2fs_sb_info *, nid_t, int type);
6f12ac25 1544void release_dirty_inode(struct f2fs_sb_info *);
fff04f90 1545bool exist_written_data(struct f2fs_sb_info *, nid_t, int);
cbd56e7d
JK
1546int acquire_orphan_inode(struct f2fs_sb_info *);
1547void release_orphan_inode(struct f2fs_sb_info *);
39a53e0c
JK
1548void add_orphan_inode(struct f2fs_sb_info *, nid_t);
1549void remove_orphan_inode(struct f2fs_sb_info *, nid_t);
8f99a946 1550void recover_orphan_inodes(struct f2fs_sb_info *);
39a53e0c 1551int get_valid_checkpoint(struct f2fs_sb_info *);
a7ffdbe2 1552void update_dirty_page(struct inode *, struct page *);
5deb8267 1553void add_dirty_dir_inode(struct inode *);
39a53e0c
JK
1554void remove_dirty_dir_inode(struct inode *);
1555void sync_dirty_dir_inodes(struct f2fs_sb_info *);
75ab4cb8 1556void write_checkpoint(struct f2fs_sb_info *, struct cp_control *);
6451e041 1557void init_ino_entry_info(struct f2fs_sb_info *);
6e6093a8 1558int __init create_checkpoint_caches(void);
39a53e0c
JK
1559void destroy_checkpoint_caches(void);
1560
1561/*
1562 * data.c
1563 */
458e6197 1564void f2fs_submit_merged_bio(struct f2fs_sb_info *, enum page_type, int);
cf04e8eb
JK
1565int f2fs_submit_page_bio(struct f2fs_sb_info *, struct page *,
1566 struct f2fs_io_info *);
1567void f2fs_submit_page_mbio(struct f2fs_sb_info *, struct page *,
458e6197 1568 struct f2fs_io_info *);
39a53e0c 1569int reserve_new_block(struct dnode_of_data *);
b600965c 1570int f2fs_reserve_block(struct dnode_of_data *, pgoff_t);
429511cd
CY
1571void f2fs_shrink_extent_tree(struct f2fs_sb_info *, int);
1572void f2fs_destroy_extent_tree(struct inode *);
7e4dde79 1573void f2fs_update_extent_cache(struct dnode_of_data *);
c718379b 1574struct page *find_data_page(struct inode *, pgoff_t, bool);
39a53e0c 1575struct page *get_lock_data_page(struct inode *, pgoff_t);
64aa7ed9 1576struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool);
458e6197 1577int do_write_data_page(struct page *, struct f2fs_io_info *);
9ab70134 1578int f2fs_fiemap(struct inode *inode, struct fiemap_extent_info *, u64, u64);
429511cd
CY
1579void init_extent_cache_info(struct f2fs_sb_info *);
1580int __init create_extent_cache(void);
1581void destroy_extent_cache(void);
487261f3
CY
1582void f2fs_invalidate_page(struct page *, unsigned int, unsigned int);
1583int f2fs_release_page(struct page *, gfp_t);
39a53e0c
JK
1584
1585/*
1586 * gc.c
1587 */
1588int start_gc_thread(struct f2fs_sb_info *);
1589void stop_gc_thread(struct f2fs_sb_info *);
de93653f 1590block_t start_bidx_of_node(unsigned int, struct f2fs_inode_info *);
408e9375 1591int f2fs_gc(struct f2fs_sb_info *);
39a53e0c 1592void build_gc_manager(struct f2fs_sb_info *);
39a53e0c
JK
1593
1594/*
1595 * recovery.c
1596 */
6ead1142 1597int recover_fsync_data(struct f2fs_sb_info *);
39a53e0c
JK
1598bool space_for_roll_forward(struct f2fs_sb_info *);
1599
1600/*
1601 * debug.c
1602 */
1603#ifdef CONFIG_F2FS_STAT_FS
1604struct f2fs_stat_info {
1605 struct list_head stat_list;
1606 struct f2fs_sb_info *sbi;
39a53e0c
JK
1607 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
1608 int main_area_segs, main_area_sections, main_area_zones;
1609 int hit_ext, total_ext;
1610 int ndirty_node, ndirty_dent, ndirty_dirs, ndirty_meta;
dd4e4b59 1611 int nats, dirty_nats, sits, dirty_sits, fnids;
39a53e0c 1612 int total_count, utilization;
d24bdcbf 1613 int bg_gc, inline_inode, inline_dir, inmem_pages, wb_pages;
39a53e0c
JK
1614 unsigned int valid_count, valid_node_count, valid_inode_count;
1615 unsigned int bimodal, avg_vblocks;
1616 int util_free, util_valid, util_invalid;
1617 int rsvd_segs, overp_segs;
1618 int dirty_count, node_pages, meta_pages;
942e0be6 1619 int prefree_count, call_count, cp_count;
39a53e0c
JK
1620 int tot_segs, node_segs, data_segs, free_segs, free_secs;
1621 int tot_blks, data_blks, node_blks;
1622 int curseg[NR_CURSEG_TYPE];
1623 int cursec[NR_CURSEG_TYPE];
1624 int curzone[NR_CURSEG_TYPE];
1625
1626 unsigned int segment_count[2];
1627 unsigned int block_count[2];
b9a2c252 1628 unsigned int inplace_count;
6f0aacbc 1629 unsigned base_mem, cache_mem, page_mem;
39a53e0c
JK
1630};
1631
963d4f7d
GZ
1632static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
1633{
6c311ec6 1634 return (struct f2fs_stat_info *)sbi->stat_info;
963d4f7d
GZ
1635}
1636
942e0be6 1637#define stat_inc_cp_count(si) ((si)->cp_count++)
dcdfff65
JK
1638#define stat_inc_call_count(si) ((si)->call_count++)
1639#define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++)
1640#define stat_inc_dirty_dir(sbi) ((sbi)->n_dirty_dirs++)
1641#define stat_dec_dirty_dir(sbi) ((sbi)->n_dirty_dirs--)
1642#define stat_inc_total_hit(sb) ((F2FS_SB(sb))->total_hit_ext++)
1643#define stat_inc_read_hit(sb) ((F2FS_SB(sb))->read_hit_ext++)
0dbdc2ae
JK
1644#define stat_inc_inline_inode(inode) \
1645 do { \
1646 if (f2fs_has_inline_data(inode)) \
03e14d52 1647 (atomic_inc(&F2FS_I_SB(inode)->inline_inode)); \
0dbdc2ae
JK
1648 } while (0)
1649#define stat_dec_inline_inode(inode) \
1650 do { \
1651 if (f2fs_has_inline_data(inode)) \
03e14d52 1652 (atomic_dec(&F2FS_I_SB(inode)->inline_inode)); \
0dbdc2ae 1653 } while (0)
3289c061
JK
1654#define stat_inc_inline_dir(inode) \
1655 do { \
1656 if (f2fs_has_inline_dentry(inode)) \
03e14d52 1657 (atomic_inc(&F2FS_I_SB(inode)->inline_dir)); \
3289c061
JK
1658 } while (0)
1659#define stat_dec_inline_dir(inode) \
1660 do { \
1661 if (f2fs_has_inline_dentry(inode)) \
03e14d52 1662 (atomic_dec(&F2FS_I_SB(inode)->inline_dir)); \
3289c061 1663 } while (0)
dcdfff65
JK
1664#define stat_inc_seg_type(sbi, curseg) \
1665 ((sbi)->segment_count[(curseg)->alloc_type]++)
1666#define stat_inc_block_count(sbi, curseg) \
1667 ((sbi)->block_count[(curseg)->alloc_type]++)
b9a2c252
CL
1668#define stat_inc_inplace_blocks(sbi) \
1669 (atomic_inc(&(sbi)->inplace_count))
39a53e0c
JK
1670#define stat_inc_seg_count(sbi, type) \
1671 do { \
963d4f7d 1672 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
39a53e0c
JK
1673 (si)->tot_segs++; \
1674 if (type == SUM_TYPE_DATA) \
1675 si->data_segs++; \
1676 else \
1677 si->node_segs++; \
1678 } while (0)
1679
1680#define stat_inc_tot_blk_count(si, blks) \
1681 (si->tot_blks += (blks))
1682
1683#define stat_inc_data_blk_count(sbi, blks) \
1684 do { \
963d4f7d 1685 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
39a53e0c
JK
1686 stat_inc_tot_blk_count(si, blks); \
1687 si->data_blks += (blks); \
1688 } while (0)
1689
1690#define stat_inc_node_blk_count(sbi, blks) \
1691 do { \
963d4f7d 1692 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
39a53e0c
JK
1693 stat_inc_tot_blk_count(si, blks); \
1694 si->node_blks += (blks); \
1695 } while (0)
1696
1697int f2fs_build_stats(struct f2fs_sb_info *);
1698void f2fs_destroy_stats(struct f2fs_sb_info *);
6e6093a8 1699void __init f2fs_create_root_stats(void);
4589d25d 1700void f2fs_destroy_root_stats(void);
39a53e0c 1701#else
942e0be6 1702#define stat_inc_cp_count(si)
39a53e0c 1703#define stat_inc_call_count(si)
dcdfff65
JK
1704#define stat_inc_bggc_count(si)
1705#define stat_inc_dirty_dir(sbi)
1706#define stat_dec_dirty_dir(sbi)
1707#define stat_inc_total_hit(sb)
1708#define stat_inc_read_hit(sb)
0dbdc2ae
JK
1709#define stat_inc_inline_inode(inode)
1710#define stat_dec_inline_inode(inode)
3289c061
JK
1711#define stat_inc_inline_dir(inode)
1712#define stat_dec_inline_dir(inode)
dcdfff65
JK
1713#define stat_inc_seg_type(sbi, curseg)
1714#define stat_inc_block_count(sbi, curseg)
b9a2c252 1715#define stat_inc_inplace_blocks(sbi)
39a53e0c
JK
1716#define stat_inc_seg_count(si, type)
1717#define stat_inc_tot_blk_count(si, blks)
1718#define stat_inc_data_blk_count(si, blks)
1719#define stat_inc_node_blk_count(sbi, blks)
1720
1721static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
1722static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
6e6093a8 1723static inline void __init f2fs_create_root_stats(void) { }
4589d25d 1724static inline void f2fs_destroy_root_stats(void) { }
39a53e0c
JK
1725#endif
1726
1727extern const struct file_operations f2fs_dir_operations;
1728extern const struct file_operations f2fs_file_operations;
1729extern const struct inode_operations f2fs_file_inode_operations;
1730extern const struct address_space_operations f2fs_dblock_aops;
1731extern const struct address_space_operations f2fs_node_aops;
1732extern const struct address_space_operations f2fs_meta_aops;
1733extern const struct inode_operations f2fs_dir_inode_operations;
1734extern const struct inode_operations f2fs_symlink_inode_operations;
1735extern const struct inode_operations f2fs_special_inode_operations;
29e7043f 1736extern struct kmem_cache *inode_entry_slab;
1001b347 1737
e18c65b2
HL
1738/*
1739 * inline.c
1740 */
e18c65b2 1741bool f2fs_may_inline(struct inode *);
b3d208f9 1742void read_inline_data(struct page *, struct page *);
e18c65b2 1743int f2fs_read_inline_data(struct inode *, struct page *);
b3d208f9
JK
1744int f2fs_convert_inline_page(struct dnode_of_data *, struct page *);
1745int f2fs_convert_inline_inode(struct inode *);
1746int f2fs_write_inline_data(struct inode *, struct page *);
0342fd30 1747bool recover_inline_data(struct inode *, struct page *);
201a05be
CY
1748struct f2fs_dir_entry *find_in_inline_dir(struct inode *, struct qstr *,
1749 struct page **);
1750struct f2fs_dir_entry *f2fs_parent_inline_dir(struct inode *, struct page **);
1751int make_empty_inline_dir(struct inode *inode, struct inode *, struct page *);
1752int f2fs_add_inline_entry(struct inode *, const struct qstr *, struct inode *);
1753void f2fs_delete_inline_entry(struct f2fs_dir_entry *, struct page *,
1754 struct inode *, struct inode *);
1755bool f2fs_empty_inline_dir(struct inode *);
1756int f2fs_read_inline_dir(struct file *, struct dir_context *);
39a53e0c 1757#endif
This page took 0.206878 seconds and 5 git commands to generate.