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