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