blob: 2c2948fbc35f352ff72acbe8c42d4c6240a7d6cd [file] [log] [blame]
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002 * fs/f2fs/f2fs.h
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#ifndef _LINUX_F2FS_H
12#define _LINUX_F2FS_H
13
14#include <linux/types.h>
15#include <linux/page-flags.h>
16#include <linux/buffer_head.h>
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090017#include <linux/slab.h>
18#include <linux/crc32.h>
19#include <linux/magic.h>
Jaegeuk Kimc2d715d2013-08-08 15:56:49 +090020#include <linux/kobject.h>
Gu Zheng7bd59382013-10-22 14:52:26 +080021#include <linux/sched.h>
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090022
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090023#ifdef CONFIG_F2FS_CHECK_FS
Jaegeuk Kim9850cf42014-09-02 15:52:58 -070024#define f2fs_bug_on(sbi, condition) BUG_ON(condition)
Jaegeuk Kim0daaad92013-11-24 13:50:35 +090025#define f2fs_down_write(x, y) down_write_nest_lock(x, y)
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090026#else
Jaegeuk Kim9850cf42014-09-02 15:52:58 -070027#define f2fs_bug_on(sbi, condition) \
28 do { \
29 if (unlikely(condition)) { \
30 WARN_ON(1); \
Chao Yucaf00472015-01-28 17:48:42 +080031 set_sbi_flag(sbi, SBI_NEED_FSCK); \
Jaegeuk Kim9850cf42014-09-02 15:52:58 -070032 } \
33 } while (0)
Jaegeuk Kim0daaad92013-11-24 13:50:35 +090034#define f2fs_down_write(x, y) down_write(x)
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090035#endif
36
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090037/*
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
Jaegeuk Kim444c5802013-08-08 15:16:22 +090047#define F2FS_MOUNT_INLINE_XATTR 0x00000080
Huajun Li1001b342013-11-10 23:13:16 +080048#define F2FS_MOUNT_INLINE_DATA 0x00000100
Chao Yu34d67de2014-09-24 18:15:19 +080049#define F2FS_MOUNT_INLINE_DENTRY 0x00000200
50#define F2FS_MOUNT_FLUSH_MERGE 0x00000400
51#define F2FS_MOUNT_NOBARRIER 0x00000800
Jaegeuk Kimd5053a342014-10-30 22:47:03 -070052#define F2FS_MOUNT_FASTBOOT 0x00001000
Chao Yu89672152015-02-05 17:55:51 +080053#define F2FS_MOUNT_EXTENT_CACHE 0x00002000
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090054
55#define clear_opt(sbi, option) (sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
56#define set_opt(sbi, option) (sbi->mount_opt.opt |= F2FS_MOUNT_##option)
57#define test_opt(sbi, option) (sbi->mount_opt.opt & F2FS_MOUNT_##option)
58
59#define ver_after(a, b) (typecheck(unsigned long long, a) && \
60 typecheck(unsigned long long, b) && \
61 ((long long)((a) - (b)) > 0))
62
Jaegeuk Kima9841c42013-05-24 12:41:04 +090063typedef u32 block_t; /*
64 * should not change u32, since it is the on-disk block
65 * address format, __le32.
66 */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090067typedef u32 nid_t;
68
69struct f2fs_mount_info {
70 unsigned int opt;
71};
72
Jaegeuk Kimcde4de12015-04-20 13:57:51 -070073#define F2FS_FEATURE_ENCRYPT 0x0001
74
Jaegeuk Kim76f105a2015-04-13 15:10:36 -070075#define F2FS_HAS_FEATURE(sb, mask) \
76 ((F2FS_SB(sb)->raw_super->feature & cpu_to_le32(mask)) != 0)
77#define F2FS_SET_FEATURE(sb, mask) \
78 F2FS_SB(sb)->raw_super->feature |= cpu_to_le32(mask)
79#define F2FS_CLEAR_FEATURE(sb, mask) \
80 F2FS_SB(sb)->raw_super->feature &= ~cpu_to_le32(mask)
81
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090082#define CRCPOLY_LE 0xedb88320
83
84static inline __u32 f2fs_crc32(void *buf, size_t len)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090085{
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090086 unsigned char *p = (unsigned char *)buf;
87 __u32 crc = F2FS_SUPER_MAGIC;
88 int i;
89
90 while (len--) {
91 crc ^= *p++;
92 for (i = 0; i < 8; i++)
93 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
94 }
95 return crc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090096}
97
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090098static inline bool f2fs_crc_valid(__u32 blk_crc, void *buf, size_t buf_size)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090099{
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +0900100 return f2fs_crc32(buf, buf_size) == blk_crc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900101}
102
103/*
104 * For checkpoint manager
105 */
106enum {
107 NAT_BITMAP,
108 SIT_BITMAP
109};
110
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700111enum {
112 CP_UMOUNT,
Jaegeuk Kim119ee912015-01-29 11:45:33 -0800113 CP_FASTBOOT,
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700114 CP_SYNC,
Jaegeuk Kim10027552015-04-09 17:03:53 -0700115 CP_RECOVERY,
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700116 CP_DISCARD,
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700117};
118
Jaegeuk Kimbba681c2015-01-26 17:41:23 -0800119#define DEF_BATCHED_TRIM_SECTIONS 32
120#define BATCHED_TRIM_SEGMENTS(sbi) \
121 (SM_I(sbi)->trim_sections * (sbi)->segs_per_sec)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700122#define BATCHED_TRIM_BLOCKS(sbi) \
123 (BATCHED_TRIM_SEGMENTS(sbi) << (sbi)->log_blocks_per_seg)
Jaegeuk Kimbba681c2015-01-26 17:41:23 -0800124
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700125struct cp_control {
126 int reason;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700127 __u64 trim_start;
128 __u64 trim_end;
129 __u64 trim_minlen;
130 __u64 trimmed;
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700131};
132
Chao Yu662befd2014-02-07 16:11:53 +0800133/*
Chao Yu81c1a0f12014-02-27 19:12:24 +0800134 * For CP/NAT/SIT/SSA readahead
Chao Yu662befd2014-02-07 16:11:53 +0800135 */
136enum {
137 META_CP,
138 META_NAT,
Chao Yu81c1a0f12014-02-27 19:12:24 +0800139 META_SIT,
Jaegeuk Kim4c521f492014-09-11 13:49:55 -0700140 META_SSA,
141 META_POR,
Chao Yu662befd2014-02-07 16:11:53 +0800142};
143
Jaegeuk Kim6451e042014-07-25 15:47:17 -0700144/* for the list of ino */
145enum {
146 ORPHAN_INO, /* for orphan ino list */
Jaegeuk Kimfff04f92014-07-25 07:40:59 -0700147 APPEND_INO, /* for append ino list */
148 UPDATE_INO, /* for update ino list */
Jaegeuk Kim6451e042014-07-25 15:47:17 -0700149 MAX_INO_ENTRY, /* max. list */
150};
151
152struct ino_entry {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900153 struct list_head list; /* list head */
154 nid_t ino; /* inode number */
155};
156
Chao Yu06292072014-12-29 15:56:18 +0800157/*
158 * for the list of directory inodes or gc inodes.
159 * NOTE: there are two slab users for this structure, if we add/modify/delete
160 * fields in structure for one of slab users, it may affect fields or size of
161 * other one, in this condition, it's better to split both of slab and related
162 * data structure.
163 */
164struct inode_entry {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900165 struct list_head list; /* list head */
166 struct inode *inode; /* vfs inode pointer */
167};
168
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900169/* for the list of blockaddresses to be discarded */
170struct discard_entry {
171 struct list_head list; /* list head */
172 block_t blkaddr; /* block address to be discarded */
173 int len; /* # of consecutive blocks of the discard */
174};
175
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900176/* for the list of fsync inodes, used only during recovery */
177struct fsync_inode_entry {
178 struct list_head list; /* list head */
179 struct inode *inode; /* vfs inode pointer */
Jaegeuk Kimc52e1b12014-09-11 14:29:06 -0700180 block_t blkaddr; /* block address locating the last fsync */
181 block_t last_dentry; /* block address locating the last dentry */
182 block_t last_inode; /* block address locating the last inode */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900183};
184
185#define nats_in_cursum(sum) (le16_to_cpu(sum->n_nats))
186#define sits_in_cursum(sum) (le16_to_cpu(sum->n_sits))
187
188#define nat_in_journal(sum, i) (sum->nat_j.entries[i].ne)
189#define nid_in_journal(sum, i) (sum->nat_j.entries[i].nid)
190#define sit_in_journal(sum, i) (sum->sit_j.entries[i].se)
191#define segno_in_journal(sum, i) (sum->sit_j.entries[i].segno)
192
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700193#define MAX_NAT_JENTRIES(sum) (NAT_JOURNAL_ENTRIES - nats_in_cursum(sum))
194#define MAX_SIT_JENTRIES(sum) (SIT_JOURNAL_ENTRIES - sits_in_cursum(sum))
195
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900196static inline int update_nats_in_cursum(struct f2fs_summary_block *rs, int i)
197{
198 int before = nats_in_cursum(rs);
199 rs->n_nats = cpu_to_le16(before + i);
200 return before;
201}
202
203static inline int update_sits_in_cursum(struct f2fs_summary_block *rs, int i)
204{
205 int before = sits_in_cursum(rs);
206 rs->n_sits = cpu_to_le16(before + i);
207 return before;
208}
209
Chao Yu184a5cd2014-09-04 18:13:01 +0800210static inline bool __has_cursum_space(struct f2fs_summary_block *sum, int size,
211 int type)
212{
213 if (type == NAT_JOURNAL)
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700214 return size <= MAX_NAT_JENTRIES(sum);
215 return size <= MAX_SIT_JENTRIES(sum);
Chao Yu184a5cd2014-09-04 18:13:01 +0800216}
217
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900218/*
Namjae Jeone9750822013-02-04 23:41:41 +0900219 * ioctl commands
220 */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700221#define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS
222#define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS
Chao Yud49f3e82015-01-23 20:36:04 +0800223#define F2FS_IOC_GETVERSION FS_IOC_GETVERSION
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700224
225#define F2FS_IOCTL_MAGIC 0xf5
226#define F2FS_IOC_START_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 1)
227#define F2FS_IOC_COMMIT_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 2)
Jaegeuk Kim02a13352014-10-06 16:11:16 -0700228#define F2FS_IOC_START_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 3)
Jaegeuk Kim1e843712014-12-09 06:08:59 -0800229#define F2FS_IOC_RELEASE_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 4)
230#define F2FS_IOC_ABORT_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 5)
Namjae Jeone9750822013-02-04 23:41:41 +0900231
Jaegeuk Kim1abff932015-01-08 19:15:53 -0800232/*
233 * should be same as XFS_IOC_GOINGDOWN.
234 * Flags for going down operation used by FS_IOC_GOINGDOWN
235 */
236#define F2FS_IOC_SHUTDOWN _IOR('X', 125, __u32) /* Shutdown */
237#define F2FS_GOING_DOWN_FULLSYNC 0x0 /* going down with full sync */
238#define F2FS_GOING_DOWN_METASYNC 0x1 /* going down with metadata */
239#define F2FS_GOING_DOWN_NOSYNC 0x2 /* going down */
240
Namjae Jeone9750822013-02-04 23:41:41 +0900241#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
242/*
243 * ioctl commands in 32 bit emulation
244 */
245#define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS
246#define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS
247#endif
248
249/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900250 * For INODE and NODE manager
251 */
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700252/* for directory operations */
253struct f2fs_dentry_ptr {
254 const void *bitmap;
255 struct f2fs_dir_entry *dentry;
256 __u8 (*filename)[F2FS_SLOT_LEN];
257 int max;
258};
259
260static inline void make_dentry_ptr(struct f2fs_dentry_ptr *d,
261 void *src, int type)
262{
263 if (type == 1) {
264 struct f2fs_dentry_block *t = (struct f2fs_dentry_block *)src;
265 d->max = NR_DENTRY_IN_BLOCK;
266 d->bitmap = &t->dentry_bitmap;
267 d->dentry = t->dentry;
268 d->filename = t->filename;
269 } else {
270 struct f2fs_inline_dentry *t = (struct f2fs_inline_dentry *)src;
271 d->max = NR_INLINE_DENTRY;
272 d->bitmap = &t->dentry_bitmap;
273 d->dentry = t->dentry;
274 d->filename = t->filename;
275 }
276}
277
Jaegeuk Kimdbe6a5f2013-08-09 08:14:06 +0900278/*
279 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
280 * as its node offset to distinguish from index node blocks.
281 * But some bits are used to mark the node block.
282 */
283#define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \
284 >> OFFSET_BIT_SHIFT)
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900285enum {
286 ALLOC_NODE, /* allocate a new node page if needed */
287 LOOKUP_NODE, /* look up a node without readahead */
288 LOOKUP_NODE_RA, /*
289 * look up a node with readahead called
Chao Yu4f4124d2013-12-21 18:02:14 +0800290 * by get_data_block.
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900291 */
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900292};
293
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900294#define F2FS_LINK_MAX 32000 /* maximum link count per file */
295
Chao Yu817202d92014-04-28 17:59:43 +0800296#define MAX_DIR_RA_PAGES 4 /* maximum ra pages of dir */
297
Chao Yu13054c52015-02-05 17:52:58 +0800298/* vector size for gang look-up from extent cache that consists of radix tree */
299#define EXT_TREE_VEC_SIZE 64
300
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900301/* for in-memory extent cache entry */
Chao Yu13054c52015-02-05 17:52:58 +0800302#define F2FS_MIN_EXTENT_LEN 64 /* minimum extent length */
303
304/* number of extent info in extent cache we try to shrink */
305#define EXTENT_CACHE_SHRINK_NUMBER 128
Jaegeuk Kimc11abd12013-11-19 10:41:54 +0900306
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900307struct extent_info {
Chao Yu13054c52015-02-05 17:52:58 +0800308 unsigned int fofs; /* start offset in a file */
309 u32 blk; /* start block address of the extent */
310 unsigned int len; /* length of the extent */
311};
312
313struct extent_node {
314 struct rb_node rb_node; /* rb node located in rb-tree */
315 struct list_head list; /* node in global extent list of sbi */
316 struct extent_info ei; /* extent info */
317};
318
319struct extent_tree {
320 nid_t ino; /* inode number */
321 struct rb_root root; /* root of extent info rb-tree */
Chao Yu62c8af62015-02-05 18:01:39 +0800322 struct extent_node *cached_en; /* recently accessed extent node */
Chao Yu13054c52015-02-05 17:52:58 +0800323 rwlock_t lock; /* protect extent info rb-tree */
324 atomic_t refcount; /* reference count of rb-tree */
325 unsigned int count; /* # of extent node in rb-tree*/
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900326};
327
328/*
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700329 * This structure is taken from ext4_map_blocks.
330 *
331 * Note that, however, f2fs uses NEW and MAPPED flags for f2fs_map_blocks().
332 */
333#define F2FS_MAP_NEW (1 << BH_New)
334#define F2FS_MAP_MAPPED (1 << BH_Mapped)
Jaegeuk Kim7f63eb72015-05-08 19:30:32 -0700335#define F2FS_MAP_UNWRITTEN (1 << BH_Unwritten)
336#define F2FS_MAP_FLAGS (F2FS_MAP_NEW | F2FS_MAP_MAPPED |\
337 F2FS_MAP_UNWRITTEN)
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700338
339struct f2fs_map_blocks {
340 block_t m_pblk;
341 block_t m_lblk;
342 unsigned int m_len;
343 unsigned int m_flags;
344};
345
346/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900347 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
348 */
349#define FADVISE_COLD_BIT 0x01
Jaegeuk Kim354a3392013-06-14 08:52:35 +0900350#define FADVISE_LOST_PINO_BIT 0x02
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700351#define FADVISE_ENCRYPT_BIT 0x04
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900352
Jaegeuk Kimb5492af72015-04-20 13:44:41 -0700353#define file_is_cold(inode) is_file(inode, FADVISE_COLD_BIT)
354#define file_wrong_pino(inode) is_file(inode, FADVISE_LOST_PINO_BIT)
355#define file_set_cold(inode) set_file(inode, FADVISE_COLD_BIT)
356#define file_lost_pino(inode) set_file(inode, FADVISE_LOST_PINO_BIT)
357#define file_clear_cold(inode) clear_file(inode, FADVISE_COLD_BIT)
358#define file_got_pino(inode) clear_file(inode, FADVISE_LOST_PINO_BIT)
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700359#define file_is_encrypt(inode) is_file(inode, FADVISE_ENCRYPT_BIT)
360#define file_set_encrypt(inode) set_file(inode, FADVISE_ENCRYPT_BIT)
361#define file_clear_encrypt(inode) clear_file(inode, FADVISE_ENCRYPT_BIT)
362
363/* Encryption algorithms */
364#define F2FS_ENCRYPTION_MODE_INVALID 0
365#define F2FS_ENCRYPTION_MODE_AES_256_XTS 1
366#define F2FS_ENCRYPTION_MODE_AES_256_GCM 2
367#define F2FS_ENCRYPTION_MODE_AES_256_CBC 3
368#define F2FS_ENCRYPTION_MODE_AES_256_CTS 4
Jaegeuk Kimb5492af72015-04-20 13:44:41 -0700369
Jaegeuk Kimab9fa662014-02-27 20:09:05 +0900370#define DEF_DIR_LEVEL 0
371
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900372struct f2fs_inode_info {
373 struct inode vfs_inode; /* serve a vfs inode */
374 unsigned long i_flags; /* keep an inode flags for ioctl */
375 unsigned char i_advise; /* use to give file attribute hints */
Jaegeuk Kim38431542014-02-27 18:20:00 +0900376 unsigned char i_dir_level; /* use for dentry level for large dir */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900377 unsigned int i_current_depth; /* use only in directory structure */
Jaegeuk Kim6666e6a2012-12-10 17:52:48 +0900378 unsigned int i_pino; /* parent inode number */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900379 umode_t i_acl_mode; /* keep file acl mode temporarily */
380
381 /* Use below internally in f2fs*/
382 unsigned long flags; /* use to pass per-file flags */
Jaegeuk Kimd928bfb2014-03-20 19:10:08 +0900383 struct rw_semaphore i_sem; /* protect fi info */
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -0700384 atomic_t dirty_pages; /* # of dirty pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900385 f2fs_hash_t chash; /* hash value of given file name */
386 unsigned int clevel; /* maximum level of given file name */
387 nid_t i_xattr_nid; /* node id that contains xattrs */
Jaegeuk Kime518ff82013-08-09 14:46:15 +0900388 unsigned long long xattr_ver; /* cp version of xattr modification */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900389 struct extent_info ext; /* in-memory extent cache entry */
Chao Yu0c872e22015-02-05 17:46:29 +0800390 rwlock_t ext_lock; /* rwlock for single extent cache */
Chao Yu06292072014-12-29 15:56:18 +0800391 struct inode_entry *dirty_dir; /* the pointer of dirty dir */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700392
Jaegeuk Kim34ba94b2014-10-09 13:19:53 -0700393 struct radix_tree_root inmem_root; /* radix tree for inmem pages */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700394 struct list_head inmem_pages; /* inmemory pages managed by f2fs */
395 struct mutex inmem_lock; /* lock for inmemory pages */
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700396
397#ifdef CONFIG_F2FS_FS_ENCRYPTION
398 /* Encryption params */
399 struct f2fs_crypt_info *i_crypt_info;
400#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900401};
402
403static inline void get_extent_info(struct extent_info *ext,
404 struct f2fs_extent i_ext)
405{
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900406 ext->fofs = le32_to_cpu(i_ext.fofs);
Chao Yu4d0b0bd2015-02-05 17:47:25 +0800407 ext->blk = le32_to_cpu(i_ext.blk);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900408 ext->len = le32_to_cpu(i_ext.len);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900409}
410
411static inline void set_raw_extent(struct extent_info *ext,
412 struct f2fs_extent *i_ext)
413{
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900414 i_ext->fofs = cpu_to_le32(ext->fofs);
Chao Yu4d0b0bd2015-02-05 17:47:25 +0800415 i_ext->blk = cpu_to_le32(ext->blk);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900416 i_ext->len = cpu_to_le32(ext->len);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900417}
418
Chao Yu429511c2015-02-05 17:54:31 +0800419static inline void set_extent_info(struct extent_info *ei, unsigned int fofs,
420 u32 blk, unsigned int len)
421{
422 ei->fofs = fofs;
423 ei->blk = blk;
424 ei->len = len;
425}
426
Chao Yu0bdee482015-03-19 19:27:51 +0800427static inline bool __is_extent_same(struct extent_info *ei1,
428 struct extent_info *ei2)
429{
430 return (ei1->fofs == ei2->fofs && ei1->blk == ei2->blk &&
431 ei1->len == ei2->len);
432}
433
Chao Yu429511c2015-02-05 17:54:31 +0800434static inline bool __is_extent_mergeable(struct extent_info *back,
435 struct extent_info *front)
436{
437 return (back->fofs + back->len == front->fofs &&
438 back->blk + back->len == front->blk);
439}
440
441static inline bool __is_back_mergeable(struct extent_info *cur,
442 struct extent_info *back)
443{
444 return __is_extent_mergeable(back, cur);
445}
446
447static inline bool __is_front_mergeable(struct extent_info *cur,
448 struct extent_info *front)
449{
450 return __is_extent_mergeable(cur, front);
451}
452
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900453struct f2fs_nm_info {
454 block_t nat_blkaddr; /* base disk address of NAT */
455 nid_t max_nid; /* maximum possible node ids */
Jaegeuk Kim7ee0eea2014-04-18 11:14:37 +0900456 nid_t available_nids; /* maximum available node ids */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900457 nid_t next_scan_nid; /* the next nid to be scanned */
Jaegeuk Kimcdfc41c2014-03-19 13:31:37 +0900458 unsigned int ram_thresh; /* control the memory footprint */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900459
460 /* NAT cache management */
461 struct radix_tree_root nat_root;/* root of the nat entry cache */
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700462 struct radix_tree_root nat_set_root;/* root of the nat set cache */
Jaegeuk Kim8b26ef92014-12-03 21:15:10 -0800463 struct rw_semaphore nat_tree_lock; /* protect nat_tree_lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900464 struct list_head nat_entries; /* cached nat entry list (clean) */
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700465 unsigned int nat_cnt; /* the # of cached nat entries */
Chao Yuaec71382014-06-24 09:18:20 +0800466 unsigned int dirty_nat_cnt; /* total num of nat entries in set */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900467
468 /* free node ids management */
Jaegeuk Kim8a7ed662014-02-21 14:29:35 +0900469 struct radix_tree_root free_nid_root;/* root of the free_nid cache */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900470 struct list_head free_nid_list; /* a list for free nids */
471 spinlock_t free_nid_list_lock; /* protect free nid list */
472 unsigned int fcnt; /* the number of free node id */
473 struct mutex build_lock; /* lock for build free nids */
474
475 /* for checkpoint */
476 char *nat_bitmap; /* NAT bitmap pointer */
477 int bitmap_size; /* bitmap size */
478};
479
480/*
481 * this structure is used as one of function parameters.
482 * all the information are dedicated to a given direct node block determined
483 * by the data offset in a file.
484 */
485struct dnode_of_data {
486 struct inode *inode; /* vfs inode pointer */
487 struct page *inode_page; /* its inode page, NULL is possible */
488 struct page *node_page; /* cached direct node page */
489 nid_t nid; /* node id of the direct node block */
490 unsigned int ofs_in_node; /* data offset in the node page */
491 bool inode_page_locked; /* inode page is locked or not */
492 block_t data_blkaddr; /* block address of the node block */
493};
494
495static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
496 struct page *ipage, struct page *npage, nid_t nid)
497{
Jaegeuk Kimd66d1f72013-01-03 08:57:21 +0900498 memset(dn, 0, sizeof(*dn));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900499 dn->inode = inode;
500 dn->inode_page = ipage;
501 dn->node_page = npage;
502 dn->nid = nid;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900503}
504
505/*
506 * For SIT manager
507 *
508 * By default, there are 6 active log areas across the whole main area.
509 * When considering hot and cold data separation to reduce cleaning overhead,
510 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
511 * respectively.
512 * In the current design, you should not change the numbers intentionally.
513 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
514 * logs individually according to the underlying devices. (default: 6)
515 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
516 * data and 8 for node logs.
517 */
518#define NR_CURSEG_DATA_TYPE (3)
519#define NR_CURSEG_NODE_TYPE (3)
520#define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
521
522enum {
523 CURSEG_HOT_DATA = 0, /* directory entry blocks */
524 CURSEG_WARM_DATA, /* data blocks */
525 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */
526 CURSEG_HOT_NODE, /* direct node blocks of directory files */
527 CURSEG_WARM_NODE, /* direct node blocks of normal files */
528 CURSEG_COLD_NODE, /* indirect node blocks */
Jaegeuk Kim38aa0882015-01-05 16:02:20 -0800529 NO_CHECK_TYPE,
530 CURSEG_DIRECT_IO, /* to use for the direct IO path */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900531};
532
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900533struct flush_cmd {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900534 struct completion wait;
Gu Zheng721bd4d2014-09-05 18:31:00 +0800535 struct llist_node llnode;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900536 int ret;
537};
538
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800539struct flush_cmd_control {
540 struct task_struct *f2fs_issue_flush; /* flush thread */
541 wait_queue_head_t flush_wait_queue; /* waiting queue for wake-up */
Gu Zheng721bd4d2014-09-05 18:31:00 +0800542 struct llist_head issue_list; /* list for command issue */
543 struct llist_node *dispatch_list; /* list for command dispatch */
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800544};
545
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900546struct f2fs_sm_info {
547 struct sit_info *sit_info; /* whole segment information */
548 struct free_segmap_info *free_info; /* free segment information */
549 struct dirty_seglist_info *dirty_info; /* dirty segment information */
550 struct curseg_info *curseg_array; /* active segment information */
551
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900552 block_t seg0_blkaddr; /* block address of 0'th segment */
553 block_t main_blkaddr; /* start block address of main area */
554 block_t ssa_blkaddr; /* start block address of SSA area */
555
556 unsigned int segment_count; /* total # of segments */
557 unsigned int main_segments; /* # of segments in main area */
558 unsigned int reserved_segments; /* # of reserved segments */
559 unsigned int ovp_segments; /* # of overprovision segments */
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +0900560
561 /* a threshold to reclaim prefree segments */
562 unsigned int rec_prefree_segments;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900563
564 /* for small discard management */
565 struct list_head discard_list; /* 4KB discard list */
566 int nr_discards; /* # of discards in the list */
567 int max_discards; /* max. discards to be issued */
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900568
Jaegeuk Kimbba681c2015-01-26 17:41:23 -0800569 /* for batched trimming */
570 unsigned int trim_sections; /* # of sections to trim */
571
Chao Yu184a5cd2014-09-04 18:13:01 +0800572 struct list_head sit_entry_set; /* sit entry set list */
573
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900574 unsigned int ipu_policy; /* in-place-update policy */
575 unsigned int min_ipu_util; /* in-place-update threshold */
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -0700576 unsigned int min_fsync_blocks; /* threshold for fsync */
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900577
578 /* for flush command control */
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800579 struct flush_cmd_control *cmd_control_info;
580
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900581};
582
583/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900584 * For superblock
585 */
586/*
587 * COUNT_TYPE for monitoring
588 *
589 * f2fs monitors the number of several block types such as on-writeback,
590 * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
591 */
592enum count_type {
593 F2FS_WRITEBACK,
594 F2FS_DIRTY_DENTS,
595 F2FS_DIRTY_NODES,
596 F2FS_DIRTY_META,
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800597 F2FS_INMEM_PAGES,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900598 NR_COUNT_TYPE,
599};
600
601/*
arter97e1c42042014-08-06 23:22:50 +0900602 * The below are the page types of bios used in submit_bio().
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900603 * The available types are:
604 * DATA User data pages. It operates as async mode.
605 * NODE Node pages. It operates as async mode.
606 * META FS metadata pages such as SIT, NAT, CP.
607 * NR_PAGE_TYPE The number of page types.
608 * META_FLUSH Make sure the previous pages are written
609 * with waiting the bio's completion
610 * ... Only can be used with META.
611 */
Jaegeuk Kim7d5e5102013-11-18 17:13:35 +0900612#define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900613enum page_type {
614 DATA,
615 NODE,
616 META,
617 NR_PAGE_TYPE,
618 META_FLUSH,
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700619 INMEM, /* the below types are used by tracepoints only. */
620 INMEM_DROP,
621 IPU,
622 OPU,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900623};
624
Jaegeuk Kim458e6192013-12-11 13:54:01 +0900625struct f2fs_io_info {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -0700626 struct f2fs_sb_info *sbi; /* f2fs_sb_info pointer */
Gu Zheng7e8f2302013-12-20 18:17:49 +0800627 enum page_type type; /* contains DATA/NODE/META/META_FLUSH */
628 int rw; /* contains R/RS/W/WS with REQ_META/REQ_PRIO */
Jaegeuk Kimcf04e8e2014-12-17 19:33:13 -0800629 block_t blk_addr; /* block address to be written */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -0700630 struct page *page; /* page to be written */
Jaegeuk Kim458e6192013-12-11 13:54:01 +0900631};
632
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +0900633#define is_read_io(rw) (((rw) & 1) == READ)
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900634struct f2fs_bio_info {
Jaegeuk Kim458e6192013-12-11 13:54:01 +0900635 struct f2fs_sb_info *sbi; /* f2fs superblock */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900636 struct bio *bio; /* bios to merge */
637 sector_t last_block_in_bio; /* last block number */
Jaegeuk Kim458e6192013-12-11 13:54:01 +0900638 struct f2fs_io_info fio; /* store buffered io info. */
Chao Yudf0f8dc2014-03-22 14:57:23 +0800639 struct rw_semaphore io_rwsem; /* blocking op for bio */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900640};
641
Chao Yu67298802014-11-18 11:18:36 +0800642/* for inner inode cache management */
643struct inode_management {
644 struct radix_tree_root ino_root; /* ino entry array */
645 spinlock_t ino_lock; /* for ino entry lock */
646 struct list_head ino_list; /* inode list head */
647 unsigned long ino_num; /* number of entries */
648};
649
Chao Yucaf00472015-01-28 17:48:42 +0800650/* For s_flag in struct f2fs_sb_info */
651enum {
652 SBI_IS_DIRTY, /* dirty flag for checkpoint */
653 SBI_IS_CLOSE, /* specify unmounting */
654 SBI_NEED_FSCK, /* need fsck.f2fs to fix */
655 SBI_POR_DOING, /* recovery is doing or not */
656};
657
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900658struct f2fs_sb_info {
659 struct super_block *sb; /* pointer to VFS super block */
Jaegeuk Kim5e176d52013-06-28 12:47:01 +0900660 struct proc_dir_entry *s_proc; /* proc entry */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900661 struct buffer_head *raw_super_buf; /* buffer head of raw sb */
662 struct f2fs_super_block *raw_super; /* raw super block pointer */
Chao Yucaf00472015-01-28 17:48:42 +0800663 int s_flag; /* flags for sbi */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900664
665 /* for node-related operations */
666 struct f2fs_nm_info *nm_info; /* node manager */
667 struct inode *node_inode; /* cache node blocks */
668
669 /* for segment-related operations */
670 struct f2fs_sm_info *sm_info; /* segment manager */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900671
672 /* for bio operations */
Chao Yu924b7202013-11-20 14:46:39 +0800673 struct f2fs_bio_info read_io; /* for read bios */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900674 struct f2fs_bio_info write_io[NR_PAGE_TYPE]; /* for write bios */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900675
676 /* for checkpoint */
677 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
678 struct inode *meta_inode; /* cache meta blocks */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900679 struct mutex cp_mutex; /* checkpoint procedure lock */
Gu Zhenge4795562013-09-27 18:08:30 +0800680 struct rw_semaphore cp_rwsem; /* blocking FS operations */
Chao Yub3582c62014-07-03 18:58:39 +0800681 struct rw_semaphore node_write; /* locking node writes */
Jaegeuk Kim5463e7c2015-04-21 10:40:54 -0700682 struct mutex writepages; /* mutex for writepages() */
Changman Leefb51b5e2013-11-07 12:48:25 +0900683 wait_queue_head_t cp_wait;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900684
Chao Yu67298802014-11-18 11:18:36 +0800685 struct inode_management im[MAX_INO_ENTRY]; /* manage inode cache */
Jaegeuk Kim6451e042014-07-25 15:47:17 -0700686
687 /* for orphan inode, use 0'th array */
Gu Zheng0d47c1a2013-12-26 18:24:19 +0800688 unsigned int max_orphans; /* max orphan inodes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900689
690 /* for directory inode management */
691 struct list_head dir_inode_list; /* dir inode list */
692 spinlock_t dir_inode_lock; /* for dir inode list lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900693
Chao Yu13054c52015-02-05 17:52:58 +0800694 /* for extent tree cache */
695 struct radix_tree_root extent_tree_root;/* cache extent cache entries */
696 struct rw_semaphore extent_tree_lock; /* locking extent radix tree */
697 struct list_head extent_list; /* lru list for shrinker */
698 spinlock_t extent_lock; /* locking extent lru list */
699 int total_ext_tree; /* extent tree count */
700 atomic_t total_ext_node; /* extent info count */
701
arter97e1c42042014-08-06 23:22:50 +0900702 /* basic filesystem units */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900703 unsigned int log_sectors_per_block; /* log2 sectors per block */
704 unsigned int log_blocksize; /* log2 block size */
705 unsigned int blocksize; /* block size */
706 unsigned int root_ino_num; /* root inode number*/
707 unsigned int node_ino_num; /* node inode number*/
708 unsigned int meta_ino_num; /* meta inode number*/
709 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
710 unsigned int blocks_per_seg; /* blocks per segment */
711 unsigned int segs_per_sec; /* segments per section */
712 unsigned int secs_per_zone; /* sections per zone */
713 unsigned int total_sections; /* total section count */
714 unsigned int total_node_count; /* total node block count */
715 unsigned int total_valid_node_count; /* valid node block count */
716 unsigned int total_valid_inode_count; /* valid inode count */
717 int active_logs; /* # of active logs */
Jaegeuk Kimab9fa662014-02-27 20:09:05 +0900718 int dir_level; /* directory level */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900719
720 block_t user_block_count; /* # of user blocks */
721 block_t total_valid_block_count; /* # of valid blocks */
722 block_t alloc_valid_block_count; /* # of allocated blocks */
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700723 block_t discard_blks; /* discard command candidats */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900724 block_t last_valid_block_count; /* for recovery */
725 u32 s_next_generation; /* for NFS support */
726 atomic_t nr_pages[NR_COUNT_TYPE]; /* # of pages, see count_type */
727
728 struct f2fs_mount_info mount_opt; /* mount options */
729
730 /* for cleaning operations */
731 struct mutex gc_mutex; /* mutex for GC */
732 struct f2fs_gc_kthread *gc_thread; /* GC thread */
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900733 unsigned int cur_victim_sec; /* current victim section num */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900734
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +0900735 /* maximum # of trials to find a victim segment for SSR and GC */
736 unsigned int max_victim_search;
737
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900738 /*
739 * for stat information.
740 * one is for the LFS mode, and the other is for the SSR mode.
741 */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900742#ifdef CONFIG_F2FS_STAT_FS
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900743 struct f2fs_stat_info *stat_info; /* FS status information */
744 unsigned int segment_count[2]; /* # of allocated segments */
745 unsigned int block_count[2]; /* # of allocated blocks */
Changman Leeb9a2c252014-12-24 02:16:54 +0900746 atomic_t inplace_count; /* # of inplace update */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900747 int total_hit_ext, read_hit_ext; /* extent cache hit ratio */
Chao Yu03e14d52014-12-08 19:08:20 +0800748 atomic_t inline_inode; /* # of inline_data inodes */
749 atomic_t inline_dir; /* # of inline_dentry inodes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900750 int bg_gc; /* background gc calls */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900751 unsigned int n_dirty_dirs; /* # of dir inodes */
752#endif
753 unsigned int last_victim[2]; /* last victim segment # */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900754 spinlock_t stat_lock; /* lock for stat operations */
Namjae Jeonb59d0ba2013-08-04 23:09:40 +0900755
756 /* For sysfs suppport */
757 struct kobject s_kobj;
758 struct completion s_kobj_unregister;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900759};
760
761/*
762 * Inline functions
763 */
764static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
765{
766 return container_of(inode, struct f2fs_inode_info, vfs_inode);
767}
768
769static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
770{
771 return sb->s_fs_info;
772}
773
Jaegeuk Kim40813632014-09-02 15:31:18 -0700774static inline struct f2fs_sb_info *F2FS_I_SB(struct inode *inode)
775{
776 return F2FS_SB(inode->i_sb);
777}
778
779static inline struct f2fs_sb_info *F2FS_M_SB(struct address_space *mapping)
780{
781 return F2FS_I_SB(mapping->host);
782}
783
784static inline struct f2fs_sb_info *F2FS_P_SB(struct page *page)
785{
786 return F2FS_M_SB(page->mapping);
787}
788
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900789static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
790{
791 return (struct f2fs_super_block *)(sbi->raw_super);
792}
793
794static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
795{
796 return (struct f2fs_checkpoint *)(sbi->ckpt);
797}
798
Gu Zheng45590712013-07-15 17:57:38 +0800799static inline struct f2fs_node *F2FS_NODE(struct page *page)
800{
801 return (struct f2fs_node *)page_address(page);
802}
803
Jaegeuk Kim58bfaf42013-12-26 16:30:41 +0900804static inline struct f2fs_inode *F2FS_INODE(struct page *page)
805{
806 return &((struct f2fs_node *)page_address(page))->i;
807}
808
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900809static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
810{
811 return (struct f2fs_nm_info *)(sbi->nm_info);
812}
813
814static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
815{
816 return (struct f2fs_sm_info *)(sbi->sm_info);
817}
818
819static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
820{
821 return (struct sit_info *)(SM_I(sbi)->sit_info);
822}
823
824static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
825{
826 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
827}
828
829static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
830{
831 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
832}
833
Gu Zheng9df27d92014-01-20 18:37:04 +0800834static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi)
835{
836 return sbi->meta_inode->i_mapping;
837}
838
Jaegeuk Kim4ef51a82014-01-21 18:51:16 +0900839static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi)
840{
841 return sbi->node_inode->i_mapping;
842}
843
Chao Yucaf00472015-01-28 17:48:42 +0800844static inline bool is_sbi_flag_set(struct f2fs_sb_info *sbi, unsigned int type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900845{
Chao Yucaf00472015-01-28 17:48:42 +0800846 return sbi->s_flag & (0x01 << type);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900847}
848
Chao Yucaf00472015-01-28 17:48:42 +0800849static inline void set_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900850{
Chao Yucaf00472015-01-28 17:48:42 +0800851 sbi->s_flag |= (0x01 << type);
852}
853
854static inline void clear_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
855{
856 sbi->s_flag &= ~(0x01 << type);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900857}
858
Jaegeuk Kimd71b5562013-08-09 15:03:21 +0900859static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
860{
861 return le64_to_cpu(cp->checkpoint_ver);
862}
863
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900864static inline bool is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
865{
866 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
867 return ckpt_flags & f;
868}
869
870static inline void set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
871{
872 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
873 ckpt_flags |= f;
874 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
875}
876
877static inline void clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
878{
879 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
880 ckpt_flags &= (~f);
881 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
882}
883
Gu Zhenge4795562013-09-27 18:08:30 +0800884static inline void f2fs_lock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900885{
Gu Zhenge4795562013-09-27 18:08:30 +0800886 down_read(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900887}
888
Gu Zhenge4795562013-09-27 18:08:30 +0800889static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900890{
Gu Zhenge4795562013-09-27 18:08:30 +0800891 up_read(&sbi->cp_rwsem);
Jaegeuk Kim39936832012-11-22 16:21:29 +0900892}
893
Gu Zhenge4795562013-09-27 18:08:30 +0800894static inline void f2fs_lock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +0900895{
Jaegeuk Kim0daaad92013-11-24 13:50:35 +0900896 f2fs_down_write(&sbi->cp_rwsem, &sbi->cp_mutex);
Jaegeuk Kim39936832012-11-22 16:21:29 +0900897}
898
Gu Zhenge4795562013-09-27 18:08:30 +0800899static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +0900900{
Gu Zhenge4795562013-09-27 18:08:30 +0800901 up_write(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900902}
903
Jaegeuk Kim119ee912015-01-29 11:45:33 -0800904static inline int __get_cp_reason(struct f2fs_sb_info *sbi)
905{
906 int reason = CP_SYNC;
907
908 if (test_opt(sbi, FASTBOOT))
909 reason = CP_FASTBOOT;
910 if (is_sbi_flag_set(sbi, SBI_IS_CLOSE))
911 reason = CP_UMOUNT;
912 return reason;
913}
914
915static inline bool __remain_node_summaries(int reason)
916{
917 return (reason == CP_UMOUNT || reason == CP_FASTBOOT);
918}
919
920static inline bool __exist_node_summaries(struct f2fs_sb_info *sbi)
921{
922 return (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_UMOUNT_FLAG) ||
923 is_set_ckpt_flags(F2FS_CKPT(sbi), CP_FASTBOOT_FLAG));
924}
925
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900926/*
927 * Check whether the given nid is within node id range.
928 */
Namjae Jeon064e0822013-03-17 17:27:20 +0900929static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900930{
Chao Yud6b7d4b2014-06-12 13:23:41 +0800931 if (unlikely(nid < F2FS_ROOT_INO(sbi)))
932 return -EINVAL;
Chao Yucfb271d2013-12-05 17:15:22 +0800933 if (unlikely(nid >= NM_I(sbi)->max_nid))
Namjae Jeon064e0822013-03-17 17:27:20 +0900934 return -EINVAL;
935 return 0;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900936}
937
938#define F2FS_DEFAULT_ALLOCATED_BLOCKS 1
939
940/*
941 * Check whether the inode has blocks or not
942 */
943static inline int F2FS_HAS_BLOCKS(struct inode *inode)
944{
945 if (F2FS_I(inode)->i_xattr_nid)
Chris Fries6c311ec2014-01-17 14:44:39 -0600946 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900947 else
Chris Fries6c311ec2014-01-17 14:44:39 -0600948 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900949}
950
Chao Yu4bc8e9b2014-03-17 16:35:06 +0800951static inline bool f2fs_has_xattr_block(unsigned int ofs)
952{
953 return ofs == XATTR_NODE_OFFSET;
954}
955
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900956static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi,
957 struct inode *inode, blkcnt_t count)
958{
959 block_t valid_block_count;
960
961 spin_lock(&sbi->stat_lock);
962 valid_block_count =
963 sbi->total_valid_block_count + (block_t)count;
Chao Yucfb271d2013-12-05 17:15:22 +0800964 if (unlikely(valid_block_count > sbi->user_block_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900965 spin_unlock(&sbi->stat_lock);
966 return false;
967 }
968 inode->i_blocks += count;
969 sbi->total_valid_block_count = valid_block_count;
970 sbi->alloc_valid_block_count += (block_t)count;
971 spin_unlock(&sbi->stat_lock);
972 return true;
973}
974
Gu Zhengda19b0d2013-11-19 18:03:27 +0800975static inline void dec_valid_block_count(struct f2fs_sb_info *sbi,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900976 struct inode *inode,
977 blkcnt_t count)
978{
979 spin_lock(&sbi->stat_lock);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700980 f2fs_bug_on(sbi, sbi->total_valid_block_count < (block_t) count);
981 f2fs_bug_on(sbi, inode->i_blocks < count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900982 inode->i_blocks -= count;
983 sbi->total_valid_block_count -= (block_t)count;
984 spin_unlock(&sbi->stat_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900985}
986
987static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
988{
989 atomic_inc(&sbi->nr_pages[count_type]);
Chao Yucaf00472015-01-28 17:48:42 +0800990 set_sbi_flag(sbi, SBI_IS_DIRTY);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900991}
992
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -0700993static inline void inode_inc_dirty_pages(struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900994{
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -0700995 atomic_inc(&F2FS_I(inode)->dirty_pages);
996 if (S_ISDIR(inode->i_mode))
997 inc_page_count(F2FS_I_SB(inode), F2FS_DIRTY_DENTS);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900998}
999
1000static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
1001{
1002 atomic_dec(&sbi->nr_pages[count_type]);
1003}
1004
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001005static inline void inode_dec_dirty_pages(struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001006{
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001007 if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode))
Jaegeuk Kim1fe54f92014-02-07 10:00:06 +09001008 return;
1009
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001010 atomic_dec(&F2FS_I(inode)->dirty_pages);
1011
1012 if (S_ISDIR(inode->i_mode))
1013 dec_page_count(F2FS_I_SB(inode), F2FS_DIRTY_DENTS);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001014}
1015
1016static inline int get_pages(struct f2fs_sb_info *sbi, int count_type)
1017{
1018 return atomic_read(&sbi->nr_pages[count_type]);
1019}
1020
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001021static inline int get_dirty_pages(struct inode *inode)
Jaegeuk Kimf8b2c1f2014-03-18 12:33:06 +09001022{
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001023 return atomic_read(&F2FS_I(inode)->dirty_pages);
Jaegeuk Kimf8b2c1f2014-03-18 12:33:06 +09001024}
1025
Namjae Jeon5ac206c2013-02-02 23:52:59 +09001026static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
1027{
1028 unsigned int pages_per_sec = sbi->segs_per_sec *
1029 (1 << sbi->log_blocks_per_seg);
1030 return ((get_pages(sbi, block_type) + pages_per_sec - 1)
1031 >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
1032}
1033
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001034static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
1035{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09001036 return sbi->total_valid_block_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001037}
1038
1039static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
1040{
1041 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1042
1043 /* return NAT or SIT bitmap */
1044 if (flag == NAT_BITMAP)
1045 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
1046 else if (flag == SIT_BITMAP)
1047 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
1048
1049 return 0;
1050}
1051
Wanpeng Li55141482015-02-26 07:57:20 +08001052static inline block_t __cp_payload(struct f2fs_sb_info *sbi)
1053{
1054 return le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload);
1055}
1056
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001057static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
1058{
1059 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Changman Lee1dbe4152014-05-12 12:27:43 +09001060 int offset;
1061
Wanpeng Li55141482015-02-26 07:57:20 +08001062 if (__cp_payload(sbi) > 0) {
Changman Lee1dbe4152014-05-12 12:27:43 +09001063 if (flag == NAT_BITMAP)
1064 return &ckpt->sit_nat_version_bitmap;
1065 else
Jaegeuk Kim65b85cc2014-07-30 17:25:54 -07001066 return (unsigned char *)ckpt + F2FS_BLKSIZE;
Changman Lee1dbe4152014-05-12 12:27:43 +09001067 } else {
1068 offset = (flag == NAT_BITMAP) ?
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001069 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
Changman Lee1dbe4152014-05-12 12:27:43 +09001070 return &ckpt->sit_nat_version_bitmap + offset;
1071 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001072}
1073
1074static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
1075{
1076 block_t start_addr;
1077 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kimd71b5562013-08-09 15:03:21 +09001078 unsigned long long ckpt_version = cur_cp_version(ckpt);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001079
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001080 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001081
1082 /*
1083 * odd numbered checkpoint should at cp segment 0
arter97e1c42042014-08-06 23:22:50 +09001084 * and even segment must be at cp segment 1
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001085 */
1086 if (!(ckpt_version & 1))
1087 start_addr += sbi->blocks_per_seg;
1088
1089 return start_addr;
1090}
1091
1092static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
1093{
1094 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
1095}
1096
1097static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi,
Gu Zhengef86d702013-11-19 18:03:38 +08001098 struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001099{
1100 block_t valid_block_count;
1101 unsigned int valid_node_count;
1102
1103 spin_lock(&sbi->stat_lock);
1104
Gu Zhengef86d702013-11-19 18:03:38 +08001105 valid_block_count = sbi->total_valid_block_count + 1;
Chao Yucfb271d2013-12-05 17:15:22 +08001106 if (unlikely(valid_block_count > sbi->user_block_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001107 spin_unlock(&sbi->stat_lock);
1108 return false;
1109 }
1110
Gu Zhengef86d702013-11-19 18:03:38 +08001111 valid_node_count = sbi->total_valid_node_count + 1;
Chao Yucfb271d2013-12-05 17:15:22 +08001112 if (unlikely(valid_node_count > sbi->total_node_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001113 spin_unlock(&sbi->stat_lock);
1114 return false;
1115 }
1116
1117 if (inode)
Gu Zhengef86d702013-11-19 18:03:38 +08001118 inode->i_blocks++;
1119
1120 sbi->alloc_valid_block_count++;
1121 sbi->total_valid_node_count++;
1122 sbi->total_valid_block_count++;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001123 spin_unlock(&sbi->stat_lock);
1124
1125 return true;
1126}
1127
1128static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
Gu Zhengef86d702013-11-19 18:03:38 +08001129 struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001130{
1131 spin_lock(&sbi->stat_lock);
1132
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001133 f2fs_bug_on(sbi, !sbi->total_valid_block_count);
1134 f2fs_bug_on(sbi, !sbi->total_valid_node_count);
1135 f2fs_bug_on(sbi, !inode->i_blocks);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001136
Gu Zhengef86d702013-11-19 18:03:38 +08001137 inode->i_blocks--;
1138 sbi->total_valid_node_count--;
1139 sbi->total_valid_block_count--;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001140
1141 spin_unlock(&sbi->stat_lock);
1142}
1143
1144static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
1145{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09001146 return sbi->total_valid_node_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001147}
1148
1149static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
1150{
1151 spin_lock(&sbi->stat_lock);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001152 f2fs_bug_on(sbi, sbi->total_valid_inode_count == sbi->total_node_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001153 sbi->total_valid_inode_count++;
1154 spin_unlock(&sbi->stat_lock);
1155}
1156
Jaegeuk Kim0e802202013-11-26 16:36:20 +09001157static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001158{
1159 spin_lock(&sbi->stat_lock);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001160 f2fs_bug_on(sbi, !sbi->total_valid_inode_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001161 sbi->total_valid_inode_count--;
1162 spin_unlock(&sbi->stat_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001163}
1164
1165static inline unsigned int valid_inode_count(struct f2fs_sb_info *sbi)
1166{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09001167 return sbi->total_valid_inode_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001168}
1169
1170static inline void f2fs_put_page(struct page *page, int unlock)
1171{
Jaegeuk Kim031fa8c2013-11-28 12:55:13 +09001172 if (!page)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001173 return;
1174
1175 if (unlock) {
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001176 f2fs_bug_on(F2FS_P_SB(page), !PageLocked(page));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001177 unlock_page(page);
1178 }
1179 page_cache_release(page);
1180}
1181
1182static inline void f2fs_put_dnode(struct dnode_of_data *dn)
1183{
1184 if (dn->node_page)
1185 f2fs_put_page(dn->node_page, 1);
1186 if (dn->inode_page && dn->node_page != dn->inode_page)
1187 f2fs_put_page(dn->inode_page, 0);
1188 dn->node_page = NULL;
1189 dn->inode_page = NULL;
1190}
1191
1192static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
Gu Zhenge8512d22014-03-07 18:43:28 +08001193 size_t size)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001194{
Gu Zhenge8512d22014-03-07 18:43:28 +08001195 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001196}
1197
Gu Zheng7bd59382013-10-22 14:52:26 +08001198static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep,
1199 gfp_t flags)
1200{
1201 void *entry;
1202retry:
1203 entry = kmem_cache_alloc(cachep, flags);
1204 if (!entry) {
1205 cond_resched();
1206 goto retry;
1207 }
1208
1209 return entry;
1210}
1211
Jaegeuk Kim9be32d72014-12-05 10:39:49 -08001212static inline void f2fs_radix_tree_insert(struct radix_tree_root *root,
1213 unsigned long index, void *item)
1214{
1215 while (radix_tree_insert(root, index, item))
1216 cond_resched();
1217}
1218
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001219#define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
1220
1221static inline bool IS_INODE(struct page *page)
1222{
Gu Zheng45590712013-07-15 17:57:38 +08001223 struct f2fs_node *p = F2FS_NODE(page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001224 return RAW_IS_INODE(p);
1225}
1226
1227static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
1228{
1229 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
1230}
1231
1232static inline block_t datablock_addr(struct page *node_page,
1233 unsigned int offset)
1234{
1235 struct f2fs_node *raw_node;
1236 __le32 *addr_array;
Gu Zheng45590712013-07-15 17:57:38 +08001237 raw_node = F2FS_NODE(node_page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001238 addr_array = blkaddr_in_node(raw_node);
1239 return le32_to_cpu(addr_array[offset]);
1240}
1241
1242static inline int f2fs_test_bit(unsigned int nr, char *addr)
1243{
1244 int mask;
1245
1246 addr += (nr >> 3);
1247 mask = 1 << (7 - (nr & 0x07));
1248 return mask & *addr;
1249}
1250
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001251static inline void f2fs_set_bit(unsigned int nr, char *addr)
1252{
1253 int mask;
1254
1255 addr += (nr >> 3);
1256 mask = 1 << (7 - (nr & 0x07));
1257 *addr |= mask;
1258}
1259
1260static inline void f2fs_clear_bit(unsigned int nr, char *addr)
1261{
1262 int mask;
1263
1264 addr += (nr >> 3);
1265 mask = 1 << (7 - (nr & 0x07));
1266 *addr &= ~mask;
1267}
1268
Gu Zheng52aca072014-10-20 17:45:51 +08001269static inline int f2fs_test_and_set_bit(unsigned int nr, char *addr)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001270{
1271 int mask;
1272 int ret;
1273
1274 addr += (nr >> 3);
1275 mask = 1 << (7 - (nr & 0x07));
1276 ret = mask & *addr;
1277 *addr |= mask;
1278 return ret;
1279}
1280
Gu Zheng52aca072014-10-20 17:45:51 +08001281static inline int f2fs_test_and_clear_bit(unsigned int nr, char *addr)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001282{
1283 int mask;
1284 int ret;
1285
1286 addr += (nr >> 3);
1287 mask = 1 << (7 - (nr & 0x07));
1288 ret = mask & *addr;
1289 *addr &= ~mask;
1290 return ret;
1291}
1292
Gu Zhengc6ac4c02014-10-20 17:45:50 +08001293static inline void f2fs_change_bit(unsigned int nr, char *addr)
1294{
1295 int mask;
1296
1297 addr += (nr >> 3);
1298 mask = 1 << (7 - (nr & 0x07));
1299 *addr ^= mask;
1300}
1301
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001302/* used for f2fs_inode_info->flags */
1303enum {
1304 FI_NEW_INODE, /* indicate newly allocated inode */
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001305 FI_DIRTY_INODE, /* indicate inode is dirty or not */
Jaegeuk Kimed57c272014-04-15 11:19:28 +09001306 FI_DIRTY_DIR, /* indicate directory has dirty pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001307 FI_INC_LINK, /* need to increment i_nlink */
1308 FI_ACL_MODE, /* indicate acl mode */
1309 FI_NO_ALLOC, /* should not allocate any blocks */
Jaegeuk Kim699489b2013-06-07 22:08:23 +09001310 FI_UPDATE_DIR, /* should update inode block for consistency */
Jaegeuk Kim74d0b912013-05-15 16:40:02 +09001311 FI_DELAY_IPUT, /* used for the recovery */
Jaegeuk Kimc11abd12013-11-19 10:41:54 +09001312 FI_NO_EXTENT, /* not to use the extent cache */
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001313 FI_INLINE_XATTR, /* used for inline xattr */
Huajun Li1001b342013-11-10 23:13:16 +08001314 FI_INLINE_DATA, /* used for inline data*/
Chao Yu34d67de2014-09-24 18:15:19 +08001315 FI_INLINE_DENTRY, /* used for inline dentry */
Jaegeuk Kimfff04f92014-07-25 07:40:59 -07001316 FI_APPEND_WRITE, /* inode has appended data */
1317 FI_UPDATE_WRITE, /* inode has in-place-update data */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001318 FI_NEED_IPU, /* used for ipu per file */
1319 FI_ATOMIC_FILE, /* indicate atomic file */
Jaegeuk Kim02a13352014-10-06 16:11:16 -07001320 FI_VOLATILE_FILE, /* indicate volatile file */
Jaegeuk Kim3c6c2be2015-03-17 17:16:35 -07001321 FI_FIRST_BLOCK_WRITTEN, /* indicate #0 data block was written */
Jaegeuk Kim1e843712014-12-09 06:08:59 -08001322 FI_DROP_CACHE, /* drop dirty page cache */
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001323 FI_DATA_EXIST, /* indicate data exists */
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001324 FI_INLINE_DOTS, /* indicate inline dot dentries */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001325};
1326
1327static inline void set_inode_flag(struct f2fs_inode_info *fi, int flag)
1328{
Jaegeuk Kim61e0f2d2014-07-25 15:47:23 -07001329 if (!test_bit(flag, &fi->flags))
1330 set_bit(flag, &fi->flags);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001331}
1332
1333static inline int is_inode_flag_set(struct f2fs_inode_info *fi, int flag)
1334{
1335 return test_bit(flag, &fi->flags);
1336}
1337
1338static inline void clear_inode_flag(struct f2fs_inode_info *fi, int flag)
1339{
Jaegeuk Kim61e0f2d2014-07-25 15:47:23 -07001340 if (test_bit(flag, &fi->flags))
1341 clear_bit(flag, &fi->flags);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001342}
1343
1344static inline void set_acl_inode(struct f2fs_inode_info *fi, umode_t mode)
1345{
1346 fi->i_acl_mode = mode;
1347 set_inode_flag(fi, FI_ACL_MODE);
1348}
1349
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001350static inline void get_inline_info(struct f2fs_inode_info *fi,
1351 struct f2fs_inode *ri)
1352{
1353 if (ri->i_inline & F2FS_INLINE_XATTR)
1354 set_inode_flag(fi, FI_INLINE_XATTR);
Huajun Li1001b342013-11-10 23:13:16 +08001355 if (ri->i_inline & F2FS_INLINE_DATA)
1356 set_inode_flag(fi, FI_INLINE_DATA);
Chao Yu34d67de2014-09-24 18:15:19 +08001357 if (ri->i_inline & F2FS_INLINE_DENTRY)
1358 set_inode_flag(fi, FI_INLINE_DENTRY);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001359 if (ri->i_inline & F2FS_DATA_EXIST)
1360 set_inode_flag(fi, FI_DATA_EXIST);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001361 if (ri->i_inline & F2FS_INLINE_DOTS)
1362 set_inode_flag(fi, FI_INLINE_DOTS);
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001363}
1364
1365static inline void set_raw_inline(struct f2fs_inode_info *fi,
1366 struct f2fs_inode *ri)
1367{
1368 ri->i_inline = 0;
1369
1370 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
1371 ri->i_inline |= F2FS_INLINE_XATTR;
Huajun Li1001b342013-11-10 23:13:16 +08001372 if (is_inode_flag_set(fi, FI_INLINE_DATA))
1373 ri->i_inline |= F2FS_INLINE_DATA;
Chao Yu34d67de2014-09-24 18:15:19 +08001374 if (is_inode_flag_set(fi, FI_INLINE_DENTRY))
1375 ri->i_inline |= F2FS_INLINE_DENTRY;
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001376 if (is_inode_flag_set(fi, FI_DATA_EXIST))
1377 ri->i_inline |= F2FS_DATA_EXIST;
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001378 if (is_inode_flag_set(fi, FI_INLINE_DOTS))
1379 ri->i_inline |= F2FS_INLINE_DOTS;
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001380}
1381
Chao Yu987c7c32014-03-12 15:59:03 +08001382static inline int f2fs_has_inline_xattr(struct inode *inode)
1383{
1384 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR);
1385}
1386
Jaegeuk Kimde936532013-08-12 21:08:03 +09001387static inline unsigned int addrs_per_inode(struct f2fs_inode_info *fi)
1388{
Chao Yu987c7c32014-03-12 15:59:03 +08001389 if (f2fs_has_inline_xattr(&fi->vfs_inode))
Jaegeuk Kimde936532013-08-12 21:08:03 +09001390 return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS;
1391 return DEF_ADDRS_PER_INODE;
1392}
1393
Jaegeuk Kim65985d92013-08-14 21:57:27 +09001394static inline void *inline_xattr_addr(struct page *page)
1395{
Chao Yu695fd1e2014-02-27 19:52:21 +08001396 struct f2fs_inode *ri = F2FS_INODE(page);
Jaegeuk Kim65985d92013-08-14 21:57:27 +09001397 return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE -
1398 F2FS_INLINE_XATTR_ADDRS]);
1399}
1400
1401static inline int inline_xattr_size(struct inode *inode)
1402{
Chao Yu987c7c32014-03-12 15:59:03 +08001403 if (f2fs_has_inline_xattr(inode))
Jaegeuk Kim65985d92013-08-14 21:57:27 +09001404 return F2FS_INLINE_XATTR_ADDRS << 2;
1405 else
1406 return 0;
1407}
1408
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001409static inline int f2fs_has_inline_data(struct inode *inode)
1410{
1411 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DATA);
1412}
1413
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001414static inline void f2fs_clear_inline_inode(struct inode *inode)
1415{
1416 clear_inode_flag(F2FS_I(inode), FI_INLINE_DATA);
1417 clear_inode_flag(F2FS_I(inode), FI_DATA_EXIST);
1418}
1419
1420static inline int f2fs_exist_data(struct inode *inode)
1421{
1422 return is_inode_flag_set(F2FS_I(inode), FI_DATA_EXIST);
1423}
1424
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001425static inline int f2fs_has_inline_dots(struct inode *inode)
1426{
1427 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DOTS);
1428}
1429
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001430static inline bool f2fs_is_atomic_file(struct inode *inode)
1431{
1432 return is_inode_flag_set(F2FS_I(inode), FI_ATOMIC_FILE);
1433}
1434
Jaegeuk Kim02a13352014-10-06 16:11:16 -07001435static inline bool f2fs_is_volatile_file(struct inode *inode)
1436{
1437 return is_inode_flag_set(F2FS_I(inode), FI_VOLATILE_FILE);
1438}
1439
Jaegeuk Kim3c6c2be2015-03-17 17:16:35 -07001440static inline bool f2fs_is_first_block_written(struct inode *inode)
1441{
1442 return is_inode_flag_set(F2FS_I(inode), FI_FIRST_BLOCK_WRITTEN);
1443}
1444
Jaegeuk Kim1e843712014-12-09 06:08:59 -08001445static inline bool f2fs_is_drop_cache(struct inode *inode)
1446{
1447 return is_inode_flag_set(F2FS_I(inode), FI_DROP_CACHE);
1448}
1449
Huajun Li1001b342013-11-10 23:13:16 +08001450static inline void *inline_data_addr(struct page *page)
1451{
Chao Yu695fd1e2014-02-27 19:52:21 +08001452 struct f2fs_inode *ri = F2FS_INODE(page);
Huajun Li1001b342013-11-10 23:13:16 +08001453 return (void *)&(ri->i_addr[1]);
1454}
1455
Chao Yu34d67de2014-09-24 18:15:19 +08001456static inline int f2fs_has_inline_dentry(struct inode *inode)
1457{
1458 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DENTRY);
1459}
1460
Jaegeuk Kim9486ba4422014-11-21 16:36:28 -08001461static inline void f2fs_dentry_kunmap(struct inode *dir, struct page *page)
1462{
1463 if (!f2fs_has_inline_dentry(dir))
1464 kunmap(page);
1465}
1466
Jaegeuk Kimb5492af72015-04-20 13:44:41 -07001467static inline int is_file(struct inode *inode, int type)
1468{
1469 return F2FS_I(inode)->i_advise & type;
1470}
1471
1472static inline void set_file(struct inode *inode, int type)
1473{
1474 F2FS_I(inode)->i_advise |= type;
1475}
1476
1477static inline void clear_file(struct inode *inode, int type)
1478{
1479 F2FS_I(inode)->i_advise &= ~type;
1480}
1481
Jaegeuk Kim77888c12013-05-20 20:28:47 +09001482static inline int f2fs_readonly(struct super_block *sb)
1483{
1484 return sb->s_flags & MS_RDONLY;
1485}
1486
Jaegeuk Kim1e968fd2014-08-11 16:49:25 -07001487static inline bool f2fs_cp_error(struct f2fs_sb_info *sbi)
1488{
1489 return is_set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1490}
1491
Jaegeuk Kim744602c2014-01-24 09:42:16 +09001492static inline void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi)
1493{
1494 set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1495 sbi->sb->s_flags |= MS_RDONLY;
1496}
1497
Jaegeuk Kimeaa693f2015-04-26 00:15:29 -07001498static inline bool is_dot_dotdot(const struct qstr *str)
1499{
1500 if (str->len == 1 && str->name[0] == '.')
1501 return true;
1502
1503 if (str->len == 2 && str->name[0] == '.' && str->name[1] == '.')
1504 return true;
1505
1506 return false;
1507}
1508
Christoph Hellwiga6dda0e2013-12-20 05:16:45 -08001509#define get_inode_mode(i) \
1510 ((is_inode_flag_set(F2FS_I(i), FI_ACL_MODE)) ? \
1511 (F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
1512
Chao Yu267378d2014-04-23 14:10:24 +08001513/* get offset of first page in next direct node */
1514#define PGOFS_OF_NEXT_DNODE(pgofs, fi) \
1515 ((pgofs < ADDRS_PER_INODE(fi)) ? ADDRS_PER_INODE(fi) : \
1516 (pgofs - ADDRS_PER_INODE(fi) + ADDRS_PER_BLOCK) / \
1517 ADDRS_PER_BLOCK * ADDRS_PER_BLOCK + ADDRS_PER_INODE(fi))
1518
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001519/*
1520 * file.c
1521 */
1522int f2fs_sync_file(struct file *, loff_t, loff_t, int);
1523void truncate_data_blocks(struct dnode_of_data *);
Jaegeuk Kim764aa3e2014-08-14 16:32:54 -07001524int truncate_blocks(struct inode *, u64, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001525void f2fs_truncate(struct inode *);
Jaegeuk Kim2d4d9fb52013-06-07 16:33:07 +09001526int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001527int f2fs_setattr(struct dentry *, struct iattr *);
1528int truncate_hole(struct inode *, pgoff_t, pgoff_t);
Jaegeuk Kimb292dcab2013-05-22 08:02:02 +09001529int truncate_data_blocks_range(struct dnode_of_data *, int);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001530long f2fs_ioctl(struct file *, unsigned int, unsigned long);
Namjae Jeone9750822013-02-04 23:41:41 +09001531long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001532
1533/*
1534 * inode.c
1535 */
1536void f2fs_set_inode_flags(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001537struct inode *f2fs_iget(struct super_block *, unsigned long);
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +09001538int try_to_free_nats(struct f2fs_sb_info *, int);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001539void update_inode(struct inode *, struct page *);
Jaegeuk Kim744602c2014-01-24 09:42:16 +09001540void update_inode_page(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001541int f2fs_write_inode(struct inode *, struct writeback_control *);
1542void f2fs_evict_inode(struct inode *);
Jaegeuk Kim44c16152014-09-25 11:55:53 -07001543void handle_failed_inode(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001544
1545/*
1546 * namei.c
1547 */
1548struct dentry *f2fs_get_parent(struct dentry *child);
1549
1550/*
1551 * dir.c
1552 */
Chao Yudbeacf02014-09-24 18:17:04 +08001553extern unsigned char f2fs_filetype_table[F2FS_FT_MAX];
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001554void set_de_type(struct f2fs_dir_entry *, umode_t);
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -07001555struct f2fs_dir_entry *find_target_dentry(struct qstr *, int *,
1556 struct f2fs_dentry_ptr *);
1557bool f2fs_fill_dentries(struct dir_context *, struct f2fs_dentry_ptr *,
1558 unsigned int);
Jaegeuk Kim062a3e72014-10-18 23:06:41 -07001559void do_make_empty_dir(struct inode *, struct inode *,
1560 struct f2fs_dentry_ptr *);
Chao Yudbeacf02014-09-24 18:17:04 +08001561struct page *init_inode_metadata(struct inode *, struct inode *,
Jaegeuk Kimbce8d112014-10-13 19:42:53 -07001562 const struct qstr *, struct page *);
Chao Yudbeacf02014-09-24 18:17:04 +08001563void update_parent_metadata(struct inode *, struct inode *, unsigned int);
Jaegeuk Kima82afa22014-10-13 16:28:13 -07001564int room_for_filename(const void *, int, int);
Chao Yudbeacf02014-09-24 18:17:04 +08001565void f2fs_drop_nlink(struct inode *, struct inode *, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001566struct f2fs_dir_entry *f2fs_find_entry(struct inode *, struct qstr *,
1567 struct page **);
1568struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **);
1569ino_t f2fs_inode_by_name(struct inode *, struct qstr *);
1570void f2fs_set_link(struct inode *, struct f2fs_dir_entry *,
1571 struct page *, struct inode *);
Jaegeuk Kim1cd14ca2013-07-18 18:02:31 +09001572int update_dent_inode(struct inode *, const struct qstr *);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001573void f2fs_update_dentry(nid_t ino, umode_t mode, struct f2fs_dentry_ptr *,
Chao Yu3b4d7322015-02-16 16:17:20 +08001574 const struct qstr *, f2fs_hash_t , unsigned int);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001575int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *, nid_t,
1576 umode_t);
Chao Yudbeacf02014-09-24 18:17:04 +08001577void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *,
1578 struct inode *);
Jaegeuk Kimb97a9b52014-06-20 21:37:02 -07001579int f2fs_do_tmpfile(struct inode *, struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001580bool f2fs_empty_dir(struct inode *);
1581
Al Virob7f7a5e2013-01-25 16:15:43 -05001582static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
1583{
David Howells2b0143b2015-03-17 22:25:59 +00001584 return __f2fs_add_link(d_inode(dentry->d_parent), &dentry->d_name,
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001585 inode, inode->i_ino, inode->i_mode);
Al Virob7f7a5e2013-01-25 16:15:43 -05001586}
1587
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001588/*
1589 * super.c
1590 */
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07001591int f2fs_commit_super(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001592int f2fs_sync_fs(struct super_block *, int);
Namjae Jeona07ef782012-12-30 14:52:05 +09001593extern __printf(3, 4)
1594void f2fs_msg(struct super_block *, const char *, const char *, ...);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001595
1596/*
1597 * hash.c
1598 */
Gu Zhengeee61602014-06-24 18:21:23 +08001599f2fs_hash_t f2fs_dentry_hash(const struct qstr *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001600
1601/*
1602 * node.c
1603 */
1604struct dnode_of_data;
1605struct node_info;
1606
Jaegeuk Kim6fb03f32014-04-16 10:47:06 +09001607bool available_free_memory(struct f2fs_sb_info *, int);
Jaegeuk Kim2dcf51a2015-04-29 18:31:19 -07001608int need_dentry_mark(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim88bd02c2014-09-15 14:50:48 -07001609bool is_checkpointed_node(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim88bd02c2014-09-15 14:50:48 -07001610bool need_inode_block_update(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001611void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *);
1612int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int);
1613int truncate_inode_blocks(struct inode *, pgoff_t);
Jaegeuk Kim4f16fb02013-08-14 20:40:06 +09001614int truncate_xattr_node(struct inode *, struct page *);
Jaegeuk Kimcfe58f92013-10-31 14:57:01 +09001615int wait_on_node_pages_writeback(struct f2fs_sb_info *, nid_t);
Gu Zheng58e674d2013-11-19 18:03:18 +08001616void remove_inode_page(struct inode *);
Jaegeuk Kima014e032014-06-20 21:44:02 -07001617struct page *new_inode_page(struct inode *);
Jaegeuk Kim8ae8f162013-06-03 19:46:19 +09001618struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001619void ra_node_page(struct f2fs_sb_info *, nid_t);
1620struct page *get_node_page(struct f2fs_sb_info *, pgoff_t);
1621struct page *get_node_page_ra(struct page *, int);
1622void sync_inode_page(struct dnode_of_data *);
1623int sync_node_pages(struct f2fs_sb_info *, nid_t, struct writeback_control *);
1624bool alloc_nid(struct f2fs_sb_info *, nid_t *);
1625void alloc_nid_done(struct f2fs_sb_info *, nid_t);
1626void alloc_nid_failed(struct f2fs_sb_info *, nid_t);
Chao Yu70cfed82014-08-02 15:26:04 +08001627void recover_inline_xattr(struct inode *, struct page *);
Jaegeuk Kim1c35a902014-08-07 23:49:17 -07001628void recover_xattr_data(struct inode *, struct page *, block_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001629int recover_inode_page(struct f2fs_sb_info *, struct page *);
1630int restore_node_summary(struct f2fs_sb_info *, unsigned int,
1631 struct f2fs_summary_block *);
1632void flush_nat_entries(struct f2fs_sb_info *);
1633int build_node_manager(struct f2fs_sb_info *);
1634void destroy_node_manager(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001635int __init create_node_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001636void destroy_node_manager_caches(void);
1637
1638/*
1639 * segment.c
1640 */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001641void register_inmem_page(struct inode *, struct page *);
1642void commit_inmem_pages(struct inode *, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001643void f2fs_balance_fs(struct f2fs_sb_info *);
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +09001644void f2fs_balance_fs_bg(struct f2fs_sb_info *);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09001645int f2fs_issue_flush(struct f2fs_sb_info *);
Gu Zheng2163d192014-04-27 14:21:33 +08001646int create_flush_cmd_control(struct f2fs_sb_info *);
1647void destroy_flush_cmd_control(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001648void invalidate_blocks(struct f2fs_sb_info *, block_t);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001649void refresh_sit_entry(struct f2fs_sb_info *, block_t, block_t);
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001650void clear_prefree_segments(struct f2fs_sb_info *, struct cp_control *);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001651void release_discard_addrs(struct f2fs_sb_info *);
Jaegeuk Kimcf2271e2014-07-25 15:47:25 -07001652void discard_next_dnode(struct f2fs_sb_info *, block_t);
Chao Yu3fa06d72014-12-09 14:21:46 +08001653int npages_for_summary_flush(struct f2fs_sb_info *, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001654void allocate_new_segments(struct f2fs_sb_info *);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001655int f2fs_trim_fs(struct f2fs_sb_info *, struct fstrim_range *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001656struct page *get_sum_page(struct f2fs_sb_info *, unsigned int);
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001657void write_meta_page(struct f2fs_sb_info *, struct page *);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001658void write_node_page(unsigned int, struct f2fs_io_info *);
1659void write_data_page(struct dnode_of_data *, struct f2fs_io_info *);
1660void rewrite_data_page(struct f2fs_io_info *);
Chao Yu19f106b2015-05-06 13:08:06 +08001661void f2fs_replace_block(struct f2fs_sb_info *, struct f2fs_summary *,
1662 block_t, block_t, bool);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001663void allocate_data_block(struct f2fs_sb_info *, struct page *,
1664 block_t, block_t *, struct f2fs_summary *, int);
Yuan Zhong5514f0a2014-01-10 07:26:14 +00001665void f2fs_wait_on_page_writeback(struct page *, enum page_type);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001666void write_data_summaries(struct f2fs_sb_info *, block_t);
1667void write_node_summaries(struct f2fs_sb_info *, block_t);
1668int lookup_journal_in_cursum(struct f2fs_summary_block *,
1669 int, unsigned int, int);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001670void flush_sit_entries(struct f2fs_sb_info *, struct cp_control *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001671int build_segment_manager(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001672void destroy_segment_manager(struct f2fs_sb_info *);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09001673int __init create_segment_manager_caches(void);
1674void destroy_segment_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001675
1676/*
1677 * checkpoint.c
1678 */
1679struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t);
1680struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t);
Chao Yuf0c9cad2015-04-18 18:05:36 +08001681bool is_valid_blkaddr(struct f2fs_sb_info *, block_t, int);
Jaegeuk Kim4c521f492014-09-11 13:49:55 -07001682int ra_meta_pages(struct f2fs_sb_info *, block_t, int, int);
Chao Yu635aee12014-12-08 15:02:52 +08001683void ra_meta_pages_cond(struct f2fs_sb_info *, pgoff_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001684long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long);
Jaegeuk Kimfff04f92014-07-25 07:40:59 -07001685void add_dirty_inode(struct f2fs_sb_info *, nid_t, int type);
1686void remove_dirty_inode(struct f2fs_sb_info *, nid_t, int type);
Jaegeuk Kim6f12ac22014-08-19 09:48:22 -07001687void release_dirty_inode(struct f2fs_sb_info *);
Jaegeuk Kimfff04f92014-07-25 07:40:59 -07001688bool exist_written_data(struct f2fs_sb_info *, nid_t, int);
Jaegeuk Kimcbd56e72013-07-30 11:36:53 +09001689int acquire_orphan_inode(struct f2fs_sb_info *);
1690void release_orphan_inode(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001691void add_orphan_inode(struct f2fs_sb_info *, nid_t);
1692void remove_orphan_inode(struct f2fs_sb_info *, nid_t);
Chao Yu8f99a942013-11-28 15:43:43 +08001693void recover_orphan_inodes(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001694int get_valid_checkpoint(struct f2fs_sb_info *);
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001695void update_dirty_page(struct inode *, struct page *);
Jaegeuk Kim5deb8262013-06-05 17:42:45 +09001696void add_dirty_dir_inode(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001697void remove_dirty_dir_inode(struct inode *);
1698void sync_dirty_dir_inodes(struct f2fs_sb_info *);
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -07001699void write_checkpoint(struct f2fs_sb_info *, struct cp_control *);
Jaegeuk Kim6451e042014-07-25 15:47:17 -07001700void init_ino_entry_info(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001701int __init create_checkpoint_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001702void destroy_checkpoint_caches(void);
1703
1704/*
1705 * data.c
1706 */
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001707void f2fs_submit_merged_bio(struct f2fs_sb_info *, enum page_type, int);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001708int f2fs_submit_page_bio(struct f2fs_io_info *);
1709void f2fs_submit_page_mbio(struct f2fs_io_info *);
Chao Yu216a6202015-03-19 19:23:32 +08001710void set_data_blkaddr(struct dnode_of_data *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001711int reserve_new_block(struct dnode_of_data *);
Huajun Lib6009652013-11-10 23:13:18 +08001712int f2fs_reserve_block(struct dnode_of_data *, pgoff_t);
Chao Yu429511c2015-02-05 17:54:31 +08001713void f2fs_shrink_extent_tree(struct f2fs_sb_info *, int);
1714void f2fs_destroy_extent_tree(struct inode *);
Chao Yu028a41e2015-03-19 19:26:02 +08001715void f2fs_init_extent_cache(struct inode *, struct f2fs_extent *);
Chao Yu7e4dde72015-02-05 17:51:34 +08001716void f2fs_update_extent_cache(struct dnode_of_data *);
Chao Yu0bdee482015-03-19 19:27:51 +08001717void f2fs_preserve_extent_tree(struct inode *);
Jaegeuk Kim43f3eae2015-04-30 17:00:33 -07001718struct page *get_read_data_page(struct inode *, pgoff_t, int);
1719struct page *find_data_page(struct inode *, pgoff_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001720struct page *get_lock_data_page(struct inode *, pgoff_t);
Jaegeuk Kim64aa7ed2013-05-20 09:55:50 +09001721struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001722int do_write_data_page(struct f2fs_io_info *);
Jaegeuk Kim9ab70132014-06-08 04:30:14 +09001723int f2fs_fiemap(struct inode *inode, struct fiemap_extent_info *, u64, u64);
Chao Yu429511c2015-02-05 17:54:31 +08001724void init_extent_cache_info(struct f2fs_sb_info *);
1725int __init create_extent_cache(void);
1726void destroy_extent_cache(void);
Chao Yu487261f2015-02-05 17:44:29 +08001727void f2fs_invalidate_page(struct page *, unsigned int, unsigned int);
1728int f2fs_release_page(struct page *, gfp_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001729
1730/*
1731 * gc.c
1732 */
1733int start_gc_thread(struct f2fs_sb_info *);
1734void stop_gc_thread(struct f2fs_sb_info *);
Jaegeuk Kimde936532013-08-12 21:08:03 +09001735block_t start_bidx_of_node(unsigned int, struct f2fs_inode_info *);
Jaegeuk Kim408e9372013-01-03 17:55:52 +09001736int f2fs_gc(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001737void build_gc_manager(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001738
1739/*
1740 * recovery.c
1741 */
Jaegeuk Kim6ead1142013-03-20 19:01:06 +09001742int recover_fsync_data(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001743bool space_for_roll_forward(struct f2fs_sb_info *);
1744
1745/*
1746 * debug.c
1747 */
1748#ifdef CONFIG_F2FS_STAT_FS
1749struct f2fs_stat_info {
1750 struct list_head stat_list;
1751 struct f2fs_sb_info *sbi;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001752 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
1753 int main_area_segs, main_area_sections, main_area_zones;
Chao Yu4bf6fd92015-02-05 17:58:28 +08001754 int hit_ext, total_ext, ext_tree, ext_node;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001755 int ndirty_node, ndirty_dent, ndirty_dirs, ndirty_meta;
Jaegeuk Kimdd4e4b52015-01-07 11:09:37 -08001756 int nats, dirty_nats, sits, dirty_sits, fnids;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001757 int total_count, utilization;
Jaegeuk Kimd24bdcb2015-01-30 16:43:11 -08001758 int bg_gc, inline_inode, inline_dir, inmem_pages, wb_pages;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001759 unsigned int valid_count, valid_node_count, valid_inode_count;
1760 unsigned int bimodal, avg_vblocks;
1761 int util_free, util_valid, util_invalid;
1762 int rsvd_segs, overp_segs;
1763 int dirty_count, node_pages, meta_pages;
Changman Lee942e0be2014-02-13 15:12:29 +09001764 int prefree_count, call_count, cp_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001765 int tot_segs, node_segs, data_segs, free_segs, free_secs;
Changman Leee1235982014-12-23 08:37:39 +09001766 int bg_node_segs, bg_data_segs;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001767 int tot_blks, data_blks, node_blks;
Changman Leee1235982014-12-23 08:37:39 +09001768 int bg_data_blks, bg_node_blks;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001769 int curseg[NR_CURSEG_TYPE];
1770 int cursec[NR_CURSEG_TYPE];
1771 int curzone[NR_CURSEG_TYPE];
1772
1773 unsigned int segment_count[2];
1774 unsigned int block_count[2];
Changman Leeb9a2c252014-12-24 02:16:54 +09001775 unsigned int inplace_count;
Jaegeuk Kim6f0aacb2015-01-10 21:37:36 -08001776 unsigned base_mem, cache_mem, page_mem;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001777};
1778
Gu Zheng963d4f72013-07-12 14:47:11 +08001779static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
1780{
Chris Fries6c311ec2014-01-17 14:44:39 -06001781 return (struct f2fs_stat_info *)sbi->stat_info;
Gu Zheng963d4f72013-07-12 14:47:11 +08001782}
1783
Changman Lee942e0be2014-02-13 15:12:29 +09001784#define stat_inc_cp_count(si) ((si)->cp_count++)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001785#define stat_inc_call_count(si) ((si)->call_count++)
1786#define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++)
1787#define stat_inc_dirty_dir(sbi) ((sbi)->n_dirty_dirs++)
1788#define stat_dec_dirty_dir(sbi) ((sbi)->n_dirty_dirs--)
1789#define stat_inc_total_hit(sb) ((F2FS_SB(sb))->total_hit_ext++)
1790#define stat_inc_read_hit(sb) ((F2FS_SB(sb))->read_hit_ext++)
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001791#define stat_inc_inline_inode(inode) \
1792 do { \
1793 if (f2fs_has_inline_data(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08001794 (atomic_inc(&F2FS_I_SB(inode)->inline_inode)); \
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001795 } while (0)
1796#define stat_dec_inline_inode(inode) \
1797 do { \
1798 if (f2fs_has_inline_data(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08001799 (atomic_dec(&F2FS_I_SB(inode)->inline_inode)); \
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001800 } while (0)
Jaegeuk Kim3289c062014-10-13 20:00:16 -07001801#define stat_inc_inline_dir(inode) \
1802 do { \
1803 if (f2fs_has_inline_dentry(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08001804 (atomic_inc(&F2FS_I_SB(inode)->inline_dir)); \
Jaegeuk Kim3289c062014-10-13 20:00:16 -07001805 } while (0)
1806#define stat_dec_inline_dir(inode) \
1807 do { \
1808 if (f2fs_has_inline_dentry(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08001809 (atomic_dec(&F2FS_I_SB(inode)->inline_dir)); \
Jaegeuk Kim3289c062014-10-13 20:00:16 -07001810 } while (0)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001811#define stat_inc_seg_type(sbi, curseg) \
1812 ((sbi)->segment_count[(curseg)->alloc_type]++)
1813#define stat_inc_block_count(sbi, curseg) \
1814 ((sbi)->block_count[(curseg)->alloc_type]++)
Changman Leeb9a2c252014-12-24 02:16:54 +09001815#define stat_inc_inplace_blocks(sbi) \
1816 (atomic_inc(&(sbi)->inplace_count))
Changman Leee1235982014-12-23 08:37:39 +09001817#define stat_inc_seg_count(sbi, type, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001818 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001819 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001820 (si)->tot_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09001821 if (type == SUM_TYPE_DATA) { \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001822 si->data_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09001823 si->bg_data_segs += (gc_type == BG_GC) ? 1 : 0; \
1824 } else { \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001825 si->node_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09001826 si->bg_node_segs += (gc_type == BG_GC) ? 1 : 0; \
1827 } \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001828 } while (0)
1829
1830#define stat_inc_tot_blk_count(si, blks) \
1831 (si->tot_blks += (blks))
1832
Changman Leee1235982014-12-23 08:37:39 +09001833#define stat_inc_data_blk_count(sbi, blks, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001834 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001835 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001836 stat_inc_tot_blk_count(si, blks); \
1837 si->data_blks += (blks); \
Changman Leee1235982014-12-23 08:37:39 +09001838 si->bg_data_blks += (gc_type == BG_GC) ? (blks) : 0; \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001839 } while (0)
1840
Changman Leee1235982014-12-23 08:37:39 +09001841#define stat_inc_node_blk_count(sbi, blks, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001842 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001843 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001844 stat_inc_tot_blk_count(si, blks); \
1845 si->node_blks += (blks); \
Changman Leee1235982014-12-23 08:37:39 +09001846 si->bg_node_blks += (gc_type == BG_GC) ? (blks) : 0; \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001847 } while (0)
1848
1849int f2fs_build_stats(struct f2fs_sb_info *);
1850void f2fs_destroy_stats(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001851void __init f2fs_create_root_stats(void);
Namjae Jeon4589d252013-01-15 19:58:47 +09001852void f2fs_destroy_root_stats(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001853#else
Changman Lee942e0be2014-02-13 15:12:29 +09001854#define stat_inc_cp_count(si)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001855#define stat_inc_call_count(si)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001856#define stat_inc_bggc_count(si)
1857#define stat_inc_dirty_dir(sbi)
1858#define stat_dec_dirty_dir(sbi)
1859#define stat_inc_total_hit(sb)
1860#define stat_inc_read_hit(sb)
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001861#define stat_inc_inline_inode(inode)
1862#define stat_dec_inline_inode(inode)
Jaegeuk Kim3289c062014-10-13 20:00:16 -07001863#define stat_inc_inline_dir(inode)
1864#define stat_dec_inline_dir(inode)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001865#define stat_inc_seg_type(sbi, curseg)
1866#define stat_inc_block_count(sbi, curseg)
Changman Leeb9a2c252014-12-24 02:16:54 +09001867#define stat_inc_inplace_blocks(sbi)
Changman Leee1235982014-12-23 08:37:39 +09001868#define stat_inc_seg_count(sbi, type, gc_type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001869#define stat_inc_tot_blk_count(si, blks)
Changman Leee1235982014-12-23 08:37:39 +09001870#define stat_inc_data_blk_count(sbi, blks, gc_type)
1871#define stat_inc_node_blk_count(sbi, blks, gc_type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001872
1873static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
1874static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001875static inline void __init f2fs_create_root_stats(void) { }
Namjae Jeon4589d252013-01-15 19:58:47 +09001876static inline void f2fs_destroy_root_stats(void) { }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001877#endif
1878
1879extern const struct file_operations f2fs_dir_operations;
1880extern const struct file_operations f2fs_file_operations;
1881extern const struct inode_operations f2fs_file_inode_operations;
1882extern const struct address_space_operations f2fs_dblock_aops;
1883extern const struct address_space_operations f2fs_node_aops;
1884extern const struct address_space_operations f2fs_meta_aops;
1885extern const struct inode_operations f2fs_dir_inode_operations;
1886extern const struct inode_operations f2fs_symlink_inode_operations;
1887extern const struct inode_operations f2fs_special_inode_operations;
Jaegeuk Kim29e70432015-02-10 16:23:12 -08001888extern struct kmem_cache *inode_entry_slab;
Huajun Li1001b342013-11-10 23:13:16 +08001889
Huajun Lie18c65b2013-11-10 23:13:19 +08001890/*
1891 * inline.c
1892 */
Jaegeuk Kim01b960e2015-04-23 10:27:21 -07001893bool f2fs_may_inline_data(struct inode *);
1894bool f2fs_may_inline_dentry(struct inode *);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001895void read_inline_data(struct page *, struct page *);
Chao Yu0bfcfcc2015-03-10 13:16:25 +08001896bool truncate_inline_inode(struct page *, u64);
Huajun Lie18c65b2013-11-10 23:13:19 +08001897int f2fs_read_inline_data(struct inode *, struct page *);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001898int f2fs_convert_inline_page(struct dnode_of_data *, struct page *);
1899int f2fs_convert_inline_inode(struct inode *);
1900int f2fs_write_inline_data(struct inode *, struct page *);
Jaegeuk Kim0342fd32014-08-07 16:57:17 -07001901bool recover_inline_data(struct inode *, struct page *);
Chao Yu201a05b2014-09-24 18:17:53 +08001902struct f2fs_dir_entry *find_in_inline_dir(struct inode *, struct qstr *,
1903 struct page **);
1904struct f2fs_dir_entry *f2fs_parent_inline_dir(struct inode *, struct page **);
1905int make_empty_inline_dir(struct inode *inode, struct inode *, struct page *);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001906int f2fs_add_inline_entry(struct inode *, const struct qstr *, struct inode *,
1907 nid_t, umode_t);
Chao Yu201a05b2014-09-24 18:17:53 +08001908void f2fs_delete_inline_entry(struct f2fs_dir_entry *, struct page *,
1909 struct inode *, struct inode *);
1910bool f2fs_empty_inline_dir(struct inode *);
1911int f2fs_read_inline_dir(struct file *, struct dir_context *);
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07001912
1913/*
1914 * crypto support
1915 */
1916static inline int f2fs_encrypted_inode(struct inode *inode)
1917{
1918#ifdef CONFIG_F2FS_FS_ENCRYPTION
1919 return file_is_encrypt(inode);
1920#else
1921 return 0;
1922#endif
1923}
1924
1925static inline void f2fs_set_encrypted_inode(struct inode *inode)
1926{
1927#ifdef CONFIG_F2FS_FS_ENCRYPTION
1928 file_set_encrypt(inode);
1929#endif
1930}
1931
1932static inline bool f2fs_bio_encrypted(struct bio *bio)
1933{
1934#ifdef CONFIG_F2FS_FS_ENCRYPTION
1935 return unlikely(bio->bi_private != NULL);
1936#else
1937 return false;
1938#endif
1939}
1940
1941static inline int f2fs_sb_has_crypto(struct super_block *sb)
1942{
1943#ifdef CONFIG_F2FS_FS_ENCRYPTION
1944 return F2FS_HAS_FEATURE(sb, F2FS_FEATURE_ENCRYPT);
1945#else
1946 return 0;
1947#endif
1948}
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001949#endif