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