blob: 6dff777cd94a8f20e264723289ece8d46a65ed47 [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
23/*
24 * For mount options
25 */
26#define F2FS_MOUNT_BG_GC 0x00000001
27#define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002
28#define F2FS_MOUNT_DISCARD 0x00000004
29#define F2FS_MOUNT_NOHEAP 0x00000008
30#define F2FS_MOUNT_XATTR_USER 0x00000010
31#define F2FS_MOUNT_POSIX_ACL 0x00000020
32#define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040
Jaegeuk Kim444c5802013-08-08 15:16:22 +090033#define F2FS_MOUNT_INLINE_XATTR 0x00000080
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090034
35#define clear_opt(sbi, option) (sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
36#define set_opt(sbi, option) (sbi->mount_opt.opt |= F2FS_MOUNT_##option)
37#define test_opt(sbi, option) (sbi->mount_opt.opt & F2FS_MOUNT_##option)
38
39#define ver_after(a, b) (typecheck(unsigned long long, a) && \
40 typecheck(unsigned long long, b) && \
41 ((long long)((a) - (b)) > 0))
42
Jaegeuk Kima9841c42013-05-24 12:41:04 +090043typedef u32 block_t; /*
44 * should not change u32, since it is the on-disk block
45 * address format, __le32.
46 */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090047typedef u32 nid_t;
48
49struct f2fs_mount_info {
50 unsigned int opt;
51};
52
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090053#define CRCPOLY_LE 0xedb88320
54
55static inline __u32 f2fs_crc32(void *buf, size_t len)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090056{
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090057 unsigned char *p = (unsigned char *)buf;
58 __u32 crc = F2FS_SUPER_MAGIC;
59 int i;
60
61 while (len--) {
62 crc ^= *p++;
63 for (i = 0; i < 8; i++)
64 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
65 }
66 return crc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090067}
68
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090069static inline bool f2fs_crc_valid(__u32 blk_crc, void *buf, size_t buf_size)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090070{
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090071 return f2fs_crc32(buf, buf_size) == blk_crc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090072}
73
74/*
75 * For checkpoint manager
76 */
77enum {
78 NAT_BITMAP,
79 SIT_BITMAP
80};
81
82/* for the list of orphan inodes */
83struct orphan_inode_entry {
84 struct list_head list; /* list head */
85 nid_t ino; /* inode number */
86};
87
88/* for the list of directory inodes */
89struct dir_inode_entry {
90 struct list_head list; /* list head */
91 struct inode *inode; /* vfs inode pointer */
92};
93
94/* for the list of fsync inodes, used only during recovery */
95struct fsync_inode_entry {
96 struct list_head list; /* list head */
97 struct inode *inode; /* vfs inode pointer */
98 block_t blkaddr; /* block address locating the last inode */
99};
100
101#define nats_in_cursum(sum) (le16_to_cpu(sum->n_nats))
102#define sits_in_cursum(sum) (le16_to_cpu(sum->n_sits))
103
104#define nat_in_journal(sum, i) (sum->nat_j.entries[i].ne)
105#define nid_in_journal(sum, i) (sum->nat_j.entries[i].nid)
106#define sit_in_journal(sum, i) (sum->sit_j.entries[i].se)
107#define segno_in_journal(sum, i) (sum->sit_j.entries[i].segno)
108
109static inline int update_nats_in_cursum(struct f2fs_summary_block *rs, int i)
110{
111 int before = nats_in_cursum(rs);
112 rs->n_nats = cpu_to_le16(before + i);
113 return before;
114}
115
116static inline int update_sits_in_cursum(struct f2fs_summary_block *rs, int i)
117{
118 int before = sits_in_cursum(rs);
119 rs->n_sits = cpu_to_le16(before + i);
120 return before;
121}
122
123/*
Namjae Jeone9750822013-02-04 23:41:41 +0900124 * ioctl commands
125 */
126#define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS
127#define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS
128
129#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
130/*
131 * ioctl commands in 32 bit emulation
132 */
133#define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS
134#define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS
135#endif
136
137/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900138 * For INODE and NODE manager
139 */
Jaegeuk Kimdbe6a5f2013-08-09 08:14:06 +0900140/*
141 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
142 * as its node offset to distinguish from index node blocks.
143 * But some bits are used to mark the node block.
144 */
145#define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \
146 >> OFFSET_BIT_SHIFT)
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900147enum {
148 ALLOC_NODE, /* allocate a new node page if needed */
149 LOOKUP_NODE, /* look up a node without readahead */
150 LOOKUP_NODE_RA, /*
151 * look up a node with readahead called
152 * by get_datablock_ro.
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900153 */
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900154};
155
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900156#define F2FS_LINK_MAX 32000 /* maximum link count per file */
157
158/* for in-memory extent cache entry */
159struct extent_info {
160 rwlock_t ext_lock; /* rwlock for consistency */
161 unsigned int fofs; /* start offset in a file */
162 u32 blk_addr; /* start block address of the extent */
Masanari Iida111d2492013-03-19 08:03:35 +0900163 unsigned int len; /* length of the extent */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900164};
165
166/*
167 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
168 */
169#define FADVISE_COLD_BIT 0x01
Jaegeuk Kim354a3392013-06-14 08:52:35 +0900170#define FADVISE_LOST_PINO_BIT 0x02
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900171
172struct f2fs_inode_info {
173 struct inode vfs_inode; /* serve a vfs inode */
174 unsigned long i_flags; /* keep an inode flags for ioctl */
175 unsigned char i_advise; /* use to give file attribute hints */
176 unsigned int i_current_depth; /* use only in directory structure */
Jaegeuk Kim6666e6a2012-12-10 17:52:48 +0900177 unsigned int i_pino; /* parent inode number */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900178 umode_t i_acl_mode; /* keep file acl mode temporarily */
179
180 /* Use below internally in f2fs*/
181 unsigned long flags; /* use to pass per-file flags */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900182 atomic_t dirty_dents; /* # of dirty dentry pages */
183 f2fs_hash_t chash; /* hash value of given file name */
184 unsigned int clevel; /* maximum level of given file name */
185 nid_t i_xattr_nid; /* node id that contains xattrs */
Jaegeuk Kime518ff82013-08-09 14:46:15 +0900186 unsigned long long xattr_ver; /* cp version of xattr modification */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900187 struct extent_info ext; /* in-memory extent cache entry */
188};
189
190static inline void get_extent_info(struct extent_info *ext,
191 struct f2fs_extent i_ext)
192{
193 write_lock(&ext->ext_lock);
194 ext->fofs = le32_to_cpu(i_ext.fofs);
195 ext->blk_addr = le32_to_cpu(i_ext.blk_addr);
196 ext->len = le32_to_cpu(i_ext.len);
197 write_unlock(&ext->ext_lock);
198}
199
200static inline void set_raw_extent(struct extent_info *ext,
201 struct f2fs_extent *i_ext)
202{
203 read_lock(&ext->ext_lock);
204 i_ext->fofs = cpu_to_le32(ext->fofs);
205 i_ext->blk_addr = cpu_to_le32(ext->blk_addr);
206 i_ext->len = cpu_to_le32(ext->len);
207 read_unlock(&ext->ext_lock);
208}
209
210struct f2fs_nm_info {
211 block_t nat_blkaddr; /* base disk address of NAT */
212 nid_t max_nid; /* maximum possible node ids */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900213 nid_t next_scan_nid; /* the next nid to be scanned */
214
215 /* NAT cache management */
216 struct radix_tree_root nat_root;/* root of the nat entry cache */
217 rwlock_t nat_tree_lock; /* protect nat_tree_lock */
218 unsigned int nat_cnt; /* the # of cached nat entries */
219 struct list_head nat_entries; /* cached nat entry list (clean) */
220 struct list_head dirty_nat_entries; /* cached nat entry list (dirty) */
221
222 /* free node ids management */
223 struct list_head free_nid_list; /* a list for free nids */
224 spinlock_t free_nid_list_lock; /* protect free nid list */
225 unsigned int fcnt; /* the number of free node id */
226 struct mutex build_lock; /* lock for build free nids */
227
228 /* for checkpoint */
229 char *nat_bitmap; /* NAT bitmap pointer */
230 int bitmap_size; /* bitmap size */
231};
232
233/*
234 * this structure is used as one of function parameters.
235 * all the information are dedicated to a given direct node block determined
236 * by the data offset in a file.
237 */
238struct dnode_of_data {
239 struct inode *inode; /* vfs inode pointer */
240 struct page *inode_page; /* its inode page, NULL is possible */
241 struct page *node_page; /* cached direct node page */
242 nid_t nid; /* node id of the direct node block */
243 unsigned int ofs_in_node; /* data offset in the node page */
244 bool inode_page_locked; /* inode page is locked or not */
245 block_t data_blkaddr; /* block address of the node block */
246};
247
248static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
249 struct page *ipage, struct page *npage, nid_t nid)
250{
Jaegeuk Kimd66d1f72013-01-03 08:57:21 +0900251 memset(dn, 0, sizeof(*dn));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900252 dn->inode = inode;
253 dn->inode_page = ipage;
254 dn->node_page = npage;
255 dn->nid = nid;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900256}
257
258/*
259 * For SIT manager
260 *
261 * By default, there are 6 active log areas across the whole main area.
262 * When considering hot and cold data separation to reduce cleaning overhead,
263 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
264 * respectively.
265 * In the current design, you should not change the numbers intentionally.
266 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
267 * logs individually according to the underlying devices. (default: 6)
268 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
269 * data and 8 for node logs.
270 */
271#define NR_CURSEG_DATA_TYPE (3)
272#define NR_CURSEG_NODE_TYPE (3)
273#define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
274
275enum {
276 CURSEG_HOT_DATA = 0, /* directory entry blocks */
277 CURSEG_WARM_DATA, /* data blocks */
278 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */
279 CURSEG_HOT_NODE, /* direct node blocks of directory files */
280 CURSEG_WARM_NODE, /* direct node blocks of normal files */
281 CURSEG_COLD_NODE, /* indirect node blocks */
282 NO_CHECK_TYPE
283};
284
285struct f2fs_sm_info {
286 struct sit_info *sit_info; /* whole segment information */
287 struct free_segmap_info *free_info; /* free segment information */
288 struct dirty_seglist_info *dirty_info; /* dirty segment information */
289 struct curseg_info *curseg_array; /* active segment information */
290
291 struct list_head wblist_head; /* list of under-writeback pages */
292 spinlock_t wblist_lock; /* lock for checkpoint */
293
294 block_t seg0_blkaddr; /* block address of 0'th segment */
295 block_t main_blkaddr; /* start block address of main area */
296 block_t ssa_blkaddr; /* start block address of SSA area */
297
298 unsigned int segment_count; /* total # of segments */
299 unsigned int main_segments; /* # of segments in main area */
300 unsigned int reserved_segments; /* # of reserved segments */
301 unsigned int ovp_segments; /* # of overprovision segments */
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +0900302
303 /* a threshold to reclaim prefree segments */
304 unsigned int rec_prefree_segments;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900305};
306
307/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900308 * For superblock
309 */
310/*
311 * COUNT_TYPE for monitoring
312 *
313 * f2fs monitors the number of several block types such as on-writeback,
314 * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
315 */
316enum count_type {
317 F2FS_WRITEBACK,
318 F2FS_DIRTY_DENTS,
319 F2FS_DIRTY_NODES,
320 F2FS_DIRTY_META,
321 NR_COUNT_TYPE,
322};
323
324/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900325 * The below are the page types of bios used in submti_bio().
326 * The available types are:
327 * DATA User data pages. It operates as async mode.
328 * NODE Node pages. It operates as async mode.
329 * META FS metadata pages such as SIT, NAT, CP.
330 * NR_PAGE_TYPE The number of page types.
331 * META_FLUSH Make sure the previous pages are written
332 * with waiting the bio's completion
333 * ... Only can be used with META.
334 */
335enum page_type {
336 DATA,
337 NODE,
338 META,
339 NR_PAGE_TYPE,
340 META_FLUSH,
341};
342
343struct f2fs_sb_info {
344 struct super_block *sb; /* pointer to VFS super block */
Jaegeuk Kim5e176d52013-06-28 12:47:01 +0900345 struct proc_dir_entry *s_proc; /* proc entry */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900346 struct buffer_head *raw_super_buf; /* buffer head of raw sb */
347 struct f2fs_super_block *raw_super; /* raw super block pointer */
348 int s_dirty; /* dirty flag for checkpoint */
349
350 /* for node-related operations */
351 struct f2fs_nm_info *nm_info; /* node manager */
352 struct inode *node_inode; /* cache node blocks */
353
354 /* for segment-related operations */
355 struct f2fs_sm_info *sm_info; /* segment manager */
356 struct bio *bio[NR_PAGE_TYPE]; /* bios to merge */
357 sector_t last_block_in_bio[NR_PAGE_TYPE]; /* last block number */
358 struct rw_semaphore bio_sem; /* IO semaphore */
359
360 /* for checkpoint */
361 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
362 struct inode *meta_inode; /* cache meta blocks */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900363 struct mutex cp_mutex; /* checkpoint procedure lock */
Gu Zhenge4795562013-09-27 18:08:30 +0800364 struct rw_semaphore cp_rwsem; /* blocking FS operations */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900365 struct mutex node_write; /* locking node writes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900366 struct mutex writepages; /* mutex for writepages() */
Haicheng Liaabe5132013-10-23 12:39:32 +0800367 bool por_doing; /* recovery is doing or not */
368 bool on_build_free_nids; /* build_free_nids is doing */
Gu Zhenge2340882013-10-14 18:45:56 +0800369 struct task_struct *cp_task; /* checkpoint task */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900370
371 /* for orphan inode management */
372 struct list_head orphan_inode_list; /* orphan inode list */
373 struct mutex orphan_inode_mutex; /* for orphan inode list */
374 unsigned int n_orphans; /* # of orphan inodes */
375
376 /* for directory inode management */
377 struct list_head dir_inode_list; /* dir inode list */
378 spinlock_t dir_inode_lock; /* for dir inode list lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900379
380 /* basic file system units */
381 unsigned int log_sectors_per_block; /* log2 sectors per block */
382 unsigned int log_blocksize; /* log2 block size */
383 unsigned int blocksize; /* block size */
384 unsigned int root_ino_num; /* root inode number*/
385 unsigned int node_ino_num; /* node inode number*/
386 unsigned int meta_ino_num; /* meta inode number*/
387 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
388 unsigned int blocks_per_seg; /* blocks per segment */
389 unsigned int segs_per_sec; /* segments per section */
390 unsigned int secs_per_zone; /* sections per zone */
391 unsigned int total_sections; /* total section count */
392 unsigned int total_node_count; /* total node block count */
393 unsigned int total_valid_node_count; /* valid node block count */
394 unsigned int total_valid_inode_count; /* valid inode count */
395 int active_logs; /* # of active logs */
396
397 block_t user_block_count; /* # of user blocks */
398 block_t total_valid_block_count; /* # of valid blocks */
399 block_t alloc_valid_block_count; /* # of allocated blocks */
400 block_t last_valid_block_count; /* for recovery */
401 u32 s_next_generation; /* for NFS support */
402 atomic_t nr_pages[NR_COUNT_TYPE]; /* # of pages, see count_type */
403
404 struct f2fs_mount_info mount_opt; /* mount options */
405
406 /* for cleaning operations */
407 struct mutex gc_mutex; /* mutex for GC */
408 struct f2fs_gc_kthread *gc_thread; /* GC thread */
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900409 unsigned int cur_victim_sec; /* current victim section num */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900410
411 /*
412 * for stat information.
413 * one is for the LFS mode, and the other is for the SSR mode.
414 */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900415#ifdef CONFIG_F2FS_STAT_FS
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900416 struct f2fs_stat_info *stat_info; /* FS status information */
417 unsigned int segment_count[2]; /* # of allocated segments */
418 unsigned int block_count[2]; /* # of allocated blocks */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900419 int total_hit_ext, read_hit_ext; /* extent cache hit ratio */
420 int bg_gc; /* background gc calls */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900421 unsigned int n_dirty_dirs; /* # of dir inodes */
422#endif
423 unsigned int last_victim[2]; /* last victim segment # */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900424 spinlock_t stat_lock; /* lock for stat operations */
Namjae Jeonb59d0ba2013-08-04 23:09:40 +0900425
426 /* For sysfs suppport */
427 struct kobject s_kobj;
428 struct completion s_kobj_unregister;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900429};
430
431/*
432 * Inline functions
433 */
434static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
435{
436 return container_of(inode, struct f2fs_inode_info, vfs_inode);
437}
438
439static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
440{
441 return sb->s_fs_info;
442}
443
444static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
445{
446 return (struct f2fs_super_block *)(sbi->raw_super);
447}
448
449static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
450{
451 return (struct f2fs_checkpoint *)(sbi->ckpt);
452}
453
Gu Zheng45590712013-07-15 17:57:38 +0800454static inline struct f2fs_node *F2FS_NODE(struct page *page)
455{
456 return (struct f2fs_node *)page_address(page);
457}
458
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900459static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
460{
461 return (struct f2fs_nm_info *)(sbi->nm_info);
462}
463
464static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
465{
466 return (struct f2fs_sm_info *)(sbi->sm_info);
467}
468
469static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
470{
471 return (struct sit_info *)(SM_I(sbi)->sit_info);
472}
473
474static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
475{
476 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
477}
478
479static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
480{
481 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
482}
483
484static inline void F2FS_SET_SB_DIRT(struct f2fs_sb_info *sbi)
485{
486 sbi->s_dirty = 1;
487}
488
489static inline void F2FS_RESET_SB_DIRT(struct f2fs_sb_info *sbi)
490{
491 sbi->s_dirty = 0;
492}
493
Jaegeuk Kimd71b5562013-08-09 15:03:21 +0900494static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
495{
496 return le64_to_cpu(cp->checkpoint_ver);
497}
498
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900499static inline bool is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
500{
501 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
502 return ckpt_flags & f;
503}
504
505static inline void set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
506{
507 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
508 ckpt_flags |= f;
509 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
510}
511
512static inline void clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
513{
514 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
515 ckpt_flags &= (~f);
516 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
517}
518
Gu Zhenge4795562013-09-27 18:08:30 +0800519static inline void f2fs_lock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900520{
Gu Zhenge4795562013-09-27 18:08:30 +0800521 down_read(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900522}
523
Gu Zhenge4795562013-09-27 18:08:30 +0800524static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900525{
Gu Zhenge4795562013-09-27 18:08:30 +0800526 up_read(&sbi->cp_rwsem);
Jaegeuk Kim39936832012-11-22 16:21:29 +0900527}
528
Gu Zhenge4795562013-09-27 18:08:30 +0800529static inline void f2fs_lock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +0900530{
Gu Zhenge4795562013-09-27 18:08:30 +0800531 down_write_nest_lock(&sbi->cp_rwsem, &sbi->cp_mutex);
Jaegeuk Kim39936832012-11-22 16:21:29 +0900532}
533
Gu Zhenge4795562013-09-27 18:08:30 +0800534static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +0900535{
Gu Zhenge4795562013-09-27 18:08:30 +0800536 up_write(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900537}
538
539/*
540 * Check whether the given nid is within node id range.
541 */
Namjae Jeon064e0822013-03-17 17:27:20 +0900542static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900543{
Namjae Jeon064e0822013-03-17 17:27:20 +0900544 WARN_ON((nid >= NM_I(sbi)->max_nid));
545 if (nid >= NM_I(sbi)->max_nid)
546 return -EINVAL;
547 return 0;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900548}
549
550#define F2FS_DEFAULT_ALLOCATED_BLOCKS 1
551
552/*
553 * Check whether the inode has blocks or not
554 */
555static inline int F2FS_HAS_BLOCKS(struct inode *inode)
556{
557 if (F2FS_I(inode)->i_xattr_nid)
558 return (inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1);
559 else
560 return (inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS);
561}
562
563static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi,
564 struct inode *inode, blkcnt_t count)
565{
566 block_t valid_block_count;
567
568 spin_lock(&sbi->stat_lock);
569 valid_block_count =
570 sbi->total_valid_block_count + (block_t)count;
571 if (valid_block_count > sbi->user_block_count) {
572 spin_unlock(&sbi->stat_lock);
573 return false;
574 }
575 inode->i_blocks += count;
576 sbi->total_valid_block_count = valid_block_count;
577 sbi->alloc_valid_block_count += (block_t)count;
578 spin_unlock(&sbi->stat_lock);
579 return true;
580}
581
582static inline int dec_valid_block_count(struct f2fs_sb_info *sbi,
583 struct inode *inode,
584 blkcnt_t count)
585{
586 spin_lock(&sbi->stat_lock);
587 BUG_ON(sbi->total_valid_block_count < (block_t) count);
588 BUG_ON(inode->i_blocks < count);
589 inode->i_blocks -= count;
590 sbi->total_valid_block_count -= (block_t)count;
591 spin_unlock(&sbi->stat_lock);
592 return 0;
593}
594
595static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
596{
597 atomic_inc(&sbi->nr_pages[count_type]);
598 F2FS_SET_SB_DIRT(sbi);
599}
600
601static inline void inode_inc_dirty_dents(struct inode *inode)
602{
603 atomic_inc(&F2FS_I(inode)->dirty_dents);
604}
605
606static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
607{
608 atomic_dec(&sbi->nr_pages[count_type]);
609}
610
611static inline void inode_dec_dirty_dents(struct inode *inode)
612{
613 atomic_dec(&F2FS_I(inode)->dirty_dents);
614}
615
616static inline int get_pages(struct f2fs_sb_info *sbi, int count_type)
617{
618 return atomic_read(&sbi->nr_pages[count_type]);
619}
620
Namjae Jeon5ac206c2013-02-02 23:52:59 +0900621static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
622{
623 unsigned int pages_per_sec = sbi->segs_per_sec *
624 (1 << sbi->log_blocks_per_seg);
625 return ((get_pages(sbi, block_type) + pages_per_sec - 1)
626 >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
627}
628
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900629static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
630{
631 block_t ret;
632 spin_lock(&sbi->stat_lock);
633 ret = sbi->total_valid_block_count;
634 spin_unlock(&sbi->stat_lock);
635 return ret;
636}
637
638static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
639{
640 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
641
642 /* return NAT or SIT bitmap */
643 if (flag == NAT_BITMAP)
644 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
645 else if (flag == SIT_BITMAP)
646 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
647
648 return 0;
649}
650
651static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
652{
653 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900654 int offset = (flag == NAT_BITMAP) ?
655 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900656 return &ckpt->sit_nat_version_bitmap + offset;
657}
658
659static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
660{
661 block_t start_addr;
662 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kimd71b5562013-08-09 15:03:21 +0900663 unsigned long long ckpt_version = cur_cp_version(ckpt);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900664
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900665 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900666
667 /*
668 * odd numbered checkpoint should at cp segment 0
669 * and even segent must be at cp segment 1
670 */
671 if (!(ckpt_version & 1))
672 start_addr += sbi->blocks_per_seg;
673
674 return start_addr;
675}
676
677static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
678{
679 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
680}
681
682static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi,
683 struct inode *inode,
684 unsigned int count)
685{
686 block_t valid_block_count;
687 unsigned int valid_node_count;
688
689 spin_lock(&sbi->stat_lock);
690
691 valid_block_count = sbi->total_valid_block_count + (block_t)count;
692 sbi->alloc_valid_block_count += (block_t)count;
693 valid_node_count = sbi->total_valid_node_count + count;
694
695 if (valid_block_count > sbi->user_block_count) {
696 spin_unlock(&sbi->stat_lock);
697 return false;
698 }
699
700 if (valid_node_count > sbi->total_node_count) {
701 spin_unlock(&sbi->stat_lock);
702 return false;
703 }
704
705 if (inode)
706 inode->i_blocks += count;
707 sbi->total_valid_node_count = valid_node_count;
708 sbi->total_valid_block_count = valid_block_count;
709 spin_unlock(&sbi->stat_lock);
710
711 return true;
712}
713
714static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
715 struct inode *inode,
716 unsigned int count)
717{
718 spin_lock(&sbi->stat_lock);
719
720 BUG_ON(sbi->total_valid_block_count < count);
721 BUG_ON(sbi->total_valid_node_count < count);
722 BUG_ON(inode->i_blocks < count);
723
724 inode->i_blocks -= count;
725 sbi->total_valid_node_count -= count;
726 sbi->total_valid_block_count -= (block_t)count;
727
728 spin_unlock(&sbi->stat_lock);
729}
730
731static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
732{
733 unsigned int ret;
734 spin_lock(&sbi->stat_lock);
735 ret = sbi->total_valid_node_count;
736 spin_unlock(&sbi->stat_lock);
737 return ret;
738}
739
740static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
741{
742 spin_lock(&sbi->stat_lock);
743 BUG_ON(sbi->total_valid_inode_count == sbi->total_node_count);
744 sbi->total_valid_inode_count++;
745 spin_unlock(&sbi->stat_lock);
746}
747
748static inline int dec_valid_inode_count(struct f2fs_sb_info *sbi)
749{
750 spin_lock(&sbi->stat_lock);
751 BUG_ON(!sbi->total_valid_inode_count);
752 sbi->total_valid_inode_count--;
753 spin_unlock(&sbi->stat_lock);
754 return 0;
755}
756
757static inline unsigned int valid_inode_count(struct f2fs_sb_info *sbi)
758{
759 unsigned int ret;
760 spin_lock(&sbi->stat_lock);
761 ret = sbi->total_valid_inode_count;
762 spin_unlock(&sbi->stat_lock);
763 return ret;
764}
765
766static inline void f2fs_put_page(struct page *page, int unlock)
767{
768 if (!page || IS_ERR(page))
769 return;
770
771 if (unlock) {
772 BUG_ON(!PageLocked(page));
773 unlock_page(page);
774 }
775 page_cache_release(page);
776}
777
778static inline void f2fs_put_dnode(struct dnode_of_data *dn)
779{
780 if (dn->node_page)
781 f2fs_put_page(dn->node_page, 1);
782 if (dn->inode_page && dn->node_page != dn->inode_page)
783 f2fs_put_page(dn->inode_page, 0);
784 dn->node_page = NULL;
785 dn->inode_page = NULL;
786}
787
788static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
789 size_t size, void (*ctor)(void *))
790{
791 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, ctor);
792}
793
Gu Zheng7bd59382013-10-22 14:52:26 +0800794static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep,
795 gfp_t flags)
796{
797 void *entry;
798retry:
799 entry = kmem_cache_alloc(cachep, flags);
800 if (!entry) {
801 cond_resched();
802 goto retry;
803 }
804
805 return entry;
806}
807
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900808#define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
809
810static inline bool IS_INODE(struct page *page)
811{
Gu Zheng45590712013-07-15 17:57:38 +0800812 struct f2fs_node *p = F2FS_NODE(page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900813 return RAW_IS_INODE(p);
814}
815
816static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
817{
818 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
819}
820
821static inline block_t datablock_addr(struct page *node_page,
822 unsigned int offset)
823{
824 struct f2fs_node *raw_node;
825 __le32 *addr_array;
Gu Zheng45590712013-07-15 17:57:38 +0800826 raw_node = F2FS_NODE(node_page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900827 addr_array = blkaddr_in_node(raw_node);
828 return le32_to_cpu(addr_array[offset]);
829}
830
831static inline int f2fs_test_bit(unsigned int nr, char *addr)
832{
833 int mask;
834
835 addr += (nr >> 3);
836 mask = 1 << (7 - (nr & 0x07));
837 return mask & *addr;
838}
839
840static inline int f2fs_set_bit(unsigned int nr, char *addr)
841{
842 int mask;
843 int ret;
844
845 addr += (nr >> 3);
846 mask = 1 << (7 - (nr & 0x07));
847 ret = mask & *addr;
848 *addr |= mask;
849 return ret;
850}
851
852static inline int f2fs_clear_bit(unsigned int nr, char *addr)
853{
854 int mask;
855 int ret;
856
857 addr += (nr >> 3);
858 mask = 1 << (7 - (nr & 0x07));
859 ret = mask & *addr;
860 *addr &= ~mask;
861 return ret;
862}
863
864/* used for f2fs_inode_info->flags */
865enum {
866 FI_NEW_INODE, /* indicate newly allocated inode */
Jaegeuk Kimb3783872013-06-10 09:17:01 +0900867 FI_DIRTY_INODE, /* indicate inode is dirty or not */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900868 FI_INC_LINK, /* need to increment i_nlink */
869 FI_ACL_MODE, /* indicate acl mode */
870 FI_NO_ALLOC, /* should not allocate any blocks */
Jaegeuk Kim699489b2013-06-07 22:08:23 +0900871 FI_UPDATE_DIR, /* should update inode block for consistency */
Jaegeuk Kim74d0b912013-05-15 16:40:02 +0900872 FI_DELAY_IPUT, /* used for the recovery */
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900873 FI_INLINE_XATTR, /* used for inline xattr */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900874};
875
876static inline void set_inode_flag(struct f2fs_inode_info *fi, int flag)
877{
878 set_bit(flag, &fi->flags);
879}
880
881static inline int is_inode_flag_set(struct f2fs_inode_info *fi, int flag)
882{
883 return test_bit(flag, &fi->flags);
884}
885
886static inline void clear_inode_flag(struct f2fs_inode_info *fi, int flag)
887{
888 clear_bit(flag, &fi->flags);
889}
890
891static inline void set_acl_inode(struct f2fs_inode_info *fi, umode_t mode)
892{
893 fi->i_acl_mode = mode;
894 set_inode_flag(fi, FI_ACL_MODE);
895}
896
897static inline int cond_clear_inode_flag(struct f2fs_inode_info *fi, int flag)
898{
899 if (is_inode_flag_set(fi, FI_ACL_MODE)) {
900 clear_inode_flag(fi, FI_ACL_MODE);
901 return 1;
902 }
903 return 0;
904}
905
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900906static inline void get_inline_info(struct f2fs_inode_info *fi,
907 struct f2fs_inode *ri)
908{
909 if (ri->i_inline & F2FS_INLINE_XATTR)
910 set_inode_flag(fi, FI_INLINE_XATTR);
911}
912
913static inline void set_raw_inline(struct f2fs_inode_info *fi,
914 struct f2fs_inode *ri)
915{
916 ri->i_inline = 0;
917
918 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
919 ri->i_inline |= F2FS_INLINE_XATTR;
920}
921
Jaegeuk Kimde936532013-08-12 21:08:03 +0900922static inline unsigned int addrs_per_inode(struct f2fs_inode_info *fi)
923{
924 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
925 return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS;
926 return DEF_ADDRS_PER_INODE;
927}
928
Jaegeuk Kim65985d92013-08-14 21:57:27 +0900929static inline void *inline_xattr_addr(struct page *page)
930{
931 struct f2fs_inode *ri;
932 ri = (struct f2fs_inode *)page_address(page);
933 return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE -
934 F2FS_INLINE_XATTR_ADDRS]);
935}
936
937static inline int inline_xattr_size(struct inode *inode)
938{
939 if (is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR))
940 return F2FS_INLINE_XATTR_ADDRS << 2;
941 else
942 return 0;
943}
944
Jaegeuk Kim77888c12013-05-20 20:28:47 +0900945static inline int f2fs_readonly(struct super_block *sb)
946{
947 return sb->s_flags & MS_RDONLY;
948}
949
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900950/*
951 * file.c
952 */
953int f2fs_sync_file(struct file *, loff_t, loff_t, int);
954void truncate_data_blocks(struct dnode_of_data *);
955void f2fs_truncate(struct inode *);
Jaegeuk Kim2d4d9fb52013-06-07 16:33:07 +0900956int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900957int f2fs_setattr(struct dentry *, struct iattr *);
958int truncate_hole(struct inode *, pgoff_t, pgoff_t);
Jaegeuk Kimb292dcab2013-05-22 08:02:02 +0900959int truncate_data_blocks_range(struct dnode_of_data *, int);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900960long f2fs_ioctl(struct file *, unsigned int, unsigned long);
Namjae Jeone9750822013-02-04 23:41:41 +0900961long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900962
963/*
964 * inode.c
965 */
966void f2fs_set_inode_flags(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900967struct inode *f2fs_iget(struct super_block *, unsigned long);
968void update_inode(struct inode *, struct page *);
Jaegeuk Kim39936832012-11-22 16:21:29 +0900969int update_inode_page(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900970int f2fs_write_inode(struct inode *, struct writeback_control *);
971void f2fs_evict_inode(struct inode *);
972
973/*
974 * namei.c
975 */
976struct dentry *f2fs_get_parent(struct dentry *child);
977
978/*
979 * dir.c
980 */
981struct f2fs_dir_entry *f2fs_find_entry(struct inode *, struct qstr *,
982 struct page **);
983struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **);
984ino_t f2fs_inode_by_name(struct inode *, struct qstr *);
985void f2fs_set_link(struct inode *, struct f2fs_dir_entry *,
986 struct page *, struct inode *);
Jaegeuk Kim1cd14ca2013-07-18 18:02:31 +0900987int update_dent_inode(struct inode *, const struct qstr *);
Al Virob7f7a5e2013-01-25 16:15:43 -0500988int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900989void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *);
990int f2fs_make_empty(struct inode *, struct inode *);
991bool f2fs_empty_dir(struct inode *);
992
Al Virob7f7a5e2013-01-25 16:15:43 -0500993static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
994{
995 return __f2fs_add_link(dentry->d_parent->d_inode, &dentry->d_name,
996 inode);
997}
998
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900999/*
1000 * super.c
1001 */
1002int f2fs_sync_fs(struct super_block *, int);
Namjae Jeona07ef782012-12-30 14:52:05 +09001003extern __printf(3, 4)
1004void f2fs_msg(struct super_block *, const char *, const char *, ...);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001005
1006/*
1007 * hash.c
1008 */
Leon Romanovsky9836b8b2012-12-27 19:55:46 +02001009f2fs_hash_t f2fs_dentry_hash(const char *, size_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001010
1011/*
1012 * node.c
1013 */
1014struct dnode_of_data;
1015struct node_info;
1016
1017int is_checkpointed_node(struct f2fs_sb_info *, nid_t);
1018void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *);
1019int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int);
1020int truncate_inode_blocks(struct inode *, pgoff_t);
Jaegeuk Kim4f16fb02013-08-14 20:40:06 +09001021int truncate_xattr_node(struct inode *, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001022int remove_inode_page(struct inode *);
Jaegeuk Kim44a83ff2013-05-20 10:10:29 +09001023struct page *new_inode_page(struct inode *, const struct qstr *);
Jaegeuk Kim8ae8f162013-06-03 19:46:19 +09001024struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001025void ra_node_page(struct f2fs_sb_info *, nid_t);
1026struct page *get_node_page(struct f2fs_sb_info *, pgoff_t);
1027struct page *get_node_page_ra(struct page *, int);
1028void sync_inode_page(struct dnode_of_data *);
1029int sync_node_pages(struct f2fs_sb_info *, nid_t, struct writeback_control *);
1030bool alloc_nid(struct f2fs_sb_info *, nid_t *);
1031void alloc_nid_done(struct f2fs_sb_info *, nid_t);
1032void alloc_nid_failed(struct f2fs_sb_info *, nid_t);
1033void recover_node_page(struct f2fs_sb_info *, struct page *,
1034 struct f2fs_summary *, struct node_info *, block_t);
1035int recover_inode_page(struct f2fs_sb_info *, struct page *);
1036int restore_node_summary(struct f2fs_sb_info *, unsigned int,
1037 struct f2fs_summary_block *);
1038void flush_nat_entries(struct f2fs_sb_info *);
1039int build_node_manager(struct f2fs_sb_info *);
1040void destroy_node_manager(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001041int __init create_node_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001042void destroy_node_manager_caches(void);
1043
1044/*
1045 * segment.c
1046 */
1047void f2fs_balance_fs(struct f2fs_sb_info *);
1048void invalidate_blocks(struct f2fs_sb_info *, block_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001049void clear_prefree_segments(struct f2fs_sb_info *);
1050int npages_for_summary_flush(struct f2fs_sb_info *);
1051void allocate_new_segments(struct f2fs_sb_info *);
1052struct page *get_sum_page(struct f2fs_sb_info *, unsigned int);
Jaegeuk Kim3cd8a232012-12-10 09:26:05 +09001053struct bio *f2fs_bio_alloc(struct block_device *, int);
Jin Xua5694692013-08-05 20:02:04 +08001054void f2fs_submit_bio(struct f2fs_sb_info *, enum page_type, bool);
1055void f2fs_wait_on_page_writeback(struct page *, enum page_type, bool);
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001056void write_meta_page(struct f2fs_sb_info *, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001057void write_node_page(struct f2fs_sb_info *, struct page *, unsigned int,
1058 block_t, block_t *);
1059void write_data_page(struct inode *, struct page *, struct dnode_of_data*,
1060 block_t, block_t *);
1061void rewrite_data_page(struct f2fs_sb_info *, struct page *, block_t);
1062void recover_data_page(struct f2fs_sb_info *, struct page *,
1063 struct f2fs_summary *, block_t, block_t);
1064void rewrite_node_page(struct f2fs_sb_info *, struct page *,
1065 struct f2fs_summary *, block_t, block_t);
1066void write_data_summaries(struct f2fs_sb_info *, block_t);
1067void write_node_summaries(struct f2fs_sb_info *, block_t);
1068int lookup_journal_in_cursum(struct f2fs_summary_block *,
1069 int, unsigned int, int);
1070void flush_sit_entries(struct f2fs_sb_info *);
1071int build_segment_manager(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001072void destroy_segment_manager(struct f2fs_sb_info *);
1073
1074/*
1075 * checkpoint.c
1076 */
1077struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t);
1078struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t);
1079long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long);
Jaegeuk Kimcbd56e72013-07-30 11:36:53 +09001080int acquire_orphan_inode(struct f2fs_sb_info *);
1081void release_orphan_inode(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001082void add_orphan_inode(struct f2fs_sb_info *, nid_t);
1083void remove_orphan_inode(struct f2fs_sb_info *, nid_t);
1084int recover_orphan_inodes(struct f2fs_sb_info *);
1085int get_valid_checkpoint(struct f2fs_sb_info *);
1086void set_dirty_dir_page(struct inode *, struct page *);
Jaegeuk Kim5deb8262013-06-05 17:42:45 +09001087void add_dirty_dir_inode(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001088void remove_dirty_dir_inode(struct inode *);
Jaegeuk Kim74d0b912013-05-15 16:40:02 +09001089struct inode *check_dirty_dir_inode(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001090void sync_dirty_dir_inodes(struct f2fs_sb_info *);
Jaegeuk Kim43727522013-02-04 15:11:17 +09001091void write_checkpoint(struct f2fs_sb_info *, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001092void init_orphan_info(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001093int __init create_checkpoint_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001094void destroy_checkpoint_caches(void);
1095
1096/*
1097 * data.c
1098 */
1099int reserve_new_block(struct dnode_of_data *);
1100void update_extent_cache(block_t, struct dnode_of_data *);
Jaegeuk Kimc718379b2013-04-24 13:19:56 +09001101struct page *find_data_page(struct inode *, pgoff_t, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001102struct page *get_lock_data_page(struct inode *, pgoff_t);
Jaegeuk Kim64aa7ed2013-05-20 09:55:50 +09001103struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001104int f2fs_readpage(struct f2fs_sb_info *, struct page *, block_t, int);
1105int do_write_data_page(struct page *);
1106
1107/*
1108 * gc.c
1109 */
1110int start_gc_thread(struct f2fs_sb_info *);
1111void stop_gc_thread(struct f2fs_sb_info *);
Jaegeuk Kimde936532013-08-12 21:08:03 +09001112block_t start_bidx_of_node(unsigned int, struct f2fs_inode_info *);
Jaegeuk Kim408e9372013-01-03 17:55:52 +09001113int f2fs_gc(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001114void build_gc_manager(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001115int __init create_gc_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001116void destroy_gc_caches(void);
1117
1118/*
1119 * recovery.c
1120 */
Jaegeuk Kim6ead1142013-03-20 19:01:06 +09001121int recover_fsync_data(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001122bool space_for_roll_forward(struct f2fs_sb_info *);
1123
1124/*
1125 * debug.c
1126 */
1127#ifdef CONFIG_F2FS_STAT_FS
1128struct f2fs_stat_info {
1129 struct list_head stat_list;
1130 struct f2fs_sb_info *sbi;
1131 struct mutex stat_lock;
1132 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
1133 int main_area_segs, main_area_sections, main_area_zones;
1134 int hit_ext, total_ext;
1135 int ndirty_node, ndirty_dent, ndirty_dirs, ndirty_meta;
1136 int nats, sits, fnids;
1137 int total_count, utilization;
1138 int bg_gc;
1139 unsigned int valid_count, valid_node_count, valid_inode_count;
1140 unsigned int bimodal, avg_vblocks;
1141 int util_free, util_valid, util_invalid;
1142 int rsvd_segs, overp_segs;
1143 int dirty_count, node_pages, meta_pages;
1144 int prefree_count, call_count;
1145 int tot_segs, node_segs, data_segs, free_segs, free_secs;
1146 int tot_blks, data_blks, node_blks;
1147 int curseg[NR_CURSEG_TYPE];
1148 int cursec[NR_CURSEG_TYPE];
1149 int curzone[NR_CURSEG_TYPE];
1150
1151 unsigned int segment_count[2];
1152 unsigned int block_count[2];
1153 unsigned base_mem, cache_mem;
1154};
1155
Gu Zheng963d4f72013-07-12 14:47:11 +08001156static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
1157{
1158 return (struct f2fs_stat_info*)sbi->stat_info;
1159}
1160
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001161#define stat_inc_call_count(si) ((si)->call_count++)
1162#define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++)
1163#define stat_inc_dirty_dir(sbi) ((sbi)->n_dirty_dirs++)
1164#define stat_dec_dirty_dir(sbi) ((sbi)->n_dirty_dirs--)
1165#define stat_inc_total_hit(sb) ((F2FS_SB(sb))->total_hit_ext++)
1166#define stat_inc_read_hit(sb) ((F2FS_SB(sb))->read_hit_ext++)
1167#define stat_inc_seg_type(sbi, curseg) \
1168 ((sbi)->segment_count[(curseg)->alloc_type]++)
1169#define stat_inc_block_count(sbi, curseg) \
1170 ((sbi)->block_count[(curseg)->alloc_type]++)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001171
1172#define stat_inc_seg_count(sbi, type) \
1173 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001174 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001175 (si)->tot_segs++; \
1176 if (type == SUM_TYPE_DATA) \
1177 si->data_segs++; \
1178 else \
1179 si->node_segs++; \
1180 } while (0)
1181
1182#define stat_inc_tot_blk_count(si, blks) \
1183 (si->tot_blks += (blks))
1184
1185#define stat_inc_data_blk_count(sbi, blks) \
1186 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001187 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001188 stat_inc_tot_blk_count(si, blks); \
1189 si->data_blks += (blks); \
1190 } while (0)
1191
1192#define stat_inc_node_blk_count(sbi, blks) \
1193 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001194 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001195 stat_inc_tot_blk_count(si, blks); \
1196 si->node_blks += (blks); \
1197 } while (0)
1198
1199int f2fs_build_stats(struct f2fs_sb_info *);
1200void f2fs_destroy_stats(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001201void __init f2fs_create_root_stats(void);
Namjae Jeon4589d252013-01-15 19:58:47 +09001202void f2fs_destroy_root_stats(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001203#else
1204#define stat_inc_call_count(si)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001205#define stat_inc_bggc_count(si)
1206#define stat_inc_dirty_dir(sbi)
1207#define stat_dec_dirty_dir(sbi)
1208#define stat_inc_total_hit(sb)
1209#define stat_inc_read_hit(sb)
1210#define stat_inc_seg_type(sbi, curseg)
1211#define stat_inc_block_count(sbi, curseg)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001212#define stat_inc_seg_count(si, type)
1213#define stat_inc_tot_blk_count(si, blks)
1214#define stat_inc_data_blk_count(si, blks)
1215#define stat_inc_node_blk_count(sbi, blks)
1216
1217static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
1218static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001219static inline void __init f2fs_create_root_stats(void) { }
Namjae Jeon4589d252013-01-15 19:58:47 +09001220static inline void f2fs_destroy_root_stats(void) { }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001221#endif
1222
1223extern const struct file_operations f2fs_dir_operations;
1224extern const struct file_operations f2fs_file_operations;
1225extern const struct inode_operations f2fs_file_inode_operations;
1226extern const struct address_space_operations f2fs_dblock_aops;
1227extern const struct address_space_operations f2fs_node_aops;
1228extern const struct address_space_operations f2fs_meta_aops;
1229extern const struct inode_operations f2fs_dir_inode_operations;
1230extern const struct inode_operations f2fs_symlink_inode_operations;
1231extern const struct inode_operations f2fs_special_inode_operations;
1232#endif