blob: e9038bbeee9f78519d97a2dad66f5207a8fbf875 [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>
Gu Zheng7bd59382013-10-22 14:52:26 +080021#include <linux/sched.h>
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090022
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090023#ifdef CONFIG_F2FS_CHECK_FS
24#define f2fs_bug_on(condition) BUG_ON(condition)
25#else
26#define f2fs_bug_on(condition)
27#endif
28
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090029/*
30 * For mount options
31 */
32#define F2FS_MOUNT_BG_GC 0x00000001
33#define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002
34#define F2FS_MOUNT_DISCARD 0x00000004
35#define F2FS_MOUNT_NOHEAP 0x00000008
36#define F2FS_MOUNT_XATTR_USER 0x00000010
37#define F2FS_MOUNT_POSIX_ACL 0x00000020
38#define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040
Jaegeuk Kim444c5802013-08-08 15:16:22 +090039#define F2FS_MOUNT_INLINE_XATTR 0x00000080
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090040
41#define clear_opt(sbi, option) (sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
42#define set_opt(sbi, option) (sbi->mount_opt.opt |= F2FS_MOUNT_##option)
43#define test_opt(sbi, option) (sbi->mount_opt.opt & F2FS_MOUNT_##option)
44
45#define ver_after(a, b) (typecheck(unsigned long long, a) && \
46 typecheck(unsigned long long, b) && \
47 ((long long)((a) - (b)) > 0))
48
Jaegeuk Kima9841c42013-05-24 12:41:04 +090049typedef u32 block_t; /*
50 * should not change u32, since it is the on-disk block
51 * address format, __le32.
52 */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090053typedef u32 nid_t;
54
55struct f2fs_mount_info {
56 unsigned int opt;
57};
58
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090059#define CRCPOLY_LE 0xedb88320
60
61static inline __u32 f2fs_crc32(void *buf, size_t len)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090062{
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090063 unsigned char *p = (unsigned char *)buf;
64 __u32 crc = F2FS_SUPER_MAGIC;
65 int i;
66
67 while (len--) {
68 crc ^= *p++;
69 for (i = 0; i < 8; i++)
70 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
71 }
72 return crc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090073}
74
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090075static inline bool f2fs_crc_valid(__u32 blk_crc, void *buf, size_t buf_size)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090076{
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090077 return f2fs_crc32(buf, buf_size) == blk_crc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090078}
79
80/*
81 * For checkpoint manager
82 */
83enum {
84 NAT_BITMAP,
85 SIT_BITMAP
86};
87
88/* for the list of orphan inodes */
89struct orphan_inode_entry {
90 struct list_head list; /* list head */
91 nid_t ino; /* inode number */
92};
93
94/* for the list of directory inodes */
95struct dir_inode_entry {
96 struct list_head list; /* list head */
97 struct inode *inode; /* vfs inode pointer */
98};
99
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900100/* for the list of blockaddresses to be discarded */
101struct discard_entry {
102 struct list_head list; /* list head */
103 block_t blkaddr; /* block address to be discarded */
104 int len; /* # of consecutive blocks of the discard */
105};
106
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900107/* for the list of fsync inodes, used only during recovery */
108struct fsync_inode_entry {
109 struct list_head list; /* list head */
110 struct inode *inode; /* vfs inode pointer */
111 block_t blkaddr; /* block address locating the last inode */
112};
113
114#define nats_in_cursum(sum) (le16_to_cpu(sum->n_nats))
115#define sits_in_cursum(sum) (le16_to_cpu(sum->n_sits))
116
117#define nat_in_journal(sum, i) (sum->nat_j.entries[i].ne)
118#define nid_in_journal(sum, i) (sum->nat_j.entries[i].nid)
119#define sit_in_journal(sum, i) (sum->sit_j.entries[i].se)
120#define segno_in_journal(sum, i) (sum->sit_j.entries[i].segno)
121
122static inline int update_nats_in_cursum(struct f2fs_summary_block *rs, int i)
123{
124 int before = nats_in_cursum(rs);
125 rs->n_nats = cpu_to_le16(before + i);
126 return before;
127}
128
129static inline int update_sits_in_cursum(struct f2fs_summary_block *rs, int i)
130{
131 int before = sits_in_cursum(rs);
132 rs->n_sits = cpu_to_le16(before + i);
133 return before;
134}
135
136/*
Namjae Jeone9750822013-02-04 23:41:41 +0900137 * ioctl commands
138 */
139#define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS
140#define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS
141
142#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
143/*
144 * ioctl commands in 32 bit emulation
145 */
146#define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS
147#define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS
148#endif
149
150/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900151 * For INODE and NODE manager
152 */
Jaegeuk Kimdbe6a5f2013-08-09 08:14:06 +0900153/*
154 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
155 * as its node offset to distinguish from index node blocks.
156 * But some bits are used to mark the node block.
157 */
158#define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \
159 >> OFFSET_BIT_SHIFT)
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900160enum {
161 ALLOC_NODE, /* allocate a new node page if needed */
162 LOOKUP_NODE, /* look up a node without readahead */
163 LOOKUP_NODE_RA, /*
164 * look up a node with readahead called
165 * by get_datablock_ro.
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900166 */
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900167};
168
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900169#define F2FS_LINK_MAX 32000 /* maximum link count per file */
170
171/* for in-memory extent cache entry */
Jaegeuk Kimc11abd12013-11-19 10:41:54 +0900172#define F2FS_MIN_EXTENT_LEN 16 /* minimum extent length */
173
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900174struct extent_info {
175 rwlock_t ext_lock; /* rwlock for consistency */
176 unsigned int fofs; /* start offset in a file */
177 u32 blk_addr; /* start block address of the extent */
Masanari Iida111d2492013-03-19 08:03:35 +0900178 unsigned int len; /* length of the extent */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900179};
180
181/*
182 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
183 */
184#define FADVISE_COLD_BIT 0x01
Jaegeuk Kim354a3392013-06-14 08:52:35 +0900185#define FADVISE_LOST_PINO_BIT 0x02
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900186
187struct f2fs_inode_info {
188 struct inode vfs_inode; /* serve a vfs inode */
189 unsigned long i_flags; /* keep an inode flags for ioctl */
190 unsigned char i_advise; /* use to give file attribute hints */
191 unsigned int i_current_depth; /* use only in directory structure */
Jaegeuk Kim6666e6a2012-12-10 17:52:48 +0900192 unsigned int i_pino; /* parent inode number */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900193 umode_t i_acl_mode; /* keep file acl mode temporarily */
194
195 /* Use below internally in f2fs*/
196 unsigned long flags; /* use to pass per-file flags */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900197 atomic_t dirty_dents; /* # of dirty dentry pages */
198 f2fs_hash_t chash; /* hash value of given file name */
199 unsigned int clevel; /* maximum level of given file name */
200 nid_t i_xattr_nid; /* node id that contains xattrs */
Jaegeuk Kime518ff82013-08-09 14:46:15 +0900201 unsigned long long xattr_ver; /* cp version of xattr modification */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900202 struct extent_info ext; /* in-memory extent cache entry */
203};
204
205static inline void get_extent_info(struct extent_info *ext,
206 struct f2fs_extent i_ext)
207{
208 write_lock(&ext->ext_lock);
209 ext->fofs = le32_to_cpu(i_ext.fofs);
210 ext->blk_addr = le32_to_cpu(i_ext.blk_addr);
211 ext->len = le32_to_cpu(i_ext.len);
212 write_unlock(&ext->ext_lock);
213}
214
215static inline void set_raw_extent(struct extent_info *ext,
216 struct f2fs_extent *i_ext)
217{
218 read_lock(&ext->ext_lock);
219 i_ext->fofs = cpu_to_le32(ext->fofs);
220 i_ext->blk_addr = cpu_to_le32(ext->blk_addr);
221 i_ext->len = cpu_to_le32(ext->len);
222 read_unlock(&ext->ext_lock);
223}
224
225struct f2fs_nm_info {
226 block_t nat_blkaddr; /* base disk address of NAT */
227 nid_t max_nid; /* maximum possible node ids */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900228 nid_t next_scan_nid; /* the next nid to be scanned */
229
230 /* NAT cache management */
231 struct radix_tree_root nat_root;/* root of the nat entry cache */
232 rwlock_t nat_tree_lock; /* protect nat_tree_lock */
233 unsigned int nat_cnt; /* the # of cached nat entries */
234 struct list_head nat_entries; /* cached nat entry list (clean) */
235 struct list_head dirty_nat_entries; /* cached nat entry list (dirty) */
236
237 /* free node ids management */
238 struct list_head free_nid_list; /* a list for free nids */
239 spinlock_t free_nid_list_lock; /* protect free nid list */
240 unsigned int fcnt; /* the number of free node id */
241 struct mutex build_lock; /* lock for build free nids */
242
243 /* for checkpoint */
244 char *nat_bitmap; /* NAT bitmap pointer */
245 int bitmap_size; /* bitmap size */
246};
247
248/*
249 * this structure is used as one of function parameters.
250 * all the information are dedicated to a given direct node block determined
251 * by the data offset in a file.
252 */
253struct dnode_of_data {
254 struct inode *inode; /* vfs inode pointer */
255 struct page *inode_page; /* its inode page, NULL is possible */
256 struct page *node_page; /* cached direct node page */
257 nid_t nid; /* node id of the direct node block */
258 unsigned int ofs_in_node; /* data offset in the node page */
259 bool inode_page_locked; /* inode page is locked or not */
260 block_t data_blkaddr; /* block address of the node block */
261};
262
263static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
264 struct page *ipage, struct page *npage, nid_t nid)
265{
Jaegeuk Kimd66d1f72013-01-03 08:57:21 +0900266 memset(dn, 0, sizeof(*dn));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900267 dn->inode = inode;
268 dn->inode_page = ipage;
269 dn->node_page = npage;
270 dn->nid = nid;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900271}
272
273/*
274 * For SIT manager
275 *
276 * By default, there are 6 active log areas across the whole main area.
277 * When considering hot and cold data separation to reduce cleaning overhead,
278 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
279 * respectively.
280 * In the current design, you should not change the numbers intentionally.
281 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
282 * logs individually according to the underlying devices. (default: 6)
283 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
284 * data and 8 for node logs.
285 */
286#define NR_CURSEG_DATA_TYPE (3)
287#define NR_CURSEG_NODE_TYPE (3)
288#define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
289
290enum {
291 CURSEG_HOT_DATA = 0, /* directory entry blocks */
292 CURSEG_WARM_DATA, /* data blocks */
293 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */
294 CURSEG_HOT_NODE, /* direct node blocks of directory files */
295 CURSEG_WARM_NODE, /* direct node blocks of normal files */
296 CURSEG_COLD_NODE, /* indirect node blocks */
297 NO_CHECK_TYPE
298};
299
300struct f2fs_sm_info {
301 struct sit_info *sit_info; /* whole segment information */
302 struct free_segmap_info *free_info; /* free segment information */
303 struct dirty_seglist_info *dirty_info; /* dirty segment information */
304 struct curseg_info *curseg_array; /* active segment information */
305
306 struct list_head wblist_head; /* list of under-writeback pages */
307 spinlock_t wblist_lock; /* lock for checkpoint */
308
309 block_t seg0_blkaddr; /* block address of 0'th segment */
310 block_t main_blkaddr; /* start block address of main area */
311 block_t ssa_blkaddr; /* start block address of SSA area */
312
313 unsigned int segment_count; /* total # of segments */
314 unsigned int main_segments; /* # of segments in main area */
315 unsigned int reserved_segments; /* # of reserved segments */
316 unsigned int ovp_segments; /* # of overprovision segments */
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +0900317
318 /* a threshold to reclaim prefree segments */
319 unsigned int rec_prefree_segments;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900320
321 /* for small discard management */
322 struct list_head discard_list; /* 4KB discard list */
323 int nr_discards; /* # of discards in the list */
324 int max_discards; /* max. discards to be issued */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900325};
326
327/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900328 * For superblock
329 */
330/*
331 * COUNT_TYPE for monitoring
332 *
333 * f2fs monitors the number of several block types such as on-writeback,
334 * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
335 */
336enum count_type {
337 F2FS_WRITEBACK,
338 F2FS_DIRTY_DENTS,
339 F2FS_DIRTY_NODES,
340 F2FS_DIRTY_META,
341 NR_COUNT_TYPE,
342};
343
344/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900345 * The below are the page types of bios used in submti_bio().
346 * The available types are:
347 * DATA User data pages. It operates as async mode.
348 * NODE Node pages. It operates as async mode.
349 * META FS metadata pages such as SIT, NAT, CP.
350 * NR_PAGE_TYPE The number of page types.
351 * META_FLUSH Make sure the previous pages are written
352 * with waiting the bio's completion
353 * ... Only can be used with META.
354 */
Jaegeuk Kim7d5e5102013-11-18 17:13:35 +0900355#define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900356enum page_type {
357 DATA,
358 NODE,
359 META,
360 NR_PAGE_TYPE,
361 META_FLUSH,
362};
363
364struct f2fs_sb_info {
365 struct super_block *sb; /* pointer to VFS super block */
Jaegeuk Kim5e176d52013-06-28 12:47:01 +0900366 struct proc_dir_entry *s_proc; /* proc entry */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900367 struct buffer_head *raw_super_buf; /* buffer head of raw sb */
368 struct f2fs_super_block *raw_super; /* raw super block pointer */
369 int s_dirty; /* dirty flag for checkpoint */
370
371 /* for node-related operations */
372 struct f2fs_nm_info *nm_info; /* node manager */
373 struct inode *node_inode; /* cache node blocks */
374
375 /* for segment-related operations */
376 struct f2fs_sm_info *sm_info; /* segment manager */
377 struct bio *bio[NR_PAGE_TYPE]; /* bios to merge */
378 sector_t last_block_in_bio[NR_PAGE_TYPE]; /* last block number */
Jaegeuk Kim971767c2013-11-18 17:16:17 +0900379 struct mutex write_mutex[NR_PAGE_TYPE]; /* mutex for writing IOs */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900380
381 /* for checkpoint */
382 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
383 struct inode *meta_inode; /* cache meta blocks */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900384 struct mutex cp_mutex; /* checkpoint procedure lock */
Gu Zhenge4795562013-09-27 18:08:30 +0800385 struct rw_semaphore cp_rwsem; /* blocking FS operations */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900386 struct mutex node_write; /* locking node writes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900387 struct mutex writepages; /* mutex for writepages() */
Haicheng Liaabe5132013-10-23 12:39:32 +0800388 bool por_doing; /* recovery is doing or not */
389 bool on_build_free_nids; /* build_free_nids is doing */
Changman Leefb51b5e2013-11-07 12:48:25 +0900390 wait_queue_head_t cp_wait;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900391
392 /* for orphan inode management */
393 struct list_head orphan_inode_list; /* orphan inode list */
394 struct mutex orphan_inode_mutex; /* for orphan inode list */
395 unsigned int n_orphans; /* # of orphan inodes */
396
397 /* for directory inode management */
398 struct list_head dir_inode_list; /* dir inode list */
399 spinlock_t dir_inode_lock; /* for dir inode list lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900400
401 /* basic file system units */
402 unsigned int log_sectors_per_block; /* log2 sectors per block */
403 unsigned int log_blocksize; /* log2 block size */
404 unsigned int blocksize; /* block size */
405 unsigned int root_ino_num; /* root inode number*/
406 unsigned int node_ino_num; /* node inode number*/
407 unsigned int meta_ino_num; /* meta inode number*/
408 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
409 unsigned int blocks_per_seg; /* blocks per segment */
410 unsigned int segs_per_sec; /* segments per section */
411 unsigned int secs_per_zone; /* sections per zone */
412 unsigned int total_sections; /* total section count */
413 unsigned int total_node_count; /* total node block count */
414 unsigned int total_valid_node_count; /* valid node block count */
415 unsigned int total_valid_inode_count; /* valid inode count */
416 int active_logs; /* # of active logs */
417
418 block_t user_block_count; /* # of user blocks */
419 block_t total_valid_block_count; /* # of valid blocks */
420 block_t alloc_valid_block_count; /* # of allocated blocks */
421 block_t last_valid_block_count; /* for recovery */
422 u32 s_next_generation; /* for NFS support */
423 atomic_t nr_pages[NR_COUNT_TYPE]; /* # of pages, see count_type */
424
425 struct f2fs_mount_info mount_opt; /* mount options */
426
427 /* for cleaning operations */
428 struct mutex gc_mutex; /* mutex for GC */
429 struct f2fs_gc_kthread *gc_thread; /* GC thread */
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900430 unsigned int cur_victim_sec; /* current victim section num */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900431
432 /*
433 * for stat information.
434 * one is for the LFS mode, and the other is for the SSR mode.
435 */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900436#ifdef CONFIG_F2FS_STAT_FS
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900437 struct f2fs_stat_info *stat_info; /* FS status information */
438 unsigned int segment_count[2]; /* # of allocated segments */
439 unsigned int block_count[2]; /* # of allocated blocks */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900440 int total_hit_ext, read_hit_ext; /* extent cache hit ratio */
441 int bg_gc; /* background gc calls */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900442 unsigned int n_dirty_dirs; /* # of dir inodes */
443#endif
444 unsigned int last_victim[2]; /* last victim segment # */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900445 spinlock_t stat_lock; /* lock for stat operations */
Namjae Jeonb59d0ba2013-08-04 23:09:40 +0900446
447 /* For sysfs suppport */
448 struct kobject s_kobj;
449 struct completion s_kobj_unregister;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900450};
451
452/*
453 * Inline functions
454 */
455static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
456{
457 return container_of(inode, struct f2fs_inode_info, vfs_inode);
458}
459
460static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
461{
462 return sb->s_fs_info;
463}
464
465static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
466{
467 return (struct f2fs_super_block *)(sbi->raw_super);
468}
469
470static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
471{
472 return (struct f2fs_checkpoint *)(sbi->ckpt);
473}
474
Gu Zheng45590712013-07-15 17:57:38 +0800475static inline struct f2fs_node *F2FS_NODE(struct page *page)
476{
477 return (struct f2fs_node *)page_address(page);
478}
479
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900480static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
481{
482 return (struct f2fs_nm_info *)(sbi->nm_info);
483}
484
485static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
486{
487 return (struct f2fs_sm_info *)(sbi->sm_info);
488}
489
490static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
491{
492 return (struct sit_info *)(SM_I(sbi)->sit_info);
493}
494
495static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
496{
497 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
498}
499
500static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
501{
502 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
503}
504
505static inline void F2FS_SET_SB_DIRT(struct f2fs_sb_info *sbi)
506{
507 sbi->s_dirty = 1;
508}
509
510static inline void F2FS_RESET_SB_DIRT(struct f2fs_sb_info *sbi)
511{
512 sbi->s_dirty = 0;
513}
514
Jaegeuk Kimd71b5562013-08-09 15:03:21 +0900515static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
516{
517 return le64_to_cpu(cp->checkpoint_ver);
518}
519
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900520static inline bool is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
521{
522 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
523 return ckpt_flags & f;
524}
525
526static inline void set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
527{
528 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
529 ckpt_flags |= f;
530 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
531}
532
533static inline void clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
534{
535 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
536 ckpt_flags &= (~f);
537 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
538}
539
Gu Zhenge4795562013-09-27 18:08:30 +0800540static inline void f2fs_lock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900541{
Gu Zhenge4795562013-09-27 18:08:30 +0800542 down_read(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900543}
544
Gu Zhenge4795562013-09-27 18:08:30 +0800545static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900546{
Gu Zhenge4795562013-09-27 18:08:30 +0800547 up_read(&sbi->cp_rwsem);
Jaegeuk Kim39936832012-11-22 16:21:29 +0900548}
549
Gu Zhenge4795562013-09-27 18:08:30 +0800550static inline void f2fs_lock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +0900551{
Gu Zhenge4795562013-09-27 18:08:30 +0800552 down_write_nest_lock(&sbi->cp_rwsem, &sbi->cp_mutex);
Jaegeuk Kim39936832012-11-22 16:21:29 +0900553}
554
Gu Zhenge4795562013-09-27 18:08:30 +0800555static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +0900556{
Gu Zhenge4795562013-09-27 18:08:30 +0800557 up_write(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900558}
559
560/*
561 * Check whether the given nid is within node id range.
562 */
Namjae Jeon064e0822013-03-17 17:27:20 +0900563static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900564{
Namjae Jeon064e0822013-03-17 17:27:20 +0900565 WARN_ON((nid >= NM_I(sbi)->max_nid));
566 if (nid >= NM_I(sbi)->max_nid)
567 return -EINVAL;
568 return 0;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900569}
570
571#define F2FS_DEFAULT_ALLOCATED_BLOCKS 1
572
573/*
574 * Check whether the inode has blocks or not
575 */
576static inline int F2FS_HAS_BLOCKS(struct inode *inode)
577{
578 if (F2FS_I(inode)->i_xattr_nid)
579 return (inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1);
580 else
581 return (inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS);
582}
583
584static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi,
585 struct inode *inode, blkcnt_t count)
586{
587 block_t valid_block_count;
588
589 spin_lock(&sbi->stat_lock);
590 valid_block_count =
591 sbi->total_valid_block_count + (block_t)count;
592 if (valid_block_count > sbi->user_block_count) {
593 spin_unlock(&sbi->stat_lock);
594 return false;
595 }
596 inode->i_blocks += count;
597 sbi->total_valid_block_count = valid_block_count;
598 sbi->alloc_valid_block_count += (block_t)count;
599 spin_unlock(&sbi->stat_lock);
600 return true;
601}
602
603static inline int dec_valid_block_count(struct f2fs_sb_info *sbi,
604 struct inode *inode,
605 blkcnt_t count)
606{
607 spin_lock(&sbi->stat_lock);
Jaegeuk Kim5d56b672013-10-29 15:14:54 +0900608 f2fs_bug_on(sbi->total_valid_block_count < (block_t) count);
609 f2fs_bug_on(inode->i_blocks < count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900610 inode->i_blocks -= count;
611 sbi->total_valid_block_count -= (block_t)count;
612 spin_unlock(&sbi->stat_lock);
613 return 0;
614}
615
616static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
617{
618 atomic_inc(&sbi->nr_pages[count_type]);
619 F2FS_SET_SB_DIRT(sbi);
620}
621
622static inline void inode_inc_dirty_dents(struct inode *inode)
623{
624 atomic_inc(&F2FS_I(inode)->dirty_dents);
625}
626
627static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
628{
629 atomic_dec(&sbi->nr_pages[count_type]);
630}
631
632static inline void inode_dec_dirty_dents(struct inode *inode)
633{
634 atomic_dec(&F2FS_I(inode)->dirty_dents);
635}
636
637static inline int get_pages(struct f2fs_sb_info *sbi, int count_type)
638{
639 return atomic_read(&sbi->nr_pages[count_type]);
640}
641
Namjae Jeon5ac206c2013-02-02 23:52:59 +0900642static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
643{
644 unsigned int pages_per_sec = sbi->segs_per_sec *
645 (1 << sbi->log_blocks_per_seg);
646 return ((get_pages(sbi, block_type) + pages_per_sec - 1)
647 >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
648}
649
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900650static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
651{
652 block_t ret;
653 spin_lock(&sbi->stat_lock);
654 ret = sbi->total_valid_block_count;
655 spin_unlock(&sbi->stat_lock);
656 return ret;
657}
658
659static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
660{
661 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
662
663 /* return NAT or SIT bitmap */
664 if (flag == NAT_BITMAP)
665 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
666 else if (flag == SIT_BITMAP)
667 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
668
669 return 0;
670}
671
672static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
673{
674 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900675 int offset = (flag == NAT_BITMAP) ?
676 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900677 return &ckpt->sit_nat_version_bitmap + offset;
678}
679
680static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
681{
682 block_t start_addr;
683 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kimd71b5562013-08-09 15:03:21 +0900684 unsigned long long ckpt_version = cur_cp_version(ckpt);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900685
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900686 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900687
688 /*
689 * odd numbered checkpoint should at cp segment 0
690 * and even segent must be at cp segment 1
691 */
692 if (!(ckpt_version & 1))
693 start_addr += sbi->blocks_per_seg;
694
695 return start_addr;
696}
697
698static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
699{
700 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
701}
702
703static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi,
704 struct inode *inode,
705 unsigned int count)
706{
707 block_t valid_block_count;
708 unsigned int valid_node_count;
709
710 spin_lock(&sbi->stat_lock);
711
712 valid_block_count = sbi->total_valid_block_count + (block_t)count;
713 sbi->alloc_valid_block_count += (block_t)count;
714 valid_node_count = sbi->total_valid_node_count + count;
715
716 if (valid_block_count > sbi->user_block_count) {
717 spin_unlock(&sbi->stat_lock);
718 return false;
719 }
720
721 if (valid_node_count > sbi->total_node_count) {
722 spin_unlock(&sbi->stat_lock);
723 return false;
724 }
725
726 if (inode)
727 inode->i_blocks += count;
728 sbi->total_valid_node_count = valid_node_count;
729 sbi->total_valid_block_count = valid_block_count;
730 spin_unlock(&sbi->stat_lock);
731
732 return true;
733}
734
735static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
736 struct inode *inode,
737 unsigned int count)
738{
739 spin_lock(&sbi->stat_lock);
740
Jaegeuk Kim5d56b672013-10-29 15:14:54 +0900741 f2fs_bug_on(sbi->total_valid_block_count < count);
742 f2fs_bug_on(sbi->total_valid_node_count < count);
743 f2fs_bug_on(inode->i_blocks < count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900744
745 inode->i_blocks -= count;
746 sbi->total_valid_node_count -= count;
747 sbi->total_valid_block_count -= (block_t)count;
748
749 spin_unlock(&sbi->stat_lock);
750}
751
752static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
753{
754 unsigned int ret;
755 spin_lock(&sbi->stat_lock);
756 ret = sbi->total_valid_node_count;
757 spin_unlock(&sbi->stat_lock);
758 return ret;
759}
760
761static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
762{
763 spin_lock(&sbi->stat_lock);
Jaegeuk Kim5d56b672013-10-29 15:14:54 +0900764 f2fs_bug_on(sbi->total_valid_inode_count == sbi->total_node_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900765 sbi->total_valid_inode_count++;
766 spin_unlock(&sbi->stat_lock);
767}
768
769static inline int dec_valid_inode_count(struct f2fs_sb_info *sbi)
770{
771 spin_lock(&sbi->stat_lock);
Jaegeuk Kim5d56b672013-10-29 15:14:54 +0900772 f2fs_bug_on(!sbi->total_valid_inode_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900773 sbi->total_valid_inode_count--;
774 spin_unlock(&sbi->stat_lock);
775 return 0;
776}
777
778static inline unsigned int valid_inode_count(struct f2fs_sb_info *sbi)
779{
780 unsigned int ret;
781 spin_lock(&sbi->stat_lock);
782 ret = sbi->total_valid_inode_count;
783 spin_unlock(&sbi->stat_lock);
784 return ret;
785}
786
787static inline void f2fs_put_page(struct page *page, int unlock)
788{
789 if (!page || IS_ERR(page))
790 return;
791
792 if (unlock) {
Jaegeuk Kim5d56b672013-10-29 15:14:54 +0900793 f2fs_bug_on(!PageLocked(page));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900794 unlock_page(page);
795 }
796 page_cache_release(page);
797}
798
799static inline void f2fs_put_dnode(struct dnode_of_data *dn)
800{
801 if (dn->node_page)
802 f2fs_put_page(dn->node_page, 1);
803 if (dn->inode_page && dn->node_page != dn->inode_page)
804 f2fs_put_page(dn->inode_page, 0);
805 dn->node_page = NULL;
806 dn->inode_page = NULL;
807}
808
809static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
810 size_t size, void (*ctor)(void *))
811{
812 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, ctor);
813}
814
Gu Zheng7bd59382013-10-22 14:52:26 +0800815static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep,
816 gfp_t flags)
817{
818 void *entry;
819retry:
820 entry = kmem_cache_alloc(cachep, flags);
821 if (!entry) {
822 cond_resched();
823 goto retry;
824 }
825
826 return entry;
827}
828
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900829#define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
830
831static inline bool IS_INODE(struct page *page)
832{
Gu Zheng45590712013-07-15 17:57:38 +0800833 struct f2fs_node *p = F2FS_NODE(page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900834 return RAW_IS_INODE(p);
835}
836
837static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
838{
839 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
840}
841
842static inline block_t datablock_addr(struct page *node_page,
843 unsigned int offset)
844{
845 struct f2fs_node *raw_node;
846 __le32 *addr_array;
Gu Zheng45590712013-07-15 17:57:38 +0800847 raw_node = F2FS_NODE(node_page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900848 addr_array = blkaddr_in_node(raw_node);
849 return le32_to_cpu(addr_array[offset]);
850}
851
852static inline int f2fs_test_bit(unsigned int nr, char *addr)
853{
854 int mask;
855
856 addr += (nr >> 3);
857 mask = 1 << (7 - (nr & 0x07));
858 return mask & *addr;
859}
860
861static inline int f2fs_set_bit(unsigned int nr, char *addr)
862{
863 int mask;
864 int ret;
865
866 addr += (nr >> 3);
867 mask = 1 << (7 - (nr & 0x07));
868 ret = mask & *addr;
869 *addr |= mask;
870 return ret;
871}
872
873static inline int f2fs_clear_bit(unsigned int nr, char *addr)
874{
875 int mask;
876 int ret;
877
878 addr += (nr >> 3);
879 mask = 1 << (7 - (nr & 0x07));
880 ret = mask & *addr;
881 *addr &= ~mask;
882 return ret;
883}
884
885/* used for f2fs_inode_info->flags */
886enum {
887 FI_NEW_INODE, /* indicate newly allocated inode */
Jaegeuk Kimb3783872013-06-10 09:17:01 +0900888 FI_DIRTY_INODE, /* indicate inode is dirty or not */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900889 FI_INC_LINK, /* need to increment i_nlink */
890 FI_ACL_MODE, /* indicate acl mode */
891 FI_NO_ALLOC, /* should not allocate any blocks */
Jaegeuk Kim699489b2013-06-07 22:08:23 +0900892 FI_UPDATE_DIR, /* should update inode block for consistency */
Jaegeuk Kim74d0b912013-05-15 16:40:02 +0900893 FI_DELAY_IPUT, /* used for the recovery */
Jaegeuk Kimc11abd12013-11-19 10:41:54 +0900894 FI_NO_EXTENT, /* not to use the extent cache */
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900895 FI_INLINE_XATTR, /* used for inline xattr */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900896};
897
898static inline void set_inode_flag(struct f2fs_inode_info *fi, int flag)
899{
900 set_bit(flag, &fi->flags);
901}
902
903static inline int is_inode_flag_set(struct f2fs_inode_info *fi, int flag)
904{
905 return test_bit(flag, &fi->flags);
906}
907
908static inline void clear_inode_flag(struct f2fs_inode_info *fi, int flag)
909{
910 clear_bit(flag, &fi->flags);
911}
912
913static inline void set_acl_inode(struct f2fs_inode_info *fi, umode_t mode)
914{
915 fi->i_acl_mode = mode;
916 set_inode_flag(fi, FI_ACL_MODE);
917}
918
919static inline int cond_clear_inode_flag(struct f2fs_inode_info *fi, int flag)
920{
921 if (is_inode_flag_set(fi, FI_ACL_MODE)) {
922 clear_inode_flag(fi, FI_ACL_MODE);
923 return 1;
924 }
925 return 0;
926}
927
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900928static inline void get_inline_info(struct f2fs_inode_info *fi,
929 struct f2fs_inode *ri)
930{
931 if (ri->i_inline & F2FS_INLINE_XATTR)
932 set_inode_flag(fi, FI_INLINE_XATTR);
933}
934
935static inline void set_raw_inline(struct f2fs_inode_info *fi,
936 struct f2fs_inode *ri)
937{
938 ri->i_inline = 0;
939
940 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
941 ri->i_inline |= F2FS_INLINE_XATTR;
942}
943
Jaegeuk Kimde936532013-08-12 21:08:03 +0900944static inline unsigned int addrs_per_inode(struct f2fs_inode_info *fi)
945{
946 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
947 return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS;
948 return DEF_ADDRS_PER_INODE;
949}
950
Jaegeuk Kim65985d92013-08-14 21:57:27 +0900951static inline void *inline_xattr_addr(struct page *page)
952{
953 struct f2fs_inode *ri;
954 ri = (struct f2fs_inode *)page_address(page);
955 return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE -
956 F2FS_INLINE_XATTR_ADDRS]);
957}
958
959static inline int inline_xattr_size(struct inode *inode)
960{
961 if (is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR))
962 return F2FS_INLINE_XATTR_ADDRS << 2;
963 else
964 return 0;
965}
966
Jaegeuk Kim77888c12013-05-20 20:28:47 +0900967static inline int f2fs_readonly(struct super_block *sb)
968{
969 return sb->s_flags & MS_RDONLY;
970}
971
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900972/*
973 * file.c
974 */
975int f2fs_sync_file(struct file *, loff_t, loff_t, int);
976void truncate_data_blocks(struct dnode_of_data *);
977void f2fs_truncate(struct inode *);
Jaegeuk Kim2d4d9fb52013-06-07 16:33:07 +0900978int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900979int f2fs_setattr(struct dentry *, struct iattr *);
980int truncate_hole(struct inode *, pgoff_t, pgoff_t);
Jaegeuk Kimb292dcab2013-05-22 08:02:02 +0900981int truncate_data_blocks_range(struct dnode_of_data *, int);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900982long f2fs_ioctl(struct file *, unsigned int, unsigned long);
Namjae Jeone9750822013-02-04 23:41:41 +0900983long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900984
985/*
986 * inode.c
987 */
988void f2fs_set_inode_flags(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900989struct inode *f2fs_iget(struct super_block *, unsigned long);
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900990int try_to_free_nats(struct f2fs_sb_info *, int);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900991void update_inode(struct inode *, struct page *);
Jaegeuk Kim39936832012-11-22 16:21:29 +0900992int update_inode_page(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900993int f2fs_write_inode(struct inode *, struct writeback_control *);
994void f2fs_evict_inode(struct inode *);
995
996/*
997 * namei.c
998 */
999struct dentry *f2fs_get_parent(struct dentry *child);
1000
1001/*
1002 * dir.c
1003 */
1004struct f2fs_dir_entry *f2fs_find_entry(struct inode *, struct qstr *,
1005 struct page **);
1006struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **);
1007ino_t f2fs_inode_by_name(struct inode *, struct qstr *);
1008void f2fs_set_link(struct inode *, struct f2fs_dir_entry *,
1009 struct page *, struct inode *);
Jaegeuk Kim1cd14ca2013-07-18 18:02:31 +09001010int update_dent_inode(struct inode *, const struct qstr *);
Al Virob7f7a5e2013-01-25 16:15:43 -05001011int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001012void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *);
1013int f2fs_make_empty(struct inode *, struct inode *);
1014bool f2fs_empty_dir(struct inode *);
1015
Al Virob7f7a5e2013-01-25 16:15:43 -05001016static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
1017{
1018 return __f2fs_add_link(dentry->d_parent->d_inode, &dentry->d_name,
1019 inode);
1020}
1021
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001022/*
1023 * super.c
1024 */
1025int f2fs_sync_fs(struct super_block *, int);
Namjae Jeona07ef782012-12-30 14:52:05 +09001026extern __printf(3, 4)
1027void f2fs_msg(struct super_block *, const char *, const char *, ...);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001028
1029/*
1030 * hash.c
1031 */
Leon Romanovsky9836b8b2012-12-27 19:55:46 +02001032f2fs_hash_t f2fs_dentry_hash(const char *, size_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001033
1034/*
1035 * node.c
1036 */
1037struct dnode_of_data;
1038struct node_info;
1039
1040int is_checkpointed_node(struct f2fs_sb_info *, nid_t);
1041void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *);
1042int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int);
1043int truncate_inode_blocks(struct inode *, pgoff_t);
Jaegeuk Kim4f16fb02013-08-14 20:40:06 +09001044int truncate_xattr_node(struct inode *, struct page *);
Jaegeuk Kimcfe58f92013-10-31 14:57:01 +09001045int wait_on_node_pages_writeback(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001046int remove_inode_page(struct inode *);
Jaegeuk Kim44a83ff2013-05-20 10:10:29 +09001047struct page *new_inode_page(struct inode *, const struct qstr *);
Jaegeuk Kim8ae8f162013-06-03 19:46:19 +09001048struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001049void ra_node_page(struct f2fs_sb_info *, nid_t);
1050struct page *get_node_page(struct f2fs_sb_info *, pgoff_t);
1051struct page *get_node_page_ra(struct page *, int);
1052void sync_inode_page(struct dnode_of_data *);
1053int sync_node_pages(struct f2fs_sb_info *, nid_t, struct writeback_control *);
1054bool alloc_nid(struct f2fs_sb_info *, nid_t *);
1055void alloc_nid_done(struct f2fs_sb_info *, nid_t);
1056void alloc_nid_failed(struct f2fs_sb_info *, nid_t);
1057void recover_node_page(struct f2fs_sb_info *, struct page *,
1058 struct f2fs_summary *, struct node_info *, block_t);
1059int recover_inode_page(struct f2fs_sb_info *, struct page *);
1060int restore_node_summary(struct f2fs_sb_info *, unsigned int,
1061 struct f2fs_summary_block *);
1062void flush_nat_entries(struct f2fs_sb_info *);
1063int build_node_manager(struct f2fs_sb_info *);
1064void destroy_node_manager(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001065int __init create_node_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001066void destroy_node_manager_caches(void);
1067
1068/*
1069 * segment.c
1070 */
1071void f2fs_balance_fs(struct f2fs_sb_info *);
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +09001072void f2fs_balance_fs_bg(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001073void invalidate_blocks(struct f2fs_sb_info *, block_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001074void clear_prefree_segments(struct f2fs_sb_info *);
1075int npages_for_summary_flush(struct f2fs_sb_info *);
1076void allocate_new_segments(struct f2fs_sb_info *);
1077struct page *get_sum_page(struct f2fs_sb_info *, unsigned int);
Jaegeuk Kim3cd8a232012-12-10 09:26:05 +09001078struct bio *f2fs_bio_alloc(struct block_device *, int);
Jin Xua5694692013-08-05 20:02:04 +08001079void f2fs_submit_bio(struct f2fs_sb_info *, enum page_type, bool);
1080void f2fs_wait_on_page_writeback(struct page *, enum page_type, bool);
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001081void write_meta_page(struct f2fs_sb_info *, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001082void write_node_page(struct f2fs_sb_info *, struct page *, unsigned int,
1083 block_t, block_t *);
1084void write_data_page(struct inode *, struct page *, struct dnode_of_data*,
1085 block_t, block_t *);
1086void rewrite_data_page(struct f2fs_sb_info *, struct page *, block_t);
1087void recover_data_page(struct f2fs_sb_info *, struct page *,
1088 struct f2fs_summary *, block_t, block_t);
1089void rewrite_node_page(struct f2fs_sb_info *, struct page *,
1090 struct f2fs_summary *, block_t, block_t);
1091void write_data_summaries(struct f2fs_sb_info *, block_t);
1092void write_node_summaries(struct f2fs_sb_info *, block_t);
1093int lookup_journal_in_cursum(struct f2fs_summary_block *,
1094 int, unsigned int, int);
1095void flush_sit_entries(struct f2fs_sb_info *);
1096int build_segment_manager(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001097void destroy_segment_manager(struct f2fs_sb_info *);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09001098int __init create_segment_manager_caches(void);
1099void destroy_segment_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001100
1101/*
1102 * checkpoint.c
1103 */
1104struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t);
1105struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t);
1106long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long);
Jaegeuk Kimcbd56e72013-07-30 11:36:53 +09001107int acquire_orphan_inode(struct f2fs_sb_info *);
1108void release_orphan_inode(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001109void add_orphan_inode(struct f2fs_sb_info *, nid_t);
1110void remove_orphan_inode(struct f2fs_sb_info *, nid_t);
1111int recover_orphan_inodes(struct f2fs_sb_info *);
1112int get_valid_checkpoint(struct f2fs_sb_info *);
1113void set_dirty_dir_page(struct inode *, struct page *);
Jaegeuk Kim5deb8262013-06-05 17:42:45 +09001114void add_dirty_dir_inode(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001115void remove_dirty_dir_inode(struct inode *);
Jaegeuk Kim74d0b912013-05-15 16:40:02 +09001116struct inode *check_dirty_dir_inode(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001117void sync_dirty_dir_inodes(struct f2fs_sb_info *);
Jaegeuk Kim43727522013-02-04 15:11:17 +09001118void write_checkpoint(struct f2fs_sb_info *, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001119void init_orphan_info(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001120int __init create_checkpoint_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001121void destroy_checkpoint_caches(void);
1122
1123/*
1124 * data.c
1125 */
1126int reserve_new_block(struct dnode_of_data *);
1127void update_extent_cache(block_t, struct dnode_of_data *);
Jaegeuk Kimc718379b2013-04-24 13:19:56 +09001128struct page *find_data_page(struct inode *, pgoff_t, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001129struct page *get_lock_data_page(struct inode *, pgoff_t);
Jaegeuk Kim64aa7ed2013-05-20 09:55:50 +09001130struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001131int f2fs_readpage(struct f2fs_sb_info *, struct page *, block_t, int);
1132int do_write_data_page(struct page *);
1133
1134/*
1135 * gc.c
1136 */
1137int start_gc_thread(struct f2fs_sb_info *);
1138void stop_gc_thread(struct f2fs_sb_info *);
Jaegeuk Kimde936532013-08-12 21:08:03 +09001139block_t start_bidx_of_node(unsigned int, struct f2fs_inode_info *);
Jaegeuk Kim408e9372013-01-03 17:55:52 +09001140int f2fs_gc(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001141void build_gc_manager(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001142int __init create_gc_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001143void destroy_gc_caches(void);
1144
1145/*
1146 * recovery.c
1147 */
Jaegeuk Kim6ead1142013-03-20 19:01:06 +09001148int recover_fsync_data(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001149bool space_for_roll_forward(struct f2fs_sb_info *);
1150
1151/*
1152 * debug.c
1153 */
1154#ifdef CONFIG_F2FS_STAT_FS
1155struct f2fs_stat_info {
1156 struct list_head stat_list;
1157 struct f2fs_sb_info *sbi;
1158 struct mutex stat_lock;
1159 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
1160 int main_area_segs, main_area_sections, main_area_zones;
1161 int hit_ext, total_ext;
1162 int ndirty_node, ndirty_dent, ndirty_dirs, ndirty_meta;
1163 int nats, sits, fnids;
1164 int total_count, utilization;
1165 int bg_gc;
1166 unsigned int valid_count, valid_node_count, valid_inode_count;
1167 unsigned int bimodal, avg_vblocks;
1168 int util_free, util_valid, util_invalid;
1169 int rsvd_segs, overp_segs;
1170 int dirty_count, node_pages, meta_pages;
1171 int prefree_count, call_count;
1172 int tot_segs, node_segs, data_segs, free_segs, free_secs;
1173 int tot_blks, data_blks, node_blks;
1174 int curseg[NR_CURSEG_TYPE];
1175 int cursec[NR_CURSEG_TYPE];
1176 int curzone[NR_CURSEG_TYPE];
1177
1178 unsigned int segment_count[2];
1179 unsigned int block_count[2];
1180 unsigned base_mem, cache_mem;
1181};
1182
Gu Zheng963d4f72013-07-12 14:47:11 +08001183static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
1184{
1185 return (struct f2fs_stat_info*)sbi->stat_info;
1186}
1187
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001188#define stat_inc_call_count(si) ((si)->call_count++)
1189#define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++)
1190#define stat_inc_dirty_dir(sbi) ((sbi)->n_dirty_dirs++)
1191#define stat_dec_dirty_dir(sbi) ((sbi)->n_dirty_dirs--)
1192#define stat_inc_total_hit(sb) ((F2FS_SB(sb))->total_hit_ext++)
1193#define stat_inc_read_hit(sb) ((F2FS_SB(sb))->read_hit_ext++)
1194#define stat_inc_seg_type(sbi, curseg) \
1195 ((sbi)->segment_count[(curseg)->alloc_type]++)
1196#define stat_inc_block_count(sbi, curseg) \
1197 ((sbi)->block_count[(curseg)->alloc_type]++)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001198
1199#define stat_inc_seg_count(sbi, type) \
1200 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001201 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001202 (si)->tot_segs++; \
1203 if (type == SUM_TYPE_DATA) \
1204 si->data_segs++; \
1205 else \
1206 si->node_segs++; \
1207 } while (0)
1208
1209#define stat_inc_tot_blk_count(si, blks) \
1210 (si->tot_blks += (blks))
1211
1212#define stat_inc_data_blk_count(sbi, blks) \
1213 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001214 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001215 stat_inc_tot_blk_count(si, blks); \
1216 si->data_blks += (blks); \
1217 } while (0)
1218
1219#define stat_inc_node_blk_count(sbi, blks) \
1220 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001221 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001222 stat_inc_tot_blk_count(si, blks); \
1223 si->node_blks += (blks); \
1224 } while (0)
1225
1226int f2fs_build_stats(struct f2fs_sb_info *);
1227void f2fs_destroy_stats(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001228void __init f2fs_create_root_stats(void);
Namjae Jeon4589d252013-01-15 19:58:47 +09001229void f2fs_destroy_root_stats(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001230#else
1231#define stat_inc_call_count(si)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001232#define stat_inc_bggc_count(si)
1233#define stat_inc_dirty_dir(sbi)
1234#define stat_dec_dirty_dir(sbi)
1235#define stat_inc_total_hit(sb)
1236#define stat_inc_read_hit(sb)
1237#define stat_inc_seg_type(sbi, curseg)
1238#define stat_inc_block_count(sbi, curseg)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001239#define stat_inc_seg_count(si, type)
1240#define stat_inc_tot_blk_count(si, blks)
1241#define stat_inc_data_blk_count(si, blks)
1242#define stat_inc_node_blk_count(sbi, blks)
1243
1244static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
1245static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001246static inline void __init f2fs_create_root_stats(void) { }
Namjae Jeon4589d252013-01-15 19:58:47 +09001247static inline void f2fs_destroy_root_stats(void) { }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001248#endif
1249
1250extern const struct file_operations f2fs_dir_operations;
1251extern const struct file_operations f2fs_file_operations;
1252extern const struct inode_operations f2fs_file_inode_operations;
1253extern const struct address_space_operations f2fs_dblock_aops;
1254extern const struct address_space_operations f2fs_node_aops;
1255extern const struct address_space_operations f2fs_meta_aops;
1256extern const struct inode_operations f2fs_dir_inode_operations;
1257extern const struct inode_operations f2fs_symlink_inode_operations;
1258extern const struct inode_operations f2fs_special_inode_operations;
1259#endif