blob: b82f14199921ae4386b3ddc05b841230f25ea3a7 [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>
Jaegeuk Kimc2d715d2013-08-08 15:56:49 +090020#include <linux/kobject.h>
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090021
22/*
23 * For mount options
24 */
25#define F2FS_MOUNT_BG_GC 0x00000001
26#define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002
27#define F2FS_MOUNT_DISCARD 0x00000004
28#define F2FS_MOUNT_NOHEAP 0x00000008
29#define F2FS_MOUNT_XATTR_USER 0x00000010
30#define F2FS_MOUNT_POSIX_ACL 0x00000020
31#define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040
Jaegeuk Kim444c5802013-08-08 15:16:22 +090032#define F2FS_MOUNT_INLINE_XATTR 0x00000080
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090033
34#define clear_opt(sbi, option) (sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
35#define set_opt(sbi, option) (sbi->mount_opt.opt |= F2FS_MOUNT_##option)
36#define test_opt(sbi, option) (sbi->mount_opt.opt & F2FS_MOUNT_##option)
37
38#define ver_after(a, b) (typecheck(unsigned long long, a) && \
39 typecheck(unsigned long long, b) && \
40 ((long long)((a) - (b)) > 0))
41
Jaegeuk Kima9841c42013-05-24 12:41:04 +090042typedef u32 block_t; /*
43 * should not change u32, since it is the on-disk block
44 * address format, __le32.
45 */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090046typedef u32 nid_t;
47
48struct f2fs_mount_info {
49 unsigned int opt;
50};
51
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090052#define CRCPOLY_LE 0xedb88320
53
54static inline __u32 f2fs_crc32(void *buf, size_t len)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090055{
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090056 unsigned char *p = (unsigned char *)buf;
57 __u32 crc = F2FS_SUPER_MAGIC;
58 int i;
59
60 while (len--) {
61 crc ^= *p++;
62 for (i = 0; i < 8; i++)
63 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
64 }
65 return crc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090066}
67
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090068static inline bool f2fs_crc_valid(__u32 blk_crc, void *buf, size_t buf_size)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090069{
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090070 return f2fs_crc32(buf, buf_size) == blk_crc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090071}
72
73/*
74 * For checkpoint manager
75 */
76enum {
77 NAT_BITMAP,
78 SIT_BITMAP
79};
80
81/* for the list of orphan inodes */
82struct orphan_inode_entry {
83 struct list_head list; /* list head */
84 nid_t ino; /* inode number */
85};
86
87/* for the list of directory inodes */
88struct dir_inode_entry {
89 struct list_head list; /* list head */
90 struct inode *inode; /* vfs inode pointer */
91};
92
93/* for the list of fsync inodes, used only during recovery */
94struct fsync_inode_entry {
95 struct list_head list; /* list head */
96 struct inode *inode; /* vfs inode pointer */
97 block_t blkaddr; /* block address locating the last inode */
98};
99
100#define nats_in_cursum(sum) (le16_to_cpu(sum->n_nats))
101#define sits_in_cursum(sum) (le16_to_cpu(sum->n_sits))
102
103#define nat_in_journal(sum, i) (sum->nat_j.entries[i].ne)
104#define nid_in_journal(sum, i) (sum->nat_j.entries[i].nid)
105#define sit_in_journal(sum, i) (sum->sit_j.entries[i].se)
106#define segno_in_journal(sum, i) (sum->sit_j.entries[i].segno)
107
108static inline int update_nats_in_cursum(struct f2fs_summary_block *rs, int i)
109{
110 int before = nats_in_cursum(rs);
111 rs->n_nats = cpu_to_le16(before + i);
112 return before;
113}
114
115static inline int update_sits_in_cursum(struct f2fs_summary_block *rs, int i)
116{
117 int before = sits_in_cursum(rs);
118 rs->n_sits = cpu_to_le16(before + i);
119 return before;
120}
121
122/*
Namjae Jeone9750822013-02-04 23:41:41 +0900123 * ioctl commands
124 */
125#define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS
126#define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS
127
128#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
129/*
130 * ioctl commands in 32 bit emulation
131 */
132#define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS
133#define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS
134#endif
135
136/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900137 * For INODE and NODE manager
138 */
Jaegeuk Kimdbe6a5f2013-08-09 08:14:06 +0900139/*
140 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
141 * as its node offset to distinguish from index node blocks.
142 * But some bits are used to mark the node block.
143 */
144#define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \
145 >> OFFSET_BIT_SHIFT)
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900146enum {
147 ALLOC_NODE, /* allocate a new node page if needed */
148 LOOKUP_NODE, /* look up a node without readahead */
149 LOOKUP_NODE_RA, /*
150 * look up a node with readahead called
151 * by get_datablock_ro.
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900152 */
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900153};
154
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900155#define F2FS_LINK_MAX 32000 /* maximum link count per file */
156
157/* for in-memory extent cache entry */
158struct extent_info {
159 rwlock_t ext_lock; /* rwlock for consistency */
160 unsigned int fofs; /* start offset in a file */
161 u32 blk_addr; /* start block address of the extent */
Masanari Iida111d2492013-03-19 08:03:35 +0900162 unsigned int len; /* length of the extent */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900163};
164
165/*
166 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
167 */
168#define FADVISE_COLD_BIT 0x01
Jaegeuk Kim354a3392013-06-14 08:52:35 +0900169#define FADVISE_LOST_PINO_BIT 0x02
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900170
171struct f2fs_inode_info {
172 struct inode vfs_inode; /* serve a vfs inode */
173 unsigned long i_flags; /* keep an inode flags for ioctl */
174 unsigned char i_advise; /* use to give file attribute hints */
175 unsigned int i_current_depth; /* use only in directory structure */
Jaegeuk Kim6666e6a2012-12-10 17:52:48 +0900176 unsigned int i_pino; /* parent inode number */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900177 umode_t i_acl_mode; /* keep file acl mode temporarily */
178
179 /* Use below internally in f2fs*/
180 unsigned long flags; /* use to pass per-file flags */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900181 atomic_t dirty_dents; /* # of dirty dentry pages */
182 f2fs_hash_t chash; /* hash value of given file name */
183 unsigned int clevel; /* maximum level of given file name */
184 nid_t i_xattr_nid; /* node id that contains xattrs */
Jaegeuk Kime518ff82013-08-09 14:46:15 +0900185 unsigned long long xattr_ver; /* cp version of xattr modification */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900186 struct extent_info ext; /* in-memory extent cache entry */
187};
188
189static inline void get_extent_info(struct extent_info *ext,
190 struct f2fs_extent i_ext)
191{
192 write_lock(&ext->ext_lock);
193 ext->fofs = le32_to_cpu(i_ext.fofs);
194 ext->blk_addr = le32_to_cpu(i_ext.blk_addr);
195 ext->len = le32_to_cpu(i_ext.len);
196 write_unlock(&ext->ext_lock);
197}
198
199static inline void set_raw_extent(struct extent_info *ext,
200 struct f2fs_extent *i_ext)
201{
202 read_lock(&ext->ext_lock);
203 i_ext->fofs = cpu_to_le32(ext->fofs);
204 i_ext->blk_addr = cpu_to_le32(ext->blk_addr);
205 i_ext->len = cpu_to_le32(ext->len);
206 read_unlock(&ext->ext_lock);
207}
208
209struct f2fs_nm_info {
210 block_t nat_blkaddr; /* base disk address of NAT */
211 nid_t max_nid; /* maximum possible node ids */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900212 nid_t next_scan_nid; /* the next nid to be scanned */
213
214 /* NAT cache management */
215 struct radix_tree_root nat_root;/* root of the nat entry cache */
216 rwlock_t nat_tree_lock; /* protect nat_tree_lock */
217 unsigned int nat_cnt; /* the # of cached nat entries */
218 struct list_head nat_entries; /* cached nat entry list (clean) */
219 struct list_head dirty_nat_entries; /* cached nat entry list (dirty) */
220
221 /* free node ids management */
222 struct list_head free_nid_list; /* a list for free nids */
223 spinlock_t free_nid_list_lock; /* protect free nid list */
224 unsigned int fcnt; /* the number of free node id */
225 struct mutex build_lock; /* lock for build free nids */
226
227 /* for checkpoint */
228 char *nat_bitmap; /* NAT bitmap pointer */
229 int bitmap_size; /* bitmap size */
230};
231
232/*
233 * this structure is used as one of function parameters.
234 * all the information are dedicated to a given direct node block determined
235 * by the data offset in a file.
236 */
237struct dnode_of_data {
238 struct inode *inode; /* vfs inode pointer */
239 struct page *inode_page; /* its inode page, NULL is possible */
240 struct page *node_page; /* cached direct node page */
241 nid_t nid; /* node id of the direct node block */
242 unsigned int ofs_in_node; /* data offset in the node page */
243 bool inode_page_locked; /* inode page is locked or not */
244 block_t data_blkaddr; /* block address of the node block */
245};
246
247static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
248 struct page *ipage, struct page *npage, nid_t nid)
249{
Jaegeuk Kimd66d1f72013-01-03 08:57:21 +0900250 memset(dn, 0, sizeof(*dn));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900251 dn->inode = inode;
252 dn->inode_page = ipage;
253 dn->node_page = npage;
254 dn->nid = nid;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900255}
256
257/*
258 * For SIT manager
259 *
260 * By default, there are 6 active log areas across the whole main area.
261 * When considering hot and cold data separation to reduce cleaning overhead,
262 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
263 * respectively.
264 * In the current design, you should not change the numbers intentionally.
265 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
266 * logs individually according to the underlying devices. (default: 6)
267 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
268 * data and 8 for node logs.
269 */
270#define NR_CURSEG_DATA_TYPE (3)
271#define NR_CURSEG_NODE_TYPE (3)
272#define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
273
274enum {
275 CURSEG_HOT_DATA = 0, /* directory entry blocks */
276 CURSEG_WARM_DATA, /* data blocks */
277 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */
278 CURSEG_HOT_NODE, /* direct node blocks of directory files */
279 CURSEG_WARM_NODE, /* direct node blocks of normal files */
280 CURSEG_COLD_NODE, /* indirect node blocks */
281 NO_CHECK_TYPE
282};
283
284struct f2fs_sm_info {
285 struct sit_info *sit_info; /* whole segment information */
286 struct free_segmap_info *free_info; /* free segment information */
287 struct dirty_seglist_info *dirty_info; /* dirty segment information */
288 struct curseg_info *curseg_array; /* active segment information */
289
290 struct list_head wblist_head; /* list of under-writeback pages */
291 spinlock_t wblist_lock; /* lock for checkpoint */
292
293 block_t seg0_blkaddr; /* block address of 0'th segment */
294 block_t main_blkaddr; /* start block address of main area */
295 block_t ssa_blkaddr; /* start block address of SSA area */
296
297 unsigned int segment_count; /* total # of segments */
298 unsigned int main_segments; /* # of segments in main area */
299 unsigned int reserved_segments; /* # of reserved segments */
300 unsigned int ovp_segments; /* # of overprovision segments */
301};
302
303/*
304 * For directory operation
305 */
306#define NODE_DIR1_BLOCK (ADDRS_PER_INODE + 1)
307#define NODE_DIR2_BLOCK (ADDRS_PER_INODE + 2)
308#define NODE_IND1_BLOCK (ADDRS_PER_INODE + 3)
309#define NODE_IND2_BLOCK (ADDRS_PER_INODE + 4)
310#define NODE_DIND_BLOCK (ADDRS_PER_INODE + 5)
311
312/*
313 * For superblock
314 */
315/*
316 * COUNT_TYPE for monitoring
317 *
318 * f2fs monitors the number of several block types such as on-writeback,
319 * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
320 */
321enum count_type {
322 F2FS_WRITEBACK,
323 F2FS_DIRTY_DENTS,
324 F2FS_DIRTY_NODES,
325 F2FS_DIRTY_META,
326 NR_COUNT_TYPE,
327};
328
329/*
Jaegeuk Kim39936832012-11-22 16:21:29 +0900330 * Uses as sbi->fs_lock[NR_GLOBAL_LOCKS].
331 * The checkpoint procedure blocks all the locks in this fs_lock array.
332 * Some FS operations grab free locks, and if there is no free lock,
333 * then wait to grab a lock in a round-robin manner.
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900334 */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900335#define NR_GLOBAL_LOCKS 8
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900336
337/*
338 * The below are the page types of bios used in submti_bio().
339 * The available types are:
340 * DATA User data pages. It operates as async mode.
341 * NODE Node pages. It operates as async mode.
342 * META FS metadata pages such as SIT, NAT, CP.
343 * NR_PAGE_TYPE The number of page types.
344 * META_FLUSH Make sure the previous pages are written
345 * with waiting the bio's completion
346 * ... Only can be used with META.
347 */
348enum page_type {
349 DATA,
350 NODE,
351 META,
352 NR_PAGE_TYPE,
353 META_FLUSH,
354};
355
356struct f2fs_sb_info {
357 struct super_block *sb; /* pointer to VFS super block */
Jaegeuk Kim5e176d52013-06-28 12:47:01 +0900358 struct proc_dir_entry *s_proc; /* proc entry */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900359 struct buffer_head *raw_super_buf; /* buffer head of raw sb */
360 struct f2fs_super_block *raw_super; /* raw super block pointer */
361 int s_dirty; /* dirty flag for checkpoint */
362
363 /* for node-related operations */
364 struct f2fs_nm_info *nm_info; /* node manager */
365 struct inode *node_inode; /* cache node blocks */
366
367 /* for segment-related operations */
368 struct f2fs_sm_info *sm_info; /* segment manager */
369 struct bio *bio[NR_PAGE_TYPE]; /* bios to merge */
370 sector_t last_block_in_bio[NR_PAGE_TYPE]; /* last block number */
371 struct rw_semaphore bio_sem; /* IO semaphore */
372
373 /* for checkpoint */
374 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
375 struct inode *meta_inode; /* cache meta blocks */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900376 struct mutex cp_mutex; /* checkpoint procedure lock */
377 struct mutex fs_lock[NR_GLOBAL_LOCKS]; /* blocking FS operations */
378 struct mutex node_write; /* locking node writes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900379 struct mutex writepages; /* mutex for writepages() */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900380 unsigned char next_lock_num; /* round-robin global locks */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900381 int por_doing; /* recovery is doing or not */
Jaegeuk Kim55008d82013-04-25 16:05:51 +0900382 int on_build_free_nids; /* build_free_nids is doing */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900383
384 /* for orphan inode management */
385 struct list_head orphan_inode_list; /* orphan inode list */
386 struct mutex orphan_inode_mutex; /* for orphan inode list */
387 unsigned int n_orphans; /* # of orphan inodes */
388
389 /* for directory inode management */
390 struct list_head dir_inode_list; /* dir inode list */
391 spinlock_t dir_inode_lock; /* for dir inode list lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900392
393 /* basic file system units */
394 unsigned int log_sectors_per_block; /* log2 sectors per block */
395 unsigned int log_blocksize; /* log2 block size */
396 unsigned int blocksize; /* block size */
397 unsigned int root_ino_num; /* root inode number*/
398 unsigned int node_ino_num; /* node inode number*/
399 unsigned int meta_ino_num; /* meta inode number*/
400 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
401 unsigned int blocks_per_seg; /* blocks per segment */
402 unsigned int segs_per_sec; /* segments per section */
403 unsigned int secs_per_zone; /* sections per zone */
404 unsigned int total_sections; /* total section count */
405 unsigned int total_node_count; /* total node block count */
406 unsigned int total_valid_node_count; /* valid node block count */
407 unsigned int total_valid_inode_count; /* valid inode count */
408 int active_logs; /* # of active logs */
409
410 block_t user_block_count; /* # of user blocks */
411 block_t total_valid_block_count; /* # of valid blocks */
412 block_t alloc_valid_block_count; /* # of allocated blocks */
413 block_t last_valid_block_count; /* for recovery */
414 u32 s_next_generation; /* for NFS support */
415 atomic_t nr_pages[NR_COUNT_TYPE]; /* # of pages, see count_type */
416
417 struct f2fs_mount_info mount_opt; /* mount options */
418
419 /* for cleaning operations */
420 struct mutex gc_mutex; /* mutex for GC */
421 struct f2fs_gc_kthread *gc_thread; /* GC thread */
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900422 unsigned int cur_victim_sec; /* current victim section num */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900423
424 /*
425 * for stat information.
426 * one is for the LFS mode, and the other is for the SSR mode.
427 */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900428#ifdef CONFIG_F2FS_STAT_FS
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900429 struct f2fs_stat_info *stat_info; /* FS status information */
430 unsigned int segment_count[2]; /* # of allocated segments */
431 unsigned int block_count[2]; /* # of allocated blocks */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900432 int total_hit_ext, read_hit_ext; /* extent cache hit ratio */
433 int bg_gc; /* background gc calls */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900434 unsigned int n_dirty_dirs; /* # of dir inodes */
435#endif
436 unsigned int last_victim[2]; /* last victim segment # */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900437 spinlock_t stat_lock; /* lock for stat operations */
Namjae Jeonb59d0ba2013-08-04 23:09:40 +0900438
439 /* For sysfs suppport */
440 struct kobject s_kobj;
441 struct completion s_kobj_unregister;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900442};
443
444/*
445 * Inline functions
446 */
447static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
448{
449 return container_of(inode, struct f2fs_inode_info, vfs_inode);
450}
451
452static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
453{
454 return sb->s_fs_info;
455}
456
457static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
458{
459 return (struct f2fs_super_block *)(sbi->raw_super);
460}
461
462static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
463{
464 return (struct f2fs_checkpoint *)(sbi->ckpt);
465}
466
Gu Zheng45590712013-07-15 17:57:38 +0800467static inline struct f2fs_node *F2FS_NODE(struct page *page)
468{
469 return (struct f2fs_node *)page_address(page);
470}
471
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900472static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
473{
474 return (struct f2fs_nm_info *)(sbi->nm_info);
475}
476
477static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
478{
479 return (struct f2fs_sm_info *)(sbi->sm_info);
480}
481
482static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
483{
484 return (struct sit_info *)(SM_I(sbi)->sit_info);
485}
486
487static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
488{
489 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
490}
491
492static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
493{
494 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
495}
496
497static inline void F2FS_SET_SB_DIRT(struct f2fs_sb_info *sbi)
498{
499 sbi->s_dirty = 1;
500}
501
502static inline void F2FS_RESET_SB_DIRT(struct f2fs_sb_info *sbi)
503{
504 sbi->s_dirty = 0;
505}
506
Jaegeuk Kimd71b5562013-08-09 15:03:21 +0900507static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
508{
509 return le64_to_cpu(cp->checkpoint_ver);
510}
511
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900512static inline bool is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
513{
514 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
515 return ckpt_flags & f;
516}
517
518static inline void set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
519{
520 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
521 ckpt_flags |= f;
522 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
523}
524
525static inline void clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
526{
527 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
528 ckpt_flags &= (~f);
529 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
530}
531
Jaegeuk Kim39936832012-11-22 16:21:29 +0900532static inline void mutex_lock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900533{
Peter Zijlstrabfe35962013-05-16 20:03:12 +0200534 int i;
535
536 for (i = 0; i < NR_GLOBAL_LOCKS; i++) {
537 /*
538 * This is the only time we take multiple fs_lock[]
539 * instances; the order is immaterial since we
540 * always hold cp_mutex, which serializes multiple
541 * such operations.
542 */
543 mutex_lock_nest_lock(&sbi->fs_lock[i], &sbi->cp_mutex);
544 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900545}
546
Jaegeuk Kim39936832012-11-22 16:21:29 +0900547static inline void mutex_unlock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900548{
Jaegeuk Kim39936832012-11-22 16:21:29 +0900549 int i = 0;
550 for (; i < NR_GLOBAL_LOCKS; i++)
551 mutex_unlock(&sbi->fs_lock[i]);
552}
553
554static inline int mutex_lock_op(struct f2fs_sb_info *sbi)
555{
556 unsigned char next_lock = sbi->next_lock_num % NR_GLOBAL_LOCKS;
557 int i = 0;
558
559 for (; i < NR_GLOBAL_LOCKS; i++)
560 if (mutex_trylock(&sbi->fs_lock[i]))
561 return i;
562
563 mutex_lock(&sbi->fs_lock[next_lock]);
564 sbi->next_lock_num++;
565 return next_lock;
566}
567
568static inline void mutex_unlock_op(struct f2fs_sb_info *sbi, int ilock)
569{
570 if (ilock < 0)
571 return;
572 BUG_ON(ilock >= NR_GLOBAL_LOCKS);
573 mutex_unlock(&sbi->fs_lock[ilock]);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900574}
575
576/*
577 * Check whether the given nid is within node id range.
578 */
Namjae Jeon064e0822013-03-17 17:27:20 +0900579static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900580{
Namjae Jeon064e0822013-03-17 17:27:20 +0900581 WARN_ON((nid >= NM_I(sbi)->max_nid));
582 if (nid >= NM_I(sbi)->max_nid)
583 return -EINVAL;
584 return 0;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900585}
586
587#define F2FS_DEFAULT_ALLOCATED_BLOCKS 1
588
589/*
590 * Check whether the inode has blocks or not
591 */
592static inline int F2FS_HAS_BLOCKS(struct inode *inode)
593{
594 if (F2FS_I(inode)->i_xattr_nid)
595 return (inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1);
596 else
597 return (inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS);
598}
599
600static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi,
601 struct inode *inode, blkcnt_t count)
602{
603 block_t valid_block_count;
604
605 spin_lock(&sbi->stat_lock);
606 valid_block_count =
607 sbi->total_valid_block_count + (block_t)count;
608 if (valid_block_count > sbi->user_block_count) {
609 spin_unlock(&sbi->stat_lock);
610 return false;
611 }
612 inode->i_blocks += count;
613 sbi->total_valid_block_count = valid_block_count;
614 sbi->alloc_valid_block_count += (block_t)count;
615 spin_unlock(&sbi->stat_lock);
616 return true;
617}
618
619static inline int dec_valid_block_count(struct f2fs_sb_info *sbi,
620 struct inode *inode,
621 blkcnt_t count)
622{
623 spin_lock(&sbi->stat_lock);
624 BUG_ON(sbi->total_valid_block_count < (block_t) count);
625 BUG_ON(inode->i_blocks < count);
626 inode->i_blocks -= count;
627 sbi->total_valid_block_count -= (block_t)count;
628 spin_unlock(&sbi->stat_lock);
629 return 0;
630}
631
632static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
633{
634 atomic_inc(&sbi->nr_pages[count_type]);
635 F2FS_SET_SB_DIRT(sbi);
636}
637
638static inline void inode_inc_dirty_dents(struct inode *inode)
639{
640 atomic_inc(&F2FS_I(inode)->dirty_dents);
641}
642
643static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
644{
645 atomic_dec(&sbi->nr_pages[count_type]);
646}
647
648static inline void inode_dec_dirty_dents(struct inode *inode)
649{
650 atomic_dec(&F2FS_I(inode)->dirty_dents);
651}
652
653static inline int get_pages(struct f2fs_sb_info *sbi, int count_type)
654{
655 return atomic_read(&sbi->nr_pages[count_type]);
656}
657
Namjae Jeon5ac206c2013-02-02 23:52:59 +0900658static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
659{
660 unsigned int pages_per_sec = sbi->segs_per_sec *
661 (1 << sbi->log_blocks_per_seg);
662 return ((get_pages(sbi, block_type) + pages_per_sec - 1)
663 >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
664}
665
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900666static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
667{
668 block_t ret;
669 spin_lock(&sbi->stat_lock);
670 ret = sbi->total_valid_block_count;
671 spin_unlock(&sbi->stat_lock);
672 return ret;
673}
674
675static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
676{
677 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
678
679 /* return NAT or SIT bitmap */
680 if (flag == NAT_BITMAP)
681 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
682 else if (flag == SIT_BITMAP)
683 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
684
685 return 0;
686}
687
688static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
689{
690 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900691 int offset = (flag == NAT_BITMAP) ?
692 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900693 return &ckpt->sit_nat_version_bitmap + offset;
694}
695
696static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
697{
698 block_t start_addr;
699 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kimd71b5562013-08-09 15:03:21 +0900700 unsigned long long ckpt_version = cur_cp_version(ckpt);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900701
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900702 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900703
704 /*
705 * odd numbered checkpoint should at cp segment 0
706 * and even segent must be at cp segment 1
707 */
708 if (!(ckpt_version & 1))
709 start_addr += sbi->blocks_per_seg;
710
711 return start_addr;
712}
713
714static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
715{
716 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
717}
718
719static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi,
720 struct inode *inode,
721 unsigned int count)
722{
723 block_t valid_block_count;
724 unsigned int valid_node_count;
725
726 spin_lock(&sbi->stat_lock);
727
728 valid_block_count = sbi->total_valid_block_count + (block_t)count;
729 sbi->alloc_valid_block_count += (block_t)count;
730 valid_node_count = sbi->total_valid_node_count + count;
731
732 if (valid_block_count > sbi->user_block_count) {
733 spin_unlock(&sbi->stat_lock);
734 return false;
735 }
736
737 if (valid_node_count > sbi->total_node_count) {
738 spin_unlock(&sbi->stat_lock);
739 return false;
740 }
741
742 if (inode)
743 inode->i_blocks += count;
744 sbi->total_valid_node_count = valid_node_count;
745 sbi->total_valid_block_count = valid_block_count;
746 spin_unlock(&sbi->stat_lock);
747
748 return true;
749}
750
751static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
752 struct inode *inode,
753 unsigned int count)
754{
755 spin_lock(&sbi->stat_lock);
756
757 BUG_ON(sbi->total_valid_block_count < count);
758 BUG_ON(sbi->total_valid_node_count < count);
759 BUG_ON(inode->i_blocks < count);
760
761 inode->i_blocks -= count;
762 sbi->total_valid_node_count -= count;
763 sbi->total_valid_block_count -= (block_t)count;
764
765 spin_unlock(&sbi->stat_lock);
766}
767
768static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
769{
770 unsigned int ret;
771 spin_lock(&sbi->stat_lock);
772 ret = sbi->total_valid_node_count;
773 spin_unlock(&sbi->stat_lock);
774 return ret;
775}
776
777static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
778{
779 spin_lock(&sbi->stat_lock);
780 BUG_ON(sbi->total_valid_inode_count == sbi->total_node_count);
781 sbi->total_valid_inode_count++;
782 spin_unlock(&sbi->stat_lock);
783}
784
785static inline int dec_valid_inode_count(struct f2fs_sb_info *sbi)
786{
787 spin_lock(&sbi->stat_lock);
788 BUG_ON(!sbi->total_valid_inode_count);
789 sbi->total_valid_inode_count--;
790 spin_unlock(&sbi->stat_lock);
791 return 0;
792}
793
794static inline unsigned int valid_inode_count(struct f2fs_sb_info *sbi)
795{
796 unsigned int ret;
797 spin_lock(&sbi->stat_lock);
798 ret = sbi->total_valid_inode_count;
799 spin_unlock(&sbi->stat_lock);
800 return ret;
801}
802
803static inline void f2fs_put_page(struct page *page, int unlock)
804{
805 if (!page || IS_ERR(page))
806 return;
807
808 if (unlock) {
809 BUG_ON(!PageLocked(page));
810 unlock_page(page);
811 }
812 page_cache_release(page);
813}
814
815static inline void f2fs_put_dnode(struct dnode_of_data *dn)
816{
817 if (dn->node_page)
818 f2fs_put_page(dn->node_page, 1);
819 if (dn->inode_page && dn->node_page != dn->inode_page)
820 f2fs_put_page(dn->inode_page, 0);
821 dn->node_page = NULL;
822 dn->inode_page = NULL;
823}
824
825static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
826 size_t size, void (*ctor)(void *))
827{
828 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, ctor);
829}
830
831#define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
832
833static inline bool IS_INODE(struct page *page)
834{
Gu Zheng45590712013-07-15 17:57:38 +0800835 struct f2fs_node *p = F2FS_NODE(page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900836 return RAW_IS_INODE(p);
837}
838
839static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
840{
841 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
842}
843
844static inline block_t datablock_addr(struct page *node_page,
845 unsigned int offset)
846{
847 struct f2fs_node *raw_node;
848 __le32 *addr_array;
Gu Zheng45590712013-07-15 17:57:38 +0800849 raw_node = F2FS_NODE(node_page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900850 addr_array = blkaddr_in_node(raw_node);
851 return le32_to_cpu(addr_array[offset]);
852}
853
854static inline int f2fs_test_bit(unsigned int nr, char *addr)
855{
856 int mask;
857
858 addr += (nr >> 3);
859 mask = 1 << (7 - (nr & 0x07));
860 return mask & *addr;
861}
862
863static inline int f2fs_set_bit(unsigned int nr, char *addr)
864{
865 int mask;
866 int ret;
867
868 addr += (nr >> 3);
869 mask = 1 << (7 - (nr & 0x07));
870 ret = mask & *addr;
871 *addr |= mask;
872 return ret;
873}
874
875static inline int f2fs_clear_bit(unsigned int nr, char *addr)
876{
877 int mask;
878 int ret;
879
880 addr += (nr >> 3);
881 mask = 1 << (7 - (nr & 0x07));
882 ret = mask & *addr;
883 *addr &= ~mask;
884 return ret;
885}
886
887/* used for f2fs_inode_info->flags */
888enum {
889 FI_NEW_INODE, /* indicate newly allocated inode */
Jaegeuk Kimb3783872013-06-10 09:17:01 +0900890 FI_DIRTY_INODE, /* indicate inode is dirty or not */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900891 FI_INC_LINK, /* need to increment i_nlink */
892 FI_ACL_MODE, /* indicate acl mode */
893 FI_NO_ALLOC, /* should not allocate any blocks */
Jaegeuk Kim699489b2013-06-07 22:08:23 +0900894 FI_UPDATE_DIR, /* should update inode block for consistency */
Jaegeuk Kim74d0b912013-05-15 16:40:02 +0900895 FI_DELAY_IPUT, /* used for the recovery */
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900896 FI_INLINE_XATTR, /* used for inline xattr */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900897};
898
899static inline void set_inode_flag(struct f2fs_inode_info *fi, int flag)
900{
901 set_bit(flag, &fi->flags);
902}
903
904static inline int is_inode_flag_set(struct f2fs_inode_info *fi, int flag)
905{
906 return test_bit(flag, &fi->flags);
907}
908
909static inline void clear_inode_flag(struct f2fs_inode_info *fi, int flag)
910{
911 clear_bit(flag, &fi->flags);
912}
913
914static inline void set_acl_inode(struct f2fs_inode_info *fi, umode_t mode)
915{
916 fi->i_acl_mode = mode;
917 set_inode_flag(fi, FI_ACL_MODE);
918}
919
920static inline int cond_clear_inode_flag(struct f2fs_inode_info *fi, int flag)
921{
922 if (is_inode_flag_set(fi, FI_ACL_MODE)) {
923 clear_inode_flag(fi, FI_ACL_MODE);
924 return 1;
925 }
926 return 0;
927}
928
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900929static inline void get_inline_info(struct f2fs_inode_info *fi,
930 struct f2fs_inode *ri)
931{
932 if (ri->i_inline & F2FS_INLINE_XATTR)
933 set_inode_flag(fi, FI_INLINE_XATTR);
934}
935
936static inline void set_raw_inline(struct f2fs_inode_info *fi,
937 struct f2fs_inode *ri)
938{
939 ri->i_inline = 0;
940
941 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
942 ri->i_inline |= F2FS_INLINE_XATTR;
943}
944
Jaegeuk Kim77888c12013-05-20 20:28:47 +0900945static inline int f2fs_readonly(struct super_block *sb)
946{
947 return sb->s_flags & MS_RDONLY;
948}
949
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900950/*
951 * file.c
952 */
953int f2fs_sync_file(struct file *, loff_t, loff_t, int);
954void truncate_data_blocks(struct dnode_of_data *);
955void f2fs_truncate(struct inode *);
Jaegeuk Kim2d4d9fb52013-06-07 16:33:07 +0900956int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900957int f2fs_setattr(struct dentry *, struct iattr *);
958int truncate_hole(struct inode *, pgoff_t, pgoff_t);
Jaegeuk Kimb292dcab2013-05-22 08:02:02 +0900959int truncate_data_blocks_range(struct dnode_of_data *, int);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900960long f2fs_ioctl(struct file *, unsigned int, unsigned long);
Namjae Jeone9750822013-02-04 23:41:41 +0900961long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900962
963/*
964 * inode.c
965 */
966void f2fs_set_inode_flags(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900967struct inode *f2fs_iget(struct super_block *, unsigned long);
968void update_inode(struct inode *, struct page *);
Jaegeuk Kim39936832012-11-22 16:21:29 +0900969int update_inode_page(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900970int f2fs_write_inode(struct inode *, struct writeback_control *);
971void f2fs_evict_inode(struct inode *);
972
973/*
974 * namei.c
975 */
976struct dentry *f2fs_get_parent(struct dentry *child);
977
978/*
979 * dir.c
980 */
981struct f2fs_dir_entry *f2fs_find_entry(struct inode *, struct qstr *,
982 struct page **);
983struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **);
984ino_t f2fs_inode_by_name(struct inode *, struct qstr *);
985void f2fs_set_link(struct inode *, struct f2fs_dir_entry *,
986 struct page *, struct inode *);
Jaegeuk Kim1cd14ca2013-07-18 18:02:31 +0900987int update_dent_inode(struct inode *, const struct qstr *);
Al Virob7f7a5e2013-01-25 16:15:43 -0500988int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900989void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *);
990int f2fs_make_empty(struct inode *, struct inode *);
991bool f2fs_empty_dir(struct inode *);
992
Al Virob7f7a5e2013-01-25 16:15:43 -0500993static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
994{
995 return __f2fs_add_link(dentry->d_parent->d_inode, &dentry->d_name,
996 inode);
997}
998
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900999/*
1000 * super.c
1001 */
1002int f2fs_sync_fs(struct super_block *, int);
Namjae Jeona07ef782012-12-30 14:52:05 +09001003extern __printf(3, 4)
1004void f2fs_msg(struct super_block *, const char *, const char *, ...);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001005
1006/*
1007 * hash.c
1008 */
Leon Romanovsky9836b8b2012-12-27 19:55:46 +02001009f2fs_hash_t f2fs_dentry_hash(const char *, size_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001010
1011/*
1012 * node.c
1013 */
1014struct dnode_of_data;
1015struct node_info;
1016
1017int is_checkpointed_node(struct f2fs_sb_info *, nid_t);
1018void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *);
1019int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int);
1020int truncate_inode_blocks(struct inode *, pgoff_t);
1021int remove_inode_page(struct inode *);
Jaegeuk Kim44a83ff2013-05-20 10:10:29 +09001022struct page *new_inode_page(struct inode *, const struct qstr *);
Jaegeuk Kim8ae8f162013-06-03 19:46:19 +09001023struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001024void ra_node_page(struct f2fs_sb_info *, nid_t);
1025struct page *get_node_page(struct f2fs_sb_info *, pgoff_t);
1026struct page *get_node_page_ra(struct page *, int);
1027void sync_inode_page(struct dnode_of_data *);
1028int sync_node_pages(struct f2fs_sb_info *, nid_t, struct writeback_control *);
1029bool alloc_nid(struct f2fs_sb_info *, nid_t *);
1030void alloc_nid_done(struct f2fs_sb_info *, nid_t);
1031void alloc_nid_failed(struct f2fs_sb_info *, nid_t);
1032void recover_node_page(struct f2fs_sb_info *, struct page *,
1033 struct f2fs_summary *, struct node_info *, block_t);
1034int recover_inode_page(struct f2fs_sb_info *, struct page *);
1035int restore_node_summary(struct f2fs_sb_info *, unsigned int,
1036 struct f2fs_summary_block *);
1037void flush_nat_entries(struct f2fs_sb_info *);
1038int build_node_manager(struct f2fs_sb_info *);
1039void destroy_node_manager(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001040int __init create_node_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001041void destroy_node_manager_caches(void);
1042
1043/*
1044 * segment.c
1045 */
1046void f2fs_balance_fs(struct f2fs_sb_info *);
1047void invalidate_blocks(struct f2fs_sb_info *, block_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001048void clear_prefree_segments(struct f2fs_sb_info *);
1049int npages_for_summary_flush(struct f2fs_sb_info *);
1050void allocate_new_segments(struct f2fs_sb_info *);
1051struct page *get_sum_page(struct f2fs_sb_info *, unsigned int);
Jaegeuk Kim3cd8a232012-12-10 09:26:05 +09001052struct bio *f2fs_bio_alloc(struct block_device *, int);
Jin Xua5694692013-08-05 20:02:04 +08001053void f2fs_submit_bio(struct f2fs_sb_info *, enum page_type, bool);
1054void f2fs_wait_on_page_writeback(struct page *, enum page_type, bool);
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001055void write_meta_page(struct f2fs_sb_info *, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001056void write_node_page(struct f2fs_sb_info *, struct page *, unsigned int,
1057 block_t, block_t *);
1058void write_data_page(struct inode *, struct page *, struct dnode_of_data*,
1059 block_t, block_t *);
1060void rewrite_data_page(struct f2fs_sb_info *, struct page *, block_t);
1061void recover_data_page(struct f2fs_sb_info *, struct page *,
1062 struct f2fs_summary *, block_t, block_t);
1063void rewrite_node_page(struct f2fs_sb_info *, struct page *,
1064 struct f2fs_summary *, block_t, block_t);
1065void write_data_summaries(struct f2fs_sb_info *, block_t);
1066void write_node_summaries(struct f2fs_sb_info *, block_t);
1067int lookup_journal_in_cursum(struct f2fs_summary_block *,
1068 int, unsigned int, int);
1069void flush_sit_entries(struct f2fs_sb_info *);
1070int build_segment_manager(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001071void destroy_segment_manager(struct f2fs_sb_info *);
1072
1073/*
1074 * checkpoint.c
1075 */
1076struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t);
1077struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t);
1078long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long);
Jaegeuk Kimcbd56e72013-07-30 11:36:53 +09001079int acquire_orphan_inode(struct f2fs_sb_info *);
1080void release_orphan_inode(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001081void add_orphan_inode(struct f2fs_sb_info *, nid_t);
1082void remove_orphan_inode(struct f2fs_sb_info *, nid_t);
1083int recover_orphan_inodes(struct f2fs_sb_info *);
1084int get_valid_checkpoint(struct f2fs_sb_info *);
1085void set_dirty_dir_page(struct inode *, struct page *);
Jaegeuk Kim5deb8262013-06-05 17:42:45 +09001086void add_dirty_dir_inode(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001087void remove_dirty_dir_inode(struct inode *);
Jaegeuk Kim74d0b912013-05-15 16:40:02 +09001088struct inode *check_dirty_dir_inode(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001089void sync_dirty_dir_inodes(struct f2fs_sb_info *);
Jaegeuk Kim43727522013-02-04 15:11:17 +09001090void write_checkpoint(struct f2fs_sb_info *, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001091void init_orphan_info(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001092int __init create_checkpoint_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001093void destroy_checkpoint_caches(void);
1094
1095/*
1096 * data.c
1097 */
1098int reserve_new_block(struct dnode_of_data *);
1099void update_extent_cache(block_t, struct dnode_of_data *);
Jaegeuk Kimc718379b2013-04-24 13:19:56 +09001100struct page *find_data_page(struct inode *, pgoff_t, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001101struct page *get_lock_data_page(struct inode *, pgoff_t);
Jaegeuk Kim64aa7ed2013-05-20 09:55:50 +09001102struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001103int f2fs_readpage(struct f2fs_sb_info *, struct page *, block_t, int);
1104int do_write_data_page(struct page *);
1105
1106/*
1107 * gc.c
1108 */
1109int start_gc_thread(struct f2fs_sb_info *);
1110void stop_gc_thread(struct f2fs_sb_info *);
1111block_t start_bidx_of_node(unsigned int);
Jaegeuk Kim408e9372013-01-03 17:55:52 +09001112int f2fs_gc(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001113void build_gc_manager(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001114int __init create_gc_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001115void destroy_gc_caches(void);
1116
1117/*
1118 * recovery.c
1119 */
Jaegeuk Kim6ead1142013-03-20 19:01:06 +09001120int recover_fsync_data(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001121bool space_for_roll_forward(struct f2fs_sb_info *);
1122
1123/*
1124 * debug.c
1125 */
1126#ifdef CONFIG_F2FS_STAT_FS
1127struct f2fs_stat_info {
1128 struct list_head stat_list;
1129 struct f2fs_sb_info *sbi;
1130 struct mutex stat_lock;
1131 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
1132 int main_area_segs, main_area_sections, main_area_zones;
1133 int hit_ext, total_ext;
1134 int ndirty_node, ndirty_dent, ndirty_dirs, ndirty_meta;
1135 int nats, sits, fnids;
1136 int total_count, utilization;
1137 int bg_gc;
1138 unsigned int valid_count, valid_node_count, valid_inode_count;
1139 unsigned int bimodal, avg_vblocks;
1140 int util_free, util_valid, util_invalid;
1141 int rsvd_segs, overp_segs;
1142 int dirty_count, node_pages, meta_pages;
1143 int prefree_count, call_count;
1144 int tot_segs, node_segs, data_segs, free_segs, free_secs;
1145 int tot_blks, data_blks, node_blks;
1146 int curseg[NR_CURSEG_TYPE];
1147 int cursec[NR_CURSEG_TYPE];
1148 int curzone[NR_CURSEG_TYPE];
1149
1150 unsigned int segment_count[2];
1151 unsigned int block_count[2];
1152 unsigned base_mem, cache_mem;
1153};
1154
Gu Zheng963d4f72013-07-12 14:47:11 +08001155static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
1156{
1157 return (struct f2fs_stat_info*)sbi->stat_info;
1158}
1159
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001160#define stat_inc_call_count(si) ((si)->call_count++)
1161
1162#define stat_inc_seg_count(sbi, type) \
1163 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001164 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001165 (si)->tot_segs++; \
1166 if (type == SUM_TYPE_DATA) \
1167 si->data_segs++; \
1168 else \
1169 si->node_segs++; \
1170 } while (0)
1171
1172#define stat_inc_tot_blk_count(si, blks) \
1173 (si->tot_blks += (blks))
1174
1175#define stat_inc_data_blk_count(sbi, blks) \
1176 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001177 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001178 stat_inc_tot_blk_count(si, blks); \
1179 si->data_blks += (blks); \
1180 } while (0)
1181
1182#define stat_inc_node_blk_count(sbi, blks) \
1183 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001184 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001185 stat_inc_tot_blk_count(si, blks); \
1186 si->node_blks += (blks); \
1187 } while (0)
1188
1189int f2fs_build_stats(struct f2fs_sb_info *);
1190void f2fs_destroy_stats(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001191void __init f2fs_create_root_stats(void);
Namjae Jeon4589d252013-01-15 19:58:47 +09001192void f2fs_destroy_root_stats(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001193#else
1194#define stat_inc_call_count(si)
1195#define stat_inc_seg_count(si, type)
1196#define stat_inc_tot_blk_count(si, blks)
1197#define stat_inc_data_blk_count(si, blks)
1198#define stat_inc_node_blk_count(sbi, blks)
1199
1200static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
1201static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001202static inline void __init f2fs_create_root_stats(void) { }
Namjae Jeon4589d252013-01-15 19:58:47 +09001203static inline void f2fs_destroy_root_stats(void) { }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001204#endif
1205
1206extern const struct file_operations f2fs_dir_operations;
1207extern const struct file_operations f2fs_file_operations;
1208extern const struct inode_operations f2fs_file_inode_operations;
1209extern const struct address_space_operations f2fs_dblock_aops;
1210extern const struct address_space_operations f2fs_node_aops;
1211extern const struct address_space_operations f2fs_meta_aops;
1212extern const struct inode_operations f2fs_dir_inode_operations;
1213extern const struct inode_operations f2fs_symlink_inode_operations;
1214extern const struct inode_operations f2fs_special_inode_operations;
1215#endif