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