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