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