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