blob: a6858c75259d632a3478e821180efc0ba6282c96 [file] [log] [blame]
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002 * 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>
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090017#include <linux/slab.h>
18#include <linux/crc32.h>
19#include <linux/magic.h>
20
21/*
22 * For mount options
23 */
24#define F2FS_MOUNT_BG_GC 0x00000001
25#define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002
26#define F2FS_MOUNT_DISCARD 0x00000004
27#define F2FS_MOUNT_NOHEAP 0x00000008
28#define F2FS_MOUNT_XATTR_USER 0x00000010
29#define F2FS_MOUNT_POSIX_ACL 0x00000020
30#define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040
31
32#define clear_opt(sbi, option) (sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
33#define set_opt(sbi, option) (sbi->mount_opt.opt |= F2FS_MOUNT_##option)
34#define test_opt(sbi, option) (sbi->mount_opt.opt & F2FS_MOUNT_##option)
35
36#define ver_after(a, b) (typecheck(unsigned long long, a) && \
37 typecheck(unsigned long long, b) && \
38 ((long long)((a) - (b)) > 0))
39
Jaegeuk Kima9841c42013-05-24 12:41:04 +090040typedef u32 block_t; /*
41 * should not change u32, since it is the on-disk block
42 * address format, __le32.
43 */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090044typedef u32 nid_t;
45
46struct f2fs_mount_info {
47 unsigned int opt;
48};
49
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090050#define CRCPOLY_LE 0xedb88320
51
52static inline __u32 f2fs_crc32(void *buf, size_t len)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090053{
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090054 unsigned char *p = (unsigned char *)buf;
55 __u32 crc = F2FS_SUPER_MAGIC;
56 int i;
57
58 while (len--) {
59 crc ^= *p++;
60 for (i = 0; i < 8; i++)
61 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
62 }
63 return crc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090064}
65
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090066static inline bool f2fs_crc_valid(__u32 blk_crc, void *buf, size_t buf_size)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090067{
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090068 return f2fs_crc32(buf, buf_size) == blk_crc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090069}
70
71/*
72 * For checkpoint manager
73 */
74enum {
75 NAT_BITMAP,
76 SIT_BITMAP
77};
78
79/* for the list of orphan inodes */
80struct orphan_inode_entry {
81 struct list_head list; /* list head */
82 nid_t ino; /* inode number */
83};
84
85/* for the list of directory inodes */
86struct dir_inode_entry {
87 struct list_head list; /* list head */
88 struct inode *inode; /* vfs inode pointer */
89};
90
91/* for the list of fsync inodes, used only during recovery */
92struct fsync_inode_entry {
93 struct list_head list; /* list head */
94 struct inode *inode; /* vfs inode pointer */
95 block_t blkaddr; /* block address locating the last inode */
96};
97
98#define nats_in_cursum(sum) (le16_to_cpu(sum->n_nats))
99#define sits_in_cursum(sum) (le16_to_cpu(sum->n_sits))
100
101#define nat_in_journal(sum, i) (sum->nat_j.entries[i].ne)
102#define nid_in_journal(sum, i) (sum->nat_j.entries[i].nid)
103#define sit_in_journal(sum, i) (sum->sit_j.entries[i].se)
104#define segno_in_journal(sum, i) (sum->sit_j.entries[i].segno)
105
106static inline int update_nats_in_cursum(struct f2fs_summary_block *rs, int i)
107{
108 int before = nats_in_cursum(rs);
109 rs->n_nats = cpu_to_le16(before + i);
110 return before;
111}
112
113static inline int update_sits_in_cursum(struct f2fs_summary_block *rs, int i)
114{
115 int before = sits_in_cursum(rs);
116 rs->n_sits = cpu_to_le16(before + i);
117 return before;
118}
119
120/*
Namjae Jeone9750822013-02-04 23:41:41 +0900121 * ioctl commands
122 */
123#define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS
124#define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS
125
126#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
127/*
128 * ioctl commands in 32 bit emulation
129 */
130#define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS
131#define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS
132#endif
133
134/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900135 * For INODE and NODE manager
136 */
137#define XATTR_NODE_OFFSET (-1) /*
138 * store xattrs to one node block per
139 * file keeping -1 as its node offset to
140 * distinguish from index node blocks.
141 */
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900142enum {
143 ALLOC_NODE, /* allocate a new node page if needed */
144 LOOKUP_NODE, /* look up a node without readahead */
145 LOOKUP_NODE_RA, /*
146 * look up a node with readahead called
147 * by get_datablock_ro.
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900148 */
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900149};
150
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900151#define F2FS_LINK_MAX 32000 /* maximum link count per file */
152
153/* for in-memory extent cache entry */
154struct extent_info {
155 rwlock_t ext_lock; /* rwlock for consistency */
156 unsigned int fofs; /* start offset in a file */
157 u32 blk_addr; /* start block address of the extent */
Masanari Iida111d2492013-03-19 08:03:35 +0900158 unsigned int len; /* length of the extent */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900159};
160
161/*
162 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
163 */
164#define FADVISE_COLD_BIT 0x01
Jaegeuk Kim354a3392013-06-14 08:52:35 +0900165#define FADVISE_LOST_PINO_BIT 0x02
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900166
167struct f2fs_inode_info {
168 struct inode vfs_inode; /* serve a vfs inode */
169 unsigned long i_flags; /* keep an inode flags for ioctl */
170 unsigned char i_advise; /* use to give file attribute hints */
171 unsigned int i_current_depth; /* use only in directory structure */
Jaegeuk Kim6666e6a2012-12-10 17:52:48 +0900172 unsigned int i_pino; /* parent inode number */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900173 umode_t i_acl_mode; /* keep file acl mode temporarily */
174
175 /* Use below internally in f2fs*/
176 unsigned long flags; /* use to pass per-file flags */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900177 atomic_t dirty_dents; /* # of dirty dentry pages */
178 f2fs_hash_t chash; /* hash value of given file name */
179 unsigned int clevel; /* maximum level of given file name */
180 nid_t i_xattr_nid; /* node id that contains xattrs */
181 struct extent_info ext; /* in-memory extent cache entry */
182};
183
184static inline void get_extent_info(struct extent_info *ext,
185 struct f2fs_extent i_ext)
186{
187 write_lock(&ext->ext_lock);
188 ext->fofs = le32_to_cpu(i_ext.fofs);
189 ext->blk_addr = le32_to_cpu(i_ext.blk_addr);
190 ext->len = le32_to_cpu(i_ext.len);
191 write_unlock(&ext->ext_lock);
192}
193
194static inline void set_raw_extent(struct extent_info *ext,
195 struct f2fs_extent *i_ext)
196{
197 read_lock(&ext->ext_lock);
198 i_ext->fofs = cpu_to_le32(ext->fofs);
199 i_ext->blk_addr = cpu_to_le32(ext->blk_addr);
200 i_ext->len = cpu_to_le32(ext->len);
201 read_unlock(&ext->ext_lock);
202}
203
204struct f2fs_nm_info {
205 block_t nat_blkaddr; /* base disk address of NAT */
206 nid_t max_nid; /* maximum possible node ids */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900207 nid_t next_scan_nid; /* the next nid to be scanned */
208
209 /* NAT cache management */
210 struct radix_tree_root nat_root;/* root of the nat entry cache */
211 rwlock_t nat_tree_lock; /* protect nat_tree_lock */
212 unsigned int nat_cnt; /* the # of cached nat entries */
213 struct list_head nat_entries; /* cached nat entry list (clean) */
214 struct list_head dirty_nat_entries; /* cached nat entry list (dirty) */
215
216 /* free node ids management */
217 struct list_head free_nid_list; /* a list for free nids */
218 spinlock_t free_nid_list_lock; /* protect free nid list */
219 unsigned int fcnt; /* the number of free node id */
220 struct mutex build_lock; /* lock for build free nids */
221
222 /* for checkpoint */
223 char *nat_bitmap; /* NAT bitmap pointer */
224 int bitmap_size; /* bitmap size */
225};
226
227/*
228 * this structure is used as one of function parameters.
229 * all the information are dedicated to a given direct node block determined
230 * by the data offset in a file.
231 */
232struct dnode_of_data {
233 struct inode *inode; /* vfs inode pointer */
234 struct page *inode_page; /* its inode page, NULL is possible */
235 struct page *node_page; /* cached direct node page */
236 nid_t nid; /* node id of the direct node block */
237 unsigned int ofs_in_node; /* data offset in the node page */
238 bool inode_page_locked; /* inode page is locked or not */
239 block_t data_blkaddr; /* block address of the node block */
240};
241
242static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
243 struct page *ipage, struct page *npage, nid_t nid)
244{
Jaegeuk Kimd66d1f72013-01-03 08:57:21 +0900245 memset(dn, 0, sizeof(*dn));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900246 dn->inode = inode;
247 dn->inode_page = ipage;
248 dn->node_page = npage;
249 dn->nid = nid;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900250}
251
252/*
253 * For SIT manager
254 *
255 * By default, there are 6 active log areas across the whole main area.
256 * When considering hot and cold data separation to reduce cleaning overhead,
257 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
258 * respectively.
259 * In the current design, you should not change the numbers intentionally.
260 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
261 * logs individually according to the underlying devices. (default: 6)
262 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
263 * data and 8 for node logs.
264 */
265#define NR_CURSEG_DATA_TYPE (3)
266#define NR_CURSEG_NODE_TYPE (3)
267#define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
268
269enum {
270 CURSEG_HOT_DATA = 0, /* directory entry blocks */
271 CURSEG_WARM_DATA, /* data blocks */
272 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */
273 CURSEG_HOT_NODE, /* direct node blocks of directory files */
274 CURSEG_WARM_NODE, /* direct node blocks of normal files */
275 CURSEG_COLD_NODE, /* indirect node blocks */
276 NO_CHECK_TYPE
277};
278
279struct f2fs_sm_info {
280 struct sit_info *sit_info; /* whole segment information */
281 struct free_segmap_info *free_info; /* free segment information */
282 struct dirty_seglist_info *dirty_info; /* dirty segment information */
283 struct curseg_info *curseg_array; /* active segment information */
284
285 struct list_head wblist_head; /* list of under-writeback pages */
286 spinlock_t wblist_lock; /* lock for checkpoint */
287
288 block_t seg0_blkaddr; /* block address of 0'th segment */
289 block_t main_blkaddr; /* start block address of main area */
290 block_t ssa_blkaddr; /* start block address of SSA area */
291
292 unsigned int segment_count; /* total # of segments */
293 unsigned int main_segments; /* # of segments in main area */
294 unsigned int reserved_segments; /* # of reserved segments */
295 unsigned int ovp_segments; /* # of overprovision segments */
296};
297
298/*
299 * For directory operation
300 */
301#define NODE_DIR1_BLOCK (ADDRS_PER_INODE + 1)
302#define NODE_DIR2_BLOCK (ADDRS_PER_INODE + 2)
303#define NODE_IND1_BLOCK (ADDRS_PER_INODE + 3)
304#define NODE_IND2_BLOCK (ADDRS_PER_INODE + 4)
305#define NODE_DIND_BLOCK (ADDRS_PER_INODE + 5)
306
307/*
308 * For superblock
309 */
310/*
311 * COUNT_TYPE for monitoring
312 *
313 * f2fs monitors the number of several block types such as on-writeback,
314 * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
315 */
316enum count_type {
317 F2FS_WRITEBACK,
318 F2FS_DIRTY_DENTS,
319 F2FS_DIRTY_NODES,
320 F2FS_DIRTY_META,
321 NR_COUNT_TYPE,
322};
323
324/*
Jaegeuk Kim39936832012-11-22 16:21:29 +0900325 * Uses as sbi->fs_lock[NR_GLOBAL_LOCKS].
326 * The checkpoint procedure blocks all the locks in this fs_lock array.
327 * Some FS operations grab free locks, and if there is no free lock,
328 * then wait to grab a lock in a round-robin manner.
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900329 */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900330#define NR_GLOBAL_LOCKS 8
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900331
332/*
333 * The below are the page types of bios used in submti_bio().
334 * The available types are:
335 * DATA User data pages. It operates as async mode.
336 * NODE Node pages. It operates as async mode.
337 * META FS metadata pages such as SIT, NAT, CP.
338 * NR_PAGE_TYPE The number of page types.
339 * META_FLUSH Make sure the previous pages are written
340 * with waiting the bio's completion
341 * ... Only can be used with META.
342 */
343enum page_type {
344 DATA,
345 NODE,
346 META,
347 NR_PAGE_TYPE,
348 META_FLUSH,
349};
350
351struct f2fs_sb_info {
352 struct super_block *sb; /* pointer to VFS super block */
Jaegeuk Kim5e176d52013-06-28 12:47:01 +0900353 struct proc_dir_entry *s_proc; /* proc entry */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900354 struct buffer_head *raw_super_buf; /* buffer head of raw sb */
355 struct f2fs_super_block *raw_super; /* raw super block pointer */
356 int s_dirty; /* dirty flag for checkpoint */
357
358 /* for node-related operations */
359 struct f2fs_nm_info *nm_info; /* node manager */
360 struct inode *node_inode; /* cache node blocks */
361
362 /* for segment-related operations */
363 struct f2fs_sm_info *sm_info; /* segment manager */
364 struct bio *bio[NR_PAGE_TYPE]; /* bios to merge */
365 sector_t last_block_in_bio[NR_PAGE_TYPE]; /* last block number */
366 struct rw_semaphore bio_sem; /* IO semaphore */
367
368 /* for checkpoint */
369 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
370 struct inode *meta_inode; /* cache meta blocks */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900371 struct mutex cp_mutex; /* checkpoint procedure lock */
372 struct mutex fs_lock[NR_GLOBAL_LOCKS]; /* blocking FS operations */
373 struct mutex node_write; /* locking node writes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900374 struct mutex writepages; /* mutex for writepages() */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900375 unsigned char next_lock_num; /* round-robin global locks */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900376 int por_doing; /* recovery is doing or not */
Jaegeuk Kim55008d82013-04-25 16:05:51 +0900377 int on_build_free_nids; /* build_free_nids is doing */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900378
379 /* for orphan inode management */
380 struct list_head orphan_inode_list; /* orphan inode list */
381 struct mutex orphan_inode_mutex; /* for orphan inode list */
382 unsigned int n_orphans; /* # of orphan inodes */
383
384 /* for directory inode management */
385 struct list_head dir_inode_list; /* dir inode list */
386 spinlock_t dir_inode_lock; /* for dir inode list lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900387
388 /* basic file system units */
389 unsigned int log_sectors_per_block; /* log2 sectors per block */
390 unsigned int log_blocksize; /* log2 block size */
391 unsigned int blocksize; /* block size */
392 unsigned int root_ino_num; /* root inode number*/
393 unsigned int node_ino_num; /* node inode number*/
394 unsigned int meta_ino_num; /* meta inode number*/
395 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
396 unsigned int blocks_per_seg; /* blocks per segment */
397 unsigned int segs_per_sec; /* segments per section */
398 unsigned int secs_per_zone; /* sections per zone */
399 unsigned int total_sections; /* total section count */
400 unsigned int total_node_count; /* total node block count */
401 unsigned int total_valid_node_count; /* valid node block count */
402 unsigned int total_valid_inode_count; /* valid inode count */
403 int active_logs; /* # of active logs */
404
405 block_t user_block_count; /* # of user blocks */
406 block_t total_valid_block_count; /* # of valid blocks */
407 block_t alloc_valid_block_count; /* # of allocated blocks */
408 block_t last_valid_block_count; /* for recovery */
409 u32 s_next_generation; /* for NFS support */
410 atomic_t nr_pages[NR_COUNT_TYPE]; /* # of pages, see count_type */
411
412 struct f2fs_mount_info mount_opt; /* mount options */
413
414 /* for cleaning operations */
415 struct mutex gc_mutex; /* mutex for GC */
416 struct f2fs_gc_kthread *gc_thread; /* GC thread */
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900417 unsigned int cur_victim_sec; /* current victim section num */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900418
419 /*
420 * for stat information.
421 * one is for the LFS mode, and the other is for the SSR mode.
422 */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900423#ifdef CONFIG_F2FS_STAT_FS
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900424 struct f2fs_stat_info *stat_info; /* FS status information */
425 unsigned int segment_count[2]; /* # of allocated segments */
426 unsigned int block_count[2]; /* # of allocated blocks */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900427 int total_hit_ext, read_hit_ext; /* extent cache hit ratio */
428 int bg_gc; /* background gc calls */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900429 unsigned int n_dirty_dirs; /* # of dir inodes */
430#endif
431 unsigned int last_victim[2]; /* last victim segment # */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900432 spinlock_t stat_lock; /* lock for stat operations */
433};
434
435/*
436 * Inline functions
437 */
438static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
439{
440 return container_of(inode, struct f2fs_inode_info, vfs_inode);
441}
442
443static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
444{
445 return sb->s_fs_info;
446}
447
448static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
449{
450 return (struct f2fs_super_block *)(sbi->raw_super);
451}
452
453static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
454{
455 return (struct f2fs_checkpoint *)(sbi->ckpt);
456}
457
Gu Zheng45590712013-07-15 17:57:38 +0800458static inline struct f2fs_node *F2FS_NODE(struct page *page)
459{
460 return (struct f2fs_node *)page_address(page);
461}
462
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900463static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
464{
465 return (struct f2fs_nm_info *)(sbi->nm_info);
466}
467
468static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
469{
470 return (struct f2fs_sm_info *)(sbi->sm_info);
471}
472
473static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
474{
475 return (struct sit_info *)(SM_I(sbi)->sit_info);
476}
477
478static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
479{
480 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
481}
482
483static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
484{
485 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
486}
487
488static inline void F2FS_SET_SB_DIRT(struct f2fs_sb_info *sbi)
489{
490 sbi->s_dirty = 1;
491}
492
493static inline void F2FS_RESET_SB_DIRT(struct f2fs_sb_info *sbi)
494{
495 sbi->s_dirty = 0;
496}
497
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900498static inline bool is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
499{
500 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
501 return ckpt_flags & f;
502}
503
504static inline void set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
505{
506 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
507 ckpt_flags |= f;
508 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
509}
510
511static inline void clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
512{
513 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
514 ckpt_flags &= (~f);
515 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
516}
517
Jaegeuk Kim39936832012-11-22 16:21:29 +0900518static inline void mutex_lock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900519{
Peter Zijlstrabfe35962013-05-16 20:03:12 +0200520 int i;
521
522 for (i = 0; i < NR_GLOBAL_LOCKS; i++) {
523 /*
524 * This is the only time we take multiple fs_lock[]
525 * instances; the order is immaterial since we
526 * always hold cp_mutex, which serializes multiple
527 * such operations.
528 */
529 mutex_lock_nest_lock(&sbi->fs_lock[i], &sbi->cp_mutex);
530 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900531}
532
Jaegeuk Kim39936832012-11-22 16:21:29 +0900533static inline void mutex_unlock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900534{
Jaegeuk Kim39936832012-11-22 16:21:29 +0900535 int i = 0;
536 for (; i < NR_GLOBAL_LOCKS; i++)
537 mutex_unlock(&sbi->fs_lock[i]);
538}
539
540static inline int mutex_lock_op(struct f2fs_sb_info *sbi)
541{
542 unsigned char next_lock = sbi->next_lock_num % NR_GLOBAL_LOCKS;
543 int i = 0;
544
545 for (; i < NR_GLOBAL_LOCKS; i++)
546 if (mutex_trylock(&sbi->fs_lock[i]))
547 return i;
548
549 mutex_lock(&sbi->fs_lock[next_lock]);
550 sbi->next_lock_num++;
551 return next_lock;
552}
553
554static inline void mutex_unlock_op(struct f2fs_sb_info *sbi, int ilock)
555{
556 if (ilock < 0)
557 return;
558 BUG_ON(ilock >= NR_GLOBAL_LOCKS);
559 mutex_unlock(&sbi->fs_lock[ilock]);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900560}
561
562/*
563 * Check whether the given nid is within node id range.
564 */
Namjae Jeon064e0822013-03-17 17:27:20 +0900565static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900566{
Namjae Jeon064e0822013-03-17 17:27:20 +0900567 WARN_ON((nid >= NM_I(sbi)->max_nid));
568 if (nid >= NM_I(sbi)->max_nid)
569 return -EINVAL;
570 return 0;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900571}
572
573#define F2FS_DEFAULT_ALLOCATED_BLOCKS 1
574
575/*
576 * Check whether the inode has blocks or not
577 */
578static inline int F2FS_HAS_BLOCKS(struct inode *inode)
579{
580 if (F2FS_I(inode)->i_xattr_nid)
581 return (inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1);
582 else
583 return (inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS);
584}
585
586static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi,
587 struct inode *inode, blkcnt_t count)
588{
589 block_t valid_block_count;
590
591 spin_lock(&sbi->stat_lock);
592 valid_block_count =
593 sbi->total_valid_block_count + (block_t)count;
594 if (valid_block_count > sbi->user_block_count) {
595 spin_unlock(&sbi->stat_lock);
596 return false;
597 }
598 inode->i_blocks += count;
599 sbi->total_valid_block_count = valid_block_count;
600 sbi->alloc_valid_block_count += (block_t)count;
601 spin_unlock(&sbi->stat_lock);
602 return true;
603}
604
605static inline int dec_valid_block_count(struct f2fs_sb_info *sbi,
606 struct inode *inode,
607 blkcnt_t count)
608{
609 spin_lock(&sbi->stat_lock);
610 BUG_ON(sbi->total_valid_block_count < (block_t) count);
611 BUG_ON(inode->i_blocks < count);
612 inode->i_blocks -= count;
613 sbi->total_valid_block_count -= (block_t)count;
614 spin_unlock(&sbi->stat_lock);
615 return 0;
616}
617
618static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
619{
620 atomic_inc(&sbi->nr_pages[count_type]);
621 F2FS_SET_SB_DIRT(sbi);
622}
623
624static inline void inode_inc_dirty_dents(struct inode *inode)
625{
626 atomic_inc(&F2FS_I(inode)->dirty_dents);
627}
628
629static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
630{
631 atomic_dec(&sbi->nr_pages[count_type]);
632}
633
634static inline void inode_dec_dirty_dents(struct inode *inode)
635{
636 atomic_dec(&F2FS_I(inode)->dirty_dents);
637}
638
639static inline int get_pages(struct f2fs_sb_info *sbi, int count_type)
640{
641 return atomic_read(&sbi->nr_pages[count_type]);
642}
643
Namjae Jeon5ac206c2013-02-02 23:52:59 +0900644static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
645{
646 unsigned int pages_per_sec = sbi->segs_per_sec *
647 (1 << sbi->log_blocks_per_seg);
648 return ((get_pages(sbi, block_type) + pages_per_sec - 1)
649 >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
650}
651
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900652static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
653{
654 block_t ret;
655 spin_lock(&sbi->stat_lock);
656 ret = sbi->total_valid_block_count;
657 spin_unlock(&sbi->stat_lock);
658 return ret;
659}
660
661static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
662{
663 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
664
665 /* return NAT or SIT bitmap */
666 if (flag == NAT_BITMAP)
667 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
668 else if (flag == SIT_BITMAP)
669 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
670
671 return 0;
672}
673
674static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
675{
676 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900677 int offset = (flag == NAT_BITMAP) ?
678 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900679 return &ckpt->sit_nat_version_bitmap + offset;
680}
681
682static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
683{
684 block_t start_addr;
685 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
686 unsigned long long ckpt_version = le64_to_cpu(ckpt->checkpoint_ver);
687
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900688 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900689
690 /*
691 * odd numbered checkpoint should at cp segment 0
692 * and even segent must be at cp segment 1
693 */
694 if (!(ckpt_version & 1))
695 start_addr += sbi->blocks_per_seg;
696
697 return start_addr;
698}
699
700static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
701{
702 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
703}
704
705static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi,
706 struct inode *inode,
707 unsigned int count)
708{
709 block_t valid_block_count;
710 unsigned int valid_node_count;
711
712 spin_lock(&sbi->stat_lock);
713
714 valid_block_count = sbi->total_valid_block_count + (block_t)count;
715 sbi->alloc_valid_block_count += (block_t)count;
716 valid_node_count = sbi->total_valid_node_count + count;
717
718 if (valid_block_count > sbi->user_block_count) {
719 spin_unlock(&sbi->stat_lock);
720 return false;
721 }
722
723 if (valid_node_count > sbi->total_node_count) {
724 spin_unlock(&sbi->stat_lock);
725 return false;
726 }
727
728 if (inode)
729 inode->i_blocks += count;
730 sbi->total_valid_node_count = valid_node_count;
731 sbi->total_valid_block_count = valid_block_count;
732 spin_unlock(&sbi->stat_lock);
733
734 return true;
735}
736
737static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
738 struct inode *inode,
739 unsigned int count)
740{
741 spin_lock(&sbi->stat_lock);
742
743 BUG_ON(sbi->total_valid_block_count < count);
744 BUG_ON(sbi->total_valid_node_count < count);
745 BUG_ON(inode->i_blocks < count);
746
747 inode->i_blocks -= count;
748 sbi->total_valid_node_count -= count;
749 sbi->total_valid_block_count -= (block_t)count;
750
751 spin_unlock(&sbi->stat_lock);
752}
753
754static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
755{
756 unsigned int ret;
757 spin_lock(&sbi->stat_lock);
758 ret = sbi->total_valid_node_count;
759 spin_unlock(&sbi->stat_lock);
760 return ret;
761}
762
763static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
764{
765 spin_lock(&sbi->stat_lock);
766 BUG_ON(sbi->total_valid_inode_count == sbi->total_node_count);
767 sbi->total_valid_inode_count++;
768 spin_unlock(&sbi->stat_lock);
769}
770
771static inline int dec_valid_inode_count(struct f2fs_sb_info *sbi)
772{
773 spin_lock(&sbi->stat_lock);
774 BUG_ON(!sbi->total_valid_inode_count);
775 sbi->total_valid_inode_count--;
776 spin_unlock(&sbi->stat_lock);
777 return 0;
778}
779
780static inline unsigned int valid_inode_count(struct f2fs_sb_info *sbi)
781{
782 unsigned int ret;
783 spin_lock(&sbi->stat_lock);
784 ret = sbi->total_valid_inode_count;
785 spin_unlock(&sbi->stat_lock);
786 return ret;
787}
788
789static inline void f2fs_put_page(struct page *page, int unlock)
790{
791 if (!page || IS_ERR(page))
792 return;
793
794 if (unlock) {
795 BUG_ON(!PageLocked(page));
796 unlock_page(page);
797 }
798 page_cache_release(page);
799}
800
801static inline void f2fs_put_dnode(struct dnode_of_data *dn)
802{
803 if (dn->node_page)
804 f2fs_put_page(dn->node_page, 1);
805 if (dn->inode_page && dn->node_page != dn->inode_page)
806 f2fs_put_page(dn->inode_page, 0);
807 dn->node_page = NULL;
808 dn->inode_page = NULL;
809}
810
811static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
812 size_t size, void (*ctor)(void *))
813{
814 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, ctor);
815}
816
817#define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
818
819static inline bool IS_INODE(struct page *page)
820{
Gu Zheng45590712013-07-15 17:57:38 +0800821 struct f2fs_node *p = F2FS_NODE(page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900822 return RAW_IS_INODE(p);
823}
824
825static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
826{
827 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
828}
829
830static inline block_t datablock_addr(struct page *node_page,
831 unsigned int offset)
832{
833 struct f2fs_node *raw_node;
834 __le32 *addr_array;
Gu Zheng45590712013-07-15 17:57:38 +0800835 raw_node = F2FS_NODE(node_page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900836 addr_array = blkaddr_in_node(raw_node);
837 return le32_to_cpu(addr_array[offset]);
838}
839
840static inline int f2fs_test_bit(unsigned int nr, char *addr)
841{
842 int mask;
843
844 addr += (nr >> 3);
845 mask = 1 << (7 - (nr & 0x07));
846 return mask & *addr;
847}
848
849static inline int f2fs_set_bit(unsigned int nr, char *addr)
850{
851 int mask;
852 int ret;
853
854 addr += (nr >> 3);
855 mask = 1 << (7 - (nr & 0x07));
856 ret = mask & *addr;
857 *addr |= mask;
858 return ret;
859}
860
861static inline int f2fs_clear_bit(unsigned int nr, char *addr)
862{
863 int mask;
864 int ret;
865
866 addr += (nr >> 3);
867 mask = 1 << (7 - (nr & 0x07));
868 ret = mask & *addr;
869 *addr &= ~mask;
870 return ret;
871}
872
873/* used for f2fs_inode_info->flags */
874enum {
875 FI_NEW_INODE, /* indicate newly allocated inode */
Jaegeuk Kimb3783872013-06-10 09:17:01 +0900876 FI_DIRTY_INODE, /* indicate inode is dirty or not */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900877 FI_INC_LINK, /* need to increment i_nlink */
878 FI_ACL_MODE, /* indicate acl mode */
879 FI_NO_ALLOC, /* should not allocate any blocks */
Jaegeuk Kim699489b2013-06-07 22:08:23 +0900880 FI_UPDATE_DIR, /* should update inode block for consistency */
Jaegeuk Kim74d0b912013-05-15 16:40:02 +0900881 FI_DELAY_IPUT, /* used for the recovery */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900882};
883
884static inline void set_inode_flag(struct f2fs_inode_info *fi, int flag)
885{
886 set_bit(flag, &fi->flags);
887}
888
889static inline int is_inode_flag_set(struct f2fs_inode_info *fi, int flag)
890{
891 return test_bit(flag, &fi->flags);
892}
893
894static inline void clear_inode_flag(struct f2fs_inode_info *fi, int flag)
895{
896 clear_bit(flag, &fi->flags);
897}
898
899static inline void set_acl_inode(struct f2fs_inode_info *fi, umode_t mode)
900{
901 fi->i_acl_mode = mode;
902 set_inode_flag(fi, FI_ACL_MODE);
903}
904
905static inline int cond_clear_inode_flag(struct f2fs_inode_info *fi, int flag)
906{
907 if (is_inode_flag_set(fi, FI_ACL_MODE)) {
908 clear_inode_flag(fi, FI_ACL_MODE);
909 return 1;
910 }
911 return 0;
912}
913
Jaegeuk Kim77888c12013-05-20 20:28:47 +0900914static inline int f2fs_readonly(struct super_block *sb)
915{
916 return sb->s_flags & MS_RDONLY;
917}
918
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900919/*
920 * file.c
921 */
922int f2fs_sync_file(struct file *, loff_t, loff_t, int);
923void truncate_data_blocks(struct dnode_of_data *);
924void f2fs_truncate(struct inode *);
Jaegeuk Kim2d4d9fb52013-06-07 16:33:07 +0900925int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900926int f2fs_setattr(struct dentry *, struct iattr *);
927int truncate_hole(struct inode *, pgoff_t, pgoff_t);
Jaegeuk Kimb292dcab2013-05-22 08:02:02 +0900928int truncate_data_blocks_range(struct dnode_of_data *, int);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900929long f2fs_ioctl(struct file *, unsigned int, unsigned long);
Namjae Jeone9750822013-02-04 23:41:41 +0900930long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900931
932/*
933 * inode.c
934 */
935void f2fs_set_inode_flags(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900936struct inode *f2fs_iget(struct super_block *, unsigned long);
937void update_inode(struct inode *, struct page *);
Jaegeuk Kim39936832012-11-22 16:21:29 +0900938int update_inode_page(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900939int f2fs_write_inode(struct inode *, struct writeback_control *);
940void f2fs_evict_inode(struct inode *);
941
942/*
943 * namei.c
944 */
945struct dentry *f2fs_get_parent(struct dentry *child);
946
947/*
948 * dir.c
949 */
950struct f2fs_dir_entry *f2fs_find_entry(struct inode *, struct qstr *,
951 struct page **);
952struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **);
953ino_t f2fs_inode_by_name(struct inode *, struct qstr *);
954void f2fs_set_link(struct inode *, struct f2fs_dir_entry *,
955 struct page *, struct inode *);
Jaegeuk Kim1cd14ca2013-07-18 18:02:31 +0900956int update_dent_inode(struct inode *, const struct qstr *);
Al Virob7f7a5e2013-01-25 16:15:43 -0500957int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900958void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *);
959int f2fs_make_empty(struct inode *, struct inode *);
960bool f2fs_empty_dir(struct inode *);
961
Al Virob7f7a5e2013-01-25 16:15:43 -0500962static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
963{
964 return __f2fs_add_link(dentry->d_parent->d_inode, &dentry->d_name,
965 inode);
966}
967
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900968/*
969 * super.c
970 */
971int f2fs_sync_fs(struct super_block *, int);
Namjae Jeona07ef782012-12-30 14:52:05 +0900972extern __printf(3, 4)
973void f2fs_msg(struct super_block *, const char *, const char *, ...);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900974
975/*
976 * hash.c
977 */
Leon Romanovsky9836b8b2012-12-27 19:55:46 +0200978f2fs_hash_t f2fs_dentry_hash(const char *, size_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900979
980/*
981 * node.c
982 */
983struct dnode_of_data;
984struct node_info;
985
986int is_checkpointed_node(struct f2fs_sb_info *, nid_t);
987void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *);
988int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int);
989int truncate_inode_blocks(struct inode *, pgoff_t);
990int remove_inode_page(struct inode *);
Jaegeuk Kim44a83ff2013-05-20 10:10:29 +0900991struct page *new_inode_page(struct inode *, const struct qstr *);
Jaegeuk Kim8ae8f162013-06-03 19:46:19 +0900992struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900993void ra_node_page(struct f2fs_sb_info *, nid_t);
994struct page *get_node_page(struct f2fs_sb_info *, pgoff_t);
995struct page *get_node_page_ra(struct page *, int);
996void sync_inode_page(struct dnode_of_data *);
997int sync_node_pages(struct f2fs_sb_info *, nid_t, struct writeback_control *);
998bool alloc_nid(struct f2fs_sb_info *, nid_t *);
999void alloc_nid_done(struct f2fs_sb_info *, nid_t);
1000void alloc_nid_failed(struct f2fs_sb_info *, nid_t);
1001void recover_node_page(struct f2fs_sb_info *, struct page *,
1002 struct f2fs_summary *, struct node_info *, block_t);
1003int recover_inode_page(struct f2fs_sb_info *, struct page *);
1004int restore_node_summary(struct f2fs_sb_info *, unsigned int,
1005 struct f2fs_summary_block *);
1006void flush_nat_entries(struct f2fs_sb_info *);
1007int build_node_manager(struct f2fs_sb_info *);
1008void destroy_node_manager(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001009int __init create_node_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001010void destroy_node_manager_caches(void);
1011
1012/*
1013 * segment.c
1014 */
1015void f2fs_balance_fs(struct f2fs_sb_info *);
1016void invalidate_blocks(struct f2fs_sb_info *, block_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001017void clear_prefree_segments(struct f2fs_sb_info *);
1018int npages_for_summary_flush(struct f2fs_sb_info *);
1019void allocate_new_segments(struct f2fs_sb_info *);
1020struct page *get_sum_page(struct f2fs_sb_info *, unsigned int);
Jaegeuk Kim3cd8a232012-12-10 09:26:05 +09001021struct bio *f2fs_bio_alloc(struct block_device *, int);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001022void f2fs_submit_bio(struct f2fs_sb_info *, enum page_type, bool sync);
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001023void write_meta_page(struct f2fs_sb_info *, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001024void write_node_page(struct f2fs_sb_info *, struct page *, unsigned int,
1025 block_t, block_t *);
1026void write_data_page(struct inode *, struct page *, struct dnode_of_data*,
1027 block_t, block_t *);
1028void rewrite_data_page(struct f2fs_sb_info *, struct page *, block_t);
1029void recover_data_page(struct f2fs_sb_info *, struct page *,
1030 struct f2fs_summary *, block_t, block_t);
1031void rewrite_node_page(struct f2fs_sb_info *, struct page *,
1032 struct f2fs_summary *, block_t, block_t);
1033void write_data_summaries(struct f2fs_sb_info *, block_t);
1034void write_node_summaries(struct f2fs_sb_info *, block_t);
1035int lookup_journal_in_cursum(struct f2fs_summary_block *,
1036 int, unsigned int, int);
1037void flush_sit_entries(struct f2fs_sb_info *);
1038int build_segment_manager(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001039void destroy_segment_manager(struct f2fs_sb_info *);
1040
1041/*
1042 * checkpoint.c
1043 */
1044struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t);
1045struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t);
1046long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long);
1047int check_orphan_space(struct f2fs_sb_info *);
1048void add_orphan_inode(struct f2fs_sb_info *, nid_t);
1049void remove_orphan_inode(struct f2fs_sb_info *, nid_t);
1050int recover_orphan_inodes(struct f2fs_sb_info *);
1051int get_valid_checkpoint(struct f2fs_sb_info *);
1052void set_dirty_dir_page(struct inode *, struct page *);
Jaegeuk Kim5deb8262013-06-05 17:42:45 +09001053void add_dirty_dir_inode(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001054void remove_dirty_dir_inode(struct inode *);
Jaegeuk Kim74d0b912013-05-15 16:40:02 +09001055struct inode *check_dirty_dir_inode(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001056void sync_dirty_dir_inodes(struct f2fs_sb_info *);
Jaegeuk Kim43727522013-02-04 15:11:17 +09001057void write_checkpoint(struct f2fs_sb_info *, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001058void init_orphan_info(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001059int __init create_checkpoint_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001060void destroy_checkpoint_caches(void);
1061
1062/*
1063 * data.c
1064 */
1065int reserve_new_block(struct dnode_of_data *);
1066void update_extent_cache(block_t, struct dnode_of_data *);
Jaegeuk Kimc718379b2013-04-24 13:19:56 +09001067struct page *find_data_page(struct inode *, pgoff_t, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001068struct page *get_lock_data_page(struct inode *, pgoff_t);
Jaegeuk Kim64aa7ed2013-05-20 09:55:50 +09001069struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001070int f2fs_readpage(struct f2fs_sb_info *, struct page *, block_t, int);
1071int do_write_data_page(struct page *);
1072
1073/*
1074 * gc.c
1075 */
1076int start_gc_thread(struct f2fs_sb_info *);
1077void stop_gc_thread(struct f2fs_sb_info *);
1078block_t start_bidx_of_node(unsigned int);
Jaegeuk Kim408e9372013-01-03 17:55:52 +09001079int f2fs_gc(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001080void build_gc_manager(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001081int __init create_gc_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001082void destroy_gc_caches(void);
1083
1084/*
1085 * recovery.c
1086 */
Jaegeuk Kim6ead1142013-03-20 19:01:06 +09001087int recover_fsync_data(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001088bool space_for_roll_forward(struct f2fs_sb_info *);
1089
1090/*
1091 * debug.c
1092 */
1093#ifdef CONFIG_F2FS_STAT_FS
1094struct f2fs_stat_info {
1095 struct list_head stat_list;
1096 struct f2fs_sb_info *sbi;
1097 struct mutex stat_lock;
1098 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
1099 int main_area_segs, main_area_sections, main_area_zones;
1100 int hit_ext, total_ext;
1101 int ndirty_node, ndirty_dent, ndirty_dirs, ndirty_meta;
1102 int nats, sits, fnids;
1103 int total_count, utilization;
1104 int bg_gc;
1105 unsigned int valid_count, valid_node_count, valid_inode_count;
1106 unsigned int bimodal, avg_vblocks;
1107 int util_free, util_valid, util_invalid;
1108 int rsvd_segs, overp_segs;
1109 int dirty_count, node_pages, meta_pages;
1110 int prefree_count, call_count;
1111 int tot_segs, node_segs, data_segs, free_segs, free_secs;
1112 int tot_blks, data_blks, node_blks;
1113 int curseg[NR_CURSEG_TYPE];
1114 int cursec[NR_CURSEG_TYPE];
1115 int curzone[NR_CURSEG_TYPE];
1116
1117 unsigned int segment_count[2];
1118 unsigned int block_count[2];
1119 unsigned base_mem, cache_mem;
1120};
1121
Gu Zheng963d4f72013-07-12 14:47:11 +08001122static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
1123{
1124 return (struct f2fs_stat_info*)sbi->stat_info;
1125}
1126
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001127#define stat_inc_call_count(si) ((si)->call_count++)
1128
1129#define stat_inc_seg_count(sbi, type) \
1130 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001131 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001132 (si)->tot_segs++; \
1133 if (type == SUM_TYPE_DATA) \
1134 si->data_segs++; \
1135 else \
1136 si->node_segs++; \
1137 } while (0)
1138
1139#define stat_inc_tot_blk_count(si, blks) \
1140 (si->tot_blks += (blks))
1141
1142#define stat_inc_data_blk_count(sbi, blks) \
1143 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001144 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001145 stat_inc_tot_blk_count(si, blks); \
1146 si->data_blks += (blks); \
1147 } while (0)
1148
1149#define stat_inc_node_blk_count(sbi, blks) \
1150 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001151 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001152 stat_inc_tot_blk_count(si, blks); \
1153 si->node_blks += (blks); \
1154 } while (0)
1155
1156int f2fs_build_stats(struct f2fs_sb_info *);
1157void f2fs_destroy_stats(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001158void __init f2fs_create_root_stats(void);
Namjae Jeon4589d252013-01-15 19:58:47 +09001159void f2fs_destroy_root_stats(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001160#else
1161#define stat_inc_call_count(si)
1162#define stat_inc_seg_count(si, type)
1163#define stat_inc_tot_blk_count(si, blks)
1164#define stat_inc_data_blk_count(si, blks)
1165#define stat_inc_node_blk_count(sbi, blks)
1166
1167static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
1168static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001169static inline void __init f2fs_create_root_stats(void) { }
Namjae Jeon4589d252013-01-15 19:58:47 +09001170static inline void f2fs_destroy_root_stats(void) { }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001171#endif
1172
1173extern const struct file_operations f2fs_dir_operations;
1174extern const struct file_operations f2fs_file_operations;
1175extern const struct inode_operations f2fs_file_inode_operations;
1176extern const struct address_space_operations f2fs_dblock_aops;
1177extern const struct address_space_operations f2fs_node_aops;
1178extern const struct address_space_operations f2fs_meta_aops;
1179extern const struct inode_operations f2fs_dir_inode_operations;
1180extern const struct inode_operations f2fs_symlink_inode_operations;
1181extern const struct inode_operations f2fs_special_inode_operations;
1182#endif