ad7e9b369319768799b85b0d7f25b7476f275570
[deliverable/linux.git] / fs / f2fs / f2fs.h
1 /*
2 * 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>
17 #include <linux/slab.h>
18 #include <linux/crc32.h>
19 #include <linux/magic.h>
20 #include <linux/kobject.h>
21 #include <linux/sched.h>
22
23 #ifdef CONFIG_F2FS_CHECK_FS
24 #define f2fs_bug_on(sbi, condition) BUG_ON(condition)
25 #define f2fs_down_write(x, y) down_write_nest_lock(x, y)
26 #else
27 #define f2fs_bug_on(sbi, condition) \
28 do { \
29 if (unlikely(condition)) { \
30 WARN_ON(1); \
31 sbi->need_fsck = true; \
32 } \
33 } while (0)
34 #define f2fs_down_write(x, y) down_write(x)
35 #endif
36
37 /*
38 * For mount options
39 */
40 #define F2FS_MOUNT_BG_GC 0x00000001
41 #define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002
42 #define F2FS_MOUNT_DISCARD 0x00000004
43 #define F2FS_MOUNT_NOHEAP 0x00000008
44 #define F2FS_MOUNT_XATTR_USER 0x00000010
45 #define F2FS_MOUNT_POSIX_ACL 0x00000020
46 #define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040
47 #define F2FS_MOUNT_INLINE_XATTR 0x00000080
48 #define F2FS_MOUNT_INLINE_DATA 0x00000100
49 #define F2FS_MOUNT_FLUSH_MERGE 0x00000200
50 #define F2FS_MOUNT_NOBARRIER 0x00000400
51
52 #define clear_opt(sbi, option) (sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
53 #define set_opt(sbi, option) (sbi->mount_opt.opt |= F2FS_MOUNT_##option)
54 #define test_opt(sbi, option) (sbi->mount_opt.opt & F2FS_MOUNT_##option)
55
56 #define ver_after(a, b) (typecheck(unsigned long long, a) && \
57 typecheck(unsigned long long, b) && \
58 ((long long)((a) - (b)) > 0))
59
60 typedef u32 block_t; /*
61 * should not change u32, since it is the on-disk block
62 * address format, __le32.
63 */
64 typedef u32 nid_t;
65
66 struct f2fs_mount_info {
67 unsigned int opt;
68 };
69
70 #define CRCPOLY_LE 0xedb88320
71
72 static inline __u32 f2fs_crc32(void *buf, size_t len)
73 {
74 unsigned char *p = (unsigned char *)buf;
75 __u32 crc = F2FS_SUPER_MAGIC;
76 int i;
77
78 while (len--) {
79 crc ^= *p++;
80 for (i = 0; i < 8; i++)
81 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
82 }
83 return crc;
84 }
85
86 static inline bool f2fs_crc_valid(__u32 blk_crc, void *buf, size_t buf_size)
87 {
88 return f2fs_crc32(buf, buf_size) == blk_crc;
89 }
90
91 /*
92 * For checkpoint manager
93 */
94 enum {
95 NAT_BITMAP,
96 SIT_BITMAP
97 };
98
99 /*
100 * For CP/NAT/SIT/SSA readahead
101 */
102 enum {
103 META_CP,
104 META_NAT,
105 META_SIT,
106 META_SSA
107 };
108
109 /* for the list of ino */
110 enum {
111 ORPHAN_INO, /* for orphan ino list */
112 APPEND_INO, /* for append ino list */
113 UPDATE_INO, /* for update ino list */
114 MAX_INO_ENTRY, /* max. list */
115 };
116
117 struct ino_entry {
118 struct list_head list; /* list head */
119 nid_t ino; /* inode number */
120 };
121
122 /* for the list of directory inodes */
123 struct dir_inode_entry {
124 struct list_head list; /* list head */
125 struct inode *inode; /* vfs inode pointer */
126 };
127
128 /* for the list of blockaddresses to be discarded */
129 struct discard_entry {
130 struct list_head list; /* list head */
131 block_t blkaddr; /* block address to be discarded */
132 int len; /* # of consecutive blocks of the discard */
133 };
134
135 /* for the list of fsync inodes, used only during recovery */
136 struct fsync_inode_entry {
137 struct list_head list; /* list head */
138 struct inode *inode; /* vfs inode pointer */
139 block_t blkaddr; /* block address locating the last inode */
140 };
141
142 #define nats_in_cursum(sum) (le16_to_cpu(sum->n_nats))
143 #define sits_in_cursum(sum) (le16_to_cpu(sum->n_sits))
144
145 #define nat_in_journal(sum, i) (sum->nat_j.entries[i].ne)
146 #define nid_in_journal(sum, i) (sum->nat_j.entries[i].nid)
147 #define sit_in_journal(sum, i) (sum->sit_j.entries[i].se)
148 #define segno_in_journal(sum, i) (sum->sit_j.entries[i].segno)
149
150 static inline int update_nats_in_cursum(struct f2fs_summary_block *rs, int i)
151 {
152 int before = nats_in_cursum(rs);
153 rs->n_nats = cpu_to_le16(before + i);
154 return before;
155 }
156
157 static inline int update_sits_in_cursum(struct f2fs_summary_block *rs, int i)
158 {
159 int before = sits_in_cursum(rs);
160 rs->n_sits = cpu_to_le16(before + i);
161 return before;
162 }
163
164 static inline bool __has_cursum_space(struct f2fs_summary_block *sum, int size,
165 int type)
166 {
167 if (type == NAT_JOURNAL)
168 return nats_in_cursum(sum) + size <= NAT_JOURNAL_ENTRIES;
169
170 return sits_in_cursum(sum) + size <= SIT_JOURNAL_ENTRIES;
171 }
172
173 /*
174 * ioctl commands
175 */
176 #define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS
177 #define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS
178
179 #if defined(__KERNEL__) && defined(CONFIG_COMPAT)
180 /*
181 * ioctl commands in 32 bit emulation
182 */
183 #define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS
184 #define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS
185 #endif
186
187 /*
188 * For INODE and NODE manager
189 */
190 /*
191 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
192 * as its node offset to distinguish from index node blocks.
193 * But some bits are used to mark the node block.
194 */
195 #define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \
196 >> OFFSET_BIT_SHIFT)
197 enum {
198 ALLOC_NODE, /* allocate a new node page if needed */
199 LOOKUP_NODE, /* look up a node without readahead */
200 LOOKUP_NODE_RA, /*
201 * look up a node with readahead called
202 * by get_data_block.
203 */
204 };
205
206 #define F2FS_LINK_MAX 32000 /* maximum link count per file */
207
208 #define MAX_DIR_RA_PAGES 4 /* maximum ra pages of dir */
209
210 /* for in-memory extent cache entry */
211 #define F2FS_MIN_EXTENT_LEN 16 /* minimum extent length */
212
213 struct extent_info {
214 rwlock_t ext_lock; /* rwlock for consistency */
215 unsigned int fofs; /* start offset in a file */
216 u32 blk_addr; /* start block address of the extent */
217 unsigned int len; /* length of the extent */
218 };
219
220 /*
221 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
222 */
223 #define FADVISE_COLD_BIT 0x01
224 #define FADVISE_LOST_PINO_BIT 0x02
225
226 #define DEF_DIR_LEVEL 0
227
228 struct f2fs_inode_info {
229 struct inode vfs_inode; /* serve a vfs inode */
230 unsigned long i_flags; /* keep an inode flags for ioctl */
231 unsigned char i_advise; /* use to give file attribute hints */
232 unsigned char i_dir_level; /* use for dentry level for large dir */
233 unsigned int i_current_depth; /* use only in directory structure */
234 unsigned int i_pino; /* parent inode number */
235 umode_t i_acl_mode; /* keep file acl mode temporarily */
236
237 /* Use below internally in f2fs*/
238 unsigned long flags; /* use to pass per-file flags */
239 struct rw_semaphore i_sem; /* protect fi info */
240 atomic_t dirty_pages; /* # of dirty pages */
241 f2fs_hash_t chash; /* hash value of given file name */
242 unsigned int clevel; /* maximum level of given file name */
243 nid_t i_xattr_nid; /* node id that contains xattrs */
244 unsigned long long xattr_ver; /* cp version of xattr modification */
245 struct extent_info ext; /* in-memory extent cache entry */
246 struct dir_inode_entry *dirty_dir; /* the pointer of dirty dir */
247 };
248
249 static inline void get_extent_info(struct extent_info *ext,
250 struct f2fs_extent i_ext)
251 {
252 write_lock(&ext->ext_lock);
253 ext->fofs = le32_to_cpu(i_ext.fofs);
254 ext->blk_addr = le32_to_cpu(i_ext.blk_addr);
255 ext->len = le32_to_cpu(i_ext.len);
256 write_unlock(&ext->ext_lock);
257 }
258
259 static inline void set_raw_extent(struct extent_info *ext,
260 struct f2fs_extent *i_ext)
261 {
262 read_lock(&ext->ext_lock);
263 i_ext->fofs = cpu_to_le32(ext->fofs);
264 i_ext->blk_addr = cpu_to_le32(ext->blk_addr);
265 i_ext->len = cpu_to_le32(ext->len);
266 read_unlock(&ext->ext_lock);
267 }
268
269 struct f2fs_nm_info {
270 block_t nat_blkaddr; /* base disk address of NAT */
271 nid_t max_nid; /* maximum possible node ids */
272 nid_t available_nids; /* maximum available node ids */
273 nid_t next_scan_nid; /* the next nid to be scanned */
274 unsigned int ram_thresh; /* control the memory footprint */
275
276 /* NAT cache management */
277 struct radix_tree_root nat_root;/* root of the nat entry cache */
278 rwlock_t nat_tree_lock; /* protect nat_tree_lock */
279 unsigned int nat_cnt; /* the # of cached nat entries */
280 struct list_head nat_entries; /* cached nat entry list (clean) */
281 struct list_head dirty_nat_entries; /* cached nat entry list (dirty) */
282 struct list_head nat_entry_set; /* nat entry set list */
283 unsigned int dirty_nat_cnt; /* total num of nat entries in set */
284
285 /* free node ids management */
286 struct radix_tree_root free_nid_root;/* root of the free_nid cache */
287 struct list_head free_nid_list; /* a list for free nids */
288 spinlock_t free_nid_list_lock; /* protect free nid list */
289 unsigned int fcnt; /* the number of free node id */
290 struct mutex build_lock; /* lock for build free nids */
291
292 /* for checkpoint */
293 char *nat_bitmap; /* NAT bitmap pointer */
294 int bitmap_size; /* bitmap size */
295 };
296
297 /*
298 * this structure is used as one of function parameters.
299 * all the information are dedicated to a given direct node block determined
300 * by the data offset in a file.
301 */
302 struct dnode_of_data {
303 struct inode *inode; /* vfs inode pointer */
304 struct page *inode_page; /* its inode page, NULL is possible */
305 struct page *node_page; /* cached direct node page */
306 nid_t nid; /* node id of the direct node block */
307 unsigned int ofs_in_node; /* data offset in the node page */
308 bool inode_page_locked; /* inode page is locked or not */
309 block_t data_blkaddr; /* block address of the node block */
310 };
311
312 static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
313 struct page *ipage, struct page *npage, nid_t nid)
314 {
315 memset(dn, 0, sizeof(*dn));
316 dn->inode = inode;
317 dn->inode_page = ipage;
318 dn->node_page = npage;
319 dn->nid = nid;
320 }
321
322 /*
323 * For SIT manager
324 *
325 * By default, there are 6 active log areas across the whole main area.
326 * When considering hot and cold data separation to reduce cleaning overhead,
327 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
328 * respectively.
329 * In the current design, you should not change the numbers intentionally.
330 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
331 * logs individually according to the underlying devices. (default: 6)
332 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
333 * data and 8 for node logs.
334 */
335 #define NR_CURSEG_DATA_TYPE (3)
336 #define NR_CURSEG_NODE_TYPE (3)
337 #define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
338
339 enum {
340 CURSEG_HOT_DATA = 0, /* directory entry blocks */
341 CURSEG_WARM_DATA, /* data blocks */
342 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */
343 CURSEG_HOT_NODE, /* direct node blocks of directory files */
344 CURSEG_WARM_NODE, /* direct node blocks of normal files */
345 CURSEG_COLD_NODE, /* indirect node blocks */
346 NO_CHECK_TYPE
347 };
348
349 struct flush_cmd {
350 struct completion wait;
351 struct llist_node llnode;
352 int ret;
353 };
354
355 struct flush_cmd_control {
356 struct task_struct *f2fs_issue_flush; /* flush thread */
357 wait_queue_head_t flush_wait_queue; /* waiting queue for wake-up */
358 struct llist_head issue_list; /* list for command issue */
359 struct llist_node *dispatch_list; /* list for command dispatch */
360 };
361
362 struct f2fs_sm_info {
363 struct sit_info *sit_info; /* whole segment information */
364 struct free_segmap_info *free_info; /* free segment information */
365 struct dirty_seglist_info *dirty_info; /* dirty segment information */
366 struct curseg_info *curseg_array; /* active segment information */
367
368 block_t seg0_blkaddr; /* block address of 0'th segment */
369 block_t main_blkaddr; /* start block address of main area */
370 block_t ssa_blkaddr; /* start block address of SSA area */
371
372 unsigned int segment_count; /* total # of segments */
373 unsigned int main_segments; /* # of segments in main area */
374 unsigned int reserved_segments; /* # of reserved segments */
375 unsigned int ovp_segments; /* # of overprovision segments */
376
377 /* a threshold to reclaim prefree segments */
378 unsigned int rec_prefree_segments;
379
380 /* for small discard management */
381 struct list_head discard_list; /* 4KB discard list */
382 int nr_discards; /* # of discards in the list */
383 int max_discards; /* max. discards to be issued */
384
385 struct list_head sit_entry_set; /* sit entry set list */
386
387 unsigned int ipu_policy; /* in-place-update policy */
388 unsigned int min_ipu_util; /* in-place-update threshold */
389
390 /* for flush command control */
391 struct flush_cmd_control *cmd_control_info;
392
393 };
394
395 /*
396 * For superblock
397 */
398 /*
399 * COUNT_TYPE for monitoring
400 *
401 * f2fs monitors the number of several block types such as on-writeback,
402 * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
403 */
404 enum count_type {
405 F2FS_WRITEBACK,
406 F2FS_DIRTY_DENTS,
407 F2FS_DIRTY_NODES,
408 F2FS_DIRTY_META,
409 NR_COUNT_TYPE,
410 };
411
412 /*
413 * The below are the page types of bios used in submit_bio().
414 * The available types are:
415 * DATA User data pages. It operates as async mode.
416 * NODE Node pages. It operates as async mode.
417 * META FS metadata pages such as SIT, NAT, CP.
418 * NR_PAGE_TYPE The number of page types.
419 * META_FLUSH Make sure the previous pages are written
420 * with waiting the bio's completion
421 * ... Only can be used with META.
422 */
423 #define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type))
424 enum page_type {
425 DATA,
426 NODE,
427 META,
428 NR_PAGE_TYPE,
429 META_FLUSH,
430 };
431
432 struct f2fs_io_info {
433 enum page_type type; /* contains DATA/NODE/META/META_FLUSH */
434 int rw; /* contains R/RS/W/WS with REQ_META/REQ_PRIO */
435 };
436
437 #define is_read_io(rw) (((rw) & 1) == READ)
438 struct f2fs_bio_info {
439 struct f2fs_sb_info *sbi; /* f2fs superblock */
440 struct bio *bio; /* bios to merge */
441 sector_t last_block_in_bio; /* last block number */
442 struct f2fs_io_info fio; /* store buffered io info. */
443 struct rw_semaphore io_rwsem; /* blocking op for bio */
444 };
445
446 struct f2fs_sb_info {
447 struct super_block *sb; /* pointer to VFS super block */
448 struct proc_dir_entry *s_proc; /* proc entry */
449 struct buffer_head *raw_super_buf; /* buffer head of raw sb */
450 struct f2fs_super_block *raw_super; /* raw super block pointer */
451 int s_dirty; /* dirty flag for checkpoint */
452 bool need_fsck; /* need fsck.f2fs to fix */
453
454 /* for node-related operations */
455 struct f2fs_nm_info *nm_info; /* node manager */
456 struct inode *node_inode; /* cache node blocks */
457
458 /* for segment-related operations */
459 struct f2fs_sm_info *sm_info; /* segment manager */
460
461 /* for bio operations */
462 struct f2fs_bio_info read_io; /* for read bios */
463 struct f2fs_bio_info write_io[NR_PAGE_TYPE]; /* for write bios */
464 struct completion *wait_io; /* for completion bios */
465
466 /* for checkpoint */
467 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
468 struct inode *meta_inode; /* cache meta blocks */
469 struct mutex cp_mutex; /* checkpoint procedure lock */
470 struct rw_semaphore cp_rwsem; /* blocking FS operations */
471 struct rw_semaphore node_write; /* locking node writes */
472 struct mutex writepages; /* mutex for writepages() */
473 bool por_doing; /* recovery is doing or not */
474 wait_queue_head_t cp_wait;
475
476 /* for inode management */
477 struct radix_tree_root ino_root[MAX_INO_ENTRY]; /* ino entry array */
478 spinlock_t ino_lock[MAX_INO_ENTRY]; /* for ino entry lock */
479 struct list_head ino_list[MAX_INO_ENTRY]; /* inode list head */
480
481 /* for orphan inode, use 0'th array */
482 unsigned int n_orphans; /* # of orphan inodes */
483 unsigned int max_orphans; /* max orphan inodes */
484
485 /* for directory inode management */
486 struct list_head dir_inode_list; /* dir inode list */
487 spinlock_t dir_inode_lock; /* for dir inode list lock */
488
489 /* basic filesystem units */
490 unsigned int log_sectors_per_block; /* log2 sectors per block */
491 unsigned int log_blocksize; /* log2 block size */
492 unsigned int blocksize; /* block size */
493 unsigned int root_ino_num; /* root inode number*/
494 unsigned int node_ino_num; /* node inode number*/
495 unsigned int meta_ino_num; /* meta inode number*/
496 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
497 unsigned int blocks_per_seg; /* blocks per segment */
498 unsigned int segs_per_sec; /* segments per section */
499 unsigned int secs_per_zone; /* sections per zone */
500 unsigned int total_sections; /* total section count */
501 unsigned int total_node_count; /* total node block count */
502 unsigned int total_valid_node_count; /* valid node block count */
503 unsigned int total_valid_inode_count; /* valid inode count */
504 int active_logs; /* # of active logs */
505 int dir_level; /* directory level */
506
507 block_t user_block_count; /* # of user blocks */
508 block_t total_valid_block_count; /* # of valid blocks */
509 block_t alloc_valid_block_count; /* # of allocated blocks */
510 block_t last_valid_block_count; /* for recovery */
511 u32 s_next_generation; /* for NFS support */
512 atomic_t nr_pages[NR_COUNT_TYPE]; /* # of pages, see count_type */
513
514 struct f2fs_mount_info mount_opt; /* mount options */
515
516 /* for cleaning operations */
517 struct mutex gc_mutex; /* mutex for GC */
518 struct f2fs_gc_kthread *gc_thread; /* GC thread */
519 unsigned int cur_victim_sec; /* current victim section num */
520
521 /* maximum # of trials to find a victim segment for SSR and GC */
522 unsigned int max_victim_search;
523
524 /*
525 * for stat information.
526 * one is for the LFS mode, and the other is for the SSR mode.
527 */
528 #ifdef CONFIG_F2FS_STAT_FS
529 struct f2fs_stat_info *stat_info; /* FS status information */
530 unsigned int segment_count[2]; /* # of allocated segments */
531 unsigned int block_count[2]; /* # of allocated blocks */
532 int total_hit_ext, read_hit_ext; /* extent cache hit ratio */
533 int inline_inode; /* # of inline_data inodes */
534 int bg_gc; /* background gc calls */
535 unsigned int n_dirty_dirs; /* # of dir inodes */
536 #endif
537 unsigned int last_victim[2]; /* last victim segment # */
538 spinlock_t stat_lock; /* lock for stat operations */
539
540 /* For sysfs suppport */
541 struct kobject s_kobj;
542 struct completion s_kobj_unregister;
543 };
544
545 /*
546 * Inline functions
547 */
548 static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
549 {
550 return container_of(inode, struct f2fs_inode_info, vfs_inode);
551 }
552
553 static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
554 {
555 return sb->s_fs_info;
556 }
557
558 static inline struct f2fs_sb_info *F2FS_I_SB(struct inode *inode)
559 {
560 return F2FS_SB(inode->i_sb);
561 }
562
563 static inline struct f2fs_sb_info *F2FS_M_SB(struct address_space *mapping)
564 {
565 return F2FS_I_SB(mapping->host);
566 }
567
568 static inline struct f2fs_sb_info *F2FS_P_SB(struct page *page)
569 {
570 return F2FS_M_SB(page->mapping);
571 }
572
573 static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
574 {
575 return (struct f2fs_super_block *)(sbi->raw_super);
576 }
577
578 static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
579 {
580 return (struct f2fs_checkpoint *)(sbi->ckpt);
581 }
582
583 static inline struct f2fs_node *F2FS_NODE(struct page *page)
584 {
585 return (struct f2fs_node *)page_address(page);
586 }
587
588 static inline struct f2fs_inode *F2FS_INODE(struct page *page)
589 {
590 return &((struct f2fs_node *)page_address(page))->i;
591 }
592
593 static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
594 {
595 return (struct f2fs_nm_info *)(sbi->nm_info);
596 }
597
598 static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
599 {
600 return (struct f2fs_sm_info *)(sbi->sm_info);
601 }
602
603 static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
604 {
605 return (struct sit_info *)(SM_I(sbi)->sit_info);
606 }
607
608 static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
609 {
610 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
611 }
612
613 static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
614 {
615 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
616 }
617
618 static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi)
619 {
620 return sbi->meta_inode->i_mapping;
621 }
622
623 static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi)
624 {
625 return sbi->node_inode->i_mapping;
626 }
627
628 static inline void F2FS_SET_SB_DIRT(struct f2fs_sb_info *sbi)
629 {
630 sbi->s_dirty = 1;
631 }
632
633 static inline void F2FS_RESET_SB_DIRT(struct f2fs_sb_info *sbi)
634 {
635 sbi->s_dirty = 0;
636 }
637
638 static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
639 {
640 return le64_to_cpu(cp->checkpoint_ver);
641 }
642
643 static inline bool is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
644 {
645 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
646 return ckpt_flags & f;
647 }
648
649 static inline void set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
650 {
651 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
652 ckpt_flags |= f;
653 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
654 }
655
656 static inline void clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
657 {
658 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
659 ckpt_flags &= (~f);
660 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
661 }
662
663 static inline void f2fs_lock_op(struct f2fs_sb_info *sbi)
664 {
665 down_read(&sbi->cp_rwsem);
666 }
667
668 static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi)
669 {
670 up_read(&sbi->cp_rwsem);
671 }
672
673 static inline void f2fs_lock_all(struct f2fs_sb_info *sbi)
674 {
675 f2fs_down_write(&sbi->cp_rwsem, &sbi->cp_mutex);
676 }
677
678 static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi)
679 {
680 up_write(&sbi->cp_rwsem);
681 }
682
683 /*
684 * Check whether the given nid is within node id range.
685 */
686 static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid)
687 {
688 if (unlikely(nid < F2FS_ROOT_INO(sbi)))
689 return -EINVAL;
690 if (unlikely(nid >= NM_I(sbi)->max_nid))
691 return -EINVAL;
692 return 0;
693 }
694
695 #define F2FS_DEFAULT_ALLOCATED_BLOCKS 1
696
697 /*
698 * Check whether the inode has blocks or not
699 */
700 static inline int F2FS_HAS_BLOCKS(struct inode *inode)
701 {
702 if (F2FS_I(inode)->i_xattr_nid)
703 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1;
704 else
705 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS;
706 }
707
708 static inline bool f2fs_has_xattr_block(unsigned int ofs)
709 {
710 return ofs == XATTR_NODE_OFFSET;
711 }
712
713 static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi,
714 struct inode *inode, blkcnt_t count)
715 {
716 block_t valid_block_count;
717
718 spin_lock(&sbi->stat_lock);
719 valid_block_count =
720 sbi->total_valid_block_count + (block_t)count;
721 if (unlikely(valid_block_count > sbi->user_block_count)) {
722 spin_unlock(&sbi->stat_lock);
723 return false;
724 }
725 inode->i_blocks += count;
726 sbi->total_valid_block_count = valid_block_count;
727 sbi->alloc_valid_block_count += (block_t)count;
728 spin_unlock(&sbi->stat_lock);
729 return true;
730 }
731
732 static inline void dec_valid_block_count(struct f2fs_sb_info *sbi,
733 struct inode *inode,
734 blkcnt_t count)
735 {
736 spin_lock(&sbi->stat_lock);
737 f2fs_bug_on(sbi, sbi->total_valid_block_count < (block_t) count);
738 f2fs_bug_on(sbi, inode->i_blocks < count);
739 inode->i_blocks -= count;
740 sbi->total_valid_block_count -= (block_t)count;
741 spin_unlock(&sbi->stat_lock);
742 }
743
744 static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
745 {
746 atomic_inc(&sbi->nr_pages[count_type]);
747 F2FS_SET_SB_DIRT(sbi);
748 }
749
750 static inline void inode_inc_dirty_pages(struct inode *inode)
751 {
752 atomic_inc(&F2FS_I(inode)->dirty_pages);
753 if (S_ISDIR(inode->i_mode))
754 inc_page_count(F2FS_I_SB(inode), F2FS_DIRTY_DENTS);
755 }
756
757 static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
758 {
759 atomic_dec(&sbi->nr_pages[count_type]);
760 }
761
762 static inline void inode_dec_dirty_pages(struct inode *inode)
763 {
764 if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode))
765 return;
766
767 atomic_dec(&F2FS_I(inode)->dirty_pages);
768
769 if (S_ISDIR(inode->i_mode))
770 dec_page_count(F2FS_I_SB(inode), F2FS_DIRTY_DENTS);
771 }
772
773 static inline int get_pages(struct f2fs_sb_info *sbi, int count_type)
774 {
775 return atomic_read(&sbi->nr_pages[count_type]);
776 }
777
778 static inline int get_dirty_pages(struct inode *inode)
779 {
780 return atomic_read(&F2FS_I(inode)->dirty_pages);
781 }
782
783 static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
784 {
785 unsigned int pages_per_sec = sbi->segs_per_sec *
786 (1 << sbi->log_blocks_per_seg);
787 return ((get_pages(sbi, block_type) + pages_per_sec - 1)
788 >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
789 }
790
791 static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
792 {
793 return sbi->total_valid_block_count;
794 }
795
796 static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
797 {
798 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
799
800 /* return NAT or SIT bitmap */
801 if (flag == NAT_BITMAP)
802 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
803 else if (flag == SIT_BITMAP)
804 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
805
806 return 0;
807 }
808
809 static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
810 {
811 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
812 int offset;
813
814 if (le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload) > 0) {
815 if (flag == NAT_BITMAP)
816 return &ckpt->sit_nat_version_bitmap;
817 else
818 return (unsigned char *)ckpt + F2FS_BLKSIZE;
819 } else {
820 offset = (flag == NAT_BITMAP) ?
821 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
822 return &ckpt->sit_nat_version_bitmap + offset;
823 }
824 }
825
826 static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
827 {
828 block_t start_addr;
829 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
830 unsigned long long ckpt_version = cur_cp_version(ckpt);
831
832 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
833
834 /*
835 * odd numbered checkpoint should at cp segment 0
836 * and even segment must be at cp segment 1
837 */
838 if (!(ckpt_version & 1))
839 start_addr += sbi->blocks_per_seg;
840
841 return start_addr;
842 }
843
844 static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
845 {
846 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
847 }
848
849 static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi,
850 struct inode *inode)
851 {
852 block_t valid_block_count;
853 unsigned int valid_node_count;
854
855 spin_lock(&sbi->stat_lock);
856
857 valid_block_count = sbi->total_valid_block_count + 1;
858 if (unlikely(valid_block_count > sbi->user_block_count)) {
859 spin_unlock(&sbi->stat_lock);
860 return false;
861 }
862
863 valid_node_count = sbi->total_valid_node_count + 1;
864 if (unlikely(valid_node_count > sbi->total_node_count)) {
865 spin_unlock(&sbi->stat_lock);
866 return false;
867 }
868
869 if (inode)
870 inode->i_blocks++;
871
872 sbi->alloc_valid_block_count++;
873 sbi->total_valid_node_count++;
874 sbi->total_valid_block_count++;
875 spin_unlock(&sbi->stat_lock);
876
877 return true;
878 }
879
880 static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
881 struct inode *inode)
882 {
883 spin_lock(&sbi->stat_lock);
884
885 f2fs_bug_on(sbi, !sbi->total_valid_block_count);
886 f2fs_bug_on(sbi, !sbi->total_valid_node_count);
887 f2fs_bug_on(sbi, !inode->i_blocks);
888
889 inode->i_blocks--;
890 sbi->total_valid_node_count--;
891 sbi->total_valid_block_count--;
892
893 spin_unlock(&sbi->stat_lock);
894 }
895
896 static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
897 {
898 return sbi->total_valid_node_count;
899 }
900
901 static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
902 {
903 spin_lock(&sbi->stat_lock);
904 f2fs_bug_on(sbi, sbi->total_valid_inode_count == sbi->total_node_count);
905 sbi->total_valid_inode_count++;
906 spin_unlock(&sbi->stat_lock);
907 }
908
909 static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi)
910 {
911 spin_lock(&sbi->stat_lock);
912 f2fs_bug_on(sbi, !sbi->total_valid_inode_count);
913 sbi->total_valid_inode_count--;
914 spin_unlock(&sbi->stat_lock);
915 }
916
917 static inline unsigned int valid_inode_count(struct f2fs_sb_info *sbi)
918 {
919 return sbi->total_valid_inode_count;
920 }
921
922 static inline void f2fs_put_page(struct page *page, int unlock)
923 {
924 if (!page)
925 return;
926
927 if (unlock) {
928 f2fs_bug_on(F2FS_P_SB(page), !PageLocked(page));
929 unlock_page(page);
930 }
931 page_cache_release(page);
932 }
933
934 static inline void f2fs_put_dnode(struct dnode_of_data *dn)
935 {
936 if (dn->node_page)
937 f2fs_put_page(dn->node_page, 1);
938 if (dn->inode_page && dn->node_page != dn->inode_page)
939 f2fs_put_page(dn->inode_page, 0);
940 dn->node_page = NULL;
941 dn->inode_page = NULL;
942 }
943
944 static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
945 size_t size)
946 {
947 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL);
948 }
949
950 static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep,
951 gfp_t flags)
952 {
953 void *entry;
954 retry:
955 entry = kmem_cache_alloc(cachep, flags);
956 if (!entry) {
957 cond_resched();
958 goto retry;
959 }
960
961 return entry;
962 }
963
964 #define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
965
966 static inline bool IS_INODE(struct page *page)
967 {
968 struct f2fs_node *p = F2FS_NODE(page);
969 return RAW_IS_INODE(p);
970 }
971
972 static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
973 {
974 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
975 }
976
977 static inline block_t datablock_addr(struct page *node_page,
978 unsigned int offset)
979 {
980 struct f2fs_node *raw_node;
981 __le32 *addr_array;
982 raw_node = F2FS_NODE(node_page);
983 addr_array = blkaddr_in_node(raw_node);
984 return le32_to_cpu(addr_array[offset]);
985 }
986
987 static inline int f2fs_test_bit(unsigned int nr, char *addr)
988 {
989 int mask;
990
991 addr += (nr >> 3);
992 mask = 1 << (7 - (nr & 0x07));
993 return mask & *addr;
994 }
995
996 static inline int f2fs_set_bit(unsigned int nr, char *addr)
997 {
998 int mask;
999 int ret;
1000
1001 addr += (nr >> 3);
1002 mask = 1 << (7 - (nr & 0x07));
1003 ret = mask & *addr;
1004 *addr |= mask;
1005 return ret;
1006 }
1007
1008 static inline int f2fs_clear_bit(unsigned int nr, char *addr)
1009 {
1010 int mask;
1011 int ret;
1012
1013 addr += (nr >> 3);
1014 mask = 1 << (7 - (nr & 0x07));
1015 ret = mask & *addr;
1016 *addr &= ~mask;
1017 return ret;
1018 }
1019
1020 /* used for f2fs_inode_info->flags */
1021 enum {
1022 FI_NEW_INODE, /* indicate newly allocated inode */
1023 FI_DIRTY_INODE, /* indicate inode is dirty or not */
1024 FI_DIRTY_DIR, /* indicate directory has dirty pages */
1025 FI_INC_LINK, /* need to increment i_nlink */
1026 FI_ACL_MODE, /* indicate acl mode */
1027 FI_NO_ALLOC, /* should not allocate any blocks */
1028 FI_UPDATE_DIR, /* should update inode block for consistency */
1029 FI_DELAY_IPUT, /* used for the recovery */
1030 FI_NO_EXTENT, /* not to use the extent cache */
1031 FI_INLINE_XATTR, /* used for inline xattr */
1032 FI_INLINE_DATA, /* used for inline data*/
1033 FI_APPEND_WRITE, /* inode has appended data */
1034 FI_UPDATE_WRITE, /* inode has in-place-update data */
1035 FI_NEED_IPU, /* used fo ipu for fdatasync */
1036 };
1037
1038 static inline void set_inode_flag(struct f2fs_inode_info *fi, int flag)
1039 {
1040 if (!test_bit(flag, &fi->flags))
1041 set_bit(flag, &fi->flags);
1042 }
1043
1044 static inline int is_inode_flag_set(struct f2fs_inode_info *fi, int flag)
1045 {
1046 return test_bit(flag, &fi->flags);
1047 }
1048
1049 static inline void clear_inode_flag(struct f2fs_inode_info *fi, int flag)
1050 {
1051 if (test_bit(flag, &fi->flags))
1052 clear_bit(flag, &fi->flags);
1053 }
1054
1055 static inline void set_acl_inode(struct f2fs_inode_info *fi, umode_t mode)
1056 {
1057 fi->i_acl_mode = mode;
1058 set_inode_flag(fi, FI_ACL_MODE);
1059 }
1060
1061 static inline int cond_clear_inode_flag(struct f2fs_inode_info *fi, int flag)
1062 {
1063 if (is_inode_flag_set(fi, FI_ACL_MODE)) {
1064 clear_inode_flag(fi, FI_ACL_MODE);
1065 return 1;
1066 }
1067 return 0;
1068 }
1069
1070 static inline void get_inline_info(struct f2fs_inode_info *fi,
1071 struct f2fs_inode *ri)
1072 {
1073 if (ri->i_inline & F2FS_INLINE_XATTR)
1074 set_inode_flag(fi, FI_INLINE_XATTR);
1075 if (ri->i_inline & F2FS_INLINE_DATA)
1076 set_inode_flag(fi, FI_INLINE_DATA);
1077 }
1078
1079 static inline void set_raw_inline(struct f2fs_inode_info *fi,
1080 struct f2fs_inode *ri)
1081 {
1082 ri->i_inline = 0;
1083
1084 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
1085 ri->i_inline |= F2FS_INLINE_XATTR;
1086 if (is_inode_flag_set(fi, FI_INLINE_DATA))
1087 ri->i_inline |= F2FS_INLINE_DATA;
1088 }
1089
1090 static inline int f2fs_has_inline_xattr(struct inode *inode)
1091 {
1092 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR);
1093 }
1094
1095 static inline unsigned int addrs_per_inode(struct f2fs_inode_info *fi)
1096 {
1097 if (f2fs_has_inline_xattr(&fi->vfs_inode))
1098 return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS;
1099 return DEF_ADDRS_PER_INODE;
1100 }
1101
1102 static inline void *inline_xattr_addr(struct page *page)
1103 {
1104 struct f2fs_inode *ri = F2FS_INODE(page);
1105 return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE -
1106 F2FS_INLINE_XATTR_ADDRS]);
1107 }
1108
1109 static inline int inline_xattr_size(struct inode *inode)
1110 {
1111 if (f2fs_has_inline_xattr(inode))
1112 return F2FS_INLINE_XATTR_ADDRS << 2;
1113 else
1114 return 0;
1115 }
1116
1117 static inline int f2fs_has_inline_data(struct inode *inode)
1118 {
1119 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DATA);
1120 }
1121
1122 static inline void *inline_data_addr(struct page *page)
1123 {
1124 struct f2fs_inode *ri = F2FS_INODE(page);
1125 return (void *)&(ri->i_addr[1]);
1126 }
1127
1128 static inline int f2fs_readonly(struct super_block *sb)
1129 {
1130 return sb->s_flags & MS_RDONLY;
1131 }
1132
1133 static inline bool f2fs_cp_error(struct f2fs_sb_info *sbi)
1134 {
1135 return is_set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1136 }
1137
1138 static inline void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi)
1139 {
1140 set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1141 sbi->sb->s_flags |= MS_RDONLY;
1142 }
1143
1144 #define get_inode_mode(i) \
1145 ((is_inode_flag_set(F2FS_I(i), FI_ACL_MODE)) ? \
1146 (F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
1147
1148 /* get offset of first page in next direct node */
1149 #define PGOFS_OF_NEXT_DNODE(pgofs, fi) \
1150 ((pgofs < ADDRS_PER_INODE(fi)) ? ADDRS_PER_INODE(fi) : \
1151 (pgofs - ADDRS_PER_INODE(fi) + ADDRS_PER_BLOCK) / \
1152 ADDRS_PER_BLOCK * ADDRS_PER_BLOCK + ADDRS_PER_INODE(fi))
1153
1154 /*
1155 * file.c
1156 */
1157 int f2fs_sync_file(struct file *, loff_t, loff_t, int);
1158 void truncate_data_blocks(struct dnode_of_data *);
1159 int truncate_blocks(struct inode *, u64, bool);
1160 void f2fs_truncate(struct inode *);
1161 int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
1162 int f2fs_setattr(struct dentry *, struct iattr *);
1163 int truncate_hole(struct inode *, pgoff_t, pgoff_t);
1164 int truncate_data_blocks_range(struct dnode_of_data *, int);
1165 long f2fs_ioctl(struct file *, unsigned int, unsigned long);
1166 long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long);
1167
1168 /*
1169 * inode.c
1170 */
1171 void f2fs_set_inode_flags(struct inode *);
1172 struct inode *f2fs_iget(struct super_block *, unsigned long);
1173 int try_to_free_nats(struct f2fs_sb_info *, int);
1174 void update_inode(struct inode *, struct page *);
1175 void update_inode_page(struct inode *);
1176 int f2fs_write_inode(struct inode *, struct writeback_control *);
1177 void f2fs_evict_inode(struct inode *);
1178
1179 /*
1180 * namei.c
1181 */
1182 struct dentry *f2fs_get_parent(struct dentry *child);
1183
1184 /*
1185 * dir.c
1186 */
1187 struct f2fs_dir_entry *f2fs_find_entry(struct inode *, struct qstr *,
1188 struct page **);
1189 struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **);
1190 ino_t f2fs_inode_by_name(struct inode *, struct qstr *);
1191 void f2fs_set_link(struct inode *, struct f2fs_dir_entry *,
1192 struct page *, struct inode *);
1193 int update_dent_inode(struct inode *, const struct qstr *);
1194 int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *);
1195 void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *);
1196 int f2fs_do_tmpfile(struct inode *, struct inode *);
1197 int f2fs_make_empty(struct inode *, struct inode *);
1198 bool f2fs_empty_dir(struct inode *);
1199
1200 static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
1201 {
1202 return __f2fs_add_link(dentry->d_parent->d_inode, &dentry->d_name,
1203 inode);
1204 }
1205
1206 /*
1207 * super.c
1208 */
1209 int f2fs_sync_fs(struct super_block *, int);
1210 extern __printf(3, 4)
1211 void f2fs_msg(struct super_block *, const char *, const char *, ...);
1212
1213 /*
1214 * hash.c
1215 */
1216 f2fs_hash_t f2fs_dentry_hash(const struct qstr *);
1217
1218 /*
1219 * node.c
1220 */
1221 struct dnode_of_data;
1222 struct node_info;
1223
1224 bool available_free_memory(struct f2fs_sb_info *, int);
1225 int is_checkpointed_node(struct f2fs_sb_info *, nid_t);
1226 bool fsync_mark_done(struct f2fs_sb_info *, nid_t);
1227 void fsync_mark_clear(struct f2fs_sb_info *, nid_t);
1228 void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *);
1229 int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int);
1230 int truncate_inode_blocks(struct inode *, pgoff_t);
1231 int truncate_xattr_node(struct inode *, struct page *);
1232 int wait_on_node_pages_writeback(struct f2fs_sb_info *, nid_t);
1233 void remove_inode_page(struct inode *);
1234 struct page *new_inode_page(struct inode *);
1235 struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *);
1236 void ra_node_page(struct f2fs_sb_info *, nid_t);
1237 struct page *get_node_page(struct f2fs_sb_info *, pgoff_t);
1238 struct page *get_node_page_ra(struct page *, int);
1239 void sync_inode_page(struct dnode_of_data *);
1240 int sync_node_pages(struct f2fs_sb_info *, nid_t, struct writeback_control *);
1241 bool alloc_nid(struct f2fs_sb_info *, nid_t *);
1242 void alloc_nid_done(struct f2fs_sb_info *, nid_t);
1243 void alloc_nid_failed(struct f2fs_sb_info *, nid_t);
1244 void recover_inline_xattr(struct inode *, struct page *);
1245 void recover_xattr_data(struct inode *, struct page *, block_t);
1246 int recover_inode_page(struct f2fs_sb_info *, struct page *);
1247 int restore_node_summary(struct f2fs_sb_info *, unsigned int,
1248 struct f2fs_summary_block *);
1249 void flush_nat_entries(struct f2fs_sb_info *);
1250 int build_node_manager(struct f2fs_sb_info *);
1251 void destroy_node_manager(struct f2fs_sb_info *);
1252 int __init create_node_manager_caches(void);
1253 void destroy_node_manager_caches(void);
1254
1255 /*
1256 * segment.c
1257 */
1258 void f2fs_balance_fs(struct f2fs_sb_info *);
1259 void f2fs_balance_fs_bg(struct f2fs_sb_info *);
1260 int f2fs_issue_flush(struct f2fs_sb_info *);
1261 int create_flush_cmd_control(struct f2fs_sb_info *);
1262 void destroy_flush_cmd_control(struct f2fs_sb_info *);
1263 void invalidate_blocks(struct f2fs_sb_info *, block_t);
1264 void refresh_sit_entry(struct f2fs_sb_info *, block_t, block_t);
1265 void clear_prefree_segments(struct f2fs_sb_info *);
1266 void discard_next_dnode(struct f2fs_sb_info *, block_t);
1267 int npages_for_summary_flush(struct f2fs_sb_info *);
1268 void allocate_new_segments(struct f2fs_sb_info *);
1269 struct page *get_sum_page(struct f2fs_sb_info *, unsigned int);
1270 void write_meta_page(struct f2fs_sb_info *, struct page *);
1271 void write_node_page(struct f2fs_sb_info *, struct page *,
1272 struct f2fs_io_info *, unsigned int, block_t, block_t *);
1273 void write_data_page(struct page *, struct dnode_of_data *, block_t *,
1274 struct f2fs_io_info *);
1275 void rewrite_data_page(struct page *, block_t, struct f2fs_io_info *);
1276 void recover_data_page(struct f2fs_sb_info *, struct page *,
1277 struct f2fs_summary *, block_t, block_t);
1278 void allocate_data_block(struct f2fs_sb_info *, struct page *,
1279 block_t, block_t *, struct f2fs_summary *, int);
1280 void f2fs_wait_on_page_writeback(struct page *, enum page_type);
1281 void write_data_summaries(struct f2fs_sb_info *, block_t);
1282 void write_node_summaries(struct f2fs_sb_info *, block_t);
1283 int lookup_journal_in_cursum(struct f2fs_summary_block *,
1284 int, unsigned int, int);
1285 void flush_sit_entries(struct f2fs_sb_info *);
1286 int build_segment_manager(struct f2fs_sb_info *);
1287 void destroy_segment_manager(struct f2fs_sb_info *);
1288 int __init create_segment_manager_caches(void);
1289 void destroy_segment_manager_caches(void);
1290
1291 /*
1292 * checkpoint.c
1293 */
1294 struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t);
1295 struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t);
1296 int ra_meta_pages(struct f2fs_sb_info *, int, int, int);
1297 long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long);
1298 void add_dirty_inode(struct f2fs_sb_info *, nid_t, int type);
1299 void remove_dirty_inode(struct f2fs_sb_info *, nid_t, int type);
1300 void release_dirty_inode(struct f2fs_sb_info *);
1301 bool exist_written_data(struct f2fs_sb_info *, nid_t, int);
1302 int acquire_orphan_inode(struct f2fs_sb_info *);
1303 void release_orphan_inode(struct f2fs_sb_info *);
1304 void add_orphan_inode(struct f2fs_sb_info *, nid_t);
1305 void remove_orphan_inode(struct f2fs_sb_info *, nid_t);
1306 void recover_orphan_inodes(struct f2fs_sb_info *);
1307 int get_valid_checkpoint(struct f2fs_sb_info *);
1308 void update_dirty_page(struct inode *, struct page *);
1309 void add_dirty_dir_inode(struct inode *);
1310 void remove_dirty_dir_inode(struct inode *);
1311 void sync_dirty_dir_inodes(struct f2fs_sb_info *);
1312 void write_checkpoint(struct f2fs_sb_info *, bool);
1313 void init_ino_entry_info(struct f2fs_sb_info *);
1314 int __init create_checkpoint_caches(void);
1315 void destroy_checkpoint_caches(void);
1316
1317 /*
1318 * data.c
1319 */
1320 void f2fs_submit_merged_bio(struct f2fs_sb_info *, enum page_type, int);
1321 int f2fs_submit_page_bio(struct f2fs_sb_info *, struct page *, block_t, int);
1322 void f2fs_submit_page_mbio(struct f2fs_sb_info *, struct page *, block_t,
1323 struct f2fs_io_info *);
1324 int reserve_new_block(struct dnode_of_data *);
1325 int f2fs_reserve_block(struct dnode_of_data *, pgoff_t);
1326 void update_extent_cache(block_t, struct dnode_of_data *);
1327 struct page *find_data_page(struct inode *, pgoff_t, bool);
1328 struct page *get_lock_data_page(struct inode *, pgoff_t);
1329 struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool);
1330 int do_write_data_page(struct page *, struct f2fs_io_info *);
1331 int f2fs_fiemap(struct inode *inode, struct fiemap_extent_info *, u64, u64);
1332
1333 /*
1334 * gc.c
1335 */
1336 int start_gc_thread(struct f2fs_sb_info *);
1337 void stop_gc_thread(struct f2fs_sb_info *);
1338 block_t start_bidx_of_node(unsigned int, struct f2fs_inode_info *);
1339 int f2fs_gc(struct f2fs_sb_info *);
1340 void build_gc_manager(struct f2fs_sb_info *);
1341 int __init create_gc_caches(void);
1342 void destroy_gc_caches(void);
1343
1344 /*
1345 * recovery.c
1346 */
1347 int recover_fsync_data(struct f2fs_sb_info *);
1348 bool space_for_roll_forward(struct f2fs_sb_info *);
1349
1350 /*
1351 * debug.c
1352 */
1353 #ifdef CONFIG_F2FS_STAT_FS
1354 struct f2fs_stat_info {
1355 struct list_head stat_list;
1356 struct f2fs_sb_info *sbi;
1357 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
1358 int main_area_segs, main_area_sections, main_area_zones;
1359 int hit_ext, total_ext;
1360 int ndirty_node, ndirty_dent, ndirty_dirs, ndirty_meta;
1361 int nats, sits, fnids;
1362 int total_count, utilization;
1363 int bg_gc, inline_inode;
1364 unsigned int valid_count, valid_node_count, valid_inode_count;
1365 unsigned int bimodal, avg_vblocks;
1366 int util_free, util_valid, util_invalid;
1367 int rsvd_segs, overp_segs;
1368 int dirty_count, node_pages, meta_pages;
1369 int prefree_count, call_count, cp_count;
1370 int tot_segs, node_segs, data_segs, free_segs, free_secs;
1371 int tot_blks, data_blks, node_blks;
1372 int curseg[NR_CURSEG_TYPE];
1373 int cursec[NR_CURSEG_TYPE];
1374 int curzone[NR_CURSEG_TYPE];
1375
1376 unsigned int segment_count[2];
1377 unsigned int block_count[2];
1378 unsigned base_mem, cache_mem;
1379 };
1380
1381 static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
1382 {
1383 return (struct f2fs_stat_info *)sbi->stat_info;
1384 }
1385
1386 #define stat_inc_cp_count(si) ((si)->cp_count++)
1387 #define stat_inc_call_count(si) ((si)->call_count++)
1388 #define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++)
1389 #define stat_inc_dirty_dir(sbi) ((sbi)->n_dirty_dirs++)
1390 #define stat_dec_dirty_dir(sbi) ((sbi)->n_dirty_dirs--)
1391 #define stat_inc_total_hit(sb) ((F2FS_SB(sb))->total_hit_ext++)
1392 #define stat_inc_read_hit(sb) ((F2FS_SB(sb))->read_hit_ext++)
1393 #define stat_inc_inline_inode(inode) \
1394 do { \
1395 if (f2fs_has_inline_data(inode)) \
1396 ((F2FS_I_SB(inode))->inline_inode++); \
1397 } while (0)
1398 #define stat_dec_inline_inode(inode) \
1399 do { \
1400 if (f2fs_has_inline_data(inode)) \
1401 ((F2FS_I_SB(inode))->inline_inode--); \
1402 } while (0)
1403
1404 #define stat_inc_seg_type(sbi, curseg) \
1405 ((sbi)->segment_count[(curseg)->alloc_type]++)
1406 #define stat_inc_block_count(sbi, curseg) \
1407 ((sbi)->block_count[(curseg)->alloc_type]++)
1408
1409 #define stat_inc_seg_count(sbi, type) \
1410 do { \
1411 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
1412 (si)->tot_segs++; \
1413 if (type == SUM_TYPE_DATA) \
1414 si->data_segs++; \
1415 else \
1416 si->node_segs++; \
1417 } while (0)
1418
1419 #define stat_inc_tot_blk_count(si, blks) \
1420 (si->tot_blks += (blks))
1421
1422 #define stat_inc_data_blk_count(sbi, blks) \
1423 do { \
1424 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
1425 stat_inc_tot_blk_count(si, blks); \
1426 si->data_blks += (blks); \
1427 } while (0)
1428
1429 #define stat_inc_node_blk_count(sbi, blks) \
1430 do { \
1431 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
1432 stat_inc_tot_blk_count(si, blks); \
1433 si->node_blks += (blks); \
1434 } while (0)
1435
1436 int f2fs_build_stats(struct f2fs_sb_info *);
1437 void f2fs_destroy_stats(struct f2fs_sb_info *);
1438 void __init f2fs_create_root_stats(void);
1439 void f2fs_destroy_root_stats(void);
1440 #else
1441 #define stat_inc_cp_count(si)
1442 #define stat_inc_call_count(si)
1443 #define stat_inc_bggc_count(si)
1444 #define stat_inc_dirty_dir(sbi)
1445 #define stat_dec_dirty_dir(sbi)
1446 #define stat_inc_total_hit(sb)
1447 #define stat_inc_read_hit(sb)
1448 #define stat_inc_inline_inode(inode)
1449 #define stat_dec_inline_inode(inode)
1450 #define stat_inc_seg_type(sbi, curseg)
1451 #define stat_inc_block_count(sbi, curseg)
1452 #define stat_inc_seg_count(si, type)
1453 #define stat_inc_tot_blk_count(si, blks)
1454 #define stat_inc_data_blk_count(si, blks)
1455 #define stat_inc_node_blk_count(sbi, blks)
1456
1457 static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
1458 static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
1459 static inline void __init f2fs_create_root_stats(void) { }
1460 static inline void f2fs_destroy_root_stats(void) { }
1461 #endif
1462
1463 extern const struct file_operations f2fs_dir_operations;
1464 extern const struct file_operations f2fs_file_operations;
1465 extern const struct inode_operations f2fs_file_inode_operations;
1466 extern const struct address_space_operations f2fs_dblock_aops;
1467 extern const struct address_space_operations f2fs_node_aops;
1468 extern const struct address_space_operations f2fs_meta_aops;
1469 extern const struct inode_operations f2fs_dir_inode_operations;
1470 extern const struct inode_operations f2fs_symlink_inode_operations;
1471 extern const struct inode_operations f2fs_special_inode_operations;
1472
1473 /*
1474 * inline.c
1475 */
1476 bool f2fs_may_inline(struct inode *);
1477 int f2fs_read_inline_data(struct inode *, struct page *);
1478 int f2fs_convert_inline_data(struct inode *, pgoff_t, struct page *);
1479 int f2fs_write_inline_data(struct inode *, struct page *, unsigned int);
1480 void truncate_inline_data(struct inode *, u64);
1481 bool recover_inline_data(struct inode *, struct page *);
1482 #endif
This page took 0.084755 seconds and 4 git commands to generate.