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