blob: b0490cb58b971581a0c1717480b416d1e2e1799d [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 Kimf424f662015-04-20 15:19:06 -0700232#define F2FS_IOC_SET_ENCRYPTION_POLICY \
233 _IOR('f', 19, struct f2fs_encryption_policy)
234#define F2FS_IOC_GET_ENCRYPTION_PWSALT \
235 _IOW('f', 20, __u8[16])
236#define F2FS_IOC_GET_ENCRYPTION_POLICY \
237 _IOW('f', 21, struct f2fs_encryption_policy)
238
Jaegeuk Kim1abff932015-01-08 19:15:53 -0800239/*
240 * should be same as XFS_IOC_GOINGDOWN.
241 * Flags for going down operation used by FS_IOC_GOINGDOWN
242 */
243#define F2FS_IOC_SHUTDOWN _IOR('X', 125, __u32) /* Shutdown */
244#define F2FS_GOING_DOWN_FULLSYNC 0x0 /* going down with full sync */
245#define F2FS_GOING_DOWN_METASYNC 0x1 /* going down with metadata */
246#define F2FS_GOING_DOWN_NOSYNC 0x2 /* going down */
247
Namjae Jeone9750822013-02-04 23:41:41 +0900248#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
249/*
250 * ioctl commands in 32 bit emulation
251 */
252#define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS
253#define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS
254#endif
255
256/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900257 * For INODE and NODE manager
258 */
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700259/* for directory operations */
260struct f2fs_dentry_ptr {
261 const void *bitmap;
262 struct f2fs_dir_entry *dentry;
263 __u8 (*filename)[F2FS_SLOT_LEN];
264 int max;
265};
266
267static inline void make_dentry_ptr(struct f2fs_dentry_ptr *d,
268 void *src, int type)
269{
270 if (type == 1) {
271 struct f2fs_dentry_block *t = (struct f2fs_dentry_block *)src;
272 d->max = NR_DENTRY_IN_BLOCK;
273 d->bitmap = &t->dentry_bitmap;
274 d->dentry = t->dentry;
275 d->filename = t->filename;
276 } else {
277 struct f2fs_inline_dentry *t = (struct f2fs_inline_dentry *)src;
278 d->max = NR_INLINE_DENTRY;
279 d->bitmap = &t->dentry_bitmap;
280 d->dentry = t->dentry;
281 d->filename = t->filename;
282 }
283}
284
Jaegeuk Kimdbe6a5f2013-08-09 08:14:06 +0900285/*
286 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
287 * as its node offset to distinguish from index node blocks.
288 * But some bits are used to mark the node block.
289 */
290#define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \
291 >> OFFSET_BIT_SHIFT)
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900292enum {
293 ALLOC_NODE, /* allocate a new node page if needed */
294 LOOKUP_NODE, /* look up a node without readahead */
295 LOOKUP_NODE_RA, /*
296 * look up a node with readahead called
Chao Yu4f4124d2013-12-21 18:02:14 +0800297 * by get_data_block.
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900298 */
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900299};
300
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900301#define F2FS_LINK_MAX 32000 /* maximum link count per file */
302
Chao Yu817202d92014-04-28 17:59:43 +0800303#define MAX_DIR_RA_PAGES 4 /* maximum ra pages of dir */
304
Chao Yu13054c52015-02-05 17:52:58 +0800305/* vector size for gang look-up from extent cache that consists of radix tree */
306#define EXT_TREE_VEC_SIZE 64
307
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900308/* for in-memory extent cache entry */
Chao Yu13054c52015-02-05 17:52:58 +0800309#define F2FS_MIN_EXTENT_LEN 64 /* minimum extent length */
310
311/* number of extent info in extent cache we try to shrink */
312#define EXTENT_CACHE_SHRINK_NUMBER 128
Jaegeuk Kimc11abd12013-11-19 10:41:54 +0900313
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900314struct extent_info {
Chao Yu13054c52015-02-05 17:52:58 +0800315 unsigned int fofs; /* start offset in a file */
316 u32 blk; /* start block address of the extent */
317 unsigned int len; /* length of the extent */
318};
319
320struct extent_node {
321 struct rb_node rb_node; /* rb node located in rb-tree */
322 struct list_head list; /* node in global extent list of sbi */
323 struct extent_info ei; /* extent info */
324};
325
326struct extent_tree {
327 nid_t ino; /* inode number */
328 struct rb_root root; /* root of extent info rb-tree */
Chao Yu62c8af62015-02-05 18:01:39 +0800329 struct extent_node *cached_en; /* recently accessed extent node */
Chao Yu13054c52015-02-05 17:52:58 +0800330 rwlock_t lock; /* protect extent info rb-tree */
331 atomic_t refcount; /* reference count of rb-tree */
332 unsigned int count; /* # of extent node in rb-tree*/
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900333};
334
335/*
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700336 * This structure is taken from ext4_map_blocks.
337 *
338 * Note that, however, f2fs uses NEW and MAPPED flags for f2fs_map_blocks().
339 */
340#define F2FS_MAP_NEW (1 << BH_New)
341#define F2FS_MAP_MAPPED (1 << BH_Mapped)
Jaegeuk Kim7f63eb72015-05-08 19:30:32 -0700342#define F2FS_MAP_UNWRITTEN (1 << BH_Unwritten)
343#define F2FS_MAP_FLAGS (F2FS_MAP_NEW | F2FS_MAP_MAPPED |\
344 F2FS_MAP_UNWRITTEN)
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700345
346struct f2fs_map_blocks {
347 block_t m_pblk;
348 block_t m_lblk;
349 unsigned int m_len;
350 unsigned int m_flags;
351};
352
353/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900354 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
355 */
356#define FADVISE_COLD_BIT 0x01
Jaegeuk Kim354a3392013-06-14 08:52:35 +0900357#define FADVISE_LOST_PINO_BIT 0x02
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700358#define FADVISE_ENCRYPT_BIT 0x04
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900359
Jaegeuk Kimb5492af72015-04-20 13:44:41 -0700360#define file_is_cold(inode) is_file(inode, FADVISE_COLD_BIT)
361#define file_wrong_pino(inode) is_file(inode, FADVISE_LOST_PINO_BIT)
362#define file_set_cold(inode) set_file(inode, FADVISE_COLD_BIT)
363#define file_lost_pino(inode) set_file(inode, FADVISE_LOST_PINO_BIT)
364#define file_clear_cold(inode) clear_file(inode, FADVISE_COLD_BIT)
365#define file_got_pino(inode) clear_file(inode, FADVISE_LOST_PINO_BIT)
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700366#define file_is_encrypt(inode) is_file(inode, FADVISE_ENCRYPT_BIT)
367#define file_set_encrypt(inode) set_file(inode, FADVISE_ENCRYPT_BIT)
368#define file_clear_encrypt(inode) clear_file(inode, FADVISE_ENCRYPT_BIT)
369
370/* Encryption algorithms */
371#define F2FS_ENCRYPTION_MODE_INVALID 0
372#define F2FS_ENCRYPTION_MODE_AES_256_XTS 1
373#define F2FS_ENCRYPTION_MODE_AES_256_GCM 2
374#define F2FS_ENCRYPTION_MODE_AES_256_CBC 3
375#define F2FS_ENCRYPTION_MODE_AES_256_CTS 4
Jaegeuk Kimb5492af72015-04-20 13:44:41 -0700376
Jaegeuk Kimf424f662015-04-20 15:19:06 -0700377#include "f2fs_crypto.h"
378
Jaegeuk Kimab9fa662014-02-27 20:09:05 +0900379#define DEF_DIR_LEVEL 0
380
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900381struct f2fs_inode_info {
382 struct inode vfs_inode; /* serve a vfs inode */
383 unsigned long i_flags; /* keep an inode flags for ioctl */
384 unsigned char i_advise; /* use to give file attribute hints */
Jaegeuk Kim38431542014-02-27 18:20:00 +0900385 unsigned char i_dir_level; /* use for dentry level for large dir */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900386 unsigned int i_current_depth; /* use only in directory structure */
Jaegeuk Kim6666e6a2012-12-10 17:52:48 +0900387 unsigned int i_pino; /* parent inode number */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900388 umode_t i_acl_mode; /* keep file acl mode temporarily */
389
390 /* Use below internally in f2fs*/
391 unsigned long flags; /* use to pass per-file flags */
Jaegeuk Kimd928bfb2014-03-20 19:10:08 +0900392 struct rw_semaphore i_sem; /* protect fi info */
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -0700393 atomic_t dirty_pages; /* # of dirty pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900394 f2fs_hash_t chash; /* hash value of given file name */
395 unsigned int clevel; /* maximum level of given file name */
396 nid_t i_xattr_nid; /* node id that contains xattrs */
Jaegeuk Kime518ff82013-08-09 14:46:15 +0900397 unsigned long long xattr_ver; /* cp version of xattr modification */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900398 struct extent_info ext; /* in-memory extent cache entry */
Chao Yu0c872e22015-02-05 17:46:29 +0800399 rwlock_t ext_lock; /* rwlock for single extent cache */
Chao Yu06292072014-12-29 15:56:18 +0800400 struct inode_entry *dirty_dir; /* the pointer of dirty dir */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700401
Jaegeuk Kim34ba94b2014-10-09 13:19:53 -0700402 struct radix_tree_root inmem_root; /* radix tree for inmem pages */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700403 struct list_head inmem_pages; /* inmemory pages managed by f2fs */
404 struct mutex inmem_lock; /* lock for inmemory pages */
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700405
406#ifdef CONFIG_F2FS_FS_ENCRYPTION
407 /* Encryption params */
408 struct f2fs_crypt_info *i_crypt_info;
409#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900410};
411
412static inline void get_extent_info(struct extent_info *ext,
413 struct f2fs_extent i_ext)
414{
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900415 ext->fofs = le32_to_cpu(i_ext.fofs);
Chao Yu4d0b0bd2015-02-05 17:47:25 +0800416 ext->blk = le32_to_cpu(i_ext.blk);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900417 ext->len = le32_to_cpu(i_ext.len);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900418}
419
420static inline void set_raw_extent(struct extent_info *ext,
421 struct f2fs_extent *i_ext)
422{
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900423 i_ext->fofs = cpu_to_le32(ext->fofs);
Chao Yu4d0b0bd2015-02-05 17:47:25 +0800424 i_ext->blk = cpu_to_le32(ext->blk);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900425 i_ext->len = cpu_to_le32(ext->len);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900426}
427
Chao Yu429511c2015-02-05 17:54:31 +0800428static inline void set_extent_info(struct extent_info *ei, unsigned int fofs,
429 u32 blk, unsigned int len)
430{
431 ei->fofs = fofs;
432 ei->blk = blk;
433 ei->len = len;
434}
435
Chao Yu0bdee482015-03-19 19:27:51 +0800436static inline bool __is_extent_same(struct extent_info *ei1,
437 struct extent_info *ei2)
438{
439 return (ei1->fofs == ei2->fofs && ei1->blk == ei2->blk &&
440 ei1->len == ei2->len);
441}
442
Chao Yu429511c2015-02-05 17:54:31 +0800443static inline bool __is_extent_mergeable(struct extent_info *back,
444 struct extent_info *front)
445{
446 return (back->fofs + back->len == front->fofs &&
447 back->blk + back->len == front->blk);
448}
449
450static inline bool __is_back_mergeable(struct extent_info *cur,
451 struct extent_info *back)
452{
453 return __is_extent_mergeable(back, cur);
454}
455
456static inline bool __is_front_mergeable(struct extent_info *cur,
457 struct extent_info *front)
458{
459 return __is_extent_mergeable(cur, front);
460}
461
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900462struct f2fs_nm_info {
463 block_t nat_blkaddr; /* base disk address of NAT */
464 nid_t max_nid; /* maximum possible node ids */
Jaegeuk Kim7ee0eea2014-04-18 11:14:37 +0900465 nid_t available_nids; /* maximum available node ids */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900466 nid_t next_scan_nid; /* the next nid to be scanned */
Jaegeuk Kimcdfc41c2014-03-19 13:31:37 +0900467 unsigned int ram_thresh; /* control the memory footprint */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900468
469 /* NAT cache management */
470 struct radix_tree_root nat_root;/* root of the nat entry cache */
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700471 struct radix_tree_root nat_set_root;/* root of the nat set cache */
Jaegeuk Kim8b26ef92014-12-03 21:15:10 -0800472 struct rw_semaphore nat_tree_lock; /* protect nat_tree_lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900473 struct list_head nat_entries; /* cached nat entry list (clean) */
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700474 unsigned int nat_cnt; /* the # of cached nat entries */
Chao Yuaec71382014-06-24 09:18:20 +0800475 unsigned int dirty_nat_cnt; /* total num of nat entries in set */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900476
477 /* free node ids management */
Jaegeuk Kim8a7ed662014-02-21 14:29:35 +0900478 struct radix_tree_root free_nid_root;/* root of the free_nid cache */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900479 struct list_head free_nid_list; /* a list for free nids */
480 spinlock_t free_nid_list_lock; /* protect free nid list */
481 unsigned int fcnt; /* the number of free node id */
482 struct mutex build_lock; /* lock for build free nids */
483
484 /* for checkpoint */
485 char *nat_bitmap; /* NAT bitmap pointer */
486 int bitmap_size; /* bitmap size */
487};
488
489/*
490 * this structure is used as one of function parameters.
491 * all the information are dedicated to a given direct node block determined
492 * by the data offset in a file.
493 */
494struct dnode_of_data {
495 struct inode *inode; /* vfs inode pointer */
496 struct page *inode_page; /* its inode page, NULL is possible */
497 struct page *node_page; /* cached direct node page */
498 nid_t nid; /* node id of the direct node block */
499 unsigned int ofs_in_node; /* data offset in the node page */
500 bool inode_page_locked; /* inode page is locked or not */
501 block_t data_blkaddr; /* block address of the node block */
502};
503
504static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
505 struct page *ipage, struct page *npage, nid_t nid)
506{
Jaegeuk Kimd66d1f72013-01-03 08:57:21 +0900507 memset(dn, 0, sizeof(*dn));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900508 dn->inode = inode;
509 dn->inode_page = ipage;
510 dn->node_page = npage;
511 dn->nid = nid;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900512}
513
514/*
515 * For SIT manager
516 *
517 * By default, there are 6 active log areas across the whole main area.
518 * When considering hot and cold data separation to reduce cleaning overhead,
519 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
520 * respectively.
521 * In the current design, you should not change the numbers intentionally.
522 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
523 * logs individually according to the underlying devices. (default: 6)
524 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
525 * data and 8 for node logs.
526 */
527#define NR_CURSEG_DATA_TYPE (3)
528#define NR_CURSEG_NODE_TYPE (3)
529#define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
530
531enum {
532 CURSEG_HOT_DATA = 0, /* directory entry blocks */
533 CURSEG_WARM_DATA, /* data blocks */
534 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */
535 CURSEG_HOT_NODE, /* direct node blocks of directory files */
536 CURSEG_WARM_NODE, /* direct node blocks of normal files */
537 CURSEG_COLD_NODE, /* indirect node blocks */
Jaegeuk Kim38aa0882015-01-05 16:02:20 -0800538 NO_CHECK_TYPE,
539 CURSEG_DIRECT_IO, /* to use for the direct IO path */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900540};
541
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900542struct flush_cmd {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900543 struct completion wait;
Gu Zheng721bd4d2014-09-05 18:31:00 +0800544 struct llist_node llnode;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900545 int ret;
546};
547
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800548struct flush_cmd_control {
549 struct task_struct *f2fs_issue_flush; /* flush thread */
550 wait_queue_head_t flush_wait_queue; /* waiting queue for wake-up */
Gu Zheng721bd4d2014-09-05 18:31:00 +0800551 struct llist_head issue_list; /* list for command issue */
552 struct llist_node *dispatch_list; /* list for command dispatch */
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800553};
554
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900555struct f2fs_sm_info {
556 struct sit_info *sit_info; /* whole segment information */
557 struct free_segmap_info *free_info; /* free segment information */
558 struct dirty_seglist_info *dirty_info; /* dirty segment information */
559 struct curseg_info *curseg_array; /* active segment information */
560
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900561 block_t seg0_blkaddr; /* block address of 0'th segment */
562 block_t main_blkaddr; /* start block address of main area */
563 block_t ssa_blkaddr; /* start block address of SSA area */
564
565 unsigned int segment_count; /* total # of segments */
566 unsigned int main_segments; /* # of segments in main area */
567 unsigned int reserved_segments; /* # of reserved segments */
568 unsigned int ovp_segments; /* # of overprovision segments */
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +0900569
570 /* a threshold to reclaim prefree segments */
571 unsigned int rec_prefree_segments;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900572
573 /* for small discard management */
574 struct list_head discard_list; /* 4KB discard list */
575 int nr_discards; /* # of discards in the list */
576 int max_discards; /* max. discards to be issued */
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900577
Jaegeuk Kimbba681c2015-01-26 17:41:23 -0800578 /* for batched trimming */
579 unsigned int trim_sections; /* # of sections to trim */
580
Chao Yu184a5cd2014-09-04 18:13:01 +0800581 struct list_head sit_entry_set; /* sit entry set list */
582
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900583 unsigned int ipu_policy; /* in-place-update policy */
584 unsigned int min_ipu_util; /* in-place-update threshold */
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -0700585 unsigned int min_fsync_blocks; /* threshold for fsync */
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900586
587 /* for flush command control */
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800588 struct flush_cmd_control *cmd_control_info;
589
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900590};
591
592/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900593 * For superblock
594 */
595/*
596 * COUNT_TYPE for monitoring
597 *
598 * f2fs monitors the number of several block types such as on-writeback,
599 * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
600 */
601enum count_type {
602 F2FS_WRITEBACK,
603 F2FS_DIRTY_DENTS,
604 F2FS_DIRTY_NODES,
605 F2FS_DIRTY_META,
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800606 F2FS_INMEM_PAGES,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900607 NR_COUNT_TYPE,
608};
609
610/*
arter97e1c42042014-08-06 23:22:50 +0900611 * The below are the page types of bios used in submit_bio().
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900612 * The available types are:
613 * DATA User data pages. It operates as async mode.
614 * NODE Node pages. It operates as async mode.
615 * META FS metadata pages such as SIT, NAT, CP.
616 * NR_PAGE_TYPE The number of page types.
617 * META_FLUSH Make sure the previous pages are written
618 * with waiting the bio's completion
619 * ... Only can be used with META.
620 */
Jaegeuk Kim7d5e5102013-11-18 17:13:35 +0900621#define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900622enum page_type {
623 DATA,
624 NODE,
625 META,
626 NR_PAGE_TYPE,
627 META_FLUSH,
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700628 INMEM, /* the below types are used by tracepoints only. */
629 INMEM_DROP,
630 IPU,
631 OPU,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900632};
633
Jaegeuk Kim458e6192013-12-11 13:54:01 +0900634struct f2fs_io_info {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -0700635 struct f2fs_sb_info *sbi; /* f2fs_sb_info pointer */
Gu Zheng7e8f2302013-12-20 18:17:49 +0800636 enum page_type type; /* contains DATA/NODE/META/META_FLUSH */
637 int rw; /* contains R/RS/W/WS with REQ_META/REQ_PRIO */
Jaegeuk Kimcf04e8e2014-12-17 19:33:13 -0800638 block_t blk_addr; /* block address to be written */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -0700639 struct page *page; /* page to be written */
Jaegeuk Kim458e6192013-12-11 13:54:01 +0900640};
641
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +0900642#define is_read_io(rw) (((rw) & 1) == READ)
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900643struct f2fs_bio_info {
Jaegeuk Kim458e6192013-12-11 13:54:01 +0900644 struct f2fs_sb_info *sbi; /* f2fs superblock */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900645 struct bio *bio; /* bios to merge */
646 sector_t last_block_in_bio; /* last block number */
Jaegeuk Kim458e6192013-12-11 13:54:01 +0900647 struct f2fs_io_info fio; /* store buffered io info. */
Chao Yudf0f8dc2014-03-22 14:57:23 +0800648 struct rw_semaphore io_rwsem; /* blocking op for bio */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900649};
650
Chao Yu67298802014-11-18 11:18:36 +0800651/* for inner inode cache management */
652struct inode_management {
653 struct radix_tree_root ino_root; /* ino entry array */
654 spinlock_t ino_lock; /* for ino entry lock */
655 struct list_head ino_list; /* inode list head */
656 unsigned long ino_num; /* number of entries */
657};
658
Chao Yucaf00472015-01-28 17:48:42 +0800659/* For s_flag in struct f2fs_sb_info */
660enum {
661 SBI_IS_DIRTY, /* dirty flag for checkpoint */
662 SBI_IS_CLOSE, /* specify unmounting */
663 SBI_NEED_FSCK, /* need fsck.f2fs to fix */
664 SBI_POR_DOING, /* recovery is doing or not */
665};
666
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900667struct f2fs_sb_info {
668 struct super_block *sb; /* pointer to VFS super block */
Jaegeuk Kim5e176d52013-06-28 12:47:01 +0900669 struct proc_dir_entry *s_proc; /* proc entry */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900670 struct buffer_head *raw_super_buf; /* buffer head of raw sb */
671 struct f2fs_super_block *raw_super; /* raw super block pointer */
Chao Yucaf00472015-01-28 17:48:42 +0800672 int s_flag; /* flags for sbi */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900673
674 /* for node-related operations */
675 struct f2fs_nm_info *nm_info; /* node manager */
676 struct inode *node_inode; /* cache node blocks */
677
678 /* for segment-related operations */
679 struct f2fs_sm_info *sm_info; /* segment manager */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900680
681 /* for bio operations */
Chao Yu924b7202013-11-20 14:46:39 +0800682 struct f2fs_bio_info read_io; /* for read bios */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900683 struct f2fs_bio_info write_io[NR_PAGE_TYPE]; /* for write bios */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900684
685 /* for checkpoint */
686 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
687 struct inode *meta_inode; /* cache meta blocks */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900688 struct mutex cp_mutex; /* checkpoint procedure lock */
Gu Zhenge4795562013-09-27 18:08:30 +0800689 struct rw_semaphore cp_rwsem; /* blocking FS operations */
Chao Yub3582c62014-07-03 18:58:39 +0800690 struct rw_semaphore node_write; /* locking node writes */
Jaegeuk Kim5463e7c2015-04-21 10:40:54 -0700691 struct mutex writepages; /* mutex for writepages() */
Changman Leefb51b5e2013-11-07 12:48:25 +0900692 wait_queue_head_t cp_wait;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900693
Chao Yu67298802014-11-18 11:18:36 +0800694 struct inode_management im[MAX_INO_ENTRY]; /* manage inode cache */
Jaegeuk Kim6451e042014-07-25 15:47:17 -0700695
696 /* for orphan inode, use 0'th array */
Gu Zheng0d47c1a2013-12-26 18:24:19 +0800697 unsigned int max_orphans; /* max orphan inodes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900698
699 /* for directory inode management */
700 struct list_head dir_inode_list; /* dir inode list */
701 spinlock_t dir_inode_lock; /* for dir inode list lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900702
Chao Yu13054c52015-02-05 17:52:58 +0800703 /* for extent tree cache */
704 struct radix_tree_root extent_tree_root;/* cache extent cache entries */
705 struct rw_semaphore extent_tree_lock; /* locking extent radix tree */
706 struct list_head extent_list; /* lru list for shrinker */
707 spinlock_t extent_lock; /* locking extent lru list */
708 int total_ext_tree; /* extent tree count */
709 atomic_t total_ext_node; /* extent info count */
710
arter97e1c42042014-08-06 23:22:50 +0900711 /* basic filesystem units */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900712 unsigned int log_sectors_per_block; /* log2 sectors per block */
713 unsigned int log_blocksize; /* log2 block size */
714 unsigned int blocksize; /* block size */
715 unsigned int root_ino_num; /* root inode number*/
716 unsigned int node_ino_num; /* node inode number*/
717 unsigned int meta_ino_num; /* meta inode number*/
718 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
719 unsigned int blocks_per_seg; /* blocks per segment */
720 unsigned int segs_per_sec; /* segments per section */
721 unsigned int secs_per_zone; /* sections per zone */
722 unsigned int total_sections; /* total section count */
723 unsigned int total_node_count; /* total node block count */
724 unsigned int total_valid_node_count; /* valid node block count */
725 unsigned int total_valid_inode_count; /* valid inode count */
726 int active_logs; /* # of active logs */
Jaegeuk Kimab9fa662014-02-27 20:09:05 +0900727 int dir_level; /* directory level */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900728
729 block_t user_block_count; /* # of user blocks */
730 block_t total_valid_block_count; /* # of valid blocks */
731 block_t alloc_valid_block_count; /* # of allocated blocks */
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700732 block_t discard_blks; /* discard command candidats */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900733 block_t last_valid_block_count; /* for recovery */
734 u32 s_next_generation; /* for NFS support */
735 atomic_t nr_pages[NR_COUNT_TYPE]; /* # of pages, see count_type */
736
737 struct f2fs_mount_info mount_opt; /* mount options */
738
739 /* for cleaning operations */
740 struct mutex gc_mutex; /* mutex for GC */
741 struct f2fs_gc_kthread *gc_thread; /* GC thread */
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900742 unsigned int cur_victim_sec; /* current victim section num */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900743
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +0900744 /* maximum # of trials to find a victim segment for SSR and GC */
745 unsigned int max_victim_search;
746
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900747 /*
748 * for stat information.
749 * one is for the LFS mode, and the other is for the SSR mode.
750 */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900751#ifdef CONFIG_F2FS_STAT_FS
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900752 struct f2fs_stat_info *stat_info; /* FS status information */
753 unsigned int segment_count[2]; /* # of allocated segments */
754 unsigned int block_count[2]; /* # of allocated blocks */
Changman Leeb9a2c252014-12-24 02:16:54 +0900755 atomic_t inplace_count; /* # of inplace update */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900756 int total_hit_ext, read_hit_ext; /* extent cache hit ratio */
Chao Yu03e14d52014-12-08 19:08:20 +0800757 atomic_t inline_inode; /* # of inline_data inodes */
758 atomic_t inline_dir; /* # of inline_dentry inodes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900759 int bg_gc; /* background gc calls */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900760 unsigned int n_dirty_dirs; /* # of dir inodes */
761#endif
762 unsigned int last_victim[2]; /* last victim segment # */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900763 spinlock_t stat_lock; /* lock for stat operations */
Namjae Jeonb59d0ba2013-08-04 23:09:40 +0900764
765 /* For sysfs suppport */
766 struct kobject s_kobj;
767 struct completion s_kobj_unregister;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900768};
769
770/*
771 * Inline functions
772 */
773static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
774{
775 return container_of(inode, struct f2fs_inode_info, vfs_inode);
776}
777
778static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
779{
780 return sb->s_fs_info;
781}
782
Jaegeuk Kim40813632014-09-02 15:31:18 -0700783static inline struct f2fs_sb_info *F2FS_I_SB(struct inode *inode)
784{
785 return F2FS_SB(inode->i_sb);
786}
787
788static inline struct f2fs_sb_info *F2FS_M_SB(struct address_space *mapping)
789{
790 return F2FS_I_SB(mapping->host);
791}
792
793static inline struct f2fs_sb_info *F2FS_P_SB(struct page *page)
794{
795 return F2FS_M_SB(page->mapping);
796}
797
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900798static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
799{
800 return (struct f2fs_super_block *)(sbi->raw_super);
801}
802
803static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
804{
805 return (struct f2fs_checkpoint *)(sbi->ckpt);
806}
807
Gu Zheng45590712013-07-15 17:57:38 +0800808static inline struct f2fs_node *F2FS_NODE(struct page *page)
809{
810 return (struct f2fs_node *)page_address(page);
811}
812
Jaegeuk Kim58bfaf42013-12-26 16:30:41 +0900813static inline struct f2fs_inode *F2FS_INODE(struct page *page)
814{
815 return &((struct f2fs_node *)page_address(page))->i;
816}
817
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900818static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
819{
820 return (struct f2fs_nm_info *)(sbi->nm_info);
821}
822
823static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
824{
825 return (struct f2fs_sm_info *)(sbi->sm_info);
826}
827
828static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
829{
830 return (struct sit_info *)(SM_I(sbi)->sit_info);
831}
832
833static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
834{
835 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
836}
837
838static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
839{
840 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
841}
842
Gu Zheng9df27d92014-01-20 18:37:04 +0800843static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi)
844{
845 return sbi->meta_inode->i_mapping;
846}
847
Jaegeuk Kim4ef51a82014-01-21 18:51:16 +0900848static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi)
849{
850 return sbi->node_inode->i_mapping;
851}
852
Chao Yucaf00472015-01-28 17:48:42 +0800853static inline bool is_sbi_flag_set(struct f2fs_sb_info *sbi, unsigned int type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900854{
Chao Yucaf00472015-01-28 17:48:42 +0800855 return sbi->s_flag & (0x01 << type);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900856}
857
Chao Yucaf00472015-01-28 17:48:42 +0800858static inline void set_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900859{
Chao Yucaf00472015-01-28 17:48:42 +0800860 sbi->s_flag |= (0x01 << type);
861}
862
863static inline void clear_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
864{
865 sbi->s_flag &= ~(0x01 << type);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900866}
867
Jaegeuk Kimd71b5562013-08-09 15:03:21 +0900868static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
869{
870 return le64_to_cpu(cp->checkpoint_ver);
871}
872
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900873static inline bool is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
874{
875 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
876 return ckpt_flags & f;
877}
878
879static inline void set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
880{
881 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
882 ckpt_flags |= f;
883 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
884}
885
886static inline void clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
887{
888 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
889 ckpt_flags &= (~f);
890 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
891}
892
Gu Zhenge4795562013-09-27 18:08:30 +0800893static inline void f2fs_lock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900894{
Gu Zhenge4795562013-09-27 18:08:30 +0800895 down_read(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900896}
897
Gu Zhenge4795562013-09-27 18:08:30 +0800898static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900899{
Gu Zhenge4795562013-09-27 18:08:30 +0800900 up_read(&sbi->cp_rwsem);
Jaegeuk Kim39936832012-11-22 16:21:29 +0900901}
902
Gu Zhenge4795562013-09-27 18:08:30 +0800903static inline void f2fs_lock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +0900904{
Jaegeuk Kim0daaad92013-11-24 13:50:35 +0900905 f2fs_down_write(&sbi->cp_rwsem, &sbi->cp_mutex);
Jaegeuk Kim39936832012-11-22 16:21:29 +0900906}
907
Gu Zhenge4795562013-09-27 18:08:30 +0800908static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +0900909{
Gu Zhenge4795562013-09-27 18:08:30 +0800910 up_write(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900911}
912
Jaegeuk Kim119ee912015-01-29 11:45:33 -0800913static inline int __get_cp_reason(struct f2fs_sb_info *sbi)
914{
915 int reason = CP_SYNC;
916
917 if (test_opt(sbi, FASTBOOT))
918 reason = CP_FASTBOOT;
919 if (is_sbi_flag_set(sbi, SBI_IS_CLOSE))
920 reason = CP_UMOUNT;
921 return reason;
922}
923
924static inline bool __remain_node_summaries(int reason)
925{
926 return (reason == CP_UMOUNT || reason == CP_FASTBOOT);
927}
928
929static inline bool __exist_node_summaries(struct f2fs_sb_info *sbi)
930{
931 return (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_UMOUNT_FLAG) ||
932 is_set_ckpt_flags(F2FS_CKPT(sbi), CP_FASTBOOT_FLAG));
933}
934
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900935/*
936 * Check whether the given nid is within node id range.
937 */
Namjae Jeon064e0822013-03-17 17:27:20 +0900938static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900939{
Chao Yud6b7d4b2014-06-12 13:23:41 +0800940 if (unlikely(nid < F2FS_ROOT_INO(sbi)))
941 return -EINVAL;
Chao Yucfb271d2013-12-05 17:15:22 +0800942 if (unlikely(nid >= NM_I(sbi)->max_nid))
Namjae Jeon064e0822013-03-17 17:27:20 +0900943 return -EINVAL;
944 return 0;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900945}
946
947#define F2FS_DEFAULT_ALLOCATED_BLOCKS 1
948
949/*
950 * Check whether the inode has blocks or not
951 */
952static inline int F2FS_HAS_BLOCKS(struct inode *inode)
953{
954 if (F2FS_I(inode)->i_xattr_nid)
Chris Fries6c311ec2014-01-17 14:44:39 -0600955 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900956 else
Chris Fries6c311ec2014-01-17 14:44:39 -0600957 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900958}
959
Chao Yu4bc8e9b2014-03-17 16:35:06 +0800960static inline bool f2fs_has_xattr_block(unsigned int ofs)
961{
962 return ofs == XATTR_NODE_OFFSET;
963}
964
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900965static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi,
966 struct inode *inode, blkcnt_t count)
967{
968 block_t valid_block_count;
969
970 spin_lock(&sbi->stat_lock);
971 valid_block_count =
972 sbi->total_valid_block_count + (block_t)count;
Chao Yucfb271d2013-12-05 17:15:22 +0800973 if (unlikely(valid_block_count > sbi->user_block_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900974 spin_unlock(&sbi->stat_lock);
975 return false;
976 }
977 inode->i_blocks += count;
978 sbi->total_valid_block_count = valid_block_count;
979 sbi->alloc_valid_block_count += (block_t)count;
980 spin_unlock(&sbi->stat_lock);
981 return true;
982}
983
Gu Zhengda19b0d2013-11-19 18:03:27 +0800984static inline void dec_valid_block_count(struct f2fs_sb_info *sbi,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900985 struct inode *inode,
986 blkcnt_t count)
987{
988 spin_lock(&sbi->stat_lock);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700989 f2fs_bug_on(sbi, sbi->total_valid_block_count < (block_t) count);
990 f2fs_bug_on(sbi, inode->i_blocks < count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900991 inode->i_blocks -= count;
992 sbi->total_valid_block_count -= (block_t)count;
993 spin_unlock(&sbi->stat_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900994}
995
996static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
997{
998 atomic_inc(&sbi->nr_pages[count_type]);
Chao Yucaf00472015-01-28 17:48:42 +0800999 set_sbi_flag(sbi, SBI_IS_DIRTY);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001000}
1001
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001002static inline void inode_inc_dirty_pages(struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001003{
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001004 atomic_inc(&F2FS_I(inode)->dirty_pages);
1005 if (S_ISDIR(inode->i_mode))
1006 inc_page_count(F2FS_I_SB(inode), F2FS_DIRTY_DENTS);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001007}
1008
1009static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
1010{
1011 atomic_dec(&sbi->nr_pages[count_type]);
1012}
1013
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001014static inline void inode_dec_dirty_pages(struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001015{
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001016 if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode))
Jaegeuk Kim1fe54f92014-02-07 10:00:06 +09001017 return;
1018
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001019 atomic_dec(&F2FS_I(inode)->dirty_pages);
1020
1021 if (S_ISDIR(inode->i_mode))
1022 dec_page_count(F2FS_I_SB(inode), F2FS_DIRTY_DENTS);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001023}
1024
1025static inline int get_pages(struct f2fs_sb_info *sbi, int count_type)
1026{
1027 return atomic_read(&sbi->nr_pages[count_type]);
1028}
1029
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001030static inline int get_dirty_pages(struct inode *inode)
Jaegeuk Kimf8b2c1f2014-03-18 12:33:06 +09001031{
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001032 return atomic_read(&F2FS_I(inode)->dirty_pages);
Jaegeuk Kimf8b2c1f2014-03-18 12:33:06 +09001033}
1034
Namjae Jeon5ac206c2013-02-02 23:52:59 +09001035static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
1036{
1037 unsigned int pages_per_sec = sbi->segs_per_sec *
1038 (1 << sbi->log_blocks_per_seg);
1039 return ((get_pages(sbi, block_type) + pages_per_sec - 1)
1040 >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
1041}
1042
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001043static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
1044{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09001045 return sbi->total_valid_block_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001046}
1047
1048static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
1049{
1050 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1051
1052 /* return NAT or SIT bitmap */
1053 if (flag == NAT_BITMAP)
1054 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
1055 else if (flag == SIT_BITMAP)
1056 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
1057
1058 return 0;
1059}
1060
Wanpeng Li55141482015-02-26 07:57:20 +08001061static inline block_t __cp_payload(struct f2fs_sb_info *sbi)
1062{
1063 return le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload);
1064}
1065
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001066static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
1067{
1068 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Changman Lee1dbe4152014-05-12 12:27:43 +09001069 int offset;
1070
Wanpeng Li55141482015-02-26 07:57:20 +08001071 if (__cp_payload(sbi) > 0) {
Changman Lee1dbe4152014-05-12 12:27:43 +09001072 if (flag == NAT_BITMAP)
1073 return &ckpt->sit_nat_version_bitmap;
1074 else
Jaegeuk Kim65b85cc2014-07-30 17:25:54 -07001075 return (unsigned char *)ckpt + F2FS_BLKSIZE;
Changman Lee1dbe4152014-05-12 12:27:43 +09001076 } else {
1077 offset = (flag == NAT_BITMAP) ?
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001078 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
Changman Lee1dbe4152014-05-12 12:27:43 +09001079 return &ckpt->sit_nat_version_bitmap + offset;
1080 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001081}
1082
1083static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
1084{
1085 block_t start_addr;
1086 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kimd71b5562013-08-09 15:03:21 +09001087 unsigned long long ckpt_version = cur_cp_version(ckpt);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001088
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001089 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001090
1091 /*
1092 * odd numbered checkpoint should at cp segment 0
arter97e1c42042014-08-06 23:22:50 +09001093 * and even segment must be at cp segment 1
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001094 */
1095 if (!(ckpt_version & 1))
1096 start_addr += sbi->blocks_per_seg;
1097
1098 return start_addr;
1099}
1100
1101static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
1102{
1103 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
1104}
1105
1106static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi,
Gu Zhengef86d702013-11-19 18:03:38 +08001107 struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001108{
1109 block_t valid_block_count;
1110 unsigned int valid_node_count;
1111
1112 spin_lock(&sbi->stat_lock);
1113
Gu Zhengef86d702013-11-19 18:03:38 +08001114 valid_block_count = sbi->total_valid_block_count + 1;
Chao Yucfb271d2013-12-05 17:15:22 +08001115 if (unlikely(valid_block_count > sbi->user_block_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001116 spin_unlock(&sbi->stat_lock);
1117 return false;
1118 }
1119
Gu Zhengef86d702013-11-19 18:03:38 +08001120 valid_node_count = sbi->total_valid_node_count + 1;
Chao Yucfb271d2013-12-05 17:15:22 +08001121 if (unlikely(valid_node_count > sbi->total_node_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001122 spin_unlock(&sbi->stat_lock);
1123 return false;
1124 }
1125
1126 if (inode)
Gu Zhengef86d702013-11-19 18:03:38 +08001127 inode->i_blocks++;
1128
1129 sbi->alloc_valid_block_count++;
1130 sbi->total_valid_node_count++;
1131 sbi->total_valid_block_count++;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001132 spin_unlock(&sbi->stat_lock);
1133
1134 return true;
1135}
1136
1137static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
Gu Zhengef86d702013-11-19 18:03:38 +08001138 struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001139{
1140 spin_lock(&sbi->stat_lock);
1141
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001142 f2fs_bug_on(sbi, !sbi->total_valid_block_count);
1143 f2fs_bug_on(sbi, !sbi->total_valid_node_count);
1144 f2fs_bug_on(sbi, !inode->i_blocks);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001145
Gu Zhengef86d702013-11-19 18:03:38 +08001146 inode->i_blocks--;
1147 sbi->total_valid_node_count--;
1148 sbi->total_valid_block_count--;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001149
1150 spin_unlock(&sbi->stat_lock);
1151}
1152
1153static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
1154{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09001155 return sbi->total_valid_node_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001156}
1157
1158static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
1159{
1160 spin_lock(&sbi->stat_lock);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001161 f2fs_bug_on(sbi, sbi->total_valid_inode_count == sbi->total_node_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001162 sbi->total_valid_inode_count++;
1163 spin_unlock(&sbi->stat_lock);
1164}
1165
Jaegeuk Kim0e802202013-11-26 16:36:20 +09001166static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001167{
1168 spin_lock(&sbi->stat_lock);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001169 f2fs_bug_on(sbi, !sbi->total_valid_inode_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001170 sbi->total_valid_inode_count--;
1171 spin_unlock(&sbi->stat_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001172}
1173
1174static inline unsigned int valid_inode_count(struct f2fs_sb_info *sbi)
1175{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09001176 return sbi->total_valid_inode_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001177}
1178
1179static inline void f2fs_put_page(struct page *page, int unlock)
1180{
Jaegeuk Kim031fa8c2013-11-28 12:55:13 +09001181 if (!page)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001182 return;
1183
1184 if (unlock) {
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001185 f2fs_bug_on(F2FS_P_SB(page), !PageLocked(page));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001186 unlock_page(page);
1187 }
1188 page_cache_release(page);
1189}
1190
1191static inline void f2fs_put_dnode(struct dnode_of_data *dn)
1192{
1193 if (dn->node_page)
1194 f2fs_put_page(dn->node_page, 1);
1195 if (dn->inode_page && dn->node_page != dn->inode_page)
1196 f2fs_put_page(dn->inode_page, 0);
1197 dn->node_page = NULL;
1198 dn->inode_page = NULL;
1199}
1200
1201static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
Gu Zhenge8512d22014-03-07 18:43:28 +08001202 size_t size)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001203{
Gu Zhenge8512d22014-03-07 18:43:28 +08001204 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001205}
1206
Gu Zheng7bd59382013-10-22 14:52:26 +08001207static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep,
1208 gfp_t flags)
1209{
1210 void *entry;
1211retry:
1212 entry = kmem_cache_alloc(cachep, flags);
1213 if (!entry) {
1214 cond_resched();
1215 goto retry;
1216 }
1217
1218 return entry;
1219}
1220
Jaegeuk Kim9be32d72014-12-05 10:39:49 -08001221static inline void f2fs_radix_tree_insert(struct radix_tree_root *root,
1222 unsigned long index, void *item)
1223{
1224 while (radix_tree_insert(root, index, item))
1225 cond_resched();
1226}
1227
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001228#define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
1229
1230static inline bool IS_INODE(struct page *page)
1231{
Gu Zheng45590712013-07-15 17:57:38 +08001232 struct f2fs_node *p = F2FS_NODE(page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001233 return RAW_IS_INODE(p);
1234}
1235
1236static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
1237{
1238 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
1239}
1240
1241static inline block_t datablock_addr(struct page *node_page,
1242 unsigned int offset)
1243{
1244 struct f2fs_node *raw_node;
1245 __le32 *addr_array;
Gu Zheng45590712013-07-15 17:57:38 +08001246 raw_node = F2FS_NODE(node_page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001247 addr_array = blkaddr_in_node(raw_node);
1248 return le32_to_cpu(addr_array[offset]);
1249}
1250
1251static inline int f2fs_test_bit(unsigned int nr, char *addr)
1252{
1253 int mask;
1254
1255 addr += (nr >> 3);
1256 mask = 1 << (7 - (nr & 0x07));
1257 return mask & *addr;
1258}
1259
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001260static inline void f2fs_set_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
1269static inline void f2fs_clear_bit(unsigned int nr, char *addr)
1270{
1271 int mask;
1272
1273 addr += (nr >> 3);
1274 mask = 1 << (7 - (nr & 0x07));
1275 *addr &= ~mask;
1276}
1277
Gu Zheng52aca072014-10-20 17:45:51 +08001278static inline int f2fs_test_and_set_bit(unsigned int nr, char *addr)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001279{
1280 int mask;
1281 int ret;
1282
1283 addr += (nr >> 3);
1284 mask = 1 << (7 - (nr & 0x07));
1285 ret = mask & *addr;
1286 *addr |= mask;
1287 return ret;
1288}
1289
Gu Zheng52aca072014-10-20 17:45:51 +08001290static inline int f2fs_test_and_clear_bit(unsigned int nr, char *addr)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001291{
1292 int mask;
1293 int ret;
1294
1295 addr += (nr >> 3);
1296 mask = 1 << (7 - (nr & 0x07));
1297 ret = mask & *addr;
1298 *addr &= ~mask;
1299 return ret;
1300}
1301
Gu Zhengc6ac4c02014-10-20 17:45:50 +08001302static inline void f2fs_change_bit(unsigned int nr, char *addr)
1303{
1304 int mask;
1305
1306 addr += (nr >> 3);
1307 mask = 1 << (7 - (nr & 0x07));
1308 *addr ^= mask;
1309}
1310
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001311/* used for f2fs_inode_info->flags */
1312enum {
1313 FI_NEW_INODE, /* indicate newly allocated inode */
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001314 FI_DIRTY_INODE, /* indicate inode is dirty or not */
Jaegeuk Kimed57c272014-04-15 11:19:28 +09001315 FI_DIRTY_DIR, /* indicate directory has dirty pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001316 FI_INC_LINK, /* need to increment i_nlink */
1317 FI_ACL_MODE, /* indicate acl mode */
1318 FI_NO_ALLOC, /* should not allocate any blocks */
Jaegeuk Kim699489b2013-06-07 22:08:23 +09001319 FI_UPDATE_DIR, /* should update inode block for consistency */
Jaegeuk Kim74d0b912013-05-15 16:40:02 +09001320 FI_DELAY_IPUT, /* used for the recovery */
Jaegeuk Kimc11abd12013-11-19 10:41:54 +09001321 FI_NO_EXTENT, /* not to use the extent cache */
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001322 FI_INLINE_XATTR, /* used for inline xattr */
Huajun Li1001b342013-11-10 23:13:16 +08001323 FI_INLINE_DATA, /* used for inline data*/
Chao Yu34d67de2014-09-24 18:15:19 +08001324 FI_INLINE_DENTRY, /* used for inline dentry */
Jaegeuk Kimfff04f92014-07-25 07:40:59 -07001325 FI_APPEND_WRITE, /* inode has appended data */
1326 FI_UPDATE_WRITE, /* inode has in-place-update data */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001327 FI_NEED_IPU, /* used for ipu per file */
1328 FI_ATOMIC_FILE, /* indicate atomic file */
Jaegeuk Kim02a13352014-10-06 16:11:16 -07001329 FI_VOLATILE_FILE, /* indicate volatile file */
Jaegeuk Kim3c6c2be2015-03-17 17:16:35 -07001330 FI_FIRST_BLOCK_WRITTEN, /* indicate #0 data block was written */
Jaegeuk Kim1e843712014-12-09 06:08:59 -08001331 FI_DROP_CACHE, /* drop dirty page cache */
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001332 FI_DATA_EXIST, /* indicate data exists */
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001333 FI_INLINE_DOTS, /* indicate inline dot dentries */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001334};
1335
1336static inline void set_inode_flag(struct f2fs_inode_info *fi, int flag)
1337{
Jaegeuk Kim61e0f2d2014-07-25 15:47:23 -07001338 if (!test_bit(flag, &fi->flags))
1339 set_bit(flag, &fi->flags);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001340}
1341
1342static inline int is_inode_flag_set(struct f2fs_inode_info *fi, int flag)
1343{
1344 return test_bit(flag, &fi->flags);
1345}
1346
1347static inline void clear_inode_flag(struct f2fs_inode_info *fi, int flag)
1348{
Jaegeuk Kim61e0f2d2014-07-25 15:47:23 -07001349 if (test_bit(flag, &fi->flags))
1350 clear_bit(flag, &fi->flags);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001351}
1352
1353static inline void set_acl_inode(struct f2fs_inode_info *fi, umode_t mode)
1354{
1355 fi->i_acl_mode = mode;
1356 set_inode_flag(fi, FI_ACL_MODE);
1357}
1358
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001359static inline void get_inline_info(struct f2fs_inode_info *fi,
1360 struct f2fs_inode *ri)
1361{
1362 if (ri->i_inline & F2FS_INLINE_XATTR)
1363 set_inode_flag(fi, FI_INLINE_XATTR);
Huajun Li1001b342013-11-10 23:13:16 +08001364 if (ri->i_inline & F2FS_INLINE_DATA)
1365 set_inode_flag(fi, FI_INLINE_DATA);
Chao Yu34d67de2014-09-24 18:15:19 +08001366 if (ri->i_inline & F2FS_INLINE_DENTRY)
1367 set_inode_flag(fi, FI_INLINE_DENTRY);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001368 if (ri->i_inline & F2FS_DATA_EXIST)
1369 set_inode_flag(fi, FI_DATA_EXIST);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001370 if (ri->i_inline & F2FS_INLINE_DOTS)
1371 set_inode_flag(fi, FI_INLINE_DOTS);
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001372}
1373
1374static inline void set_raw_inline(struct f2fs_inode_info *fi,
1375 struct f2fs_inode *ri)
1376{
1377 ri->i_inline = 0;
1378
1379 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
1380 ri->i_inline |= F2FS_INLINE_XATTR;
Huajun Li1001b342013-11-10 23:13:16 +08001381 if (is_inode_flag_set(fi, FI_INLINE_DATA))
1382 ri->i_inline |= F2FS_INLINE_DATA;
Chao Yu34d67de2014-09-24 18:15:19 +08001383 if (is_inode_flag_set(fi, FI_INLINE_DENTRY))
1384 ri->i_inline |= F2FS_INLINE_DENTRY;
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001385 if (is_inode_flag_set(fi, FI_DATA_EXIST))
1386 ri->i_inline |= F2FS_DATA_EXIST;
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001387 if (is_inode_flag_set(fi, FI_INLINE_DOTS))
1388 ri->i_inline |= F2FS_INLINE_DOTS;
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001389}
1390
Chao Yu987c7c32014-03-12 15:59:03 +08001391static inline int f2fs_has_inline_xattr(struct inode *inode)
1392{
1393 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR);
1394}
1395
Jaegeuk Kimde936532013-08-12 21:08:03 +09001396static inline unsigned int addrs_per_inode(struct f2fs_inode_info *fi)
1397{
Chao Yu987c7c32014-03-12 15:59:03 +08001398 if (f2fs_has_inline_xattr(&fi->vfs_inode))
Jaegeuk Kimde936532013-08-12 21:08:03 +09001399 return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS;
1400 return DEF_ADDRS_PER_INODE;
1401}
1402
Jaegeuk Kim65985d92013-08-14 21:57:27 +09001403static inline void *inline_xattr_addr(struct page *page)
1404{
Chao Yu695fd1e2014-02-27 19:52:21 +08001405 struct f2fs_inode *ri = F2FS_INODE(page);
Jaegeuk Kim65985d92013-08-14 21:57:27 +09001406 return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE -
1407 F2FS_INLINE_XATTR_ADDRS]);
1408}
1409
1410static inline int inline_xattr_size(struct inode *inode)
1411{
Chao Yu987c7c32014-03-12 15:59:03 +08001412 if (f2fs_has_inline_xattr(inode))
Jaegeuk Kim65985d92013-08-14 21:57:27 +09001413 return F2FS_INLINE_XATTR_ADDRS << 2;
1414 else
1415 return 0;
1416}
1417
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001418static inline int f2fs_has_inline_data(struct inode *inode)
1419{
1420 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DATA);
1421}
1422
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001423static inline void f2fs_clear_inline_inode(struct inode *inode)
1424{
1425 clear_inode_flag(F2FS_I(inode), FI_INLINE_DATA);
1426 clear_inode_flag(F2FS_I(inode), FI_DATA_EXIST);
1427}
1428
1429static inline int f2fs_exist_data(struct inode *inode)
1430{
1431 return is_inode_flag_set(F2FS_I(inode), FI_DATA_EXIST);
1432}
1433
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001434static inline int f2fs_has_inline_dots(struct inode *inode)
1435{
1436 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DOTS);
1437}
1438
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001439static inline bool f2fs_is_atomic_file(struct inode *inode)
1440{
1441 return is_inode_flag_set(F2FS_I(inode), FI_ATOMIC_FILE);
1442}
1443
Jaegeuk Kim02a13352014-10-06 16:11:16 -07001444static inline bool f2fs_is_volatile_file(struct inode *inode)
1445{
1446 return is_inode_flag_set(F2FS_I(inode), FI_VOLATILE_FILE);
1447}
1448
Jaegeuk Kim3c6c2be2015-03-17 17:16:35 -07001449static inline bool f2fs_is_first_block_written(struct inode *inode)
1450{
1451 return is_inode_flag_set(F2FS_I(inode), FI_FIRST_BLOCK_WRITTEN);
1452}
1453
Jaegeuk Kim1e843712014-12-09 06:08:59 -08001454static inline bool f2fs_is_drop_cache(struct inode *inode)
1455{
1456 return is_inode_flag_set(F2FS_I(inode), FI_DROP_CACHE);
1457}
1458
Huajun Li1001b342013-11-10 23:13:16 +08001459static inline void *inline_data_addr(struct page *page)
1460{
Chao Yu695fd1e2014-02-27 19:52:21 +08001461 struct f2fs_inode *ri = F2FS_INODE(page);
Huajun Li1001b342013-11-10 23:13:16 +08001462 return (void *)&(ri->i_addr[1]);
1463}
1464
Chao Yu34d67de2014-09-24 18:15:19 +08001465static inline int f2fs_has_inline_dentry(struct inode *inode)
1466{
1467 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DENTRY);
1468}
1469
Jaegeuk Kim9486ba4422014-11-21 16:36:28 -08001470static inline void f2fs_dentry_kunmap(struct inode *dir, struct page *page)
1471{
1472 if (!f2fs_has_inline_dentry(dir))
1473 kunmap(page);
1474}
1475
Jaegeuk Kimb5492af72015-04-20 13:44:41 -07001476static inline int is_file(struct inode *inode, int type)
1477{
1478 return F2FS_I(inode)->i_advise & type;
1479}
1480
1481static inline void set_file(struct inode *inode, int type)
1482{
1483 F2FS_I(inode)->i_advise |= type;
1484}
1485
1486static inline void clear_file(struct inode *inode, int type)
1487{
1488 F2FS_I(inode)->i_advise &= ~type;
1489}
1490
Jaegeuk Kim77888c12013-05-20 20:28:47 +09001491static inline int f2fs_readonly(struct super_block *sb)
1492{
1493 return sb->s_flags & MS_RDONLY;
1494}
1495
Jaegeuk Kim1e968fd2014-08-11 16:49:25 -07001496static inline bool f2fs_cp_error(struct f2fs_sb_info *sbi)
1497{
1498 return is_set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1499}
1500
Jaegeuk Kim744602c2014-01-24 09:42:16 +09001501static inline void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi)
1502{
1503 set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1504 sbi->sb->s_flags |= MS_RDONLY;
1505}
1506
Jaegeuk Kimeaa693f2015-04-26 00:15:29 -07001507static inline bool is_dot_dotdot(const struct qstr *str)
1508{
1509 if (str->len == 1 && str->name[0] == '.')
1510 return true;
1511
1512 if (str->len == 2 && str->name[0] == '.' && str->name[1] == '.')
1513 return true;
1514
1515 return false;
1516}
1517
Christoph Hellwiga6dda0e2013-12-20 05:16:45 -08001518#define get_inode_mode(i) \
1519 ((is_inode_flag_set(F2FS_I(i), FI_ACL_MODE)) ? \
1520 (F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
1521
Chao Yu267378d2014-04-23 14:10:24 +08001522/* get offset of first page in next direct node */
1523#define PGOFS_OF_NEXT_DNODE(pgofs, fi) \
1524 ((pgofs < ADDRS_PER_INODE(fi)) ? ADDRS_PER_INODE(fi) : \
1525 (pgofs - ADDRS_PER_INODE(fi) + ADDRS_PER_BLOCK) / \
1526 ADDRS_PER_BLOCK * ADDRS_PER_BLOCK + ADDRS_PER_INODE(fi))
1527
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001528/*
1529 * file.c
1530 */
1531int f2fs_sync_file(struct file *, loff_t, loff_t, int);
1532void truncate_data_blocks(struct dnode_of_data *);
Jaegeuk Kim764aa3e2014-08-14 16:32:54 -07001533int truncate_blocks(struct inode *, u64, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001534void f2fs_truncate(struct inode *);
Jaegeuk Kim2d4d9fb52013-06-07 16:33:07 +09001535int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001536int f2fs_setattr(struct dentry *, struct iattr *);
1537int truncate_hole(struct inode *, pgoff_t, pgoff_t);
Jaegeuk Kimb292dcab2013-05-22 08:02:02 +09001538int truncate_data_blocks_range(struct dnode_of_data *, int);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001539long f2fs_ioctl(struct file *, unsigned int, unsigned long);
Namjae Jeone9750822013-02-04 23:41:41 +09001540long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001541
1542/*
1543 * inode.c
1544 */
1545void f2fs_set_inode_flags(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001546struct inode *f2fs_iget(struct super_block *, unsigned long);
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +09001547int try_to_free_nats(struct f2fs_sb_info *, int);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001548void update_inode(struct inode *, struct page *);
Jaegeuk Kim744602c2014-01-24 09:42:16 +09001549void update_inode_page(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001550int f2fs_write_inode(struct inode *, struct writeback_control *);
1551void f2fs_evict_inode(struct inode *);
Jaegeuk Kim44c16152014-09-25 11:55:53 -07001552void handle_failed_inode(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001553
1554/*
1555 * namei.c
1556 */
1557struct dentry *f2fs_get_parent(struct dentry *child);
1558
1559/*
1560 * dir.c
1561 */
Chao Yudbeacf02014-09-24 18:17:04 +08001562extern unsigned char f2fs_filetype_table[F2FS_FT_MAX];
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001563void set_de_type(struct f2fs_dir_entry *, umode_t);
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -07001564struct f2fs_dir_entry *find_target_dentry(struct qstr *, int *,
1565 struct f2fs_dentry_ptr *);
1566bool f2fs_fill_dentries(struct dir_context *, struct f2fs_dentry_ptr *,
1567 unsigned int);
Jaegeuk Kim062a3e72014-10-18 23:06:41 -07001568void do_make_empty_dir(struct inode *, struct inode *,
1569 struct f2fs_dentry_ptr *);
Chao Yudbeacf02014-09-24 18:17:04 +08001570struct page *init_inode_metadata(struct inode *, struct inode *,
Jaegeuk Kimbce8d112014-10-13 19:42:53 -07001571 const struct qstr *, struct page *);
Chao Yudbeacf02014-09-24 18:17:04 +08001572void update_parent_metadata(struct inode *, struct inode *, unsigned int);
Jaegeuk Kima82afa22014-10-13 16:28:13 -07001573int room_for_filename(const void *, int, int);
Chao Yudbeacf02014-09-24 18:17:04 +08001574void f2fs_drop_nlink(struct inode *, struct inode *, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001575struct f2fs_dir_entry *f2fs_find_entry(struct inode *, struct qstr *,
1576 struct page **);
1577struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **);
1578ino_t f2fs_inode_by_name(struct inode *, struct qstr *);
1579void f2fs_set_link(struct inode *, struct f2fs_dir_entry *,
1580 struct page *, struct inode *);
Jaegeuk Kim1cd14ca2013-07-18 18:02:31 +09001581int update_dent_inode(struct inode *, const struct qstr *);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001582void f2fs_update_dentry(nid_t ino, umode_t mode, struct f2fs_dentry_ptr *,
Chao Yu3b4d7322015-02-16 16:17:20 +08001583 const struct qstr *, f2fs_hash_t , unsigned int);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001584int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *, nid_t,
1585 umode_t);
Chao Yudbeacf02014-09-24 18:17:04 +08001586void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *,
1587 struct inode *);
Jaegeuk Kimb97a9b52014-06-20 21:37:02 -07001588int f2fs_do_tmpfile(struct inode *, struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001589bool f2fs_empty_dir(struct inode *);
1590
Al Virob7f7a5e2013-01-25 16:15:43 -05001591static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
1592{
David Howells2b0143b2015-03-17 22:25:59 +00001593 return __f2fs_add_link(d_inode(dentry->d_parent), &dentry->d_name,
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001594 inode, inode->i_ino, inode->i_mode);
Al Virob7f7a5e2013-01-25 16:15:43 -05001595}
1596
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001597/*
1598 * super.c
1599 */
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07001600int f2fs_commit_super(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001601int f2fs_sync_fs(struct super_block *, int);
Namjae Jeona07ef782012-12-30 14:52:05 +09001602extern __printf(3, 4)
1603void f2fs_msg(struct super_block *, const char *, const char *, ...);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001604
1605/*
1606 * hash.c
1607 */
Gu Zhengeee61602014-06-24 18:21:23 +08001608f2fs_hash_t f2fs_dentry_hash(const struct qstr *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001609
1610/*
1611 * node.c
1612 */
1613struct dnode_of_data;
1614struct node_info;
1615
Jaegeuk Kim6fb03f32014-04-16 10:47:06 +09001616bool available_free_memory(struct f2fs_sb_info *, int);
Jaegeuk Kim2dcf51a2015-04-29 18:31:19 -07001617int need_dentry_mark(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim88bd02c2014-09-15 14:50:48 -07001618bool is_checkpointed_node(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim88bd02c2014-09-15 14:50:48 -07001619bool need_inode_block_update(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001620void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *);
1621int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int);
1622int truncate_inode_blocks(struct inode *, pgoff_t);
Jaegeuk Kim4f16fb02013-08-14 20:40:06 +09001623int truncate_xattr_node(struct inode *, struct page *);
Jaegeuk Kimcfe58f92013-10-31 14:57:01 +09001624int wait_on_node_pages_writeback(struct f2fs_sb_info *, nid_t);
Gu Zheng58e674d2013-11-19 18:03:18 +08001625void remove_inode_page(struct inode *);
Jaegeuk Kima014e032014-06-20 21:44:02 -07001626struct page *new_inode_page(struct inode *);
Jaegeuk Kim8ae8f162013-06-03 19:46:19 +09001627struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001628void ra_node_page(struct f2fs_sb_info *, nid_t);
1629struct page *get_node_page(struct f2fs_sb_info *, pgoff_t);
1630struct page *get_node_page_ra(struct page *, int);
1631void sync_inode_page(struct dnode_of_data *);
1632int sync_node_pages(struct f2fs_sb_info *, nid_t, struct writeback_control *);
1633bool alloc_nid(struct f2fs_sb_info *, nid_t *);
1634void alloc_nid_done(struct f2fs_sb_info *, nid_t);
1635void alloc_nid_failed(struct f2fs_sb_info *, nid_t);
Chao Yu70cfed82014-08-02 15:26:04 +08001636void recover_inline_xattr(struct inode *, struct page *);
Jaegeuk Kim1c35a902014-08-07 23:49:17 -07001637void recover_xattr_data(struct inode *, struct page *, block_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001638int recover_inode_page(struct f2fs_sb_info *, struct page *);
1639int restore_node_summary(struct f2fs_sb_info *, unsigned int,
1640 struct f2fs_summary_block *);
1641void flush_nat_entries(struct f2fs_sb_info *);
1642int build_node_manager(struct f2fs_sb_info *);
1643void destroy_node_manager(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001644int __init create_node_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001645void destroy_node_manager_caches(void);
1646
1647/*
1648 * segment.c
1649 */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001650void register_inmem_page(struct inode *, struct page *);
1651void commit_inmem_pages(struct inode *, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001652void f2fs_balance_fs(struct f2fs_sb_info *);
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +09001653void f2fs_balance_fs_bg(struct f2fs_sb_info *);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09001654int f2fs_issue_flush(struct f2fs_sb_info *);
Gu Zheng2163d192014-04-27 14:21:33 +08001655int create_flush_cmd_control(struct f2fs_sb_info *);
1656void destroy_flush_cmd_control(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001657void invalidate_blocks(struct f2fs_sb_info *, block_t);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001658void refresh_sit_entry(struct f2fs_sb_info *, block_t, block_t);
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001659void clear_prefree_segments(struct f2fs_sb_info *, struct cp_control *);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001660void release_discard_addrs(struct f2fs_sb_info *);
Jaegeuk Kimcf2271e2014-07-25 15:47:25 -07001661void discard_next_dnode(struct f2fs_sb_info *, block_t);
Chao Yu3fa06d72014-12-09 14:21:46 +08001662int npages_for_summary_flush(struct f2fs_sb_info *, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001663void allocate_new_segments(struct f2fs_sb_info *);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001664int f2fs_trim_fs(struct f2fs_sb_info *, struct fstrim_range *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001665struct page *get_sum_page(struct f2fs_sb_info *, unsigned int);
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001666void write_meta_page(struct f2fs_sb_info *, struct page *);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001667void write_node_page(unsigned int, struct f2fs_io_info *);
1668void write_data_page(struct dnode_of_data *, struct f2fs_io_info *);
1669void rewrite_data_page(struct f2fs_io_info *);
Chao Yu19f106b2015-05-06 13:08:06 +08001670void f2fs_replace_block(struct f2fs_sb_info *, struct f2fs_summary *,
1671 block_t, block_t, bool);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001672void allocate_data_block(struct f2fs_sb_info *, struct page *,
1673 block_t, block_t *, struct f2fs_summary *, int);
Yuan Zhong5514f0a2014-01-10 07:26:14 +00001674void f2fs_wait_on_page_writeback(struct page *, enum page_type);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001675void write_data_summaries(struct f2fs_sb_info *, block_t);
1676void write_node_summaries(struct f2fs_sb_info *, block_t);
1677int lookup_journal_in_cursum(struct f2fs_summary_block *,
1678 int, unsigned int, int);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001679void flush_sit_entries(struct f2fs_sb_info *, struct cp_control *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001680int build_segment_manager(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001681void destroy_segment_manager(struct f2fs_sb_info *);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09001682int __init create_segment_manager_caches(void);
1683void destroy_segment_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001684
1685/*
1686 * checkpoint.c
1687 */
1688struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t);
1689struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t);
Chao Yuf0c9cad2015-04-18 18:05:36 +08001690bool is_valid_blkaddr(struct f2fs_sb_info *, block_t, int);
Jaegeuk Kim4c521f492014-09-11 13:49:55 -07001691int ra_meta_pages(struct f2fs_sb_info *, block_t, int, int);
Chao Yu635aee12014-12-08 15:02:52 +08001692void ra_meta_pages_cond(struct f2fs_sb_info *, pgoff_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001693long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long);
Jaegeuk Kimfff04f92014-07-25 07:40:59 -07001694void add_dirty_inode(struct f2fs_sb_info *, nid_t, int type);
1695void remove_dirty_inode(struct f2fs_sb_info *, nid_t, int type);
Jaegeuk Kim6f12ac22014-08-19 09:48:22 -07001696void release_dirty_inode(struct f2fs_sb_info *);
Jaegeuk Kimfff04f92014-07-25 07:40:59 -07001697bool exist_written_data(struct f2fs_sb_info *, nid_t, int);
Jaegeuk Kimcbd56e72013-07-30 11:36:53 +09001698int acquire_orphan_inode(struct f2fs_sb_info *);
1699void release_orphan_inode(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001700void add_orphan_inode(struct f2fs_sb_info *, nid_t);
1701void remove_orphan_inode(struct f2fs_sb_info *, nid_t);
Chao Yu8f99a942013-11-28 15:43:43 +08001702void recover_orphan_inodes(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001703int get_valid_checkpoint(struct f2fs_sb_info *);
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001704void update_dirty_page(struct inode *, struct page *);
Jaegeuk Kim5deb8262013-06-05 17:42:45 +09001705void add_dirty_dir_inode(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001706void remove_dirty_dir_inode(struct inode *);
1707void sync_dirty_dir_inodes(struct f2fs_sb_info *);
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -07001708void write_checkpoint(struct f2fs_sb_info *, struct cp_control *);
Jaegeuk Kim6451e042014-07-25 15:47:17 -07001709void init_ino_entry_info(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001710int __init create_checkpoint_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001711void destroy_checkpoint_caches(void);
1712
1713/*
1714 * data.c
1715 */
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001716void f2fs_submit_merged_bio(struct f2fs_sb_info *, enum page_type, int);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001717int f2fs_submit_page_bio(struct f2fs_io_info *);
1718void f2fs_submit_page_mbio(struct f2fs_io_info *);
Chao Yu216a6202015-03-19 19:23:32 +08001719void set_data_blkaddr(struct dnode_of_data *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001720int reserve_new_block(struct dnode_of_data *);
Huajun Lib6009652013-11-10 23:13:18 +08001721int f2fs_reserve_block(struct dnode_of_data *, pgoff_t);
Chao Yu429511c2015-02-05 17:54:31 +08001722void f2fs_shrink_extent_tree(struct f2fs_sb_info *, int);
1723void f2fs_destroy_extent_tree(struct inode *);
Chao Yu028a41e2015-03-19 19:26:02 +08001724void f2fs_init_extent_cache(struct inode *, struct f2fs_extent *);
Chao Yu7e4dde72015-02-05 17:51:34 +08001725void f2fs_update_extent_cache(struct dnode_of_data *);
Chao Yu0bdee482015-03-19 19:27:51 +08001726void f2fs_preserve_extent_tree(struct inode *);
Jaegeuk Kim43f3eae2015-04-30 17:00:33 -07001727struct page *get_read_data_page(struct inode *, pgoff_t, int);
1728struct page *find_data_page(struct inode *, pgoff_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001729struct page *get_lock_data_page(struct inode *, pgoff_t);
Jaegeuk Kim64aa7ed2013-05-20 09:55:50 +09001730struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001731int do_write_data_page(struct f2fs_io_info *);
Jaegeuk Kim9ab70132014-06-08 04:30:14 +09001732int f2fs_fiemap(struct inode *inode, struct fiemap_extent_info *, u64, u64);
Chao Yu429511c2015-02-05 17:54:31 +08001733void init_extent_cache_info(struct f2fs_sb_info *);
1734int __init create_extent_cache(void);
1735void destroy_extent_cache(void);
Chao Yu487261f2015-02-05 17:44:29 +08001736void f2fs_invalidate_page(struct page *, unsigned int, unsigned int);
1737int f2fs_release_page(struct page *, gfp_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001738
1739/*
1740 * gc.c
1741 */
1742int start_gc_thread(struct f2fs_sb_info *);
1743void stop_gc_thread(struct f2fs_sb_info *);
Jaegeuk Kimde936532013-08-12 21:08:03 +09001744block_t start_bidx_of_node(unsigned int, struct f2fs_inode_info *);
Jaegeuk Kim408e9372013-01-03 17:55:52 +09001745int f2fs_gc(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001746void build_gc_manager(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001747
1748/*
1749 * recovery.c
1750 */
Jaegeuk Kim6ead1142013-03-20 19:01:06 +09001751int recover_fsync_data(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001752bool space_for_roll_forward(struct f2fs_sb_info *);
1753
1754/*
1755 * debug.c
1756 */
1757#ifdef CONFIG_F2FS_STAT_FS
1758struct f2fs_stat_info {
1759 struct list_head stat_list;
1760 struct f2fs_sb_info *sbi;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001761 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
1762 int main_area_segs, main_area_sections, main_area_zones;
Chao Yu4bf6fd92015-02-05 17:58:28 +08001763 int hit_ext, total_ext, ext_tree, ext_node;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001764 int ndirty_node, ndirty_dent, ndirty_dirs, ndirty_meta;
Jaegeuk Kimdd4e4b52015-01-07 11:09:37 -08001765 int nats, dirty_nats, sits, dirty_sits, fnids;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001766 int total_count, utilization;
Jaegeuk Kimd24bdcb2015-01-30 16:43:11 -08001767 int bg_gc, inline_inode, inline_dir, inmem_pages, wb_pages;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001768 unsigned int valid_count, valid_node_count, valid_inode_count;
1769 unsigned int bimodal, avg_vblocks;
1770 int util_free, util_valid, util_invalid;
1771 int rsvd_segs, overp_segs;
1772 int dirty_count, node_pages, meta_pages;
Changman Lee942e0be2014-02-13 15:12:29 +09001773 int prefree_count, call_count, cp_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001774 int tot_segs, node_segs, data_segs, free_segs, free_secs;
Changman Leee1235982014-12-23 08:37:39 +09001775 int bg_node_segs, bg_data_segs;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001776 int tot_blks, data_blks, node_blks;
Changman Leee1235982014-12-23 08:37:39 +09001777 int bg_data_blks, bg_node_blks;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001778 int curseg[NR_CURSEG_TYPE];
1779 int cursec[NR_CURSEG_TYPE];
1780 int curzone[NR_CURSEG_TYPE];
1781
1782 unsigned int segment_count[2];
1783 unsigned int block_count[2];
Changman Leeb9a2c252014-12-24 02:16:54 +09001784 unsigned int inplace_count;
Jaegeuk Kim6f0aacb2015-01-10 21:37:36 -08001785 unsigned base_mem, cache_mem, page_mem;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001786};
1787
Gu Zheng963d4f72013-07-12 14:47:11 +08001788static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
1789{
Chris Fries6c311ec2014-01-17 14:44:39 -06001790 return (struct f2fs_stat_info *)sbi->stat_info;
Gu Zheng963d4f72013-07-12 14:47:11 +08001791}
1792
Changman Lee942e0be2014-02-13 15:12:29 +09001793#define stat_inc_cp_count(si) ((si)->cp_count++)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001794#define stat_inc_call_count(si) ((si)->call_count++)
1795#define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++)
1796#define stat_inc_dirty_dir(sbi) ((sbi)->n_dirty_dirs++)
1797#define stat_dec_dirty_dir(sbi) ((sbi)->n_dirty_dirs--)
1798#define stat_inc_total_hit(sb) ((F2FS_SB(sb))->total_hit_ext++)
1799#define stat_inc_read_hit(sb) ((F2FS_SB(sb))->read_hit_ext++)
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001800#define stat_inc_inline_inode(inode) \
1801 do { \
1802 if (f2fs_has_inline_data(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08001803 (atomic_inc(&F2FS_I_SB(inode)->inline_inode)); \
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001804 } while (0)
1805#define stat_dec_inline_inode(inode) \
1806 do { \
1807 if (f2fs_has_inline_data(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08001808 (atomic_dec(&F2FS_I_SB(inode)->inline_inode)); \
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001809 } while (0)
Jaegeuk Kim3289c062014-10-13 20:00:16 -07001810#define stat_inc_inline_dir(inode) \
1811 do { \
1812 if (f2fs_has_inline_dentry(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08001813 (atomic_inc(&F2FS_I_SB(inode)->inline_dir)); \
Jaegeuk Kim3289c062014-10-13 20:00:16 -07001814 } while (0)
1815#define stat_dec_inline_dir(inode) \
1816 do { \
1817 if (f2fs_has_inline_dentry(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08001818 (atomic_dec(&F2FS_I_SB(inode)->inline_dir)); \
Jaegeuk Kim3289c062014-10-13 20:00:16 -07001819 } while (0)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001820#define stat_inc_seg_type(sbi, curseg) \
1821 ((sbi)->segment_count[(curseg)->alloc_type]++)
1822#define stat_inc_block_count(sbi, curseg) \
1823 ((sbi)->block_count[(curseg)->alloc_type]++)
Changman Leeb9a2c252014-12-24 02:16:54 +09001824#define stat_inc_inplace_blocks(sbi) \
1825 (atomic_inc(&(sbi)->inplace_count))
Changman Leee1235982014-12-23 08:37:39 +09001826#define stat_inc_seg_count(sbi, type, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001827 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001828 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001829 (si)->tot_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09001830 if (type == SUM_TYPE_DATA) { \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001831 si->data_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09001832 si->bg_data_segs += (gc_type == BG_GC) ? 1 : 0; \
1833 } else { \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001834 si->node_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09001835 si->bg_node_segs += (gc_type == BG_GC) ? 1 : 0; \
1836 } \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001837 } while (0)
1838
1839#define stat_inc_tot_blk_count(si, blks) \
1840 (si->tot_blks += (blks))
1841
Changman Leee1235982014-12-23 08:37:39 +09001842#define stat_inc_data_blk_count(sbi, blks, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001843 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001844 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001845 stat_inc_tot_blk_count(si, blks); \
1846 si->data_blks += (blks); \
Changman Leee1235982014-12-23 08:37:39 +09001847 si->bg_data_blks += (gc_type == BG_GC) ? (blks) : 0; \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001848 } while (0)
1849
Changman Leee1235982014-12-23 08:37:39 +09001850#define stat_inc_node_blk_count(sbi, blks, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001851 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08001852 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001853 stat_inc_tot_blk_count(si, blks); \
1854 si->node_blks += (blks); \
Changman Leee1235982014-12-23 08:37:39 +09001855 si->bg_node_blks += (gc_type == BG_GC) ? (blks) : 0; \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001856 } while (0)
1857
1858int f2fs_build_stats(struct f2fs_sb_info *);
1859void f2fs_destroy_stats(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001860void __init f2fs_create_root_stats(void);
Namjae Jeon4589d252013-01-15 19:58:47 +09001861void f2fs_destroy_root_stats(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001862#else
Changman Lee942e0be2014-02-13 15:12:29 +09001863#define stat_inc_cp_count(si)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001864#define stat_inc_call_count(si)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001865#define stat_inc_bggc_count(si)
1866#define stat_inc_dirty_dir(sbi)
1867#define stat_dec_dirty_dir(sbi)
1868#define stat_inc_total_hit(sb)
1869#define stat_inc_read_hit(sb)
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001870#define stat_inc_inline_inode(inode)
1871#define stat_dec_inline_inode(inode)
Jaegeuk Kim3289c062014-10-13 20:00:16 -07001872#define stat_inc_inline_dir(inode)
1873#define stat_dec_inline_dir(inode)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001874#define stat_inc_seg_type(sbi, curseg)
1875#define stat_inc_block_count(sbi, curseg)
Changman Leeb9a2c252014-12-24 02:16:54 +09001876#define stat_inc_inplace_blocks(sbi)
Changman Leee1235982014-12-23 08:37:39 +09001877#define stat_inc_seg_count(sbi, type, gc_type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001878#define stat_inc_tot_blk_count(si, blks)
Changman Leee1235982014-12-23 08:37:39 +09001879#define stat_inc_data_blk_count(sbi, blks, gc_type)
1880#define stat_inc_node_blk_count(sbi, blks, gc_type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001881
1882static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
1883static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001884static inline void __init f2fs_create_root_stats(void) { }
Namjae Jeon4589d252013-01-15 19:58:47 +09001885static inline void f2fs_destroy_root_stats(void) { }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001886#endif
1887
1888extern const struct file_operations f2fs_dir_operations;
1889extern const struct file_operations f2fs_file_operations;
1890extern const struct inode_operations f2fs_file_inode_operations;
1891extern const struct address_space_operations f2fs_dblock_aops;
1892extern const struct address_space_operations f2fs_node_aops;
1893extern const struct address_space_operations f2fs_meta_aops;
1894extern const struct inode_operations f2fs_dir_inode_operations;
1895extern const struct inode_operations f2fs_symlink_inode_operations;
1896extern const struct inode_operations f2fs_special_inode_operations;
Jaegeuk Kim29e70432015-02-10 16:23:12 -08001897extern struct kmem_cache *inode_entry_slab;
Huajun Li1001b342013-11-10 23:13:16 +08001898
Huajun Lie18c65b2013-11-10 23:13:19 +08001899/*
1900 * inline.c
1901 */
Jaegeuk Kim01b960e2015-04-23 10:27:21 -07001902bool f2fs_may_inline_data(struct inode *);
1903bool f2fs_may_inline_dentry(struct inode *);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001904void read_inline_data(struct page *, struct page *);
Chao Yu0bfcfcc2015-03-10 13:16:25 +08001905bool truncate_inline_inode(struct page *, u64);
Huajun Lie18c65b2013-11-10 23:13:19 +08001906int f2fs_read_inline_data(struct inode *, struct page *);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001907int f2fs_convert_inline_page(struct dnode_of_data *, struct page *);
1908int f2fs_convert_inline_inode(struct inode *);
1909int f2fs_write_inline_data(struct inode *, struct page *);
Jaegeuk Kim0342fd32014-08-07 16:57:17 -07001910bool recover_inline_data(struct inode *, struct page *);
Chao Yu201a05b2014-09-24 18:17:53 +08001911struct f2fs_dir_entry *find_in_inline_dir(struct inode *, struct qstr *,
1912 struct page **);
1913struct f2fs_dir_entry *f2fs_parent_inline_dir(struct inode *, struct page **);
1914int make_empty_inline_dir(struct inode *inode, struct inode *, struct page *);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001915int f2fs_add_inline_entry(struct inode *, const struct qstr *, struct inode *,
1916 nid_t, umode_t);
Chao Yu201a05b2014-09-24 18:17:53 +08001917void f2fs_delete_inline_entry(struct f2fs_dir_entry *, struct page *,
1918 struct inode *, struct inode *);
1919bool f2fs_empty_inline_dir(struct inode *);
1920int f2fs_read_inline_dir(struct file *, struct dir_context *);
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07001921
1922/*
1923 * crypto support
1924 */
1925static inline int f2fs_encrypted_inode(struct inode *inode)
1926{
1927#ifdef CONFIG_F2FS_FS_ENCRYPTION
1928 return file_is_encrypt(inode);
1929#else
1930 return 0;
1931#endif
1932}
1933
1934static inline void f2fs_set_encrypted_inode(struct inode *inode)
1935{
1936#ifdef CONFIG_F2FS_FS_ENCRYPTION
1937 file_set_encrypt(inode);
1938#endif
1939}
1940
1941static inline bool f2fs_bio_encrypted(struct bio *bio)
1942{
1943#ifdef CONFIG_F2FS_FS_ENCRYPTION
1944 return unlikely(bio->bi_private != NULL);
1945#else
1946 return false;
1947#endif
1948}
1949
1950static inline int f2fs_sb_has_crypto(struct super_block *sb)
1951{
1952#ifdef CONFIG_F2FS_FS_ENCRYPTION
1953 return F2FS_HAS_FEATURE(sb, F2FS_FEATURE_ENCRYPT);
1954#else
1955 return 0;
1956#endif
1957}
Jaegeuk Kimf424f662015-04-20 15:19:06 -07001958
1959/* crypto_policy.c */
1960int f2fs_is_child_context_consistent_with_parent(struct inode *,
1961 struct inode *);
1962int f2fs_inherit_context(struct inode *, struct inode *, struct page *);
1963int f2fs_process_policy(const struct f2fs_encryption_policy *, struct inode *);
1964int f2fs_get_policy(struct inode *, struct f2fs_encryption_policy *);
Jaegeuk Kim57e50552015-04-20 19:52:47 -07001965
1966/* crypt.c */
1967extern struct workqueue_struct *f2fs_read_workqueue;
1968bool f2fs_valid_contents_enc_mode(uint32_t);
1969uint32_t f2fs_validate_encryption_key_size(uint32_t, uint32_t);
1970struct f2fs_crypto_ctx *f2fs_get_crypto_ctx(struct inode *);
1971void f2fs_release_crypto_ctx(struct f2fs_crypto_ctx *);
1972struct page *f2fs_encrypt(struct inode *, struct page *);
1973int f2fs_decrypt(struct f2fs_crypto_ctx *, struct page *);
1974int f2fs_decrypt_one(struct inode *, struct page *);
1975void f2fs_end_io_crypto_work(struct f2fs_crypto_ctx *, struct bio *);
1976
1977#ifdef CONFIG_F2FS_FS_ENCRYPTION
1978void f2fs_restore_and_release_control_page(struct page **);
1979void f2fs_restore_control_page(struct page *);
1980
1981int f2fs_init_crypto(void);
1982void f2fs_exit_crypto(void);
1983#else
1984static inline void f2fs_restore_and_release_control_page(struct page **p) { }
1985static inline void f2fs_restore_control_page(struct page *p) { }
1986
1987static inline int f2fs_init_crypto(void) { return 0; }
1988static inline void f2fs_exit_crypto(void) { }
1989#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001990#endif