f2fs: retain inconsistency information to initiate fsck.f2fs
[deliverable/linux.git] / fs / f2fs / f2fs.h
CommitLineData
0a8165d7 1/*
39a53e0c
JK
2 * fs/f2fs/f2fs.h
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#ifndef _LINUX_F2FS_H
12#define _LINUX_F2FS_H
13
14#include <linux/types.h>
15#include <linux/page-flags.h>
16#include <linux/buffer_head.h>
39a53e0c
JK
17#include <linux/slab.h>
18#include <linux/crc32.h>
19#include <linux/magic.h>
c2d715d1 20#include <linux/kobject.h>
7bd59381 21#include <linux/sched.h>
39a53e0c 22
5d56b671
JK
23#ifdef CONFIG_F2FS_CHECK_FS
24#define f2fs_bug_on(condition) BUG_ON(condition)
0daaad97 25#define f2fs_down_write(x, y) down_write_nest_lock(x, y)
5d56b671 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 */
2ae4c673 437 bool need_fsck; /* need fsck.f2fs to fix */
39a53e0c
JK
438
439 /* for node-related operations */
440 struct f2fs_nm_info *nm_info; /* node manager */
441 struct inode *node_inode; /* cache node blocks */
442
443 /* for segment-related operations */
444 struct f2fs_sm_info *sm_info; /* segment manager */
1ff7bd3b
JK
445
446 /* for bio operations */
924b720b 447 struct f2fs_bio_info read_io; /* for read bios */
1ff7bd3b 448 struct f2fs_bio_info write_io[NR_PAGE_TYPE]; /* for write bios */
1b1f559f 449 struct completion *wait_io; /* for completion bios */
39a53e0c
JK
450
451 /* for checkpoint */
452 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
453 struct inode *meta_inode; /* cache meta blocks */
39936837 454 struct mutex cp_mutex; /* checkpoint procedure lock */
e479556b 455 struct rw_semaphore cp_rwsem; /* blocking FS operations */
b3582c68 456 struct rw_semaphore node_write; /* locking node writes */
39a53e0c 457 struct mutex writepages; /* mutex for writepages() */
aabe5136 458 bool por_doing; /* recovery is doing or not */
fb51b5ef 459 wait_queue_head_t cp_wait;
39a53e0c 460
6451e041 461 /* for inode management */
39efac41 462 struct radix_tree_root ino_root[MAX_INO_ENTRY]; /* ino entry array */
6451e041
JK
463 spinlock_t ino_lock[MAX_INO_ENTRY]; /* for ino entry lock */
464 struct list_head ino_list[MAX_INO_ENTRY]; /* inode list head */
465
466 /* for orphan inode, use 0'th array */
39a53e0c 467 unsigned int n_orphans; /* # of orphan inodes */
0d47c1ad 468 unsigned int max_orphans; /* max orphan inodes */
39a53e0c
JK
469
470 /* for directory inode management */
471 struct list_head dir_inode_list; /* dir inode list */
472 spinlock_t dir_inode_lock; /* for dir inode list lock */
39a53e0c 473
e1c42045 474 /* basic filesystem units */
39a53e0c
JK
475 unsigned int log_sectors_per_block; /* log2 sectors per block */
476 unsigned int log_blocksize; /* log2 block size */
477 unsigned int blocksize; /* block size */
478 unsigned int root_ino_num; /* root inode number*/
479 unsigned int node_ino_num; /* node inode number*/
480 unsigned int meta_ino_num; /* meta inode number*/
481 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
482 unsigned int blocks_per_seg; /* blocks per segment */
483 unsigned int segs_per_sec; /* segments per section */
484 unsigned int secs_per_zone; /* sections per zone */
485 unsigned int total_sections; /* total section count */
486 unsigned int total_node_count; /* total node block count */
487 unsigned int total_valid_node_count; /* valid node block count */
488 unsigned int total_valid_inode_count; /* valid inode count */
489 int active_logs; /* # of active logs */
ab9fa662 490 int dir_level; /* directory level */
39a53e0c
JK
491
492 block_t user_block_count; /* # of user blocks */
493 block_t total_valid_block_count; /* # of valid blocks */
494 block_t alloc_valid_block_count; /* # of allocated blocks */
495 block_t last_valid_block_count; /* for recovery */
496 u32 s_next_generation; /* for NFS support */
497 atomic_t nr_pages[NR_COUNT_TYPE]; /* # of pages, see count_type */
498
499 struct f2fs_mount_info mount_opt; /* mount options */
500
501 /* for cleaning operations */
502 struct mutex gc_mutex; /* mutex for GC */
503 struct f2fs_gc_kthread *gc_thread; /* GC thread */
5ec4e49f 504 unsigned int cur_victim_sec; /* current victim section num */
39a53e0c 505
b1c57c1c
JK
506 /* maximum # of trials to find a victim segment for SSR and GC */
507 unsigned int max_victim_search;
508
39a53e0c
JK
509 /*
510 * for stat information.
511 * one is for the LFS mode, and the other is for the SSR mode.
512 */
35b09d82 513#ifdef CONFIG_F2FS_STAT_FS
39a53e0c
JK
514 struct f2fs_stat_info *stat_info; /* FS status information */
515 unsigned int segment_count[2]; /* # of allocated segments */
516 unsigned int block_count[2]; /* # of allocated blocks */
39a53e0c 517 int total_hit_ext, read_hit_ext; /* extent cache hit ratio */
0dbdc2ae 518 int inline_inode; /* # of inline_data inodes */
39a53e0c 519 int bg_gc; /* background gc calls */
35b09d82
NJ
520 unsigned int n_dirty_dirs; /* # of dir inodes */
521#endif
522 unsigned int last_victim[2]; /* last victim segment # */
39a53e0c 523 spinlock_t stat_lock; /* lock for stat operations */
b59d0bae
NJ
524
525 /* For sysfs suppport */
526 struct kobject s_kobj;
527 struct completion s_kobj_unregister;
39a53e0c
JK
528};
529
530/*
531 * Inline functions
532 */
533static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
534{
535 return container_of(inode, struct f2fs_inode_info, vfs_inode);
536}
537
538static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
539{
540 return sb->s_fs_info;
541}
542
4081363f
JK
543static inline struct f2fs_sb_info *F2FS_I_SB(struct inode *inode)
544{
545 return F2FS_SB(inode->i_sb);
546}
547
548static inline struct f2fs_sb_info *F2FS_M_SB(struct address_space *mapping)
549{
550 return F2FS_I_SB(mapping->host);
551}
552
553static inline struct f2fs_sb_info *F2FS_P_SB(struct page *page)
554{
555 return F2FS_M_SB(page->mapping);
556}
557
39a53e0c
JK
558static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
559{
560 return (struct f2fs_super_block *)(sbi->raw_super);
561}
562
563static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
564{
565 return (struct f2fs_checkpoint *)(sbi->ckpt);
566}
567
45590710
GZ
568static inline struct f2fs_node *F2FS_NODE(struct page *page)
569{
570 return (struct f2fs_node *)page_address(page);
571}
572
58bfaf44
JK
573static inline struct f2fs_inode *F2FS_INODE(struct page *page)
574{
575 return &((struct f2fs_node *)page_address(page))->i;
576}
577
39a53e0c
JK
578static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
579{
580 return (struct f2fs_nm_info *)(sbi->nm_info);
581}
582
583static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
584{
585 return (struct f2fs_sm_info *)(sbi->sm_info);
586}
587
588static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
589{
590 return (struct sit_info *)(SM_I(sbi)->sit_info);
591}
592
593static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
594{
595 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
596}
597
598static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
599{
600 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
601}
602
9df27d98
GZ
603static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi)
604{
605 return sbi->meta_inode->i_mapping;
606}
607
4ef51a8f
JK
608static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi)
609{
610 return sbi->node_inode->i_mapping;
611}
612
39a53e0c
JK
613static inline void F2FS_SET_SB_DIRT(struct f2fs_sb_info *sbi)
614{
615 sbi->s_dirty = 1;
616}
617
618static inline void F2FS_RESET_SB_DIRT(struct f2fs_sb_info *sbi)
619{
620 sbi->s_dirty = 0;
621}
622
d71b5564
JK
623static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
624{
625 return le64_to_cpu(cp->checkpoint_ver);
626}
627
25ca923b
JK
628static inline bool is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
629{
630 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
631 return ckpt_flags & f;
632}
633
634static inline void set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
635{
636 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
637 ckpt_flags |= f;
638 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
639}
640
641static inline void clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
642{
643 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
644 ckpt_flags &= (~f);
645 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
646}
647
e479556b 648static inline void f2fs_lock_op(struct f2fs_sb_info *sbi)
39936837 649{
e479556b 650 down_read(&sbi->cp_rwsem);
39936837
JK
651}
652
e479556b 653static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi)
39a53e0c 654{
e479556b 655 up_read(&sbi->cp_rwsem);
39a53e0c
JK
656}
657
e479556b 658static inline void f2fs_lock_all(struct f2fs_sb_info *sbi)
39a53e0c 659{
0daaad97 660 f2fs_down_write(&sbi->cp_rwsem, &sbi->cp_mutex);
39936837
JK
661}
662
e479556b 663static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi)
39936837 664{
e479556b 665 up_write(&sbi->cp_rwsem);
39a53e0c
JK
666}
667
668/*
669 * Check whether the given nid is within node id range.
670 */
064e0823 671static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid)
39a53e0c 672{
d6b7d4b3
CY
673 if (unlikely(nid < F2FS_ROOT_INO(sbi)))
674 return -EINVAL;
cfb271d4 675 if (unlikely(nid >= NM_I(sbi)->max_nid))
064e0823
NJ
676 return -EINVAL;
677 return 0;
39a53e0c
JK
678}
679
680#define F2FS_DEFAULT_ALLOCATED_BLOCKS 1
681
682/*
683 * Check whether the inode has blocks or not
684 */
685static inline int F2FS_HAS_BLOCKS(struct inode *inode)
686{
687 if (F2FS_I(inode)->i_xattr_nid)
6c311ec6 688 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1;
39a53e0c 689 else
6c311ec6 690 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS;
39a53e0c
JK
691}
692
4bc8e9bc
CY
693static inline bool f2fs_has_xattr_block(unsigned int ofs)
694{
695 return ofs == XATTR_NODE_OFFSET;
696}
697
39a53e0c
JK
698static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi,
699 struct inode *inode, blkcnt_t count)
700{
701 block_t valid_block_count;
702
703 spin_lock(&sbi->stat_lock);
704 valid_block_count =
705 sbi->total_valid_block_count + (block_t)count;
cfb271d4 706 if (unlikely(valid_block_count > sbi->user_block_count)) {
39a53e0c
JK
707 spin_unlock(&sbi->stat_lock);
708 return false;
709 }
710 inode->i_blocks += count;
711 sbi->total_valid_block_count = valid_block_count;
712 sbi->alloc_valid_block_count += (block_t)count;
713 spin_unlock(&sbi->stat_lock);
714 return true;
715}
716
da19b0dc 717static inline void dec_valid_block_count(struct f2fs_sb_info *sbi,
39a53e0c
JK
718 struct inode *inode,
719 blkcnt_t count)
720{
721 spin_lock(&sbi->stat_lock);
5d56b671
JK
722 f2fs_bug_on(sbi->total_valid_block_count < (block_t) count);
723 f2fs_bug_on(inode->i_blocks < count);
39a53e0c
JK
724 inode->i_blocks -= count;
725 sbi->total_valid_block_count -= (block_t)count;
726 spin_unlock(&sbi->stat_lock);
39a53e0c
JK
727}
728
729static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
730{
731 atomic_inc(&sbi->nr_pages[count_type]);
732 F2FS_SET_SB_DIRT(sbi);
733}
734
735static inline void inode_inc_dirty_dents(struct inode *inode)
736{
4081363f 737 inc_page_count(F2FS_I_SB(inode), F2FS_DIRTY_DENTS);
39a53e0c
JK
738 atomic_inc(&F2FS_I(inode)->dirty_dents);
739}
740
741static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
742{
743 atomic_dec(&sbi->nr_pages[count_type]);
744}
745
746static inline void inode_dec_dirty_dents(struct inode *inode)
747{
1fe54f9d
JK
748 if (!S_ISDIR(inode->i_mode))
749 return;
750
4081363f 751 dec_page_count(F2FS_I_SB(inode), F2FS_DIRTY_DENTS);
39a53e0c
JK
752 atomic_dec(&F2FS_I(inode)->dirty_dents);
753}
754
755static inline int get_pages(struct f2fs_sb_info *sbi, int count_type)
756{
757 return atomic_read(&sbi->nr_pages[count_type]);
758}
759
f8b2c1f9
JK
760static inline int get_dirty_dents(struct inode *inode)
761{
762 return atomic_read(&F2FS_I(inode)->dirty_dents);
763}
764
5ac206cf
NJ
765static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
766{
767 unsigned int pages_per_sec = sbi->segs_per_sec *
768 (1 << sbi->log_blocks_per_seg);
769 return ((get_pages(sbi, block_type) + pages_per_sec - 1)
770 >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
771}
772
39a53e0c
JK
773static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
774{
8b8343fa 775 return sbi->total_valid_block_count;
39a53e0c
JK
776}
777
778static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
779{
780 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
781
782 /* return NAT or SIT bitmap */
783 if (flag == NAT_BITMAP)
784 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
785 else if (flag == SIT_BITMAP)
786 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
787
788 return 0;
789}
790
791static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
792{
793 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1dbe4152
CL
794 int offset;
795
796 if (le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload) > 0) {
797 if (flag == NAT_BITMAP)
798 return &ckpt->sit_nat_version_bitmap;
799 else
65b85ccc 800 return (unsigned char *)ckpt + F2FS_BLKSIZE;
1dbe4152
CL
801 } else {
802 offset = (flag == NAT_BITMAP) ?
25ca923b 803 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
1dbe4152
CL
804 return &ckpt->sit_nat_version_bitmap + offset;
805 }
39a53e0c
JK
806}
807
808static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
809{
810 block_t start_addr;
811 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
d71b5564 812 unsigned long long ckpt_version = cur_cp_version(ckpt);
39a53e0c 813
25ca923b 814 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
39a53e0c
JK
815
816 /*
817 * odd numbered checkpoint should at cp segment 0
e1c42045 818 * and even segment must be at cp segment 1
39a53e0c
JK
819 */
820 if (!(ckpt_version & 1))
821 start_addr += sbi->blocks_per_seg;
822
823 return start_addr;
824}
825
826static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
827{
828 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
829}
830
831static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi,
ef86d709 832 struct inode *inode)
39a53e0c
JK
833{
834 block_t valid_block_count;
835 unsigned int valid_node_count;
836
837 spin_lock(&sbi->stat_lock);
838
ef86d709 839 valid_block_count = sbi->total_valid_block_count + 1;
cfb271d4 840 if (unlikely(valid_block_count > sbi->user_block_count)) {
39a53e0c
JK
841 spin_unlock(&sbi->stat_lock);
842 return false;
843 }
844
ef86d709 845 valid_node_count = sbi->total_valid_node_count + 1;
cfb271d4 846 if (unlikely(valid_node_count > sbi->total_node_count)) {
39a53e0c
JK
847 spin_unlock(&sbi->stat_lock);
848 return false;
849 }
850
851 if (inode)
ef86d709
GZ
852 inode->i_blocks++;
853
854 sbi->alloc_valid_block_count++;
855 sbi->total_valid_node_count++;
856 sbi->total_valid_block_count++;
39a53e0c
JK
857 spin_unlock(&sbi->stat_lock);
858
859 return true;
860}
861
862static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
ef86d709 863 struct inode *inode)
39a53e0c
JK
864{
865 spin_lock(&sbi->stat_lock);
866
ef86d709
GZ
867 f2fs_bug_on(!sbi->total_valid_block_count);
868 f2fs_bug_on(!sbi->total_valid_node_count);
869 f2fs_bug_on(!inode->i_blocks);
39a53e0c 870
ef86d709
GZ
871 inode->i_blocks--;
872 sbi->total_valid_node_count--;
873 sbi->total_valid_block_count--;
39a53e0c
JK
874
875 spin_unlock(&sbi->stat_lock);
876}
877
878static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
879{
8b8343fa 880 return sbi->total_valid_node_count;
39a53e0c
JK
881}
882
883static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
884{
885 spin_lock(&sbi->stat_lock);
5d56b671 886 f2fs_bug_on(sbi->total_valid_inode_count == sbi->total_node_count);
39a53e0c
JK
887 sbi->total_valid_inode_count++;
888 spin_unlock(&sbi->stat_lock);
889}
890
0e80220a 891static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi)
39a53e0c
JK
892{
893 spin_lock(&sbi->stat_lock);
5d56b671 894 f2fs_bug_on(!sbi->total_valid_inode_count);
39a53e0c
JK
895 sbi->total_valid_inode_count--;
896 spin_unlock(&sbi->stat_lock);
39a53e0c
JK
897}
898
899static inline unsigned int valid_inode_count(struct f2fs_sb_info *sbi)
900{
8b8343fa 901 return sbi->total_valid_inode_count;
39a53e0c
JK
902}
903
904static inline void f2fs_put_page(struct page *page, int unlock)
905{
031fa8cc 906 if (!page)
39a53e0c
JK
907 return;
908
909 if (unlock) {
5d56b671 910 f2fs_bug_on(!PageLocked(page));
39a53e0c
JK
911 unlock_page(page);
912 }
913 page_cache_release(page);
914}
915
916static inline void f2fs_put_dnode(struct dnode_of_data *dn)
917{
918 if (dn->node_page)
919 f2fs_put_page(dn->node_page, 1);
920 if (dn->inode_page && dn->node_page != dn->inode_page)
921 f2fs_put_page(dn->inode_page, 0);
922 dn->node_page = NULL;
923 dn->inode_page = NULL;
924}
925
926static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
e8512d2e 927 size_t size)
39a53e0c 928{
e8512d2e 929 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL);
39a53e0c
JK
930}
931
7bd59381
GZ
932static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep,
933 gfp_t flags)
934{
935 void *entry;
936retry:
937 entry = kmem_cache_alloc(cachep, flags);
938 if (!entry) {
939 cond_resched();
940 goto retry;
941 }
942
943 return entry;
944}
945
39a53e0c
JK
946#define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
947
948static inline bool IS_INODE(struct page *page)
949{
45590710 950 struct f2fs_node *p = F2FS_NODE(page);
39a53e0c
JK
951 return RAW_IS_INODE(p);
952}
953
954static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
955{
956 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
957}
958
959static inline block_t datablock_addr(struct page *node_page,
960 unsigned int offset)
961{
962 struct f2fs_node *raw_node;
963 __le32 *addr_array;
45590710 964 raw_node = F2FS_NODE(node_page);
39a53e0c
JK
965 addr_array = blkaddr_in_node(raw_node);
966 return le32_to_cpu(addr_array[offset]);
967}
968
969static inline int f2fs_test_bit(unsigned int nr, char *addr)
970{
971 int mask;
972
973 addr += (nr >> 3);
974 mask = 1 << (7 - (nr & 0x07));
975 return mask & *addr;
976}
977
978static inline int f2fs_set_bit(unsigned int nr, char *addr)
979{
980 int mask;
981 int ret;
982
983 addr += (nr >> 3);
984 mask = 1 << (7 - (nr & 0x07));
985 ret = mask & *addr;
986 *addr |= mask;
987 return ret;
988}
989
990static inline int f2fs_clear_bit(unsigned int nr, char *addr)
991{
992 int mask;
993 int ret;
994
995 addr += (nr >> 3);
996 mask = 1 << (7 - (nr & 0x07));
997 ret = mask & *addr;
998 *addr &= ~mask;
999 return ret;
1000}
1001
1002/* used for f2fs_inode_info->flags */
1003enum {
1004 FI_NEW_INODE, /* indicate newly allocated inode */
b3783873 1005 FI_DIRTY_INODE, /* indicate inode is dirty or not */
ed57c27f 1006 FI_DIRTY_DIR, /* indicate directory has dirty pages */
39a53e0c
JK
1007 FI_INC_LINK, /* need to increment i_nlink */
1008 FI_ACL_MODE, /* indicate acl mode */
1009 FI_NO_ALLOC, /* should not allocate any blocks */
699489bb 1010 FI_UPDATE_DIR, /* should update inode block for consistency */
74d0b917 1011 FI_DELAY_IPUT, /* used for the recovery */
c11abd1a 1012 FI_NO_EXTENT, /* not to use the extent cache */
444c580f 1013 FI_INLINE_XATTR, /* used for inline xattr */
1001b347 1014 FI_INLINE_DATA, /* used for inline data*/
fff04f90
JK
1015 FI_APPEND_WRITE, /* inode has appended data */
1016 FI_UPDATE_WRITE, /* inode has in-place-update data */
ea1aa12c 1017 FI_NEED_IPU, /* used fo ipu for fdatasync */
39a53e0c
JK
1018};
1019
1020static inline void set_inode_flag(struct f2fs_inode_info *fi, int flag)
1021{
61e0f2d0
JK
1022 if (!test_bit(flag, &fi->flags))
1023 set_bit(flag, &fi->flags);
39a53e0c
JK
1024}
1025
1026static inline int is_inode_flag_set(struct f2fs_inode_info *fi, int flag)
1027{
1028 return test_bit(flag, &fi->flags);
1029}
1030
1031static inline void clear_inode_flag(struct f2fs_inode_info *fi, int flag)
1032{
61e0f2d0
JK
1033 if (test_bit(flag, &fi->flags))
1034 clear_bit(flag, &fi->flags);
39a53e0c
JK
1035}
1036
1037static inline void set_acl_inode(struct f2fs_inode_info *fi, umode_t mode)
1038{
1039 fi->i_acl_mode = mode;
1040 set_inode_flag(fi, FI_ACL_MODE);
1041}
1042
1043static inline int cond_clear_inode_flag(struct f2fs_inode_info *fi, int flag)
1044{
1045 if (is_inode_flag_set(fi, FI_ACL_MODE)) {
1046 clear_inode_flag(fi, FI_ACL_MODE);
1047 return 1;
1048 }
1049 return 0;
1050}
1051
444c580f
JK
1052static inline void get_inline_info(struct f2fs_inode_info *fi,
1053 struct f2fs_inode *ri)
1054{
1055 if (ri->i_inline & F2FS_INLINE_XATTR)
1056 set_inode_flag(fi, FI_INLINE_XATTR);
1001b347
HL
1057 if (ri->i_inline & F2FS_INLINE_DATA)
1058 set_inode_flag(fi, FI_INLINE_DATA);
444c580f
JK
1059}
1060
1061static inline void set_raw_inline(struct f2fs_inode_info *fi,
1062 struct f2fs_inode *ri)
1063{
1064 ri->i_inline = 0;
1065
1066 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
1067 ri->i_inline |= F2FS_INLINE_XATTR;
1001b347
HL
1068 if (is_inode_flag_set(fi, FI_INLINE_DATA))
1069 ri->i_inline |= F2FS_INLINE_DATA;
444c580f
JK
1070}
1071
987c7c31
CY
1072static inline int f2fs_has_inline_xattr(struct inode *inode)
1073{
1074 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR);
1075}
1076
de93653f
JK
1077static inline unsigned int addrs_per_inode(struct f2fs_inode_info *fi)
1078{
987c7c31 1079 if (f2fs_has_inline_xattr(&fi->vfs_inode))
de93653f
JK
1080 return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS;
1081 return DEF_ADDRS_PER_INODE;
1082}
1083
65985d93
JK
1084static inline void *inline_xattr_addr(struct page *page)
1085{
695fd1ed 1086 struct f2fs_inode *ri = F2FS_INODE(page);
65985d93
JK
1087 return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE -
1088 F2FS_INLINE_XATTR_ADDRS]);
1089}
1090
1091static inline int inline_xattr_size(struct inode *inode)
1092{
987c7c31 1093 if (f2fs_has_inline_xattr(inode))
65985d93
JK
1094 return F2FS_INLINE_XATTR_ADDRS << 2;
1095 else
1096 return 0;
1097}
1098
0dbdc2ae
JK
1099static inline int f2fs_has_inline_data(struct inode *inode)
1100{
1101 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DATA);
1102}
1103
1001b347
HL
1104static inline void *inline_data_addr(struct page *page)
1105{
695fd1ed 1106 struct f2fs_inode *ri = F2FS_INODE(page);
1001b347
HL
1107 return (void *)&(ri->i_addr[1]);
1108}
1109
77888c1e
JK
1110static inline int f2fs_readonly(struct super_block *sb)
1111{
1112 return sb->s_flags & MS_RDONLY;
1113}
1114
1e968fdf
JK
1115static inline bool f2fs_cp_error(struct f2fs_sb_info *sbi)
1116{
1117 return is_set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1118}
1119
744602cf
JK
1120static inline void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi)
1121{
1122 set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1123 sbi->sb->s_flags |= MS_RDONLY;
1124}
1125
a6dda0e6
CH
1126#define get_inode_mode(i) \
1127 ((is_inode_flag_set(F2FS_I(i), FI_ACL_MODE)) ? \
1128 (F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
1129
267378d4
CY
1130/* get offset of first page in next direct node */
1131#define PGOFS_OF_NEXT_DNODE(pgofs, fi) \
1132 ((pgofs < ADDRS_PER_INODE(fi)) ? ADDRS_PER_INODE(fi) : \
1133 (pgofs - ADDRS_PER_INODE(fi) + ADDRS_PER_BLOCK) / \
1134 ADDRS_PER_BLOCK * ADDRS_PER_BLOCK + ADDRS_PER_INODE(fi))
1135
39a53e0c
JK
1136/*
1137 * file.c
1138 */
1139int f2fs_sync_file(struct file *, loff_t, loff_t, int);
1140void truncate_data_blocks(struct dnode_of_data *);
764aa3e9 1141int truncate_blocks(struct inode *, u64, bool);
39a53e0c 1142void f2fs_truncate(struct inode *);
2d4d9fb5 1143int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
39a53e0c
JK
1144int f2fs_setattr(struct dentry *, struct iattr *);
1145int truncate_hole(struct inode *, pgoff_t, pgoff_t);
b292dcab 1146int truncate_data_blocks_range(struct dnode_of_data *, int);
39a53e0c 1147long f2fs_ioctl(struct file *, unsigned int, unsigned long);
e9750824 1148long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long);
39a53e0c
JK
1149
1150/*
1151 * inode.c
1152 */
1153void f2fs_set_inode_flags(struct inode *);
39a53e0c 1154struct inode *f2fs_iget(struct super_block *, unsigned long);
4660f9c0 1155int try_to_free_nats(struct f2fs_sb_info *, int);
39a53e0c 1156void update_inode(struct inode *, struct page *);
744602cf 1157void update_inode_page(struct inode *);
39a53e0c
JK
1158int f2fs_write_inode(struct inode *, struct writeback_control *);
1159void f2fs_evict_inode(struct inode *);
1160
1161/*
1162 * namei.c
1163 */
1164struct dentry *f2fs_get_parent(struct dentry *child);
1165
1166/*
1167 * dir.c
1168 */
1169struct f2fs_dir_entry *f2fs_find_entry(struct inode *, struct qstr *,
1170 struct page **);
1171struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **);
1172ino_t f2fs_inode_by_name(struct inode *, struct qstr *);
1173void f2fs_set_link(struct inode *, struct f2fs_dir_entry *,
1174 struct page *, struct inode *);
1cd14caf 1175int update_dent_inode(struct inode *, const struct qstr *);
b7f7a5e0 1176int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *);
39a53e0c 1177void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *);
b97a9b5d 1178int f2fs_do_tmpfile(struct inode *, struct inode *);
39a53e0c
JK
1179int f2fs_make_empty(struct inode *, struct inode *);
1180bool f2fs_empty_dir(struct inode *);
1181
b7f7a5e0
AV
1182static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
1183{
1184 return __f2fs_add_link(dentry->d_parent->d_inode, &dentry->d_name,
1185 inode);
1186}
1187
39a53e0c
JK
1188/*
1189 * super.c
1190 */
1191int f2fs_sync_fs(struct super_block *, int);
a07ef784
NJ
1192extern __printf(3, 4)
1193void f2fs_msg(struct super_block *, const char *, const char *, ...);
39a53e0c
JK
1194
1195/*
1196 * hash.c
1197 */
eee6160f 1198f2fs_hash_t f2fs_dentry_hash(const struct qstr *);
39a53e0c
JK
1199
1200/*
1201 * node.c
1202 */
1203struct dnode_of_data;
1204struct node_info;
1205
6fb03f3a 1206bool available_free_memory(struct f2fs_sb_info *, int);
39a53e0c 1207int is_checkpointed_node(struct f2fs_sb_info *, nid_t);
479f40c4 1208bool fsync_mark_done(struct f2fs_sb_info *, nid_t);
b6fe5873 1209void fsync_mark_clear(struct f2fs_sb_info *, nid_t);
39a53e0c
JK
1210void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *);
1211int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int);
1212int truncate_inode_blocks(struct inode *, pgoff_t);
4f16fb0f 1213int truncate_xattr_node(struct inode *, struct page *);
cfe58f9d 1214int wait_on_node_pages_writeback(struct f2fs_sb_info *, nid_t);
58e674d6 1215void remove_inode_page(struct inode *);
a014e037 1216struct page *new_inode_page(struct inode *);
8ae8f162 1217struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *);
39a53e0c
JK
1218void ra_node_page(struct f2fs_sb_info *, nid_t);
1219struct page *get_node_page(struct f2fs_sb_info *, pgoff_t);
1220struct page *get_node_page_ra(struct page *, int);
1221void sync_inode_page(struct dnode_of_data *);
1222int sync_node_pages(struct f2fs_sb_info *, nid_t, struct writeback_control *);
1223bool alloc_nid(struct f2fs_sb_info *, nid_t *);
1224void alloc_nid_done(struct f2fs_sb_info *, nid_t);
1225void alloc_nid_failed(struct f2fs_sb_info *, nid_t);
70cfed88 1226void recover_inline_xattr(struct inode *, struct page *);
1c35a90e 1227void recover_xattr_data(struct inode *, struct page *, block_t);
39a53e0c
JK
1228int recover_inode_page(struct f2fs_sb_info *, struct page *);
1229int restore_node_summary(struct f2fs_sb_info *, unsigned int,
1230 struct f2fs_summary_block *);
1231void flush_nat_entries(struct f2fs_sb_info *);
1232int build_node_manager(struct f2fs_sb_info *);
1233void destroy_node_manager(struct f2fs_sb_info *);
6e6093a8 1234int __init create_node_manager_caches(void);
39a53e0c
JK
1235void destroy_node_manager_caches(void);
1236
1237/*
1238 * segment.c
1239 */
1240void f2fs_balance_fs(struct f2fs_sb_info *);
4660f9c0 1241void f2fs_balance_fs_bg(struct f2fs_sb_info *);
6b4afdd7 1242int f2fs_issue_flush(struct f2fs_sb_info *);
2163d198
GZ
1243int create_flush_cmd_control(struct f2fs_sb_info *);
1244void destroy_flush_cmd_control(struct f2fs_sb_info *);
39a53e0c 1245void invalidate_blocks(struct f2fs_sb_info *, block_t);
5e443818 1246void refresh_sit_entry(struct f2fs_sb_info *, block_t, block_t);
39a53e0c 1247void clear_prefree_segments(struct f2fs_sb_info *);
cf2271e7 1248void discard_next_dnode(struct f2fs_sb_info *, block_t);
39a53e0c
JK
1249int npages_for_summary_flush(struct f2fs_sb_info *);
1250void allocate_new_segments(struct f2fs_sb_info *);
1251struct page *get_sum_page(struct f2fs_sb_info *, unsigned int);
577e3495 1252void write_meta_page(struct f2fs_sb_info *, struct page *);
fb5566da
JK
1253void write_node_page(struct f2fs_sb_info *, struct page *,
1254 struct f2fs_io_info *, unsigned int, block_t, block_t *);
458e6197
JK
1255void write_data_page(struct page *, struct dnode_of_data *, block_t *,
1256 struct f2fs_io_info *);
1257void rewrite_data_page(struct page *, block_t, struct f2fs_io_info *);
39a53e0c
JK
1258void recover_data_page(struct f2fs_sb_info *, struct page *,
1259 struct f2fs_summary *, block_t, block_t);
bfad7c2d
JK
1260void allocate_data_block(struct f2fs_sb_info *, struct page *,
1261 block_t, block_t *, struct f2fs_summary *, int);
5514f0aa 1262void f2fs_wait_on_page_writeback(struct page *, enum page_type);
39a53e0c
JK
1263void write_data_summaries(struct f2fs_sb_info *, block_t);
1264void write_node_summaries(struct f2fs_sb_info *, block_t);
1265int lookup_journal_in_cursum(struct f2fs_summary_block *,
1266 int, unsigned int, int);
1267void flush_sit_entries(struct f2fs_sb_info *);
1268int build_segment_manager(struct f2fs_sb_info *);
39a53e0c 1269void destroy_segment_manager(struct f2fs_sb_info *);
7fd9e544
JK
1270int __init create_segment_manager_caches(void);
1271void destroy_segment_manager_caches(void);
39a53e0c
JK
1272
1273/*
1274 * checkpoint.c
1275 */
1276struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t);
1277struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t);
662befda 1278int ra_meta_pages(struct f2fs_sb_info *, int, int, int);
39a53e0c 1279long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long);
fff04f90
JK
1280void add_dirty_inode(struct f2fs_sb_info *, nid_t, int type);
1281void remove_dirty_inode(struct f2fs_sb_info *, nid_t, int type);
6f12ac25 1282void release_dirty_inode(struct f2fs_sb_info *);
fff04f90 1283bool exist_written_data(struct f2fs_sb_info *, nid_t, int);
cbd56e7d
JK
1284int acquire_orphan_inode(struct f2fs_sb_info *);
1285void release_orphan_inode(struct f2fs_sb_info *);
39a53e0c
JK
1286void add_orphan_inode(struct f2fs_sb_info *, nid_t);
1287void remove_orphan_inode(struct f2fs_sb_info *, nid_t);
8f99a946 1288void recover_orphan_inodes(struct f2fs_sb_info *);
39a53e0c
JK
1289int get_valid_checkpoint(struct f2fs_sb_info *);
1290void set_dirty_dir_page(struct inode *, struct page *);
5deb8267 1291void add_dirty_dir_inode(struct inode *);
39a53e0c
JK
1292void remove_dirty_dir_inode(struct inode *);
1293void sync_dirty_dir_inodes(struct f2fs_sb_info *);
43727527 1294void write_checkpoint(struct f2fs_sb_info *, bool);
6451e041 1295void init_ino_entry_info(struct f2fs_sb_info *);
6e6093a8 1296int __init create_checkpoint_caches(void);
39a53e0c
JK
1297void destroy_checkpoint_caches(void);
1298
1299/*
1300 * data.c
1301 */
458e6197 1302void f2fs_submit_merged_bio(struct f2fs_sb_info *, enum page_type, int);
93dfe2ac
JK
1303int f2fs_submit_page_bio(struct f2fs_sb_info *, struct page *, block_t, int);
1304void f2fs_submit_page_mbio(struct f2fs_sb_info *, struct page *, block_t,
458e6197 1305 struct f2fs_io_info *);
39a53e0c 1306int reserve_new_block(struct dnode_of_data *);
b600965c 1307int f2fs_reserve_block(struct dnode_of_data *, pgoff_t);
39a53e0c 1308void update_extent_cache(block_t, struct dnode_of_data *);
c718379b 1309struct page *find_data_page(struct inode *, pgoff_t, bool);
39a53e0c 1310struct page *get_lock_data_page(struct inode *, pgoff_t);
64aa7ed9 1311struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool);
458e6197 1312int do_write_data_page(struct page *, struct f2fs_io_info *);
9ab70134 1313int f2fs_fiemap(struct inode *inode, struct fiemap_extent_info *, u64, u64);
39a53e0c
JK
1314
1315/*
1316 * gc.c
1317 */
1318int start_gc_thread(struct f2fs_sb_info *);
1319void stop_gc_thread(struct f2fs_sb_info *);
de93653f 1320block_t start_bidx_of_node(unsigned int, struct f2fs_inode_info *);
408e9375 1321int f2fs_gc(struct f2fs_sb_info *);
39a53e0c 1322void build_gc_manager(struct f2fs_sb_info *);
6e6093a8 1323int __init create_gc_caches(void);
39a53e0c
JK
1324void destroy_gc_caches(void);
1325
1326/*
1327 * recovery.c
1328 */
6ead1142 1329int recover_fsync_data(struct f2fs_sb_info *);
39a53e0c
JK
1330bool space_for_roll_forward(struct f2fs_sb_info *);
1331
1332/*
1333 * debug.c
1334 */
1335#ifdef CONFIG_F2FS_STAT_FS
1336struct f2fs_stat_info {
1337 struct list_head stat_list;
1338 struct f2fs_sb_info *sbi;
39a53e0c
JK
1339 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
1340 int main_area_segs, main_area_sections, main_area_zones;
1341 int hit_ext, total_ext;
1342 int ndirty_node, ndirty_dent, ndirty_dirs, ndirty_meta;
1343 int nats, sits, fnids;
1344 int total_count, utilization;
0dbdc2ae 1345 int bg_gc, inline_inode;
39a53e0c
JK
1346 unsigned int valid_count, valid_node_count, valid_inode_count;
1347 unsigned int bimodal, avg_vblocks;
1348 int util_free, util_valid, util_invalid;
1349 int rsvd_segs, overp_segs;
1350 int dirty_count, node_pages, meta_pages;
942e0be6 1351 int prefree_count, call_count, cp_count;
39a53e0c
JK
1352 int tot_segs, node_segs, data_segs, free_segs, free_secs;
1353 int tot_blks, data_blks, node_blks;
1354 int curseg[NR_CURSEG_TYPE];
1355 int cursec[NR_CURSEG_TYPE];
1356 int curzone[NR_CURSEG_TYPE];
1357
1358 unsigned int segment_count[2];
1359 unsigned int block_count[2];
1360 unsigned base_mem, cache_mem;
1361};
1362
963d4f7d
GZ
1363static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
1364{
6c311ec6 1365 return (struct f2fs_stat_info *)sbi->stat_info;
963d4f7d
GZ
1366}
1367
942e0be6 1368#define stat_inc_cp_count(si) ((si)->cp_count++)
dcdfff65
JK
1369#define stat_inc_call_count(si) ((si)->call_count++)
1370#define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++)
1371#define stat_inc_dirty_dir(sbi) ((sbi)->n_dirty_dirs++)
1372#define stat_dec_dirty_dir(sbi) ((sbi)->n_dirty_dirs--)
1373#define stat_inc_total_hit(sb) ((F2FS_SB(sb))->total_hit_ext++)
1374#define stat_inc_read_hit(sb) ((F2FS_SB(sb))->read_hit_ext++)
0dbdc2ae
JK
1375#define stat_inc_inline_inode(inode) \
1376 do { \
1377 if (f2fs_has_inline_data(inode)) \
4081363f 1378 ((F2FS_I_SB(inode))->inline_inode++); \
0dbdc2ae
JK
1379 } while (0)
1380#define stat_dec_inline_inode(inode) \
1381 do { \
1382 if (f2fs_has_inline_data(inode)) \
4081363f 1383 ((F2FS_I_SB(inode))->inline_inode--); \
0dbdc2ae
JK
1384 } while (0)
1385
dcdfff65
JK
1386#define stat_inc_seg_type(sbi, curseg) \
1387 ((sbi)->segment_count[(curseg)->alloc_type]++)
1388#define stat_inc_block_count(sbi, curseg) \
1389 ((sbi)->block_count[(curseg)->alloc_type]++)
39a53e0c
JK
1390
1391#define stat_inc_seg_count(sbi, type) \
1392 do { \
963d4f7d 1393 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
39a53e0c
JK
1394 (si)->tot_segs++; \
1395 if (type == SUM_TYPE_DATA) \
1396 si->data_segs++; \
1397 else \
1398 si->node_segs++; \
1399 } while (0)
1400
1401#define stat_inc_tot_blk_count(si, blks) \
1402 (si->tot_blks += (blks))
1403
1404#define stat_inc_data_blk_count(sbi, blks) \
1405 do { \
963d4f7d 1406 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
39a53e0c
JK
1407 stat_inc_tot_blk_count(si, blks); \
1408 si->data_blks += (blks); \
1409 } while (0)
1410
1411#define stat_inc_node_blk_count(sbi, blks) \
1412 do { \
963d4f7d 1413 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
39a53e0c
JK
1414 stat_inc_tot_blk_count(si, blks); \
1415 si->node_blks += (blks); \
1416 } while (0)
1417
1418int f2fs_build_stats(struct f2fs_sb_info *);
1419void f2fs_destroy_stats(struct f2fs_sb_info *);
6e6093a8 1420void __init f2fs_create_root_stats(void);
4589d25d 1421void f2fs_destroy_root_stats(void);
39a53e0c 1422#else
942e0be6 1423#define stat_inc_cp_count(si)
39a53e0c 1424#define stat_inc_call_count(si)
dcdfff65
JK
1425#define stat_inc_bggc_count(si)
1426#define stat_inc_dirty_dir(sbi)
1427#define stat_dec_dirty_dir(sbi)
1428#define stat_inc_total_hit(sb)
1429#define stat_inc_read_hit(sb)
0dbdc2ae
JK
1430#define stat_inc_inline_inode(inode)
1431#define stat_dec_inline_inode(inode)
dcdfff65
JK
1432#define stat_inc_seg_type(sbi, curseg)
1433#define stat_inc_block_count(sbi, curseg)
39a53e0c
JK
1434#define stat_inc_seg_count(si, type)
1435#define stat_inc_tot_blk_count(si, blks)
1436#define stat_inc_data_blk_count(si, blks)
1437#define stat_inc_node_blk_count(sbi, blks)
1438
1439static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
1440static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
6e6093a8 1441static inline void __init f2fs_create_root_stats(void) { }
4589d25d 1442static inline void f2fs_destroy_root_stats(void) { }
39a53e0c
JK
1443#endif
1444
1445extern const struct file_operations f2fs_dir_operations;
1446extern const struct file_operations f2fs_file_operations;
1447extern const struct inode_operations f2fs_file_inode_operations;
1448extern const struct address_space_operations f2fs_dblock_aops;
1449extern const struct address_space_operations f2fs_node_aops;
1450extern const struct address_space_operations f2fs_meta_aops;
1451extern const struct inode_operations f2fs_dir_inode_operations;
1452extern const struct inode_operations f2fs_symlink_inode_operations;
1453extern const struct inode_operations f2fs_special_inode_operations;
1001b347 1454
e18c65b2
HL
1455/*
1456 * inline.c
1457 */
e18c65b2
HL
1458bool f2fs_may_inline(struct inode *);
1459int f2fs_read_inline_data(struct inode *, struct page *);
b067ba1f 1460int f2fs_convert_inline_data(struct inode *, pgoff_t, struct page *);
e18c65b2 1461int f2fs_write_inline_data(struct inode *, struct page *, unsigned int);
8aa6f1c5 1462void truncate_inline_data(struct inode *, u64);
0342fd30 1463bool recover_inline_data(struct inode *, struct page *);
39a53e0c 1464#endif
This page took 0.158177 seconds and 5 git commands to generate.