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