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