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