]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/f2fs/f2fs.h
f2fs: introduce help macro on_build_free_nids()
[mirror_ubuntu-artful-kernel.git] / fs / f2fs / f2fs.h
CommitLineData
0a8165d7 1/*
39a53e0c
JK
2 * fs/f2fs/f2fs.h
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#ifndef _LINUX_F2FS_H
12#define _LINUX_F2FS_H
13
14#include <linux/types.h>
15#include <linux/page-flags.h>
16#include <linux/buffer_head.h>
39a53e0c
JK
17#include <linux/slab.h>
18#include <linux/crc32.h>
19#include <linux/magic.h>
c2d715d1 20#include <linux/kobject.h>
7bd59381 21#include <linux/sched.h>
39a53e0c 22
5d56b671
JK
23#ifdef CONFIG_F2FS_CHECK_FS
24#define f2fs_bug_on(condition) BUG_ON(condition)
0daaad97 25#define f2fs_down_write(x, y) down_write_nest_lock(x, y)
5d56b671
JK
26#else
27#define f2fs_bug_on(condition)
0daaad97 28#define f2fs_down_write(x, y) down_write(x)
5d56b671
JK
29#endif
30
39a53e0c
JK
31/*
32 * For mount options
33 */
34#define F2FS_MOUNT_BG_GC 0x00000001
35#define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002
36#define F2FS_MOUNT_DISCARD 0x00000004
37#define F2FS_MOUNT_NOHEAP 0x00000008
38#define F2FS_MOUNT_XATTR_USER 0x00000010
39#define F2FS_MOUNT_POSIX_ACL 0x00000020
40#define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040
444c580f 41#define F2FS_MOUNT_INLINE_XATTR 0x00000080
1001b347 42#define F2FS_MOUNT_INLINE_DATA 0x00000100
39a53e0c
JK
43
44#define clear_opt(sbi, option) (sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
45#define set_opt(sbi, option) (sbi->mount_opt.opt |= F2FS_MOUNT_##option)
46#define test_opt(sbi, option) (sbi->mount_opt.opt & F2FS_MOUNT_##option)
47
48#define ver_after(a, b) (typecheck(unsigned long long, a) && \
49 typecheck(unsigned long long, b) && \
50 ((long long)((a) - (b)) > 0))
51
a9841c4d
JK
52typedef u32 block_t; /*
53 * should not change u32, since it is the on-disk block
54 * address format, __le32.
55 */
39a53e0c
JK
56typedef u32 nid_t;
57
58struct f2fs_mount_info {
59 unsigned int opt;
60};
61
7e586fa0
JK
62#define CRCPOLY_LE 0xedb88320
63
64static inline __u32 f2fs_crc32(void *buf, size_t len)
39a53e0c 65{
7e586fa0
JK
66 unsigned char *p = (unsigned char *)buf;
67 __u32 crc = F2FS_SUPER_MAGIC;
68 int i;
69
70 while (len--) {
71 crc ^= *p++;
72 for (i = 0; i < 8; i++)
73 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
74 }
75 return crc;
39a53e0c
JK
76}
77
7e586fa0 78static inline bool f2fs_crc_valid(__u32 blk_crc, void *buf, size_t buf_size)
39a53e0c 79{
7e586fa0 80 return f2fs_crc32(buf, buf_size) == blk_crc;
39a53e0c
JK
81}
82
83/*
84 * For checkpoint manager
85 */
86enum {
87 NAT_BITMAP,
88 SIT_BITMAP
89};
90
662befda
CY
91/*
92 * For CP/NAT/SIT readahead
93 */
94enum {
95 META_CP,
96 META_NAT,
97 META_SIT
98};
99
39a53e0c
JK
100/* for the list of orphan inodes */
101struct orphan_inode_entry {
102 struct list_head list; /* list head */
103 nid_t ino; /* inode number */
104};
105
106/* for the list of directory inodes */
107struct dir_inode_entry {
108 struct list_head list; /* list head */
109 struct inode *inode; /* vfs inode pointer */
110};
111
7fd9e544
JK
112/* for the list of blockaddresses to be discarded */
113struct discard_entry {
114 struct list_head list; /* list head */
115 block_t blkaddr; /* block address to be discarded */
116 int len; /* # of consecutive blocks of the discard */
117};
118
39a53e0c
JK
119/* for the list of fsync inodes, used only during recovery */
120struct fsync_inode_entry {
121 struct list_head list; /* list head */
122 struct inode *inode; /* vfs inode pointer */
123 block_t blkaddr; /* block address locating the last inode */
124};
125
126#define nats_in_cursum(sum) (le16_to_cpu(sum->n_nats))
127#define sits_in_cursum(sum) (le16_to_cpu(sum->n_sits))
128
129#define nat_in_journal(sum, i) (sum->nat_j.entries[i].ne)
130#define nid_in_journal(sum, i) (sum->nat_j.entries[i].nid)
131#define sit_in_journal(sum, i) (sum->sit_j.entries[i].se)
132#define segno_in_journal(sum, i) (sum->sit_j.entries[i].segno)
133
134static inline int update_nats_in_cursum(struct f2fs_summary_block *rs, int i)
135{
136 int before = nats_in_cursum(rs);
137 rs->n_nats = cpu_to_le16(before + i);
138 return before;
139}
140
141static inline int update_sits_in_cursum(struct f2fs_summary_block *rs, int i)
142{
143 int before = sits_in_cursum(rs);
144 rs->n_sits = cpu_to_le16(before + i);
145 return before;
146}
147
e9750824
NJ
148/*
149 * ioctl commands
150 */
151#define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS
152#define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS
153
154#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
155/*
156 * ioctl commands in 32 bit emulation
157 */
158#define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS
159#define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS
160#endif
161
39a53e0c
JK
162/*
163 * For INODE and NODE manager
164 */
dbe6a5ff
JK
165/*
166 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
167 * as its node offset to distinguish from index node blocks.
168 * But some bits are used to mark the node block.
169 */
170#define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \
171 >> OFFSET_BIT_SHIFT)
266e97a8
JK
172enum {
173 ALLOC_NODE, /* allocate a new node page if needed */
174 LOOKUP_NODE, /* look up a node without readahead */
175 LOOKUP_NODE_RA, /*
176 * look up a node with readahead called
4f4124d0 177 * by get_data_block.
39a53e0c 178 */
266e97a8
JK
179};
180
39a53e0c
JK
181#define F2FS_LINK_MAX 32000 /* maximum link count per file */
182
183/* for in-memory extent cache entry */
c11abd1a
JK
184#define F2FS_MIN_EXTENT_LEN 16 /* minimum extent length */
185
39a53e0c
JK
186struct extent_info {
187 rwlock_t ext_lock; /* rwlock for consistency */
188 unsigned int fofs; /* start offset in a file */
189 u32 blk_addr; /* start block address of the extent */
111d2495 190 unsigned int len; /* length of the extent */
39a53e0c
JK
191};
192
193/*
194 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
195 */
196#define FADVISE_COLD_BIT 0x01
354a3399 197#define FADVISE_LOST_PINO_BIT 0x02
39a53e0c
JK
198
199struct f2fs_inode_info {
200 struct inode vfs_inode; /* serve a vfs inode */
201 unsigned long i_flags; /* keep an inode flags for ioctl */
202 unsigned char i_advise; /* use to give file attribute hints */
203 unsigned int i_current_depth; /* use only in directory structure */
6666e6aa 204 unsigned int i_pino; /* parent inode number */
39a53e0c
JK
205 umode_t i_acl_mode; /* keep file acl mode temporarily */
206
207 /* Use below internally in f2fs*/
208 unsigned long flags; /* use to pass per-file flags */
39a53e0c
JK
209 atomic_t dirty_dents; /* # of dirty dentry pages */
210 f2fs_hash_t chash; /* hash value of given file name */
211 unsigned int clevel; /* maximum level of given file name */
212 nid_t i_xattr_nid; /* node id that contains xattrs */
e518ff81 213 unsigned long long xattr_ver; /* cp version of xattr modification */
39a53e0c
JK
214 struct extent_info ext; /* in-memory extent cache entry */
215};
216
217static inline void get_extent_info(struct extent_info *ext,
218 struct f2fs_extent i_ext)
219{
220 write_lock(&ext->ext_lock);
221 ext->fofs = le32_to_cpu(i_ext.fofs);
222 ext->blk_addr = le32_to_cpu(i_ext.blk_addr);
223 ext->len = le32_to_cpu(i_ext.len);
224 write_unlock(&ext->ext_lock);
225}
226
227static inline void set_raw_extent(struct extent_info *ext,
228 struct f2fs_extent *i_ext)
229{
230 read_lock(&ext->ext_lock);
231 i_ext->fofs = cpu_to_le32(ext->fofs);
232 i_ext->blk_addr = cpu_to_le32(ext->blk_addr);
233 i_ext->len = cpu_to_le32(ext->len);
234 read_unlock(&ext->ext_lock);
235}
236
237struct f2fs_nm_info {
238 block_t nat_blkaddr; /* base disk address of NAT */
239 nid_t max_nid; /* maximum possible node ids */
39a53e0c
JK
240 nid_t next_scan_nid; /* the next nid to be scanned */
241
242 /* NAT cache management */
243 struct radix_tree_root nat_root;/* root of the nat entry cache */
244 rwlock_t nat_tree_lock; /* protect nat_tree_lock */
245 unsigned int nat_cnt; /* the # of cached nat entries */
246 struct list_head nat_entries; /* cached nat entry list (clean) */
247 struct list_head dirty_nat_entries; /* cached nat entry list (dirty) */
248
249 /* free node ids management */
250 struct list_head free_nid_list; /* a list for free nids */
251 spinlock_t free_nid_list_lock; /* protect free nid list */
252 unsigned int fcnt; /* the number of free node id */
253 struct mutex build_lock; /* lock for build free nids */
254
255 /* for checkpoint */
256 char *nat_bitmap; /* NAT bitmap pointer */
257 int bitmap_size; /* bitmap size */
258};
259
260/*
261 * this structure is used as one of function parameters.
262 * all the information are dedicated to a given direct node block determined
263 * by the data offset in a file.
264 */
265struct dnode_of_data {
266 struct inode *inode; /* vfs inode pointer */
267 struct page *inode_page; /* its inode page, NULL is possible */
268 struct page *node_page; /* cached direct node page */
269 nid_t nid; /* node id of the direct node block */
270 unsigned int ofs_in_node; /* data offset in the node page */
271 bool inode_page_locked; /* inode page is locked or not */
272 block_t data_blkaddr; /* block address of the node block */
273};
274
275static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
276 struct page *ipage, struct page *npage, nid_t nid)
277{
d66d1f76 278 memset(dn, 0, sizeof(*dn));
39a53e0c
JK
279 dn->inode = inode;
280 dn->inode_page = ipage;
281 dn->node_page = npage;
282 dn->nid = nid;
39a53e0c
JK
283}
284
285/*
286 * For SIT manager
287 *
288 * By default, there are 6 active log areas across the whole main area.
289 * When considering hot and cold data separation to reduce cleaning overhead,
290 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
291 * respectively.
292 * In the current design, you should not change the numbers intentionally.
293 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
294 * logs individually according to the underlying devices. (default: 6)
295 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
296 * data and 8 for node logs.
297 */
298#define NR_CURSEG_DATA_TYPE (3)
299#define NR_CURSEG_NODE_TYPE (3)
300#define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
301
302enum {
303 CURSEG_HOT_DATA = 0, /* directory entry blocks */
304 CURSEG_WARM_DATA, /* data blocks */
305 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */
306 CURSEG_HOT_NODE, /* direct node blocks of directory files */
307 CURSEG_WARM_NODE, /* direct node blocks of normal files */
308 CURSEG_COLD_NODE, /* indirect node blocks */
309 NO_CHECK_TYPE
310};
311
312struct f2fs_sm_info {
313 struct sit_info *sit_info; /* whole segment information */
314 struct free_segmap_info *free_info; /* free segment information */
315 struct dirty_seglist_info *dirty_info; /* dirty segment information */
316 struct curseg_info *curseg_array; /* active segment information */
317
318 struct list_head wblist_head; /* list of under-writeback pages */
319 spinlock_t wblist_lock; /* lock for checkpoint */
320
321 block_t seg0_blkaddr; /* block address of 0'th segment */
322 block_t main_blkaddr; /* start block address of main area */
323 block_t ssa_blkaddr; /* start block address of SSA area */
324
325 unsigned int segment_count; /* total # of segments */
326 unsigned int main_segments; /* # of segments in main area */
327 unsigned int reserved_segments; /* # of reserved segments */
328 unsigned int ovp_segments; /* # of overprovision segments */
81eb8d6e
JK
329
330 /* a threshold to reclaim prefree segments */
331 unsigned int rec_prefree_segments;
7fd9e544
JK
332
333 /* for small discard management */
334 struct list_head discard_list; /* 4KB discard list */
335 int nr_discards; /* # of discards in the list */
336 int max_discards; /* max. discards to be issued */
216fbd64
JK
337
338 unsigned int ipu_policy; /* in-place-update policy */
339 unsigned int min_ipu_util; /* in-place-update threshold */
39a53e0c
JK
340};
341
39a53e0c
JK
342/*
343 * For superblock
344 */
345/*
346 * COUNT_TYPE for monitoring
347 *
348 * f2fs monitors the number of several block types such as on-writeback,
349 * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
350 */
351enum count_type {
352 F2FS_WRITEBACK,
353 F2FS_DIRTY_DENTS,
354 F2FS_DIRTY_NODES,
355 F2FS_DIRTY_META,
356 NR_COUNT_TYPE,
357};
358
39a53e0c
JK
359/*
360 * The below are the page types of bios used in submti_bio().
361 * The available types are:
362 * DATA User data pages. It operates as async mode.
363 * NODE Node pages. It operates as async mode.
364 * META FS metadata pages such as SIT, NAT, CP.
365 * NR_PAGE_TYPE The number of page types.
366 * META_FLUSH Make sure the previous pages are written
367 * with waiting the bio's completion
368 * ... Only can be used with META.
369 */
7d5e5109 370#define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type))
39a53e0c
JK
371enum page_type {
372 DATA,
373 NODE,
374 META,
375 NR_PAGE_TYPE,
376 META_FLUSH,
377};
378
458e6197 379struct f2fs_io_info {
7e8f2308
GZ
380 enum page_type type; /* contains DATA/NODE/META/META_FLUSH */
381 int rw; /* contains R/RS/W/WS with REQ_META/REQ_PRIO */
458e6197
JK
382};
383
93dfe2ac 384#define is_read_io(rw) (((rw) & 1) == READ)
1ff7bd3b 385struct f2fs_bio_info {
458e6197 386 struct f2fs_sb_info *sbi; /* f2fs superblock */
1ff7bd3b
JK
387 struct bio *bio; /* bios to merge */
388 sector_t last_block_in_bio; /* last block number */
458e6197 389 struct f2fs_io_info fio; /* store buffered io info. */
1ff7bd3b
JK
390 struct mutex io_mutex; /* mutex for bio */
391};
392
39a53e0c
JK
393struct f2fs_sb_info {
394 struct super_block *sb; /* pointer to VFS super block */
5e176d54 395 struct proc_dir_entry *s_proc; /* proc entry */
39a53e0c
JK
396 struct buffer_head *raw_super_buf; /* buffer head of raw sb */
397 struct f2fs_super_block *raw_super; /* raw super block pointer */
398 int s_dirty; /* dirty flag for checkpoint */
399
400 /* for node-related operations */
401 struct f2fs_nm_info *nm_info; /* node manager */
402 struct inode *node_inode; /* cache node blocks */
403
404 /* for segment-related operations */
405 struct f2fs_sm_info *sm_info; /* segment manager */
1ff7bd3b
JK
406
407 /* for bio operations */
924b720b 408 struct f2fs_bio_info read_io; /* for read bios */
1ff7bd3b 409 struct f2fs_bio_info write_io[NR_PAGE_TYPE]; /* for write bios */
1b1f559f 410 struct completion *wait_io; /* for completion bios */
39a53e0c
JK
411
412 /* for checkpoint */
413 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
414 struct inode *meta_inode; /* cache meta blocks */
39936837 415 struct mutex cp_mutex; /* checkpoint procedure lock */
e479556b 416 struct rw_semaphore cp_rwsem; /* blocking FS operations */
39936837 417 struct mutex node_write; /* locking node writes */
39a53e0c 418 struct mutex writepages; /* mutex for writepages() */
aabe5136 419 bool por_doing; /* recovery is doing or not */
fb51b5ef 420 wait_queue_head_t cp_wait;
39a53e0c
JK
421
422 /* for orphan inode management */
423 struct list_head orphan_inode_list; /* orphan inode list */
17b692f6 424 spinlock_t orphan_inode_lock; /* for orphan inode list */
39a53e0c 425 unsigned int n_orphans; /* # of orphan inodes */
0d47c1ad 426 unsigned int max_orphans; /* max orphan inodes */
39a53e0c
JK
427
428 /* for directory inode management */
429 struct list_head dir_inode_list; /* dir inode list */
430 spinlock_t dir_inode_lock; /* for dir inode list lock */
39a53e0c
JK
431
432 /* basic file system units */
433 unsigned int log_sectors_per_block; /* log2 sectors per block */
434 unsigned int log_blocksize; /* log2 block size */
435 unsigned int blocksize; /* block size */
436 unsigned int root_ino_num; /* root inode number*/
437 unsigned int node_ino_num; /* node inode number*/
438 unsigned int meta_ino_num; /* meta inode number*/
439 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
440 unsigned int blocks_per_seg; /* blocks per segment */
441 unsigned int segs_per_sec; /* segments per section */
442 unsigned int secs_per_zone; /* sections per zone */
443 unsigned int total_sections; /* total section count */
444 unsigned int total_node_count; /* total node block count */
445 unsigned int total_valid_node_count; /* valid node block count */
446 unsigned int total_valid_inode_count; /* valid inode count */
447 int active_logs; /* # of active logs */
448
449 block_t user_block_count; /* # of user blocks */
450 block_t total_valid_block_count; /* # of valid blocks */
451 block_t alloc_valid_block_count; /* # of allocated blocks */
452 block_t last_valid_block_count; /* for recovery */
453 u32 s_next_generation; /* for NFS support */
454 atomic_t nr_pages[NR_COUNT_TYPE]; /* # of pages, see count_type */
455
456 struct f2fs_mount_info mount_opt; /* mount options */
457
458 /* for cleaning operations */
459 struct mutex gc_mutex; /* mutex for GC */
460 struct f2fs_gc_kthread *gc_thread; /* GC thread */
5ec4e49f 461 unsigned int cur_victim_sec; /* current victim section num */
39a53e0c 462
b1c57c1c
JK
463 /* maximum # of trials to find a victim segment for SSR and GC */
464 unsigned int max_victim_search;
465
39a53e0c
JK
466 /*
467 * for stat information.
468 * one is for the LFS mode, and the other is for the SSR mode.
469 */
35b09d82 470#ifdef CONFIG_F2FS_STAT_FS
39a53e0c
JK
471 struct f2fs_stat_info *stat_info; /* FS status information */
472 unsigned int segment_count[2]; /* # of allocated segments */
473 unsigned int block_count[2]; /* # of allocated blocks */
39a53e0c 474 int total_hit_ext, read_hit_ext; /* extent cache hit ratio */
0dbdc2ae 475 int inline_inode; /* # of inline_data inodes */
39a53e0c 476 int bg_gc; /* background gc calls */
35b09d82
NJ
477 unsigned int n_dirty_dirs; /* # of dir inodes */
478#endif
479 unsigned int last_victim[2]; /* last victim segment # */
39a53e0c 480 spinlock_t stat_lock; /* lock for stat operations */
b59d0bae
NJ
481
482 /* For sysfs suppport */
483 struct kobject s_kobj;
484 struct completion s_kobj_unregister;
39a53e0c
JK
485};
486
487/*
488 * Inline functions
489 */
490static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
491{
492 return container_of(inode, struct f2fs_inode_info, vfs_inode);
493}
494
495static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
496{
497 return sb->s_fs_info;
498}
499
500static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
501{
502 return (struct f2fs_super_block *)(sbi->raw_super);
503}
504
505static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
506{
507 return (struct f2fs_checkpoint *)(sbi->ckpt);
508}
509
45590710
GZ
510static inline struct f2fs_node *F2FS_NODE(struct page *page)
511{
512 return (struct f2fs_node *)page_address(page);
513}
514
58bfaf44
JK
515static inline struct f2fs_inode *F2FS_INODE(struct page *page)
516{
517 return &((struct f2fs_node *)page_address(page))->i;
518}
519
39a53e0c
JK
520static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
521{
522 return (struct f2fs_nm_info *)(sbi->nm_info);
523}
524
525static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
526{
527 return (struct f2fs_sm_info *)(sbi->sm_info);
528}
529
530static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
531{
532 return (struct sit_info *)(SM_I(sbi)->sit_info);
533}
534
535static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
536{
537 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
538}
539
540static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
541{
542 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
543}
544
9df27d98
GZ
545static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi)
546{
547 return sbi->meta_inode->i_mapping;
548}
549
4ef51a8f
JK
550static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi)
551{
552 return sbi->node_inode->i_mapping;
553}
554
39a53e0c
JK
555static inline void F2FS_SET_SB_DIRT(struct f2fs_sb_info *sbi)
556{
557 sbi->s_dirty = 1;
558}
559
560static inline void F2FS_RESET_SB_DIRT(struct f2fs_sb_info *sbi)
561{
562 sbi->s_dirty = 0;
563}
564
d71b5564
JK
565static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
566{
567 return le64_to_cpu(cp->checkpoint_ver);
568}
569
25ca923b
JK
570static inline bool is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
571{
572 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
573 return ckpt_flags & f;
574}
575
576static inline void set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
577{
578 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
579 ckpt_flags |= f;
580 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
581}
582
583static inline void clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
584{
585 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
586 ckpt_flags &= (~f);
587 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
588}
589
e479556b 590static inline void f2fs_lock_op(struct f2fs_sb_info *sbi)
39936837 591{
e479556b 592 down_read(&sbi->cp_rwsem);
39936837
JK
593}
594
e479556b 595static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi)
39a53e0c 596{
e479556b 597 up_read(&sbi->cp_rwsem);
39a53e0c
JK
598}
599
e479556b 600static inline void f2fs_lock_all(struct f2fs_sb_info *sbi)
39a53e0c 601{
0daaad97 602 f2fs_down_write(&sbi->cp_rwsem, &sbi->cp_mutex);
39936837
JK
603}
604
e479556b 605static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi)
39936837 606{
e479556b 607 up_write(&sbi->cp_rwsem);
39a53e0c
JK
608}
609
610/*
611 * Check whether the given nid is within node id range.
612 */
064e0823 613static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid)
39a53e0c 614{
064e0823 615 WARN_ON((nid >= NM_I(sbi)->max_nid));
cfb271d4 616 if (unlikely(nid >= NM_I(sbi)->max_nid))
064e0823
NJ
617 return -EINVAL;
618 return 0;
39a53e0c
JK
619}
620
621#define F2FS_DEFAULT_ALLOCATED_BLOCKS 1
622
623/*
624 * Check whether the inode has blocks or not
625 */
626static inline int F2FS_HAS_BLOCKS(struct inode *inode)
627{
628 if (F2FS_I(inode)->i_xattr_nid)
6c311ec6 629 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1;
39a53e0c 630 else
6c311ec6 631 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS;
39a53e0c
JK
632}
633
634static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi,
635 struct inode *inode, blkcnt_t count)
636{
637 block_t valid_block_count;
638
639 spin_lock(&sbi->stat_lock);
640 valid_block_count =
641 sbi->total_valid_block_count + (block_t)count;
cfb271d4 642 if (unlikely(valid_block_count > sbi->user_block_count)) {
39a53e0c
JK
643 spin_unlock(&sbi->stat_lock);
644 return false;
645 }
646 inode->i_blocks += count;
647 sbi->total_valid_block_count = valid_block_count;
648 sbi->alloc_valid_block_count += (block_t)count;
649 spin_unlock(&sbi->stat_lock);
650 return true;
651}
652
da19b0dc 653static inline void dec_valid_block_count(struct f2fs_sb_info *sbi,
39a53e0c
JK
654 struct inode *inode,
655 blkcnt_t count)
656{
657 spin_lock(&sbi->stat_lock);
5d56b671
JK
658 f2fs_bug_on(sbi->total_valid_block_count < (block_t) count);
659 f2fs_bug_on(inode->i_blocks < count);
39a53e0c
JK
660 inode->i_blocks -= count;
661 sbi->total_valid_block_count -= (block_t)count;
662 spin_unlock(&sbi->stat_lock);
39a53e0c
JK
663}
664
665static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
666{
667 atomic_inc(&sbi->nr_pages[count_type]);
668 F2FS_SET_SB_DIRT(sbi);
669}
670
671static inline void inode_inc_dirty_dents(struct inode *inode)
672{
1fe54f9d 673 inc_page_count(F2FS_SB(inode->i_sb), F2FS_DIRTY_DENTS);
39a53e0c
JK
674 atomic_inc(&F2FS_I(inode)->dirty_dents);
675}
676
677static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
678{
679 atomic_dec(&sbi->nr_pages[count_type]);
680}
681
682static inline void inode_dec_dirty_dents(struct inode *inode)
683{
1fe54f9d
JK
684 if (!S_ISDIR(inode->i_mode))
685 return;
686
687 dec_page_count(F2FS_SB(inode->i_sb), F2FS_DIRTY_DENTS);
39a53e0c
JK
688 atomic_dec(&F2FS_I(inode)->dirty_dents);
689}
690
691static inline int get_pages(struct f2fs_sb_info *sbi, int count_type)
692{
693 return atomic_read(&sbi->nr_pages[count_type]);
694}
695
5ac206cf
NJ
696static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
697{
698 unsigned int pages_per_sec = sbi->segs_per_sec *
699 (1 << sbi->log_blocks_per_seg);
700 return ((get_pages(sbi, block_type) + pages_per_sec - 1)
701 >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
702}
703
39a53e0c
JK
704static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
705{
706 block_t ret;
707 spin_lock(&sbi->stat_lock);
708 ret = sbi->total_valid_block_count;
709 spin_unlock(&sbi->stat_lock);
710 return ret;
711}
712
713static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
714{
715 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
716
717 /* return NAT or SIT bitmap */
718 if (flag == NAT_BITMAP)
719 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
720 else if (flag == SIT_BITMAP)
721 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
722
723 return 0;
724}
725
726static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
727{
728 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
25ca923b
JK
729 int offset = (flag == NAT_BITMAP) ?
730 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
39a53e0c
JK
731 return &ckpt->sit_nat_version_bitmap + offset;
732}
733
734static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
735{
736 block_t start_addr;
737 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
d71b5564 738 unsigned long long ckpt_version = cur_cp_version(ckpt);
39a53e0c 739
25ca923b 740 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
39a53e0c
JK
741
742 /*
743 * odd numbered checkpoint should at cp segment 0
744 * and even segent must be at cp segment 1
745 */
746 if (!(ckpt_version & 1))
747 start_addr += sbi->blocks_per_seg;
748
749 return start_addr;
750}
751
752static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
753{
754 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
755}
756
757static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi,
ef86d709 758 struct inode *inode)
39a53e0c
JK
759{
760 block_t valid_block_count;
761 unsigned int valid_node_count;
762
763 spin_lock(&sbi->stat_lock);
764
ef86d709 765 valid_block_count = sbi->total_valid_block_count + 1;
cfb271d4 766 if (unlikely(valid_block_count > sbi->user_block_count)) {
39a53e0c
JK
767 spin_unlock(&sbi->stat_lock);
768 return false;
769 }
770
ef86d709 771 valid_node_count = sbi->total_valid_node_count + 1;
cfb271d4 772 if (unlikely(valid_node_count > sbi->total_node_count)) {
39a53e0c
JK
773 spin_unlock(&sbi->stat_lock);
774 return false;
775 }
776
777 if (inode)
ef86d709
GZ
778 inode->i_blocks++;
779
780 sbi->alloc_valid_block_count++;
781 sbi->total_valid_node_count++;
782 sbi->total_valid_block_count++;
39a53e0c
JK
783 spin_unlock(&sbi->stat_lock);
784
785 return true;
786}
787
788static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
ef86d709 789 struct inode *inode)
39a53e0c
JK
790{
791 spin_lock(&sbi->stat_lock);
792
ef86d709
GZ
793 f2fs_bug_on(!sbi->total_valid_block_count);
794 f2fs_bug_on(!sbi->total_valid_node_count);
795 f2fs_bug_on(!inode->i_blocks);
39a53e0c 796
ef86d709
GZ
797 inode->i_blocks--;
798 sbi->total_valid_node_count--;
799 sbi->total_valid_block_count--;
39a53e0c
JK
800
801 spin_unlock(&sbi->stat_lock);
802}
803
804static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
805{
806 unsigned int ret;
807 spin_lock(&sbi->stat_lock);
808 ret = sbi->total_valid_node_count;
809 spin_unlock(&sbi->stat_lock);
810 return ret;
811}
812
813static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
814{
815 spin_lock(&sbi->stat_lock);
5d56b671 816 f2fs_bug_on(sbi->total_valid_inode_count == sbi->total_node_count);
39a53e0c
JK
817 sbi->total_valid_inode_count++;
818 spin_unlock(&sbi->stat_lock);
819}
820
0e80220a 821static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi)
39a53e0c
JK
822{
823 spin_lock(&sbi->stat_lock);
5d56b671 824 f2fs_bug_on(!sbi->total_valid_inode_count);
39a53e0c
JK
825 sbi->total_valid_inode_count--;
826 spin_unlock(&sbi->stat_lock);
39a53e0c
JK
827}
828
829static inline unsigned int valid_inode_count(struct f2fs_sb_info *sbi)
830{
831 unsigned int ret;
832 spin_lock(&sbi->stat_lock);
833 ret = sbi->total_valid_inode_count;
834 spin_unlock(&sbi->stat_lock);
835 return ret;
836}
837
838static inline void f2fs_put_page(struct page *page, int unlock)
839{
031fa8cc 840 if (!page)
39a53e0c
JK
841 return;
842
843 if (unlock) {
5d56b671 844 f2fs_bug_on(!PageLocked(page));
39a53e0c
JK
845 unlock_page(page);
846 }
847 page_cache_release(page);
848}
849
850static inline void f2fs_put_dnode(struct dnode_of_data *dn)
851{
852 if (dn->node_page)
853 f2fs_put_page(dn->node_page, 1);
854 if (dn->inode_page && dn->node_page != dn->inode_page)
855 f2fs_put_page(dn->inode_page, 0);
856 dn->node_page = NULL;
857 dn->inode_page = NULL;
858}
859
860static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
861 size_t size, void (*ctor)(void *))
862{
863 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, ctor);
864}
865
7bd59381
GZ
866static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep,
867 gfp_t flags)
868{
869 void *entry;
870retry:
871 entry = kmem_cache_alloc(cachep, flags);
872 if (!entry) {
873 cond_resched();
874 goto retry;
875 }
876
877 return entry;
878}
879
39a53e0c
JK
880#define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
881
882static inline bool IS_INODE(struct page *page)
883{
45590710 884 struct f2fs_node *p = F2FS_NODE(page);
39a53e0c
JK
885 return RAW_IS_INODE(p);
886}
887
888static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
889{
890 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
891}
892
893static inline block_t datablock_addr(struct page *node_page,
894 unsigned int offset)
895{
896 struct f2fs_node *raw_node;
897 __le32 *addr_array;
45590710 898 raw_node = F2FS_NODE(node_page);
39a53e0c
JK
899 addr_array = blkaddr_in_node(raw_node);
900 return le32_to_cpu(addr_array[offset]);
901}
902
903static inline int f2fs_test_bit(unsigned int nr, char *addr)
904{
905 int mask;
906
907 addr += (nr >> 3);
908 mask = 1 << (7 - (nr & 0x07));
909 return mask & *addr;
910}
911
912static inline int f2fs_set_bit(unsigned int nr, char *addr)
913{
914 int mask;
915 int ret;
916
917 addr += (nr >> 3);
918 mask = 1 << (7 - (nr & 0x07));
919 ret = mask & *addr;
920 *addr |= mask;
921 return ret;
922}
923
924static inline int f2fs_clear_bit(unsigned int nr, char *addr)
925{
926 int mask;
927 int ret;
928
929 addr += (nr >> 3);
930 mask = 1 << (7 - (nr & 0x07));
931 ret = mask & *addr;
932 *addr &= ~mask;
933 return ret;
934}
935
936/* used for f2fs_inode_info->flags */
937enum {
938 FI_NEW_INODE, /* indicate newly allocated inode */
b3783873 939 FI_DIRTY_INODE, /* indicate inode is dirty or not */
39a53e0c
JK
940 FI_INC_LINK, /* need to increment i_nlink */
941 FI_ACL_MODE, /* indicate acl mode */
942 FI_NO_ALLOC, /* should not allocate any blocks */
699489bb 943 FI_UPDATE_DIR, /* should update inode block for consistency */
74d0b917 944 FI_DELAY_IPUT, /* used for the recovery */
c11abd1a 945 FI_NO_EXTENT, /* not to use the extent cache */
444c580f 946 FI_INLINE_XATTR, /* used for inline xattr */
1001b347 947 FI_INLINE_DATA, /* used for inline data*/
39a53e0c
JK
948};
949
950static inline void set_inode_flag(struct f2fs_inode_info *fi, int flag)
951{
952 set_bit(flag, &fi->flags);
953}
954
955static inline int is_inode_flag_set(struct f2fs_inode_info *fi, int flag)
956{
957 return test_bit(flag, &fi->flags);
958}
959
960static inline void clear_inode_flag(struct f2fs_inode_info *fi, int flag)
961{
962 clear_bit(flag, &fi->flags);
963}
964
965static inline void set_acl_inode(struct f2fs_inode_info *fi, umode_t mode)
966{
967 fi->i_acl_mode = mode;
968 set_inode_flag(fi, FI_ACL_MODE);
969}
970
971static inline int cond_clear_inode_flag(struct f2fs_inode_info *fi, int flag)
972{
973 if (is_inode_flag_set(fi, FI_ACL_MODE)) {
974 clear_inode_flag(fi, FI_ACL_MODE);
975 return 1;
976 }
977 return 0;
978}
979
444c580f
JK
980static inline void get_inline_info(struct f2fs_inode_info *fi,
981 struct f2fs_inode *ri)
982{
983 if (ri->i_inline & F2FS_INLINE_XATTR)
984 set_inode_flag(fi, FI_INLINE_XATTR);
1001b347
HL
985 if (ri->i_inline & F2FS_INLINE_DATA)
986 set_inode_flag(fi, FI_INLINE_DATA);
444c580f
JK
987}
988
989static inline void set_raw_inline(struct f2fs_inode_info *fi,
990 struct f2fs_inode *ri)
991{
992 ri->i_inline = 0;
993
994 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
995 ri->i_inline |= F2FS_INLINE_XATTR;
1001b347
HL
996 if (is_inode_flag_set(fi, FI_INLINE_DATA))
997 ri->i_inline |= F2FS_INLINE_DATA;
444c580f
JK
998}
999
de93653f
JK
1000static inline unsigned int addrs_per_inode(struct f2fs_inode_info *fi)
1001{
1002 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
1003 return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS;
1004 return DEF_ADDRS_PER_INODE;
1005}
1006
65985d93
JK
1007static inline void *inline_xattr_addr(struct page *page)
1008{
1009 struct f2fs_inode *ri;
1010 ri = (struct f2fs_inode *)page_address(page);
1011 return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE -
1012 F2FS_INLINE_XATTR_ADDRS]);
1013}
1014
1015static inline int inline_xattr_size(struct inode *inode)
1016{
1017 if (is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR))
1018 return F2FS_INLINE_XATTR_ADDRS << 2;
1019 else
1020 return 0;
1021}
1022
0dbdc2ae
JK
1023static inline int f2fs_has_inline_data(struct inode *inode)
1024{
1025 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DATA);
1026}
1027
1001b347
HL
1028static inline void *inline_data_addr(struct page *page)
1029{
1030 struct f2fs_inode *ri;
1031 ri = (struct f2fs_inode *)page_address(page);
1032 return (void *)&(ri->i_addr[1]);
1033}
1034
77888c1e
JK
1035static inline int f2fs_readonly(struct super_block *sb)
1036{
1037 return sb->s_flags & MS_RDONLY;
1038}
1039
744602cf
JK
1040static inline void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi)
1041{
1042 set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1043 sbi->sb->s_flags |= MS_RDONLY;
1044}
1045
a6dda0e6
CH
1046#define get_inode_mode(i) \
1047 ((is_inode_flag_set(F2FS_I(i), FI_ACL_MODE)) ? \
1048 (F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
1049
39a53e0c
JK
1050/*
1051 * file.c
1052 */
1053int f2fs_sync_file(struct file *, loff_t, loff_t, int);
1054void truncate_data_blocks(struct dnode_of_data *);
1e1bb4ba 1055int truncate_blocks(struct inode *, u64);
39a53e0c 1056void f2fs_truncate(struct inode *);
2d4d9fb5 1057int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
39a53e0c
JK
1058int f2fs_setattr(struct dentry *, struct iattr *);
1059int truncate_hole(struct inode *, pgoff_t, pgoff_t);
b292dcab 1060int truncate_data_blocks_range(struct dnode_of_data *, int);
39a53e0c 1061long f2fs_ioctl(struct file *, unsigned int, unsigned long);
e9750824 1062long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long);
39a53e0c
JK
1063
1064/*
1065 * inode.c
1066 */
1067void f2fs_set_inode_flags(struct inode *);
39a53e0c 1068struct inode *f2fs_iget(struct super_block *, unsigned long);
4660f9c0 1069int try_to_free_nats(struct f2fs_sb_info *, int);
39a53e0c 1070void update_inode(struct inode *, struct page *);
744602cf 1071void update_inode_page(struct inode *);
39a53e0c
JK
1072int f2fs_write_inode(struct inode *, struct writeback_control *);
1073void f2fs_evict_inode(struct inode *);
1074
1075/*
1076 * namei.c
1077 */
1078struct dentry *f2fs_get_parent(struct dentry *child);
1079
1080/*
1081 * dir.c
1082 */
1083struct f2fs_dir_entry *f2fs_find_entry(struct inode *, struct qstr *,
1084 struct page **);
1085struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **);
1086ino_t f2fs_inode_by_name(struct inode *, struct qstr *);
1087void f2fs_set_link(struct inode *, struct f2fs_dir_entry *,
1088 struct page *, struct inode *);
1cd14caf 1089int update_dent_inode(struct inode *, const struct qstr *);
b7f7a5e0 1090int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *);
39a53e0c
JK
1091void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *);
1092int f2fs_make_empty(struct inode *, struct inode *);
1093bool f2fs_empty_dir(struct inode *);
1094
b7f7a5e0
AV
1095static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
1096{
1097 return __f2fs_add_link(dentry->d_parent->d_inode, &dentry->d_name,
1098 inode);
1099}
1100
39a53e0c
JK
1101/*
1102 * super.c
1103 */
1104int f2fs_sync_fs(struct super_block *, int);
a07ef784
NJ
1105extern __printf(3, 4)
1106void f2fs_msg(struct super_block *, const char *, const char *, ...);
39a53e0c
JK
1107
1108/*
1109 * hash.c
1110 */
9836b8b9 1111f2fs_hash_t f2fs_dentry_hash(const char *, size_t);
39a53e0c
JK
1112
1113/*
1114 * node.c
1115 */
1116struct dnode_of_data;
1117struct node_info;
1118
1119int is_checkpointed_node(struct f2fs_sb_info *, nid_t);
1120void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *);
1121int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int);
1122int truncate_inode_blocks(struct inode *, pgoff_t);
4f16fb0f 1123int truncate_xattr_node(struct inode *, struct page *);
cfe58f9d 1124int wait_on_node_pages_writeback(struct f2fs_sb_info *, nid_t);
58e674d6 1125void remove_inode_page(struct inode *);
44a83ff6 1126struct page *new_inode_page(struct inode *, const struct qstr *);
8ae8f162 1127struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *);
39a53e0c
JK
1128void ra_node_page(struct f2fs_sb_info *, nid_t);
1129struct page *get_node_page(struct f2fs_sb_info *, pgoff_t);
1130struct page *get_node_page_ra(struct page *, int);
1131void sync_inode_page(struct dnode_of_data *);
1132int sync_node_pages(struct f2fs_sb_info *, nid_t, struct writeback_control *);
1133bool alloc_nid(struct f2fs_sb_info *, nid_t *);
1134void alloc_nid_done(struct f2fs_sb_info *, nid_t);
1135void alloc_nid_failed(struct f2fs_sb_info *, nid_t);
1136void recover_node_page(struct f2fs_sb_info *, struct page *,
1137 struct f2fs_summary *, struct node_info *, block_t);
abb2366c 1138bool recover_xattr_data(struct inode *, struct page *, block_t);
39a53e0c
JK
1139int recover_inode_page(struct f2fs_sb_info *, struct page *);
1140int restore_node_summary(struct f2fs_sb_info *, unsigned int,
1141 struct f2fs_summary_block *);
1142void flush_nat_entries(struct f2fs_sb_info *);
1143int build_node_manager(struct f2fs_sb_info *);
1144void destroy_node_manager(struct f2fs_sb_info *);
6e6093a8 1145int __init create_node_manager_caches(void);
39a53e0c
JK
1146void destroy_node_manager_caches(void);
1147
1148/*
1149 * segment.c
1150 */
1151void f2fs_balance_fs(struct f2fs_sb_info *);
4660f9c0 1152void f2fs_balance_fs_bg(struct f2fs_sb_info *);
39a53e0c 1153void invalidate_blocks(struct f2fs_sb_info *, block_t);
5e443818 1154void refresh_sit_entry(struct f2fs_sb_info *, block_t, block_t);
39a53e0c
JK
1155void clear_prefree_segments(struct f2fs_sb_info *);
1156int npages_for_summary_flush(struct f2fs_sb_info *);
1157void allocate_new_segments(struct f2fs_sb_info *);
1158struct page *get_sum_page(struct f2fs_sb_info *, unsigned int);
577e3495 1159void write_meta_page(struct f2fs_sb_info *, struct page *);
fb5566da
JK
1160void write_node_page(struct f2fs_sb_info *, struct page *,
1161 struct f2fs_io_info *, unsigned int, block_t, block_t *);
458e6197
JK
1162void write_data_page(struct page *, struct dnode_of_data *, block_t *,
1163 struct f2fs_io_info *);
1164void rewrite_data_page(struct page *, block_t, struct f2fs_io_info *);
39a53e0c
JK
1165void recover_data_page(struct f2fs_sb_info *, struct page *,
1166 struct f2fs_summary *, block_t, block_t);
1167void rewrite_node_page(struct f2fs_sb_info *, struct page *,
1168 struct f2fs_summary *, block_t, block_t);
bfad7c2d
JK
1169void allocate_data_block(struct f2fs_sb_info *, struct page *,
1170 block_t, block_t *, struct f2fs_summary *, int);
5514f0aa 1171void f2fs_wait_on_page_writeback(struct page *, enum page_type);
39a53e0c
JK
1172void write_data_summaries(struct f2fs_sb_info *, block_t);
1173void write_node_summaries(struct f2fs_sb_info *, block_t);
1174int lookup_journal_in_cursum(struct f2fs_summary_block *,
1175 int, unsigned int, int);
1176void flush_sit_entries(struct f2fs_sb_info *);
1177int build_segment_manager(struct f2fs_sb_info *);
39a53e0c 1178void destroy_segment_manager(struct f2fs_sb_info *);
7fd9e544
JK
1179int __init create_segment_manager_caches(void);
1180void destroy_segment_manager_caches(void);
39a53e0c
JK
1181
1182/*
1183 * checkpoint.c
1184 */
1185struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t);
1186struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t);
662befda 1187int ra_meta_pages(struct f2fs_sb_info *, int, int, int);
39a53e0c 1188long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long);
cbd56e7d
JK
1189int acquire_orphan_inode(struct f2fs_sb_info *);
1190void release_orphan_inode(struct f2fs_sb_info *);
39a53e0c
JK
1191void add_orphan_inode(struct f2fs_sb_info *, nid_t);
1192void remove_orphan_inode(struct f2fs_sb_info *, nid_t);
8f99a946 1193void recover_orphan_inodes(struct f2fs_sb_info *);
39a53e0c
JK
1194int get_valid_checkpoint(struct f2fs_sb_info *);
1195void set_dirty_dir_page(struct inode *, struct page *);
5deb8267 1196void add_dirty_dir_inode(struct inode *);
39a53e0c 1197void remove_dirty_dir_inode(struct inode *);
74d0b917 1198struct inode *check_dirty_dir_inode(struct f2fs_sb_info *, nid_t);
39a53e0c 1199void sync_dirty_dir_inodes(struct f2fs_sb_info *);
43727527 1200void write_checkpoint(struct f2fs_sb_info *, bool);
39a53e0c 1201void init_orphan_info(struct f2fs_sb_info *);
6e6093a8 1202int __init create_checkpoint_caches(void);
39a53e0c
JK
1203void destroy_checkpoint_caches(void);
1204
1205/*
1206 * data.c
1207 */
458e6197 1208void f2fs_submit_merged_bio(struct f2fs_sb_info *, enum page_type, int);
93dfe2ac
JK
1209int f2fs_submit_page_bio(struct f2fs_sb_info *, struct page *, block_t, int);
1210void f2fs_submit_page_mbio(struct f2fs_sb_info *, struct page *, block_t,
458e6197 1211 struct f2fs_io_info *);
39a53e0c 1212int reserve_new_block(struct dnode_of_data *);
b600965c 1213int f2fs_reserve_block(struct dnode_of_data *, pgoff_t);
39a53e0c 1214void update_extent_cache(block_t, struct dnode_of_data *);
c718379b 1215struct page *find_data_page(struct inode *, pgoff_t, bool);
39a53e0c 1216struct page *get_lock_data_page(struct inode *, pgoff_t);
64aa7ed9 1217struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool);
458e6197 1218int do_write_data_page(struct page *, struct f2fs_io_info *);
39a53e0c
JK
1219
1220/*
1221 * gc.c
1222 */
1223int start_gc_thread(struct f2fs_sb_info *);
1224void stop_gc_thread(struct f2fs_sb_info *);
de93653f 1225block_t start_bidx_of_node(unsigned int, struct f2fs_inode_info *);
408e9375 1226int f2fs_gc(struct f2fs_sb_info *);
39a53e0c 1227void build_gc_manager(struct f2fs_sb_info *);
6e6093a8 1228int __init create_gc_caches(void);
39a53e0c
JK
1229void destroy_gc_caches(void);
1230
1231/*
1232 * recovery.c
1233 */
6ead1142 1234int recover_fsync_data(struct f2fs_sb_info *);
39a53e0c
JK
1235bool space_for_roll_forward(struct f2fs_sb_info *);
1236
1237/*
1238 * debug.c
1239 */
1240#ifdef CONFIG_F2FS_STAT_FS
1241struct f2fs_stat_info {
1242 struct list_head stat_list;
1243 struct f2fs_sb_info *sbi;
1244 struct mutex stat_lock;
1245 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
1246 int main_area_segs, main_area_sections, main_area_zones;
1247 int hit_ext, total_ext;
1248 int ndirty_node, ndirty_dent, ndirty_dirs, ndirty_meta;
1249 int nats, sits, fnids;
1250 int total_count, utilization;
0dbdc2ae 1251 int bg_gc, inline_inode;
39a53e0c
JK
1252 unsigned int valid_count, valid_node_count, valid_inode_count;
1253 unsigned int bimodal, avg_vblocks;
1254 int util_free, util_valid, util_invalid;
1255 int rsvd_segs, overp_segs;
1256 int dirty_count, node_pages, meta_pages;
942e0be6 1257 int prefree_count, call_count, cp_count;
39a53e0c
JK
1258 int tot_segs, node_segs, data_segs, free_segs, free_secs;
1259 int tot_blks, data_blks, node_blks;
1260 int curseg[NR_CURSEG_TYPE];
1261 int cursec[NR_CURSEG_TYPE];
1262 int curzone[NR_CURSEG_TYPE];
1263
1264 unsigned int segment_count[2];
1265 unsigned int block_count[2];
1266 unsigned base_mem, cache_mem;
1267};
1268
963d4f7d
GZ
1269static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
1270{
6c311ec6 1271 return (struct f2fs_stat_info *)sbi->stat_info;
963d4f7d
GZ
1272}
1273
942e0be6 1274#define stat_inc_cp_count(si) ((si)->cp_count++)
dcdfff65
JK
1275#define stat_inc_call_count(si) ((si)->call_count++)
1276#define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++)
1277#define stat_inc_dirty_dir(sbi) ((sbi)->n_dirty_dirs++)
1278#define stat_dec_dirty_dir(sbi) ((sbi)->n_dirty_dirs--)
1279#define stat_inc_total_hit(sb) ((F2FS_SB(sb))->total_hit_ext++)
1280#define stat_inc_read_hit(sb) ((F2FS_SB(sb))->read_hit_ext++)
0dbdc2ae
JK
1281#define stat_inc_inline_inode(inode) \
1282 do { \
1283 if (f2fs_has_inline_data(inode)) \
1284 ((F2FS_SB(inode->i_sb))->inline_inode++); \
1285 } while (0)
1286#define stat_dec_inline_inode(inode) \
1287 do { \
1288 if (f2fs_has_inline_data(inode)) \
1289 ((F2FS_SB(inode->i_sb))->inline_inode--); \
1290 } while (0)
1291
dcdfff65
JK
1292#define stat_inc_seg_type(sbi, curseg) \
1293 ((sbi)->segment_count[(curseg)->alloc_type]++)
1294#define stat_inc_block_count(sbi, curseg) \
1295 ((sbi)->block_count[(curseg)->alloc_type]++)
39a53e0c
JK
1296
1297#define stat_inc_seg_count(sbi, type) \
1298 do { \
963d4f7d 1299 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
39a53e0c
JK
1300 (si)->tot_segs++; \
1301 if (type == SUM_TYPE_DATA) \
1302 si->data_segs++; \
1303 else \
1304 si->node_segs++; \
1305 } while (0)
1306
1307#define stat_inc_tot_blk_count(si, blks) \
1308 (si->tot_blks += (blks))
1309
1310#define stat_inc_data_blk_count(sbi, blks) \
1311 do { \
963d4f7d 1312 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
39a53e0c
JK
1313 stat_inc_tot_blk_count(si, blks); \
1314 si->data_blks += (blks); \
1315 } while (0)
1316
1317#define stat_inc_node_blk_count(sbi, blks) \
1318 do { \
963d4f7d 1319 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
39a53e0c
JK
1320 stat_inc_tot_blk_count(si, blks); \
1321 si->node_blks += (blks); \
1322 } while (0)
1323
1324int f2fs_build_stats(struct f2fs_sb_info *);
1325void f2fs_destroy_stats(struct f2fs_sb_info *);
6e6093a8 1326void __init f2fs_create_root_stats(void);
4589d25d 1327void f2fs_destroy_root_stats(void);
39a53e0c 1328#else
942e0be6 1329#define stat_inc_cp_count(si)
39a53e0c 1330#define stat_inc_call_count(si)
dcdfff65
JK
1331#define stat_inc_bggc_count(si)
1332#define stat_inc_dirty_dir(sbi)
1333#define stat_dec_dirty_dir(sbi)
1334#define stat_inc_total_hit(sb)
1335#define stat_inc_read_hit(sb)
0dbdc2ae
JK
1336#define stat_inc_inline_inode(inode)
1337#define stat_dec_inline_inode(inode)
dcdfff65
JK
1338#define stat_inc_seg_type(sbi, curseg)
1339#define stat_inc_block_count(sbi, curseg)
39a53e0c
JK
1340#define stat_inc_seg_count(si, type)
1341#define stat_inc_tot_blk_count(si, blks)
1342#define stat_inc_data_blk_count(si, blks)
1343#define stat_inc_node_blk_count(sbi, blks)
1344
1345static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
1346static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
6e6093a8 1347static inline void __init f2fs_create_root_stats(void) { }
4589d25d 1348static inline void f2fs_destroy_root_stats(void) { }
39a53e0c
JK
1349#endif
1350
1351extern const struct file_operations f2fs_dir_operations;
1352extern const struct file_operations f2fs_file_operations;
1353extern const struct inode_operations f2fs_file_inode_operations;
1354extern const struct address_space_operations f2fs_dblock_aops;
1355extern const struct address_space_operations f2fs_node_aops;
1356extern const struct address_space_operations f2fs_meta_aops;
1357extern const struct inode_operations f2fs_dir_inode_operations;
1358extern const struct inode_operations f2fs_symlink_inode_operations;
1359extern const struct inode_operations f2fs_special_inode_operations;
1001b347 1360
e18c65b2
HL
1361/*
1362 * inline.c
1363 */
e18c65b2
HL
1364bool f2fs_may_inline(struct inode *);
1365int f2fs_read_inline_data(struct inode *, struct page *);
9e09fc85 1366int f2fs_convert_inline_data(struct inode *, pgoff_t);
e18c65b2 1367int f2fs_write_inline_data(struct inode *, struct page *, unsigned int);
1e1bb4ba 1368int recover_inline_data(struct inode *, struct page *);
39a53e0c 1369#endif