blob: 5b6fd541551cd2a017891d425566e65750353526 [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 Kim39307a82015-09-22 13:50:47 -070022#include <linux/vmalloc.h>
Jaegeuk Kim740432f2015-08-14 11:43:56 -070023#include <linux/bio.h>
Jaegeuk Kimd0239e12016-01-08 16:57:48 -080024#include <linux/blkdev.h>
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090025
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090026#ifdef CONFIG_F2FS_CHECK_FS
Jaegeuk Kim9850cf42014-09-02 15:52:58 -070027#define f2fs_bug_on(sbi, condition) BUG_ON(condition)
Jaegeuk Kim0daaad92013-11-24 13:50:35 +090028#define f2fs_down_write(x, y) down_write_nest_lock(x, y)
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090029#else
Jaegeuk Kim9850cf42014-09-02 15:52:58 -070030#define f2fs_bug_on(sbi, condition) \
31 do { \
32 if (unlikely(condition)) { \
33 WARN_ON(1); \
Chao Yucaf00472015-01-28 17:48:42 +080034 set_sbi_flag(sbi, SBI_NEED_FSCK); \
Jaegeuk Kim9850cf42014-09-02 15:52:58 -070035 } \
36 } while (0)
Jaegeuk Kim0daaad92013-11-24 13:50:35 +090037#define f2fs_down_write(x, y) down_write(x)
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090038#endif
39
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090040/*
41 * For mount options
42 */
43#define F2FS_MOUNT_BG_GC 0x00000001
44#define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002
45#define F2FS_MOUNT_DISCARD 0x00000004
46#define F2FS_MOUNT_NOHEAP 0x00000008
47#define F2FS_MOUNT_XATTR_USER 0x00000010
48#define F2FS_MOUNT_POSIX_ACL 0x00000020
49#define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040
Jaegeuk Kim444c5802013-08-08 15:16:22 +090050#define F2FS_MOUNT_INLINE_XATTR 0x00000080
Huajun Li1001b342013-11-10 23:13:16 +080051#define F2FS_MOUNT_INLINE_DATA 0x00000100
Chao Yu34d67de2014-09-24 18:15:19 +080052#define F2FS_MOUNT_INLINE_DENTRY 0x00000200
53#define F2FS_MOUNT_FLUSH_MERGE 0x00000400
54#define F2FS_MOUNT_NOBARRIER 0x00000800
Jaegeuk Kimd5053a342014-10-30 22:47:03 -070055#define F2FS_MOUNT_FASTBOOT 0x00001000
Chao Yu89672152015-02-05 17:55:51 +080056#define F2FS_MOUNT_EXTENT_CACHE 0x00002000
Jaegeuk Kim6aefd932015-10-05 11:02:54 -070057#define F2FS_MOUNT_FORCE_FG_GC 0x00004000
Chao Yu343f40f2015-12-16 13:12:16 +080058#define F2FS_MOUNT_DATA_FLUSH 0x00008000
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090059
60#define clear_opt(sbi, option) (sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
61#define set_opt(sbi, option) (sbi->mount_opt.opt |= F2FS_MOUNT_##option)
62#define test_opt(sbi, option) (sbi->mount_opt.opt & F2FS_MOUNT_##option)
63
64#define ver_after(a, b) (typecheck(unsigned long long, a) && \
65 typecheck(unsigned long long, b) && \
66 ((long long)((a) - (b)) > 0))
67
Jaegeuk Kima9841c42013-05-24 12:41:04 +090068typedef u32 block_t; /*
69 * should not change u32, since it is the on-disk block
70 * address format, __le32.
71 */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090072typedef u32 nid_t;
73
74struct f2fs_mount_info {
75 unsigned int opt;
76};
77
Jaegeuk Kimcde4de12015-04-20 13:57:51 -070078#define F2FS_FEATURE_ENCRYPT 0x0001
79
Jaegeuk Kim76f105a2015-04-13 15:10:36 -070080#define F2FS_HAS_FEATURE(sb, mask) \
81 ((F2FS_SB(sb)->raw_super->feature & cpu_to_le32(mask)) != 0)
82#define F2FS_SET_FEATURE(sb, mask) \
83 F2FS_SB(sb)->raw_super->feature |= cpu_to_le32(mask)
84#define F2FS_CLEAR_FEATURE(sb, mask) \
85 F2FS_SB(sb)->raw_super->feature &= ~cpu_to_le32(mask)
86
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090087#define CRCPOLY_LE 0xedb88320
88
89static inline __u32 f2fs_crc32(void *buf, size_t len)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090090{
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +090091 unsigned char *p = (unsigned char *)buf;
92 __u32 crc = F2FS_SUPER_MAGIC;
93 int i;
94
95 while (len--) {
96 crc ^= *p++;
97 for (i = 0; i < 8; i++)
98 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
99 }
100 return crc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900101}
102
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +0900103static inline bool f2fs_crc_valid(__u32 blk_crc, void *buf, size_t buf_size)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900104{
Jaegeuk Kim7e586fa2013-06-19 20:47:19 +0900105 return f2fs_crc32(buf, buf_size) == blk_crc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900106}
107
108/*
109 * For checkpoint manager
110 */
111enum {
112 NAT_BITMAP,
113 SIT_BITMAP
114};
115
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700116enum {
117 CP_UMOUNT,
Jaegeuk Kim119ee912015-01-29 11:45:33 -0800118 CP_FASTBOOT,
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700119 CP_SYNC,
Jaegeuk Kim10027552015-04-09 17:03:53 -0700120 CP_RECOVERY,
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700121 CP_DISCARD,
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700122};
123
Jaegeuk Kimbba681c2015-01-26 17:41:23 -0800124#define DEF_BATCHED_TRIM_SECTIONS 32
125#define BATCHED_TRIM_SEGMENTS(sbi) \
126 (SM_I(sbi)->trim_sections * (sbi)->segs_per_sec)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700127#define BATCHED_TRIM_BLOCKS(sbi) \
128 (BATCHED_TRIM_SEGMENTS(sbi) << (sbi)->log_blocks_per_seg)
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700129#define DEF_CP_INTERVAL 60 /* 60 secs */
Jaegeuk Kimd0239e12016-01-08 16:57:48 -0800130#define DEF_IDLE_INTERVAL 120 /* 2 mins */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -0800131
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700132struct cp_control {
133 int reason;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700134 __u64 trim_start;
135 __u64 trim_end;
136 __u64 trim_minlen;
137 __u64 trimmed;
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700138};
139
Chao Yu662befd2014-02-07 16:11:53 +0800140/*
Chao Yu81c1a0f12014-02-27 19:12:24 +0800141 * For CP/NAT/SIT/SSA readahead
Chao Yu662befd2014-02-07 16:11:53 +0800142 */
143enum {
144 META_CP,
145 META_NAT,
Chao Yu81c1a0f12014-02-27 19:12:24 +0800146 META_SIT,
Jaegeuk Kim4c521f492014-09-11 13:49:55 -0700147 META_SSA,
148 META_POR,
Chao Yu662befd2014-02-07 16:11:53 +0800149};
150
Jaegeuk Kim6451e042014-07-25 15:47:17 -0700151/* for the list of ino */
152enum {
153 ORPHAN_INO, /* for orphan ino list */
Jaegeuk Kimfff04f92014-07-25 07:40:59 -0700154 APPEND_INO, /* for append ino list */
155 UPDATE_INO, /* for update ino list */
Jaegeuk Kim6451e042014-07-25 15:47:17 -0700156 MAX_INO_ENTRY, /* max. list */
157};
158
159struct ino_entry {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900160 struct list_head list; /* list head */
161 nid_t ino; /* inode number */
162};
163
Chao Yu2710fd72015-12-15 13:30:45 +0800164/* for the list of inodes to be GCed */
Chao Yu06292072014-12-29 15:56:18 +0800165struct inode_entry {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900166 struct list_head list; /* list head */
167 struct inode *inode; /* vfs inode pointer */
168};
169
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900170/* for the list of blockaddresses to be discarded */
171struct discard_entry {
172 struct list_head list; /* list head */
173 block_t blkaddr; /* block address to be discarded */
174 int len; /* # of consecutive blocks of the discard */
175};
176
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900177/* for the list of fsync inodes, used only during recovery */
178struct fsync_inode_entry {
179 struct list_head list; /* list head */
180 struct inode *inode; /* vfs inode pointer */
Jaegeuk Kimc52e1b12014-09-11 14:29:06 -0700181 block_t blkaddr; /* block address locating the last fsync */
182 block_t last_dentry; /* block address locating the last dentry */
183 block_t last_inode; /* block address locating the last inode */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900184};
185
186#define nats_in_cursum(sum) (le16_to_cpu(sum->n_nats))
187#define sits_in_cursum(sum) (le16_to_cpu(sum->n_sits))
188
189#define nat_in_journal(sum, i) (sum->nat_j.entries[i].ne)
190#define nid_in_journal(sum, i) (sum->nat_j.entries[i].nid)
191#define sit_in_journal(sum, i) (sum->sit_j.entries[i].se)
192#define segno_in_journal(sum, i) (sum->sit_j.entries[i].segno)
193
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700194#define MAX_NAT_JENTRIES(sum) (NAT_JOURNAL_ENTRIES - nats_in_cursum(sum))
195#define MAX_SIT_JENTRIES(sum) (SIT_JOURNAL_ENTRIES - sits_in_cursum(sum))
196
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900197static inline int update_nats_in_cursum(struct f2fs_summary_block *rs, int i)
198{
199 int before = nats_in_cursum(rs);
200 rs->n_nats = cpu_to_le16(before + i);
201 return before;
202}
203
204static inline int update_sits_in_cursum(struct f2fs_summary_block *rs, int i)
205{
206 int before = sits_in_cursum(rs);
207 rs->n_sits = cpu_to_le16(before + i);
208 return before;
209}
210
Chao Yu184a5cd2014-09-04 18:13:01 +0800211static inline bool __has_cursum_space(struct f2fs_summary_block *sum, int size,
212 int type)
213{
214 if (type == NAT_JOURNAL)
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700215 return size <= MAX_NAT_JENTRIES(sum);
216 return size <= MAX_SIT_JENTRIES(sum);
Chao Yu184a5cd2014-09-04 18:13:01 +0800217}
218
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900219/*
Namjae Jeone9750822013-02-04 23:41:41 +0900220 * ioctl commands
221 */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700222#define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS
223#define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS
Chao Yud49f3e82015-01-23 20:36:04 +0800224#define F2FS_IOC_GETVERSION FS_IOC_GETVERSION
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700225
226#define F2FS_IOCTL_MAGIC 0xf5
227#define F2FS_IOC_START_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 1)
228#define F2FS_IOC_COMMIT_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 2)
Jaegeuk Kim02a13352014-10-06 16:11:16 -0700229#define F2FS_IOC_START_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 3)
Jaegeuk Kim1e843712014-12-09 06:08:59 -0800230#define F2FS_IOC_RELEASE_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 4)
231#define F2FS_IOC_ABORT_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 5)
Chao Yuc1c1b582015-07-10 18:08:10 +0800232#define F2FS_IOC_GARBAGE_COLLECT _IO(F2FS_IOCTL_MAGIC, 6)
Chao Yu456b88e2015-10-05 22:24:19 +0800233#define F2FS_IOC_WRITE_CHECKPOINT _IO(F2FS_IOCTL_MAGIC, 7)
Chao Yud323d002015-10-27 09:53:45 +0800234#define F2FS_IOC_DEFRAGMENT _IO(F2FS_IOCTL_MAGIC, 8)
Namjae Jeone9750822013-02-04 23:41:41 +0900235
Jaegeuk Kimf424f662015-04-20 15:19:06 -0700236#define F2FS_IOC_SET_ENCRYPTION_POLICY \
237 _IOR('f', 19, struct f2fs_encryption_policy)
238#define F2FS_IOC_GET_ENCRYPTION_PWSALT \
239 _IOW('f', 20, __u8[16])
240#define F2FS_IOC_GET_ENCRYPTION_POLICY \
241 _IOW('f', 21, struct f2fs_encryption_policy)
242
Jaegeuk Kim1abff932015-01-08 19:15:53 -0800243/*
244 * should be same as XFS_IOC_GOINGDOWN.
245 * Flags for going down operation used by FS_IOC_GOINGDOWN
246 */
247#define F2FS_IOC_SHUTDOWN _IOR('X', 125, __u32) /* Shutdown */
248#define F2FS_GOING_DOWN_FULLSYNC 0x0 /* going down with full sync */
249#define F2FS_GOING_DOWN_METASYNC 0x1 /* going down with metadata */
250#define F2FS_GOING_DOWN_NOSYNC 0x2 /* going down */
Jaegeuk Kimc912a822015-10-07 09:46:37 -0700251#define F2FS_GOING_DOWN_METAFLUSH 0x3 /* going down with meta flush */
Jaegeuk Kim1abff932015-01-08 19:15:53 -0800252
Namjae Jeone9750822013-02-04 23:41:41 +0900253#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
254/*
255 * ioctl commands in 32 bit emulation
256 */
Chao Yu04ef4b62015-11-10 18:44:20 +0800257#define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS
258#define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS
259#define F2FS_IOC32_GETVERSION FS_IOC32_GETVERSION
Namjae Jeone9750822013-02-04 23:41:41 +0900260#endif
261
Chao Yud323d002015-10-27 09:53:45 +0800262struct f2fs_defragment {
263 u64 start;
264 u64 len;
265};
266
Namjae Jeone9750822013-02-04 23:41:41 +0900267/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900268 * For INODE and NODE manager
269 */
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700270/* for directory operations */
Jaegeuk Kim6b3bd082015-04-26 00:12:50 -0700271struct f2fs_str {
272 unsigned char *name;
273 u32 len;
274};
275
276struct f2fs_filename {
277 const struct qstr *usr_fname;
278 struct f2fs_str disk_name;
279 f2fs_hash_t hash;
280#ifdef CONFIG_F2FS_FS_ENCRYPTION
281 struct f2fs_str crypto_buf;
282#endif
283};
284
285#define FSTR_INIT(n, l) { .name = n, .len = l }
286#define FSTR_TO_QSTR(f) QSTR_INIT((f)->name, (f)->len)
287#define fname_name(p) ((p)->disk_name.name)
288#define fname_len(p) ((p)->disk_name.len)
289
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700290struct f2fs_dentry_ptr {
Jaegeuk Kimd8c68222015-04-27 16:26:24 -0700291 struct inode *inode;
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700292 const void *bitmap;
293 struct f2fs_dir_entry *dentry;
294 __u8 (*filename)[F2FS_SLOT_LEN];
295 int max;
296};
297
Jaegeuk Kimd8c68222015-04-27 16:26:24 -0700298static inline void make_dentry_ptr(struct inode *inode,
299 struct f2fs_dentry_ptr *d, void *src, int type)
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700300{
Jaegeuk Kimd8c68222015-04-27 16:26:24 -0700301 d->inode = inode;
302
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700303 if (type == 1) {
304 struct f2fs_dentry_block *t = (struct f2fs_dentry_block *)src;
305 d->max = NR_DENTRY_IN_BLOCK;
306 d->bitmap = &t->dentry_bitmap;
307 d->dentry = t->dentry;
308 d->filename = t->filename;
309 } else {
310 struct f2fs_inline_dentry *t = (struct f2fs_inline_dentry *)src;
311 d->max = NR_INLINE_DENTRY;
312 d->bitmap = &t->dentry_bitmap;
313 d->dentry = t->dentry;
314 d->filename = t->filename;
315 }
316}
317
Jaegeuk Kimdbe6a5f2013-08-09 08:14:06 +0900318/*
319 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
320 * as its node offset to distinguish from index node blocks.
321 * But some bits are used to mark the node block.
322 */
323#define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \
324 >> OFFSET_BIT_SHIFT)
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900325enum {
326 ALLOC_NODE, /* allocate a new node page if needed */
327 LOOKUP_NODE, /* look up a node without readahead */
328 LOOKUP_NODE_RA, /*
329 * look up a node with readahead called
Chao Yu4f4124d2013-12-21 18:02:14 +0800330 * by get_data_block.
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900331 */
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900332};
333
Jaegeuk Kima6db67f2015-08-10 15:01:12 -0700334#define F2FS_LINK_MAX 0xffffffff /* maximum link count per file */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900335
Chao Yu817202d92014-04-28 17:59:43 +0800336#define MAX_DIR_RA_PAGES 4 /* maximum ra pages of dir */
337
Chao Yu13054c52015-02-05 17:52:58 +0800338/* vector size for gang look-up from extent cache that consists of radix tree */
339#define EXT_TREE_VEC_SIZE 64
340
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900341/* for in-memory extent cache entry */
Chao Yu13054c52015-02-05 17:52:58 +0800342#define F2FS_MIN_EXTENT_LEN 64 /* minimum extent length */
343
344/* number of extent info in extent cache we try to shrink */
345#define EXTENT_CACHE_SHRINK_NUMBER 128
Jaegeuk Kimc11abd12013-11-19 10:41:54 +0900346
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900347struct extent_info {
Chao Yu13054c52015-02-05 17:52:58 +0800348 unsigned int fofs; /* start offset in a file */
349 u32 blk; /* start block address of the extent */
350 unsigned int len; /* length of the extent */
351};
352
353struct extent_node {
354 struct rb_node rb_node; /* rb node located in rb-tree */
355 struct list_head list; /* node in global extent list of sbi */
356 struct extent_info ei; /* extent info */
Hou Pengyang201ef5e2016-01-26 12:56:26 +0000357 struct extent_tree *et; /* extent tree pointer */
Chao Yu13054c52015-02-05 17:52:58 +0800358};
359
360struct extent_tree {
361 nid_t ino; /* inode number */
362 struct rb_root root; /* root of extent info rb-tree */
Chao Yu62c8af62015-02-05 18:01:39 +0800363 struct extent_node *cached_en; /* recently accessed extent node */
Jaegeuk Kim3e72f722015-06-19 17:53:26 -0700364 struct extent_info largest; /* largested extent info */
Jaegeuk Kim137d09f2015-12-31 15:02:16 -0800365 struct list_head list; /* to be used by sbi->zombie_list */
Chao Yu13054c52015-02-05 17:52:58 +0800366 rwlock_t lock; /* protect extent info rb-tree */
Chao Yu68e35382016-01-08 20:22:52 +0800367 atomic_t node_cnt; /* # of extent node in rb-tree*/
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900368};
369
370/*
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700371 * This structure is taken from ext4_map_blocks.
372 *
373 * Note that, however, f2fs uses NEW and MAPPED flags for f2fs_map_blocks().
374 */
375#define F2FS_MAP_NEW (1 << BH_New)
376#define F2FS_MAP_MAPPED (1 << BH_Mapped)
Jaegeuk Kim7f63eb72015-05-08 19:30:32 -0700377#define F2FS_MAP_UNWRITTEN (1 << BH_Unwritten)
378#define F2FS_MAP_FLAGS (F2FS_MAP_NEW | F2FS_MAP_MAPPED |\
379 F2FS_MAP_UNWRITTEN)
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700380
381struct f2fs_map_blocks {
382 block_t m_pblk;
383 block_t m_lblk;
384 unsigned int m_len;
385 unsigned int m_flags;
386};
387
Chao Yue2b4e2b2015-08-19 19:11:19 +0800388/* for flag in get_data_block */
389#define F2FS_GET_BLOCK_READ 0
390#define F2FS_GET_BLOCK_DIO 1
391#define F2FS_GET_BLOCK_FIEMAP 2
392#define F2FS_GET_BLOCK_BMAP 3
393
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700394/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900395 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
396 */
397#define FADVISE_COLD_BIT 0x01
Jaegeuk Kim354a3392013-06-14 08:52:35 +0900398#define FADVISE_LOST_PINO_BIT 0x02
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700399#define FADVISE_ENCRYPT_BIT 0x04
Jaegeuk Kime7d55452015-04-29 17:02:18 -0700400#define FADVISE_ENC_NAME_BIT 0x08
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900401
Jaegeuk Kimb5492af2015-04-20 13:44:41 -0700402#define file_is_cold(inode) is_file(inode, FADVISE_COLD_BIT)
403#define file_wrong_pino(inode) is_file(inode, FADVISE_LOST_PINO_BIT)
404#define file_set_cold(inode) set_file(inode, FADVISE_COLD_BIT)
405#define file_lost_pino(inode) set_file(inode, FADVISE_LOST_PINO_BIT)
406#define file_clear_cold(inode) clear_file(inode, FADVISE_COLD_BIT)
407#define file_got_pino(inode) clear_file(inode, FADVISE_LOST_PINO_BIT)
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700408#define file_is_encrypt(inode) is_file(inode, FADVISE_ENCRYPT_BIT)
409#define file_set_encrypt(inode) set_file(inode, FADVISE_ENCRYPT_BIT)
410#define file_clear_encrypt(inode) clear_file(inode, FADVISE_ENCRYPT_BIT)
Jaegeuk Kime7d55452015-04-29 17:02:18 -0700411#define file_enc_name(inode) is_file(inode, FADVISE_ENC_NAME_BIT)
412#define file_set_enc_name(inode) set_file(inode, FADVISE_ENC_NAME_BIT)
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700413
414/* Encryption algorithms */
415#define F2FS_ENCRYPTION_MODE_INVALID 0
416#define F2FS_ENCRYPTION_MODE_AES_256_XTS 1
417#define F2FS_ENCRYPTION_MODE_AES_256_GCM 2
418#define F2FS_ENCRYPTION_MODE_AES_256_CBC 3
419#define F2FS_ENCRYPTION_MODE_AES_256_CTS 4
Jaegeuk Kimb5492af2015-04-20 13:44:41 -0700420
Jaegeuk Kimf424f662015-04-20 15:19:06 -0700421#include "f2fs_crypto.h"
422
Jaegeuk Kimab9fa662014-02-27 20:09:05 +0900423#define DEF_DIR_LEVEL 0
424
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900425struct f2fs_inode_info {
426 struct inode vfs_inode; /* serve a vfs inode */
427 unsigned long i_flags; /* keep an inode flags for ioctl */
428 unsigned char i_advise; /* use to give file attribute hints */
Jaegeuk Kim38431542014-02-27 18:20:00 +0900429 unsigned char i_dir_level; /* use for dentry level for large dir */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900430 unsigned int i_current_depth; /* use only in directory structure */
Jaegeuk Kim6666e6a2012-12-10 17:52:48 +0900431 unsigned int i_pino; /* parent inode number */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900432 umode_t i_acl_mode; /* keep file acl mode temporarily */
433
434 /* Use below internally in f2fs*/
435 unsigned long flags; /* use to pass per-file flags */
Jaegeuk Kimd928bfb2014-03-20 19:10:08 +0900436 struct rw_semaphore i_sem; /* protect fi info */
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -0700437 atomic_t dirty_pages; /* # of dirty pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900438 f2fs_hash_t chash; /* hash value of given file name */
439 unsigned int clevel; /* maximum level of given file name */
440 nid_t i_xattr_nid; /* node id that contains xattrs */
Jaegeuk Kime518ff82013-08-09 14:46:15 +0900441 unsigned long long xattr_ver; /* cp version of xattr modification */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700442
Chao Yu2710fd72015-12-15 13:30:45 +0800443 struct list_head dirty_list; /* linked in global dirty list */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700444 struct list_head inmem_pages; /* inmemory pages managed by f2fs */
445 struct mutex inmem_lock; /* lock for inmemory pages */
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700446
Jaegeuk Kim3e72f722015-06-19 17:53:26 -0700447 struct extent_tree *extent_tree; /* cached extent_tree entry */
448
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700449#ifdef CONFIG_F2FS_FS_ENCRYPTION
450 /* Encryption params */
451 struct f2fs_crypt_info *i_crypt_info;
452#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900453};
454
455static inline void get_extent_info(struct extent_info *ext,
456 struct f2fs_extent i_ext)
457{
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900458 ext->fofs = le32_to_cpu(i_ext.fofs);
Chao Yu4d0b0bd2015-02-05 17:47:25 +0800459 ext->blk = le32_to_cpu(i_ext.blk);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900460 ext->len = le32_to_cpu(i_ext.len);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900461}
462
463static inline void set_raw_extent(struct extent_info *ext,
464 struct f2fs_extent *i_ext)
465{
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900466 i_ext->fofs = cpu_to_le32(ext->fofs);
Chao Yu4d0b0bd2015-02-05 17:47:25 +0800467 i_ext->blk = cpu_to_le32(ext->blk);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900468 i_ext->len = cpu_to_le32(ext->len);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900469}
470
Chao Yu429511c2015-02-05 17:54:31 +0800471static inline void set_extent_info(struct extent_info *ei, unsigned int fofs,
472 u32 blk, unsigned int len)
473{
474 ei->fofs = fofs;
475 ei->blk = blk;
476 ei->len = len;
477}
478
Chao Yu0bdee482015-03-19 19:27:51 +0800479static inline bool __is_extent_same(struct extent_info *ei1,
480 struct extent_info *ei2)
481{
482 return (ei1->fofs == ei2->fofs && ei1->blk == ei2->blk &&
483 ei1->len == ei2->len);
484}
485
Chao Yu429511c2015-02-05 17:54:31 +0800486static inline bool __is_extent_mergeable(struct extent_info *back,
487 struct extent_info *front)
488{
489 return (back->fofs + back->len == front->fofs &&
490 back->blk + back->len == front->blk);
491}
492
493static inline bool __is_back_mergeable(struct extent_info *cur,
494 struct extent_info *back)
495{
496 return __is_extent_mergeable(back, cur);
497}
498
499static inline bool __is_front_mergeable(struct extent_info *cur,
500 struct extent_info *front)
501{
502 return __is_extent_mergeable(cur, front);
503}
504
Chao Yu4abd3f52015-09-22 21:07:47 +0800505static inline void __try_update_largest_extent(struct extent_tree *et,
506 struct extent_node *en)
507{
508 if (en->ei.len > et->largest.len)
509 et->largest = en->ei;
510}
511
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900512struct f2fs_nm_info {
513 block_t nat_blkaddr; /* base disk address of NAT */
514 nid_t max_nid; /* maximum possible node ids */
Jaegeuk Kim7ee0eea2014-04-18 11:14:37 +0900515 nid_t available_nids; /* maximum available node ids */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900516 nid_t next_scan_nid; /* the next nid to be scanned */
Jaegeuk Kimcdfc41c2014-03-19 13:31:37 +0900517 unsigned int ram_thresh; /* control the memory footprint */
Chao Yuea1a29a02015-10-12 17:08:48 +0800518 unsigned int ra_nid_pages; /* # of nid pages to be readaheaded */
Chao Yu2304cb02016-01-18 18:32:58 +0800519 unsigned int dirty_nats_ratio; /* control dirty nats ratio threshold */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900520
521 /* NAT cache management */
522 struct radix_tree_root nat_root;/* root of the nat entry cache */
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700523 struct radix_tree_root nat_set_root;/* root of the nat set cache */
Jaegeuk Kim8b26ef92014-12-03 21:15:10 -0800524 struct rw_semaphore nat_tree_lock; /* protect nat_tree_lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900525 struct list_head nat_entries; /* cached nat entry list (clean) */
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700526 unsigned int nat_cnt; /* the # of cached nat entries */
Chao Yuaec71382014-06-24 09:18:20 +0800527 unsigned int dirty_nat_cnt; /* total num of nat entries in set */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900528
529 /* free node ids management */
Jaegeuk Kim8a7ed662014-02-21 14:29:35 +0900530 struct radix_tree_root free_nid_root;/* root of the free_nid cache */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900531 struct list_head free_nid_list; /* a list for free nids */
532 spinlock_t free_nid_list_lock; /* protect free nid list */
533 unsigned int fcnt; /* the number of free node id */
534 struct mutex build_lock; /* lock for build free nids */
535
536 /* for checkpoint */
537 char *nat_bitmap; /* NAT bitmap pointer */
538 int bitmap_size; /* bitmap size */
539};
540
541/*
542 * this structure is used as one of function parameters.
543 * all the information are dedicated to a given direct node block determined
544 * by the data offset in a file.
545 */
546struct dnode_of_data {
547 struct inode *inode; /* vfs inode pointer */
548 struct page *inode_page; /* its inode page, NULL is possible */
549 struct page *node_page; /* cached direct node page */
550 nid_t nid; /* node id of the direct node block */
551 unsigned int ofs_in_node; /* data offset in the node page */
552 bool inode_page_locked; /* inode page is locked or not */
Jaegeuk Kim93bae092015-12-22 12:59:54 -0800553 bool node_changed; /* is node block changed */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900554 block_t data_blkaddr; /* block address of the node block */
555};
556
557static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
558 struct page *ipage, struct page *npage, nid_t nid)
559{
Jaegeuk Kimd66d1f72013-01-03 08:57:21 +0900560 memset(dn, 0, sizeof(*dn));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900561 dn->inode = inode;
562 dn->inode_page = ipage;
563 dn->node_page = npage;
564 dn->nid = nid;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900565}
566
567/*
568 * For SIT manager
569 *
570 * By default, there are 6 active log areas across the whole main area.
571 * When considering hot and cold data separation to reduce cleaning overhead,
572 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
573 * respectively.
574 * In the current design, you should not change the numbers intentionally.
575 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
576 * logs individually according to the underlying devices. (default: 6)
577 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
578 * data and 8 for node logs.
579 */
580#define NR_CURSEG_DATA_TYPE (3)
581#define NR_CURSEG_NODE_TYPE (3)
582#define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
583
584enum {
585 CURSEG_HOT_DATA = 0, /* directory entry blocks */
586 CURSEG_WARM_DATA, /* data blocks */
587 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */
588 CURSEG_HOT_NODE, /* direct node blocks of directory files */
589 CURSEG_WARM_NODE, /* direct node blocks of normal files */
590 CURSEG_COLD_NODE, /* indirect node blocks */
Jaegeuk Kim38aa0882015-01-05 16:02:20 -0800591 NO_CHECK_TYPE,
592 CURSEG_DIRECT_IO, /* to use for the direct IO path */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900593};
594
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900595struct flush_cmd {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900596 struct completion wait;
Gu Zheng721bd4d2014-09-05 18:31:00 +0800597 struct llist_node llnode;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900598 int ret;
599};
600
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800601struct flush_cmd_control {
602 struct task_struct *f2fs_issue_flush; /* flush thread */
603 wait_queue_head_t flush_wait_queue; /* waiting queue for wake-up */
Gu Zheng721bd4d2014-09-05 18:31:00 +0800604 struct llist_head issue_list; /* list for command issue */
605 struct llist_node *dispatch_list; /* list for command dispatch */
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800606};
607
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900608struct f2fs_sm_info {
609 struct sit_info *sit_info; /* whole segment information */
610 struct free_segmap_info *free_info; /* free segment information */
611 struct dirty_seglist_info *dirty_info; /* dirty segment information */
612 struct curseg_info *curseg_array; /* active segment information */
613
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900614 block_t seg0_blkaddr; /* block address of 0'th segment */
615 block_t main_blkaddr; /* start block address of main area */
616 block_t ssa_blkaddr; /* start block address of SSA area */
617
618 unsigned int segment_count; /* total # of segments */
619 unsigned int main_segments; /* # of segments in main area */
620 unsigned int reserved_segments; /* # of reserved segments */
621 unsigned int ovp_segments; /* # of overprovision segments */
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +0900622
623 /* a threshold to reclaim prefree segments */
624 unsigned int rec_prefree_segments;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900625
626 /* for small discard management */
627 struct list_head discard_list; /* 4KB discard list */
628 int nr_discards; /* # of discards in the list */
629 int max_discards; /* max. discards to be issued */
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900630
Jaegeuk Kimbba681c2015-01-26 17:41:23 -0800631 /* for batched trimming */
632 unsigned int trim_sections; /* # of sections to trim */
633
Chao Yu184a5cd2014-09-04 18:13:01 +0800634 struct list_head sit_entry_set; /* sit entry set list */
635
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900636 unsigned int ipu_policy; /* in-place-update policy */
637 unsigned int min_ipu_util; /* in-place-update threshold */
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -0700638 unsigned int min_fsync_blocks; /* threshold for fsync */
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900639
640 /* for flush command control */
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800641 struct flush_cmd_control *cmd_control_info;
642
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900643};
644
645/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900646 * For superblock
647 */
648/*
649 * COUNT_TYPE for monitoring
650 *
651 * f2fs monitors the number of several block types such as on-writeback,
652 * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
653 */
654enum count_type {
655 F2FS_WRITEBACK,
656 F2FS_DIRTY_DENTS,
Chao Yuc227f912015-12-16 13:09:20 +0800657 F2FS_DIRTY_DATA,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900658 F2FS_DIRTY_NODES,
659 F2FS_DIRTY_META,
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800660 F2FS_INMEM_PAGES,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900661 NR_COUNT_TYPE,
662};
663
664/*
arter97e1c42042014-08-06 23:22:50 +0900665 * The below are the page types of bios used in submit_bio().
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900666 * The available types are:
667 * DATA User data pages. It operates as async mode.
668 * NODE Node pages. It operates as async mode.
669 * META FS metadata pages such as SIT, NAT, CP.
670 * NR_PAGE_TYPE The number of page types.
671 * META_FLUSH Make sure the previous pages are written
672 * with waiting the bio's completion
673 * ... Only can be used with META.
674 */
Jaegeuk Kim7d5e5102013-11-18 17:13:35 +0900675#define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900676enum page_type {
677 DATA,
678 NODE,
679 META,
680 NR_PAGE_TYPE,
681 META_FLUSH,
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700682 INMEM, /* the below types are used by tracepoints only. */
683 INMEM_DROP,
684 IPU,
685 OPU,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900686};
687
Jaegeuk Kim458e6192013-12-11 13:54:01 +0900688struct f2fs_io_info {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -0700689 struct f2fs_sb_info *sbi; /* f2fs_sb_info pointer */
Gu Zheng7e8f2302013-12-20 18:17:49 +0800690 enum page_type type; /* contains DATA/NODE/META/META_FLUSH */
691 int rw; /* contains R/RS/W/WS with REQ_META/REQ_PRIO */
Jaegeuk Kimcf04e8e2014-12-17 19:33:13 -0800692 block_t blk_addr; /* block address to be written */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -0700693 struct page *page; /* page to be written */
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700694 struct page *encrypted_page; /* encrypted page */
Jaegeuk Kim458e6192013-12-11 13:54:01 +0900695};
696
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +0900697#define is_read_io(rw) (((rw) & 1) == READ)
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900698struct f2fs_bio_info {
Jaegeuk Kim458e6192013-12-11 13:54:01 +0900699 struct f2fs_sb_info *sbi; /* f2fs superblock */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900700 struct bio *bio; /* bios to merge */
701 sector_t last_block_in_bio; /* last block number */
Jaegeuk Kim458e6192013-12-11 13:54:01 +0900702 struct f2fs_io_info fio; /* store buffered io info. */
Chao Yudf0f8dc2014-03-22 14:57:23 +0800703 struct rw_semaphore io_rwsem; /* blocking op for bio */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900704};
705
Chao Yuc227f912015-12-16 13:09:20 +0800706enum inode_type {
707 DIR_INODE, /* for dirty dir inode */
708 FILE_INODE, /* for dirty regular/symlink inode */
709 NR_INODE_TYPE,
710};
711
Chao Yu67298802014-11-18 11:18:36 +0800712/* for inner inode cache management */
713struct inode_management {
714 struct radix_tree_root ino_root; /* ino entry array */
715 spinlock_t ino_lock; /* for ino entry lock */
716 struct list_head ino_list; /* inode list head */
717 unsigned long ino_num; /* number of entries */
718};
719
Chao Yucaf00472015-01-28 17:48:42 +0800720/* For s_flag in struct f2fs_sb_info */
721enum {
722 SBI_IS_DIRTY, /* dirty flag for checkpoint */
723 SBI_IS_CLOSE, /* specify unmounting */
724 SBI_NEED_FSCK, /* need fsck.f2fs to fix */
725 SBI_POR_DOING, /* recovery is doing or not */
726};
727
Jaegeuk Kim6beceb52016-01-08 15:51:50 -0800728enum {
729 CP_TIME,
Jaegeuk Kimd0239e12016-01-08 16:57:48 -0800730 REQ_TIME,
Jaegeuk Kim6beceb52016-01-08 15:51:50 -0800731 MAX_TIME,
732};
733
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900734struct f2fs_sb_info {
735 struct super_block *sb; /* pointer to VFS super block */
Jaegeuk Kim5e176d52013-06-28 12:47:01 +0900736 struct proc_dir_entry *s_proc; /* proc entry */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900737 struct f2fs_super_block *raw_super; /* raw super block pointer */
Chao Yue8240f62015-12-15 17:19:26 +0800738 int valid_super_block; /* valid super block no */
Chao Yucaf00472015-01-28 17:48:42 +0800739 int s_flag; /* flags for sbi */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900740
741 /* for node-related operations */
742 struct f2fs_nm_info *nm_info; /* node manager */
743 struct inode *node_inode; /* cache node blocks */
744
745 /* for segment-related operations */
746 struct f2fs_sm_info *sm_info; /* segment manager */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900747
748 /* for bio operations */
Chao Yu924b7202013-11-20 14:46:39 +0800749 struct f2fs_bio_info read_io; /* for read bios */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +0900750 struct f2fs_bio_info write_io[NR_PAGE_TYPE]; /* for write bios */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900751
752 /* for checkpoint */
753 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
754 struct inode *meta_inode; /* cache meta blocks */
Jaegeuk Kim39936832012-11-22 16:21:29 +0900755 struct mutex cp_mutex; /* checkpoint procedure lock */
Gu Zhenge4795562013-09-27 18:08:30 +0800756 struct rw_semaphore cp_rwsem; /* blocking FS operations */
Chao Yub3582c62014-07-03 18:58:39 +0800757 struct rw_semaphore node_write; /* locking node writes */
Jaegeuk Kim5463e7c2015-04-21 10:40:54 -0700758 struct mutex writepages; /* mutex for writepages() */
Changman Leefb51b5e2013-11-07 12:48:25 +0900759 wait_queue_head_t cp_wait;
Jaegeuk Kim6beceb52016-01-08 15:51:50 -0800760 unsigned long last_time[MAX_TIME]; /* to store time in jiffies */
761 long interval_time[MAX_TIME]; /* to store thresholds */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900762
Chao Yu67298802014-11-18 11:18:36 +0800763 struct inode_management im[MAX_INO_ENTRY]; /* manage inode cache */
Jaegeuk Kim6451e042014-07-25 15:47:17 -0700764
765 /* for orphan inode, use 0'th array */
Gu Zheng0d47c1a2013-12-26 18:24:19 +0800766 unsigned int max_orphans; /* max orphan inodes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900767
Chao Yuc227f912015-12-16 13:09:20 +0800768 /* for inode management */
769 struct list_head inode_list[NR_INODE_TYPE]; /* dirty inode list */
770 spinlock_t inode_lock[NR_INODE_TYPE]; /* for dirty inode list lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900771
Chao Yu13054c52015-02-05 17:52:58 +0800772 /* for extent tree cache */
773 struct radix_tree_root extent_tree_root;/* cache extent cache entries */
774 struct rw_semaphore extent_tree_lock; /* locking extent radix tree */
775 struct list_head extent_list; /* lru list for shrinker */
776 spinlock_t extent_lock; /* locking extent lru list */
Jaegeuk Kim7441cce2015-12-21 19:20:15 -0800777 atomic_t total_ext_tree; /* extent tree count */
Jaegeuk Kim137d09f2015-12-31 15:02:16 -0800778 struct list_head zombie_list; /* extent zombie tree list */
Jaegeuk Kim74fd8d92015-12-21 19:25:50 -0800779 atomic_t total_zombie_tree; /* extent zombie tree count */
Chao Yu13054c52015-02-05 17:52:58 +0800780 atomic_t total_ext_node; /* extent info count */
781
arter97e1c42042014-08-06 23:22:50 +0900782 /* basic filesystem units */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900783 unsigned int log_sectors_per_block; /* log2 sectors per block */
784 unsigned int log_blocksize; /* log2 block size */
785 unsigned int blocksize; /* block size */
786 unsigned int root_ino_num; /* root inode number*/
787 unsigned int node_ino_num; /* node inode number*/
788 unsigned int meta_ino_num; /* meta inode number*/
789 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
790 unsigned int blocks_per_seg; /* blocks per segment */
791 unsigned int segs_per_sec; /* segments per section */
792 unsigned int secs_per_zone; /* sections per zone */
793 unsigned int total_sections; /* total section count */
794 unsigned int total_node_count; /* total node block count */
795 unsigned int total_valid_node_count; /* valid node block count */
796 unsigned int total_valid_inode_count; /* valid inode count */
Chao Yue0afc4d2015-12-31 14:35:37 +0800797 loff_t max_file_blocks; /* max block index of file */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900798 int active_logs; /* # of active logs */
Jaegeuk Kimab9fa662014-02-27 20:09:05 +0900799 int dir_level; /* directory level */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900800
801 block_t user_block_count; /* # of user blocks */
802 block_t total_valid_block_count; /* # of valid blocks */
803 block_t alloc_valid_block_count; /* # of allocated blocks */
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700804 block_t discard_blks; /* discard command candidats */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900805 block_t last_valid_block_count; /* for recovery */
806 u32 s_next_generation; /* for NFS support */
807 atomic_t nr_pages[NR_COUNT_TYPE]; /* # of pages, see count_type */
808
809 struct f2fs_mount_info mount_opt; /* mount options */
810
811 /* for cleaning operations */
812 struct mutex gc_mutex; /* mutex for GC */
813 struct f2fs_gc_kthread *gc_thread; /* GC thread */
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900814 unsigned int cur_victim_sec; /* current victim section num */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900815
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +0900816 /* maximum # of trials to find a victim segment for SSR and GC */
817 unsigned int max_victim_search;
818
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900819 /*
820 * for stat information.
821 * one is for the LFS mode, and the other is for the SSR mode.
822 */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900823#ifdef CONFIG_F2FS_STAT_FS
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900824 struct f2fs_stat_info *stat_info; /* FS status information */
825 unsigned int segment_count[2]; /* # of allocated segments */
826 unsigned int block_count[2]; /* # of allocated blocks */
Changman Leeb9a2c252014-12-24 02:16:54 +0900827 atomic_t inplace_count; /* # of inplace update */
Chao Yu5b7ee372015-09-30 17:38:48 +0800828 atomic64_t total_hit_ext; /* # of lookup extent cache */
829 atomic64_t read_hit_rbtree; /* # of hit rbtree extent node */
830 atomic64_t read_hit_largest; /* # of hit largest extent node */
831 atomic64_t read_hit_cached; /* # of hit cached extent node */
Chao Yud5e8f6c2015-07-15 17:28:53 +0800832 atomic_t inline_xattr; /* # of inline_xattr inodes */
Chao Yu03e14d52014-12-08 19:08:20 +0800833 atomic_t inline_inode; /* # of inline_data inodes */
834 atomic_t inline_dir; /* # of inline_dentry inodes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900835 int bg_gc; /* background gc calls */
Chao Yu33fbd512015-12-17 17:14:44 +0800836 unsigned int ndirty_inode[NR_INODE_TYPE]; /* # of dirty inodes */
Namjae Jeon35b09d82013-05-23 22:57:53 +0900837#endif
838 unsigned int last_victim[2]; /* last victim segment # */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900839 spinlock_t stat_lock; /* lock for stat operations */
Namjae Jeonb59d0ba2013-08-04 23:09:40 +0900840
841 /* For sysfs suppport */
842 struct kobject s_kobj;
843 struct completion s_kobj_unregister;
Jaegeuk Kim2658e502015-06-19 12:01:21 -0700844
845 /* For shrinker support */
846 struct list_head s_list;
847 struct mutex umount_mutex;
848 unsigned int shrinker_run_no;
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +0800849
850 /* For write statistics */
851 u64 sectors_written_start;
852 u64 kbytes_written;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900853};
854
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +0800855/* For write statistics. Suppose sector size is 512 bytes,
856 * and the return value is in kbytes. s is of struct f2fs_sb_info.
857 */
858#define BD_PART_WRITTEN(s) \
859(((u64)part_stat_read(s->sb->s_bdev->bd_part, sectors[1]) - \
860 s->sectors_written_start) >> 1)
861
Jaegeuk Kim6beceb52016-01-08 15:51:50 -0800862static inline void f2fs_update_time(struct f2fs_sb_info *sbi, int type)
863{
864 sbi->last_time[type] = jiffies;
865}
866
867static inline bool f2fs_time_over(struct f2fs_sb_info *sbi, int type)
868{
869 struct timespec ts = {sbi->interval_time[type], 0};
870 unsigned long interval = timespec_to_jiffies(&ts);
871
872 return time_after(jiffies, sbi->last_time[type] + interval);
873}
874
Jaegeuk Kimd0239e12016-01-08 16:57:48 -0800875static inline bool is_idle(struct f2fs_sb_info *sbi)
876{
877 struct block_device *bdev = sbi->sb->s_bdev;
878 struct request_queue *q = bdev_get_queue(bdev);
879 struct request_list *rl = &q->root_rl;
880
881 if (rl->count[BLK_RW_SYNC] || rl->count[BLK_RW_ASYNC])
882 return 0;
883
884 return f2fs_time_over(sbi, REQ_TIME);
885}
886
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900887/*
888 * Inline functions
889 */
890static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
891{
892 return container_of(inode, struct f2fs_inode_info, vfs_inode);
893}
894
895static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
896{
897 return sb->s_fs_info;
898}
899
Jaegeuk Kim40813632014-09-02 15:31:18 -0700900static inline struct f2fs_sb_info *F2FS_I_SB(struct inode *inode)
901{
902 return F2FS_SB(inode->i_sb);
903}
904
905static inline struct f2fs_sb_info *F2FS_M_SB(struct address_space *mapping)
906{
907 return F2FS_I_SB(mapping->host);
908}
909
910static inline struct f2fs_sb_info *F2FS_P_SB(struct page *page)
911{
912 return F2FS_M_SB(page->mapping);
913}
914
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900915static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
916{
917 return (struct f2fs_super_block *)(sbi->raw_super);
918}
919
920static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
921{
922 return (struct f2fs_checkpoint *)(sbi->ckpt);
923}
924
Gu Zheng45590712013-07-15 17:57:38 +0800925static inline struct f2fs_node *F2FS_NODE(struct page *page)
926{
927 return (struct f2fs_node *)page_address(page);
928}
929
Jaegeuk Kim58bfaf42013-12-26 16:30:41 +0900930static inline struct f2fs_inode *F2FS_INODE(struct page *page)
931{
932 return &((struct f2fs_node *)page_address(page))->i;
933}
934
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900935static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
936{
937 return (struct f2fs_nm_info *)(sbi->nm_info);
938}
939
940static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
941{
942 return (struct f2fs_sm_info *)(sbi->sm_info);
943}
944
945static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
946{
947 return (struct sit_info *)(SM_I(sbi)->sit_info);
948}
949
950static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
951{
952 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
953}
954
955static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
956{
957 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
958}
959
Gu Zheng9df27d92014-01-20 18:37:04 +0800960static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi)
961{
962 return sbi->meta_inode->i_mapping;
963}
964
Jaegeuk Kim4ef51a82014-01-21 18:51:16 +0900965static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi)
966{
967 return sbi->node_inode->i_mapping;
968}
969
Chao Yucaf00472015-01-28 17:48:42 +0800970static inline bool is_sbi_flag_set(struct f2fs_sb_info *sbi, unsigned int type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900971{
Chao Yucaf00472015-01-28 17:48:42 +0800972 return sbi->s_flag & (0x01 << type);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900973}
974
Chao Yucaf00472015-01-28 17:48:42 +0800975static inline void set_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900976{
Chao Yucaf00472015-01-28 17:48:42 +0800977 sbi->s_flag |= (0x01 << type);
978}
979
980static inline void clear_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
981{
982 sbi->s_flag &= ~(0x01 << type);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900983}
984
Jaegeuk Kimd71b5562013-08-09 15:03:21 +0900985static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
986{
987 return le64_to_cpu(cp->checkpoint_ver);
988}
989
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900990static inline bool is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
991{
992 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
993 return ckpt_flags & f;
994}
995
996static inline void set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
997{
998 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
999 ckpt_flags |= f;
1000 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
1001}
1002
1003static inline void clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
1004{
1005 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
1006 ckpt_flags &= (~f);
1007 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
1008}
1009
Gu Zhenge4795562013-09-27 18:08:30 +08001010static inline void f2fs_lock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001011{
Gu Zhenge4795562013-09-27 18:08:30 +08001012 down_read(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001013}
1014
Gu Zhenge4795562013-09-27 18:08:30 +08001015static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001016{
Gu Zhenge4795562013-09-27 18:08:30 +08001017 up_read(&sbi->cp_rwsem);
Jaegeuk Kim39936832012-11-22 16:21:29 +09001018}
1019
Gu Zhenge4795562013-09-27 18:08:30 +08001020static inline void f2fs_lock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +09001021{
Jaegeuk Kim0daaad92013-11-24 13:50:35 +09001022 f2fs_down_write(&sbi->cp_rwsem, &sbi->cp_mutex);
Jaegeuk Kim39936832012-11-22 16:21:29 +09001023}
1024
Gu Zhenge4795562013-09-27 18:08:30 +08001025static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +09001026{
Gu Zhenge4795562013-09-27 18:08:30 +08001027 up_write(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001028}
1029
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001030static inline int __get_cp_reason(struct f2fs_sb_info *sbi)
1031{
1032 int reason = CP_SYNC;
1033
1034 if (test_opt(sbi, FASTBOOT))
1035 reason = CP_FASTBOOT;
1036 if (is_sbi_flag_set(sbi, SBI_IS_CLOSE))
1037 reason = CP_UMOUNT;
1038 return reason;
1039}
1040
1041static inline bool __remain_node_summaries(int reason)
1042{
1043 return (reason == CP_UMOUNT || reason == CP_FASTBOOT);
1044}
1045
1046static inline bool __exist_node_summaries(struct f2fs_sb_info *sbi)
1047{
1048 return (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_UMOUNT_FLAG) ||
1049 is_set_ckpt_flags(F2FS_CKPT(sbi), CP_FASTBOOT_FLAG));
1050}
1051
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001052/*
1053 * Check whether the given nid is within node id range.
1054 */
Namjae Jeon064e0822013-03-17 17:27:20 +09001055static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001056{
Chao Yud6b7d4b2014-06-12 13:23:41 +08001057 if (unlikely(nid < F2FS_ROOT_INO(sbi)))
1058 return -EINVAL;
Chao Yucfb271d2013-12-05 17:15:22 +08001059 if (unlikely(nid >= NM_I(sbi)->max_nid))
Namjae Jeon064e0822013-03-17 17:27:20 +09001060 return -EINVAL;
1061 return 0;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001062}
1063
1064#define F2FS_DEFAULT_ALLOCATED_BLOCKS 1
1065
1066/*
1067 * Check whether the inode has blocks or not
1068 */
1069static inline int F2FS_HAS_BLOCKS(struct inode *inode)
1070{
1071 if (F2FS_I(inode)->i_xattr_nid)
Chris Fries6c311ec2014-01-17 14:44:39 -06001072 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001073 else
Chris Fries6c311ec2014-01-17 14:44:39 -06001074 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001075}
1076
Chao Yu4bc8e9b2014-03-17 16:35:06 +08001077static inline bool f2fs_has_xattr_block(unsigned int ofs)
1078{
1079 return ofs == XATTR_NODE_OFFSET;
1080}
1081
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001082static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi,
1083 struct inode *inode, blkcnt_t count)
1084{
1085 block_t valid_block_count;
1086
1087 spin_lock(&sbi->stat_lock);
1088 valid_block_count =
1089 sbi->total_valid_block_count + (block_t)count;
Chao Yucfb271d2013-12-05 17:15:22 +08001090 if (unlikely(valid_block_count > sbi->user_block_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001091 spin_unlock(&sbi->stat_lock);
1092 return false;
1093 }
1094 inode->i_blocks += count;
1095 sbi->total_valid_block_count = valid_block_count;
1096 sbi->alloc_valid_block_count += (block_t)count;
1097 spin_unlock(&sbi->stat_lock);
1098 return true;
1099}
1100
Gu Zhengda19b0d2013-11-19 18:03:27 +08001101static inline void dec_valid_block_count(struct f2fs_sb_info *sbi,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001102 struct inode *inode,
1103 blkcnt_t count)
1104{
1105 spin_lock(&sbi->stat_lock);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001106 f2fs_bug_on(sbi, sbi->total_valid_block_count < (block_t) count);
1107 f2fs_bug_on(sbi, inode->i_blocks < count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001108 inode->i_blocks -= count;
1109 sbi->total_valid_block_count -= (block_t)count;
1110 spin_unlock(&sbi->stat_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001111}
1112
1113static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
1114{
1115 atomic_inc(&sbi->nr_pages[count_type]);
Chao Yucaf00472015-01-28 17:48:42 +08001116 set_sbi_flag(sbi, SBI_IS_DIRTY);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001117}
1118
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001119static inline void inode_inc_dirty_pages(struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001120{
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001121 atomic_inc(&F2FS_I(inode)->dirty_pages);
Chao Yuc227f912015-12-16 13:09:20 +08001122 inc_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ?
1123 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001124}
1125
1126static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
1127{
1128 atomic_dec(&sbi->nr_pages[count_type]);
1129}
1130
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001131static inline void inode_dec_dirty_pages(struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001132{
Chao Yu5ac9f362015-06-29 18:14:10 +08001133 if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
1134 !S_ISLNK(inode->i_mode))
Jaegeuk Kim1fe54f92014-02-07 10:00:06 +09001135 return;
1136
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001137 atomic_dec(&F2FS_I(inode)->dirty_pages);
Chao Yuc227f912015-12-16 13:09:20 +08001138 dec_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ?
1139 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001140}
1141
1142static inline int get_pages(struct f2fs_sb_info *sbi, int count_type)
1143{
1144 return atomic_read(&sbi->nr_pages[count_type]);
1145}
1146
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001147static inline int get_dirty_pages(struct inode *inode)
Jaegeuk Kimf8b2c1f2014-03-18 12:33:06 +09001148{
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001149 return atomic_read(&F2FS_I(inode)->dirty_pages);
Jaegeuk Kimf8b2c1f2014-03-18 12:33:06 +09001150}
1151
Namjae Jeon5ac206c2013-02-02 23:52:59 +09001152static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
1153{
Chao Yu3519e3f2015-12-01 11:56:52 +08001154 unsigned int pages_per_sec = sbi->segs_per_sec * sbi->blocks_per_seg;
Namjae Jeon5ac206c2013-02-02 23:52:59 +09001155 return ((get_pages(sbi, block_type) + pages_per_sec - 1)
1156 >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
1157}
1158
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001159static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
1160{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09001161 return sbi->total_valid_block_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001162}
1163
1164static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
1165{
1166 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1167
1168 /* return NAT or SIT bitmap */
1169 if (flag == NAT_BITMAP)
1170 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
1171 else if (flag == SIT_BITMAP)
1172 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
1173
1174 return 0;
1175}
1176
Wanpeng Li55141482015-02-26 07:57:20 +08001177static inline block_t __cp_payload(struct f2fs_sb_info *sbi)
1178{
1179 return le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload);
1180}
1181
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001182static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
1183{
1184 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Changman Lee1dbe4152014-05-12 12:27:43 +09001185 int offset;
1186
Wanpeng Li55141482015-02-26 07:57:20 +08001187 if (__cp_payload(sbi) > 0) {
Changman Lee1dbe4152014-05-12 12:27:43 +09001188 if (flag == NAT_BITMAP)
1189 return &ckpt->sit_nat_version_bitmap;
1190 else
Jaegeuk Kim65b85cc2014-07-30 17:25:54 -07001191 return (unsigned char *)ckpt + F2FS_BLKSIZE;
Changman Lee1dbe4152014-05-12 12:27:43 +09001192 } else {
1193 offset = (flag == NAT_BITMAP) ?
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001194 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
Changman Lee1dbe4152014-05-12 12:27:43 +09001195 return &ckpt->sit_nat_version_bitmap + offset;
1196 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001197}
1198
1199static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
1200{
1201 block_t start_addr;
1202 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kimd71b5562013-08-09 15:03:21 +09001203 unsigned long long ckpt_version = cur_cp_version(ckpt);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001204
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001205 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001206
1207 /*
1208 * odd numbered checkpoint should at cp segment 0
arter97e1c42042014-08-06 23:22:50 +09001209 * and even segment must be at cp segment 1
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001210 */
1211 if (!(ckpt_version & 1))
1212 start_addr += sbi->blocks_per_seg;
1213
1214 return start_addr;
1215}
1216
1217static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
1218{
1219 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
1220}
1221
1222static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi,
Gu Zhengef86d702013-11-19 18:03:38 +08001223 struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001224{
1225 block_t valid_block_count;
1226 unsigned int valid_node_count;
1227
1228 spin_lock(&sbi->stat_lock);
1229
Gu Zhengef86d702013-11-19 18:03:38 +08001230 valid_block_count = sbi->total_valid_block_count + 1;
Chao Yucfb271d2013-12-05 17:15:22 +08001231 if (unlikely(valid_block_count > sbi->user_block_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001232 spin_unlock(&sbi->stat_lock);
1233 return false;
1234 }
1235
Gu Zhengef86d702013-11-19 18:03:38 +08001236 valid_node_count = sbi->total_valid_node_count + 1;
Chao Yucfb271d2013-12-05 17:15:22 +08001237 if (unlikely(valid_node_count > sbi->total_node_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001238 spin_unlock(&sbi->stat_lock);
1239 return false;
1240 }
1241
1242 if (inode)
Gu Zhengef86d702013-11-19 18:03:38 +08001243 inode->i_blocks++;
1244
1245 sbi->alloc_valid_block_count++;
1246 sbi->total_valid_node_count++;
1247 sbi->total_valid_block_count++;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001248 spin_unlock(&sbi->stat_lock);
1249
1250 return true;
1251}
1252
1253static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
Gu Zhengef86d702013-11-19 18:03:38 +08001254 struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001255{
1256 spin_lock(&sbi->stat_lock);
1257
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001258 f2fs_bug_on(sbi, !sbi->total_valid_block_count);
1259 f2fs_bug_on(sbi, !sbi->total_valid_node_count);
1260 f2fs_bug_on(sbi, !inode->i_blocks);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001261
Gu Zhengef86d702013-11-19 18:03:38 +08001262 inode->i_blocks--;
1263 sbi->total_valid_node_count--;
1264 sbi->total_valid_block_count--;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001265
1266 spin_unlock(&sbi->stat_lock);
1267}
1268
1269static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
1270{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09001271 return sbi->total_valid_node_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001272}
1273
1274static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
1275{
1276 spin_lock(&sbi->stat_lock);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001277 f2fs_bug_on(sbi, sbi->total_valid_inode_count == sbi->total_node_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001278 sbi->total_valid_inode_count++;
1279 spin_unlock(&sbi->stat_lock);
1280}
1281
Jaegeuk Kim0e802202013-11-26 16:36:20 +09001282static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001283{
1284 spin_lock(&sbi->stat_lock);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001285 f2fs_bug_on(sbi, !sbi->total_valid_inode_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001286 sbi->total_valid_inode_count--;
1287 spin_unlock(&sbi->stat_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001288}
1289
1290static inline unsigned int valid_inode_count(struct f2fs_sb_info *sbi)
1291{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09001292 return sbi->total_valid_inode_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001293}
1294
Jaegeuk Kima56c7c62015-10-09 15:11:38 -07001295static inline struct page *f2fs_grab_cache_page(struct address_space *mapping,
1296 pgoff_t index, bool for_write)
1297{
1298 if (!for_write)
1299 return grab_cache_page(mapping, index);
1300 return grab_cache_page_write_begin(mapping, index, AOP_FLAG_NOFS);
1301}
1302
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001303static inline void f2fs_copy_page(struct page *src, struct page *dst)
1304{
1305 char *src_kaddr = kmap(src);
1306 char *dst_kaddr = kmap(dst);
1307
1308 memcpy(dst_kaddr, src_kaddr, PAGE_SIZE);
1309 kunmap(dst);
1310 kunmap(src);
1311}
1312
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001313static inline void f2fs_put_page(struct page *page, int unlock)
1314{
Jaegeuk Kim031fa8c2013-11-28 12:55:13 +09001315 if (!page)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001316 return;
1317
1318 if (unlock) {
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001319 f2fs_bug_on(F2FS_P_SB(page), !PageLocked(page));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001320 unlock_page(page);
1321 }
1322 page_cache_release(page);
1323}
1324
1325static inline void f2fs_put_dnode(struct dnode_of_data *dn)
1326{
1327 if (dn->node_page)
1328 f2fs_put_page(dn->node_page, 1);
1329 if (dn->inode_page && dn->node_page != dn->inode_page)
1330 f2fs_put_page(dn->inode_page, 0);
1331 dn->node_page = NULL;
1332 dn->inode_page = NULL;
1333}
1334
1335static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
Gu Zhenge8512d22014-03-07 18:43:28 +08001336 size_t size)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001337{
Gu Zhenge8512d22014-03-07 18:43:28 +08001338 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001339}
1340
Gu Zheng7bd59382013-10-22 14:52:26 +08001341static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep,
1342 gfp_t flags)
1343{
1344 void *entry;
Gu Zheng7bd59382013-10-22 14:52:26 +08001345
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001346 entry = kmem_cache_alloc(cachep, flags);
1347 if (!entry)
1348 entry = kmem_cache_alloc(cachep, flags | __GFP_NOFAIL);
Gu Zheng7bd59382013-10-22 14:52:26 +08001349 return entry;
1350}
1351
Jaegeuk Kim740432f2015-08-14 11:43:56 -07001352static inline struct bio *f2fs_bio_alloc(int npages)
1353{
1354 struct bio *bio;
1355
1356 /* No failure on bio allocation */
Jaegeuk Kim740432f2015-08-14 11:43:56 -07001357 bio = bio_alloc(GFP_NOIO, npages);
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001358 if (!bio)
1359 bio = bio_alloc(GFP_NOIO | __GFP_NOFAIL, npages);
Jaegeuk Kim740432f2015-08-14 11:43:56 -07001360 return bio;
1361}
1362
Jaegeuk Kim9be32d72014-12-05 10:39:49 -08001363static inline void f2fs_radix_tree_insert(struct radix_tree_root *root,
1364 unsigned long index, void *item)
1365{
1366 while (radix_tree_insert(root, index, item))
1367 cond_resched();
1368}
1369
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001370#define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
1371
1372static inline bool IS_INODE(struct page *page)
1373{
Gu Zheng45590712013-07-15 17:57:38 +08001374 struct f2fs_node *p = F2FS_NODE(page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001375 return RAW_IS_INODE(p);
1376}
1377
1378static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
1379{
1380 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
1381}
1382
1383static inline block_t datablock_addr(struct page *node_page,
1384 unsigned int offset)
1385{
1386 struct f2fs_node *raw_node;
1387 __le32 *addr_array;
Gu Zheng45590712013-07-15 17:57:38 +08001388 raw_node = F2FS_NODE(node_page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001389 addr_array = blkaddr_in_node(raw_node);
1390 return le32_to_cpu(addr_array[offset]);
1391}
1392
1393static inline int f2fs_test_bit(unsigned int nr, char *addr)
1394{
1395 int mask;
1396
1397 addr += (nr >> 3);
1398 mask = 1 << (7 - (nr & 0x07));
1399 return mask & *addr;
1400}
1401
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001402static inline void f2fs_set_bit(unsigned int nr, char *addr)
1403{
1404 int mask;
1405
1406 addr += (nr >> 3);
1407 mask = 1 << (7 - (nr & 0x07));
1408 *addr |= mask;
1409}
1410
1411static inline void f2fs_clear_bit(unsigned int nr, char *addr)
1412{
1413 int mask;
1414
1415 addr += (nr >> 3);
1416 mask = 1 << (7 - (nr & 0x07));
1417 *addr &= ~mask;
1418}
1419
Gu Zheng52aca072014-10-20 17:45:51 +08001420static inline int f2fs_test_and_set_bit(unsigned int nr, char *addr)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001421{
1422 int mask;
1423 int ret;
1424
1425 addr += (nr >> 3);
1426 mask = 1 << (7 - (nr & 0x07));
1427 ret = mask & *addr;
1428 *addr |= mask;
1429 return ret;
1430}
1431
Gu Zheng52aca072014-10-20 17:45:51 +08001432static inline int f2fs_test_and_clear_bit(unsigned int nr, char *addr)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001433{
1434 int mask;
1435 int ret;
1436
1437 addr += (nr >> 3);
1438 mask = 1 << (7 - (nr & 0x07));
1439 ret = mask & *addr;
1440 *addr &= ~mask;
1441 return ret;
1442}
1443
Gu Zhengc6ac4c02014-10-20 17:45:50 +08001444static inline void f2fs_change_bit(unsigned int nr, char *addr)
1445{
1446 int mask;
1447
1448 addr += (nr >> 3);
1449 mask = 1 << (7 - (nr & 0x07));
1450 *addr ^= mask;
1451}
1452
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001453/* used for f2fs_inode_info->flags */
1454enum {
1455 FI_NEW_INODE, /* indicate newly allocated inode */
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001456 FI_DIRTY_INODE, /* indicate inode is dirty or not */
Jaegeuk Kimed57c272014-04-15 11:19:28 +09001457 FI_DIRTY_DIR, /* indicate directory has dirty pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001458 FI_INC_LINK, /* need to increment i_nlink */
1459 FI_ACL_MODE, /* indicate acl mode */
1460 FI_NO_ALLOC, /* should not allocate any blocks */
Jaegeuk Kimc9b63bd2015-06-23 10:36:08 -07001461 FI_FREE_NID, /* free allocated nide */
Jaegeuk Kim699489b2013-06-07 22:08:23 +09001462 FI_UPDATE_DIR, /* should update inode block for consistency */
Jaegeuk Kim74d0b912013-05-15 16:40:02 +09001463 FI_DELAY_IPUT, /* used for the recovery */
Jaegeuk Kimc11abd12013-11-19 10:41:54 +09001464 FI_NO_EXTENT, /* not to use the extent cache */
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001465 FI_INLINE_XATTR, /* used for inline xattr */
Huajun Li1001b342013-11-10 23:13:16 +08001466 FI_INLINE_DATA, /* used for inline data*/
Chao Yu34d67de2014-09-24 18:15:19 +08001467 FI_INLINE_DENTRY, /* used for inline dentry */
Jaegeuk Kimfff04f92014-07-25 07:40:59 -07001468 FI_APPEND_WRITE, /* inode has appended data */
1469 FI_UPDATE_WRITE, /* inode has in-place-update data */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001470 FI_NEED_IPU, /* used for ipu per file */
1471 FI_ATOMIC_FILE, /* indicate atomic file */
Jaegeuk Kim02a13352014-10-06 16:11:16 -07001472 FI_VOLATILE_FILE, /* indicate volatile file */
Jaegeuk Kim3c6c2be2015-03-17 17:16:35 -07001473 FI_FIRST_BLOCK_WRITTEN, /* indicate #0 data block was written */
Jaegeuk Kim1e843712014-12-09 06:08:59 -08001474 FI_DROP_CACHE, /* drop dirty page cache */
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001475 FI_DATA_EXIST, /* indicate data exists */
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001476 FI_INLINE_DOTS, /* indicate inline dot dentries */
Chao Yud323d002015-10-27 09:53:45 +08001477 FI_DO_DEFRAG, /* indicate defragment is running */
Chao Yuc227f912015-12-16 13:09:20 +08001478 FI_DIRTY_FILE, /* indicate regular/symlink has dirty pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001479};
1480
1481static inline void set_inode_flag(struct f2fs_inode_info *fi, int flag)
1482{
Jaegeuk Kim61e0f2d2014-07-25 15:47:23 -07001483 if (!test_bit(flag, &fi->flags))
1484 set_bit(flag, &fi->flags);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001485}
1486
1487static inline int is_inode_flag_set(struct f2fs_inode_info *fi, int flag)
1488{
1489 return test_bit(flag, &fi->flags);
1490}
1491
1492static inline void clear_inode_flag(struct f2fs_inode_info *fi, int flag)
1493{
Jaegeuk Kim61e0f2d2014-07-25 15:47:23 -07001494 if (test_bit(flag, &fi->flags))
1495 clear_bit(flag, &fi->flags);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001496}
1497
1498static inline void set_acl_inode(struct f2fs_inode_info *fi, umode_t mode)
1499{
1500 fi->i_acl_mode = mode;
1501 set_inode_flag(fi, FI_ACL_MODE);
1502}
1503
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001504static inline void get_inline_info(struct f2fs_inode_info *fi,
1505 struct f2fs_inode *ri)
1506{
1507 if (ri->i_inline & F2FS_INLINE_XATTR)
1508 set_inode_flag(fi, FI_INLINE_XATTR);
Huajun Li1001b342013-11-10 23:13:16 +08001509 if (ri->i_inline & F2FS_INLINE_DATA)
1510 set_inode_flag(fi, FI_INLINE_DATA);
Chao Yu34d67de2014-09-24 18:15:19 +08001511 if (ri->i_inline & F2FS_INLINE_DENTRY)
1512 set_inode_flag(fi, FI_INLINE_DENTRY);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001513 if (ri->i_inline & F2FS_DATA_EXIST)
1514 set_inode_flag(fi, FI_DATA_EXIST);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001515 if (ri->i_inline & F2FS_INLINE_DOTS)
1516 set_inode_flag(fi, FI_INLINE_DOTS);
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001517}
1518
1519static inline void set_raw_inline(struct f2fs_inode_info *fi,
1520 struct f2fs_inode *ri)
1521{
1522 ri->i_inline = 0;
1523
1524 if (is_inode_flag_set(fi, FI_INLINE_XATTR))
1525 ri->i_inline |= F2FS_INLINE_XATTR;
Huajun Li1001b342013-11-10 23:13:16 +08001526 if (is_inode_flag_set(fi, FI_INLINE_DATA))
1527 ri->i_inline |= F2FS_INLINE_DATA;
Chao Yu34d67de2014-09-24 18:15:19 +08001528 if (is_inode_flag_set(fi, FI_INLINE_DENTRY))
1529 ri->i_inline |= F2FS_INLINE_DENTRY;
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001530 if (is_inode_flag_set(fi, FI_DATA_EXIST))
1531 ri->i_inline |= F2FS_DATA_EXIST;
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001532 if (is_inode_flag_set(fi, FI_INLINE_DOTS))
1533 ri->i_inline |= F2FS_INLINE_DOTS;
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001534}
1535
Chao Yu987c7c32014-03-12 15:59:03 +08001536static inline int f2fs_has_inline_xattr(struct inode *inode)
1537{
1538 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR);
1539}
1540
Jaegeuk Kimde936532013-08-12 21:08:03 +09001541static inline unsigned int addrs_per_inode(struct f2fs_inode_info *fi)
1542{
Chao Yu987c7c32014-03-12 15:59:03 +08001543 if (f2fs_has_inline_xattr(&fi->vfs_inode))
Jaegeuk Kimde936532013-08-12 21:08:03 +09001544 return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS;
1545 return DEF_ADDRS_PER_INODE;
1546}
1547
Jaegeuk Kim65985d92013-08-14 21:57:27 +09001548static inline void *inline_xattr_addr(struct page *page)
1549{
Chao Yu695fd1e2014-02-27 19:52:21 +08001550 struct f2fs_inode *ri = F2FS_INODE(page);
Jaegeuk Kim65985d92013-08-14 21:57:27 +09001551 return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE -
1552 F2FS_INLINE_XATTR_ADDRS]);
1553}
1554
1555static inline int inline_xattr_size(struct inode *inode)
1556{
Chao Yu987c7c32014-03-12 15:59:03 +08001557 if (f2fs_has_inline_xattr(inode))
Jaegeuk Kim65985d92013-08-14 21:57:27 +09001558 return F2FS_INLINE_XATTR_ADDRS << 2;
1559 else
1560 return 0;
1561}
1562
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001563static inline int f2fs_has_inline_data(struct inode *inode)
1564{
1565 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DATA);
1566}
1567
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07001568static inline void f2fs_clear_inline_inode(struct inode *inode)
1569{
1570 clear_inode_flag(F2FS_I(inode), FI_INLINE_DATA);
1571 clear_inode_flag(F2FS_I(inode), FI_DATA_EXIST);
1572}
1573
1574static inline int f2fs_exist_data(struct inode *inode)
1575{
1576 return is_inode_flag_set(F2FS_I(inode), FI_DATA_EXIST);
1577}
1578
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001579static inline int f2fs_has_inline_dots(struct inode *inode)
1580{
1581 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DOTS);
1582}
1583
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001584static inline bool f2fs_is_atomic_file(struct inode *inode)
1585{
1586 return is_inode_flag_set(F2FS_I(inode), FI_ATOMIC_FILE);
1587}
1588
Jaegeuk Kim02a13352014-10-06 16:11:16 -07001589static inline bool f2fs_is_volatile_file(struct inode *inode)
1590{
1591 return is_inode_flag_set(F2FS_I(inode), FI_VOLATILE_FILE);
1592}
1593
Jaegeuk Kim3c6c2be2015-03-17 17:16:35 -07001594static inline bool f2fs_is_first_block_written(struct inode *inode)
1595{
1596 return is_inode_flag_set(F2FS_I(inode), FI_FIRST_BLOCK_WRITTEN);
1597}
1598
Jaegeuk Kim1e843712014-12-09 06:08:59 -08001599static inline bool f2fs_is_drop_cache(struct inode *inode)
1600{
1601 return is_inode_flag_set(F2FS_I(inode), FI_DROP_CACHE);
1602}
1603
Huajun Li1001b342013-11-10 23:13:16 +08001604static inline void *inline_data_addr(struct page *page)
1605{
Chao Yu695fd1e2014-02-27 19:52:21 +08001606 struct f2fs_inode *ri = F2FS_INODE(page);
Huajun Li1001b342013-11-10 23:13:16 +08001607 return (void *)&(ri->i_addr[1]);
1608}
1609
Chao Yu34d67de2014-09-24 18:15:19 +08001610static inline int f2fs_has_inline_dentry(struct inode *inode)
1611{
1612 return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DENTRY);
1613}
1614
Jaegeuk Kim9486ba42014-11-21 16:36:28 -08001615static inline void f2fs_dentry_kunmap(struct inode *dir, struct page *page)
1616{
1617 if (!f2fs_has_inline_dentry(dir))
1618 kunmap(page);
1619}
1620
Jaegeuk Kimb5492af2015-04-20 13:44:41 -07001621static inline int is_file(struct inode *inode, int type)
1622{
1623 return F2FS_I(inode)->i_advise & type;
1624}
1625
1626static inline void set_file(struct inode *inode, int type)
1627{
1628 F2FS_I(inode)->i_advise |= type;
1629}
1630
1631static inline void clear_file(struct inode *inode, int type)
1632{
1633 F2FS_I(inode)->i_advise &= ~type;
1634}
1635
Jaegeuk Kim77888c12013-05-20 20:28:47 +09001636static inline int f2fs_readonly(struct super_block *sb)
1637{
1638 return sb->s_flags & MS_RDONLY;
1639}
1640
Jaegeuk Kim1e968fd2014-08-11 16:49:25 -07001641static inline bool f2fs_cp_error(struct f2fs_sb_info *sbi)
1642{
1643 return is_set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1644}
1645
Jaegeuk Kim744602c2014-01-24 09:42:16 +09001646static inline void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi)
1647{
1648 set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
1649 sbi->sb->s_flags |= MS_RDONLY;
1650}
1651
Jaegeuk Kimeaa693f2015-04-26 00:15:29 -07001652static inline bool is_dot_dotdot(const struct qstr *str)
1653{
1654 if (str->len == 1 && str->name[0] == '.')
1655 return true;
1656
1657 if (str->len == 2 && str->name[0] == '.' && str->name[1] == '.')
1658 return true;
1659
1660 return false;
1661}
1662
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001663static inline bool f2fs_may_extent_tree(struct inode *inode)
1664{
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001665 if (!test_opt(F2FS_I_SB(inode), EXTENT_CACHE) ||
1666 is_inode_flag_set(F2FS_I(inode), FI_NO_EXTENT))
1667 return false;
1668
Al Viro886f56f2015-12-05 03:56:06 -05001669 return S_ISREG(inode->i_mode);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001670}
1671
Jaegeuk Kim39307a82015-09-22 13:50:47 -07001672static inline void *f2fs_kvmalloc(size_t size, gfp_t flags)
1673{
1674 void *ret;
1675
1676 ret = kmalloc(size, flags | __GFP_NOWARN);
1677 if (!ret)
1678 ret = __vmalloc(size, flags, PAGE_KERNEL);
1679 return ret;
1680}
1681
1682static inline void *f2fs_kvzalloc(size_t size, gfp_t flags)
1683{
1684 void *ret;
1685
1686 ret = kzalloc(size, flags | __GFP_NOWARN);
1687 if (!ret)
1688 ret = __vmalloc(size, flags | __GFP_ZERO, PAGE_KERNEL);
1689 return ret;
1690}
1691
Christoph Hellwiga6dda0e2013-12-20 05:16:45 -08001692#define get_inode_mode(i) \
1693 ((is_inode_flag_set(F2FS_I(i), FI_ACL_MODE)) ? \
1694 (F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
1695
Chao Yu267378d2014-04-23 14:10:24 +08001696/* get offset of first page in next direct node */
1697#define PGOFS_OF_NEXT_DNODE(pgofs, fi) \
1698 ((pgofs < ADDRS_PER_INODE(fi)) ? ADDRS_PER_INODE(fi) : \
1699 (pgofs - ADDRS_PER_INODE(fi) + ADDRS_PER_BLOCK) / \
1700 ADDRS_PER_BLOCK * ADDRS_PER_BLOCK + ADDRS_PER_INODE(fi))
1701
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001702/*
1703 * file.c
1704 */
1705int f2fs_sync_file(struct file *, loff_t, loff_t, int);
1706void truncate_data_blocks(struct dnode_of_data *);
Jaegeuk Kim764aa3e2014-08-14 16:32:54 -07001707int truncate_blocks(struct inode *, u64, bool);
Chao Yub0154892015-08-24 17:39:42 +08001708int f2fs_truncate(struct inode *, bool);
Jaegeuk Kim2d4d9fb52013-06-07 16:33:07 +09001709int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001710int f2fs_setattr(struct dentry *, struct iattr *);
1711int truncate_hole(struct inode *, pgoff_t, pgoff_t);
Jaegeuk Kimb292dcab2013-05-22 08:02:02 +09001712int truncate_data_blocks_range(struct dnode_of_data *, int);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001713long f2fs_ioctl(struct file *, unsigned int, unsigned long);
Namjae Jeone9750822013-02-04 23:41:41 +09001714long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001715
1716/*
1717 * inode.c
1718 */
1719void f2fs_set_inode_flags(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001720struct inode *f2fs_iget(struct super_block *, unsigned long);
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +09001721int try_to_free_nats(struct f2fs_sb_info *, int);
Jaegeuk Kim12719ae2016-01-07 13:23:12 -08001722int update_inode(struct inode *, struct page *);
1723int update_inode_page(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001724int f2fs_write_inode(struct inode *, struct writeback_control *);
1725void f2fs_evict_inode(struct inode *);
Jaegeuk Kim44c16152014-09-25 11:55:53 -07001726void handle_failed_inode(struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001727
1728/*
1729 * namei.c
1730 */
1731struct dentry *f2fs_get_parent(struct dentry *child);
1732
1733/*
1734 * dir.c
1735 */
Chao Yudbeacf02014-09-24 18:17:04 +08001736extern unsigned char f2fs_filetype_table[F2FS_FT_MAX];
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001737void set_de_type(struct f2fs_dir_entry *, umode_t);
Jaegeuk Kim6e22c692015-04-27 17:12:39 -07001738
1739struct f2fs_dir_entry *find_target_dentry(struct f2fs_filename *,
1740 f2fs_hash_t, int *, struct f2fs_dentry_ptr *);
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -07001741bool f2fs_fill_dentries(struct dir_context *, struct f2fs_dentry_ptr *,
Jaegeuk Kimd8c68222015-04-27 16:26:24 -07001742 unsigned int, struct f2fs_str *);
Jaegeuk Kim062a3e72014-10-18 23:06:41 -07001743void do_make_empty_dir(struct inode *, struct inode *,
1744 struct f2fs_dentry_ptr *);
Chao Yudbeacf02014-09-24 18:17:04 +08001745struct page *init_inode_metadata(struct inode *, struct inode *,
Jaegeuk Kimbce8d112014-10-13 19:42:53 -07001746 const struct qstr *, struct page *);
Chao Yudbeacf02014-09-24 18:17:04 +08001747void update_parent_metadata(struct inode *, struct inode *, unsigned int);
Jaegeuk Kima82afa22014-10-13 16:28:13 -07001748int room_for_filename(const void *, int, int);
Chao Yudbeacf02014-09-24 18:17:04 +08001749void f2fs_drop_nlink(struct inode *, struct inode *, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001750struct f2fs_dir_entry *f2fs_find_entry(struct inode *, struct qstr *,
1751 struct page **);
1752struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **);
1753ino_t f2fs_inode_by_name(struct inode *, struct qstr *);
1754void f2fs_set_link(struct inode *, struct f2fs_dir_entry *,
1755 struct page *, struct inode *);
Jaegeuk Kime7d55452015-04-29 17:02:18 -07001756int update_dent_inode(struct inode *, struct inode *, const struct qstr *);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001757void f2fs_update_dentry(nid_t ino, umode_t mode, struct f2fs_dentry_ptr *,
Chao Yu3b4d7322015-02-16 16:17:20 +08001758 const struct qstr *, f2fs_hash_t , unsigned int);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001759int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *, nid_t,
1760 umode_t);
Chao Yudbeacf02014-09-24 18:17:04 +08001761void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *,
1762 struct inode *);
Jaegeuk Kimb97a9b52014-06-20 21:37:02 -07001763int f2fs_do_tmpfile(struct inode *, struct inode *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001764bool f2fs_empty_dir(struct inode *);
1765
Al Virob7f7a5e2013-01-25 16:15:43 -05001766static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
1767{
David Howells2b0143b2015-03-17 22:25:59 +00001768 return __f2fs_add_link(d_inode(dentry->d_parent), &dentry->d_name,
Jaegeuk Kim510022a2015-03-30 15:07:16 -07001769 inode, inode->i_ino, inode->i_mode);
Al Virob7f7a5e2013-01-25 16:15:43 -05001770}
1771
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001772/*
1773 * super.c
1774 */
Chao Yuc5bda1c2015-06-08 13:28:03 +08001775int f2fs_commit_super(struct f2fs_sb_info *, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001776int f2fs_sync_fs(struct super_block *, int);
Namjae Jeona07ef782012-12-30 14:52:05 +09001777extern __printf(3, 4)
1778void f2fs_msg(struct super_block *, const char *, const char *, ...);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001779
1780/*
1781 * hash.c
1782 */
Gu Zhengeee61602014-06-24 18:21:23 +08001783f2fs_hash_t f2fs_dentry_hash(const struct qstr *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001784
1785/*
1786 * node.c
1787 */
1788struct dnode_of_data;
1789struct node_info;
1790
Jaegeuk Kim6fb03f32014-04-16 10:47:06 +09001791bool available_free_memory(struct f2fs_sb_info *, int);
Jaegeuk Kim2dcf51a2015-04-29 18:31:19 -07001792int need_dentry_mark(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim88bd02c2014-09-15 14:50:48 -07001793bool is_checkpointed_node(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim88bd02c2014-09-15 14:50:48 -07001794bool need_inode_block_update(struct f2fs_sb_info *, nid_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001795void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *);
1796int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int);
1797int truncate_inode_blocks(struct inode *, pgoff_t);
Jaegeuk Kim4f16fb02013-08-14 20:40:06 +09001798int truncate_xattr_node(struct inode *, struct page *);
Jaegeuk Kimcfe58f92013-10-31 14:57:01 +09001799int wait_on_node_pages_writeback(struct f2fs_sb_info *, nid_t);
Chao Yu13ec7292015-08-24 17:40:45 +08001800int remove_inode_page(struct inode *);
Jaegeuk Kima014e032014-06-20 21:44:02 -07001801struct page *new_inode_page(struct inode *);
Jaegeuk Kim8ae8f162013-06-03 19:46:19 +09001802struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001803void ra_node_page(struct f2fs_sb_info *, nid_t);
1804struct page *get_node_page(struct f2fs_sb_info *, pgoff_t);
1805struct page *get_node_page_ra(struct page *, int);
1806void sync_inode_page(struct dnode_of_data *);
1807int sync_node_pages(struct f2fs_sb_info *, nid_t, struct writeback_control *);
1808bool alloc_nid(struct f2fs_sb_info *, nid_t *);
1809void alloc_nid_done(struct f2fs_sb_info *, nid_t);
1810void alloc_nid_failed(struct f2fs_sb_info *, nid_t);
Chao Yu31696582015-07-28 18:33:46 +08001811int try_to_free_nids(struct f2fs_sb_info *, int);
Chao Yu70cfed82014-08-02 15:26:04 +08001812void recover_inline_xattr(struct inode *, struct page *);
Jaegeuk Kim1c35a902014-08-07 23:49:17 -07001813void recover_xattr_data(struct inode *, struct page *, block_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001814int recover_inode_page(struct f2fs_sb_info *, struct page *);
1815int restore_node_summary(struct f2fs_sb_info *, unsigned int,
1816 struct f2fs_summary_block *);
1817void flush_nat_entries(struct f2fs_sb_info *);
1818int build_node_manager(struct f2fs_sb_info *);
1819void destroy_node_manager(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001820int __init create_node_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001821void destroy_node_manager_caches(void);
1822
1823/*
1824 * segment.c
1825 */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001826void register_inmem_page(struct inode *, struct page *);
Jaegeuk Kimedb27de2015-07-25 00:52:52 -07001827int commit_inmem_pages(struct inode *, bool);
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -08001828void f2fs_balance_fs(struct f2fs_sb_info *, bool);
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +09001829void f2fs_balance_fs_bg(struct f2fs_sb_info *);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09001830int f2fs_issue_flush(struct f2fs_sb_info *);
Gu Zheng2163d192014-04-27 14:21:33 +08001831int create_flush_cmd_control(struct f2fs_sb_info *);
1832void destroy_flush_cmd_control(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001833void invalidate_blocks(struct f2fs_sb_info *, block_t);
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001834bool is_checkpointed_data(struct f2fs_sb_info *, block_t);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001835void refresh_sit_entry(struct f2fs_sb_info *, block_t, block_t);
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001836void clear_prefree_segments(struct f2fs_sb_info *, struct cp_control *);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001837void release_discard_addrs(struct f2fs_sb_info *);
Chao Yue90c2d22015-07-28 18:36:47 +08001838bool discard_next_dnode(struct f2fs_sb_info *, block_t);
Chao Yu3fa06d72014-12-09 14:21:46 +08001839int npages_for_summary_flush(struct f2fs_sb_info *, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001840void allocate_new_segments(struct f2fs_sb_info *);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001841int f2fs_trim_fs(struct f2fs_sb_info *, struct fstrim_range *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001842struct page *get_sum_page(struct f2fs_sb_info *, unsigned int);
Chao Yu381722d2015-05-19 17:40:04 +08001843void update_meta_page(struct f2fs_sb_info *, void *, block_t);
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001844void write_meta_page(struct f2fs_sb_info *, struct page *);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001845void write_node_page(unsigned int, struct f2fs_io_info *);
1846void write_data_page(struct dnode_of_data *, struct f2fs_io_info *);
1847void rewrite_data_page(struct f2fs_io_info *);
Chao Yu528e3452015-05-28 19:15:35 +08001848void f2fs_replace_block(struct f2fs_sb_info *, struct dnode_of_data *,
1849 block_t, block_t, unsigned char, bool);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001850void allocate_data_block(struct f2fs_sb_info *, struct page *,
1851 block_t, block_t *, struct f2fs_summary *, int);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001852void f2fs_wait_on_page_writeback(struct page *, enum page_type, bool);
Chao Yu08b39fb2015-10-08 13:27:34 +08001853void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *, block_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001854void write_data_summaries(struct f2fs_sb_info *, block_t);
1855void write_node_summaries(struct f2fs_sb_info *, block_t);
1856int lookup_journal_in_cursum(struct f2fs_summary_block *,
1857 int, unsigned int, int);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001858void flush_sit_entries(struct f2fs_sb_info *, struct cp_control *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001859int build_segment_manager(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001860void destroy_segment_manager(struct f2fs_sb_info *);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09001861int __init create_segment_manager_caches(void);
1862void destroy_segment_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001863
1864/*
1865 * checkpoint.c
1866 */
1867struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t);
1868struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t);
Chao Yu2b947002015-10-12 17:04:21 +08001869struct page *get_tmp_page(struct f2fs_sb_info *, pgoff_t);
Chao Yuf0c9cad2015-04-18 18:05:36 +08001870bool is_valid_blkaddr(struct f2fs_sb_info *, block_t, int);
Chao Yu26879fb2015-10-12 17:05:59 +08001871int ra_meta_pages(struct f2fs_sb_info *, block_t, int, int, bool);
Chao Yu635aee12014-12-08 15:02:52 +08001872void ra_meta_pages_cond(struct f2fs_sb_info *, pgoff_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001873long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long);
Chao Yua49324f2015-12-15 13:29:47 +08001874void add_ino_entry(struct f2fs_sb_info *, nid_t, int type);
1875void remove_ino_entry(struct f2fs_sb_info *, nid_t, int type);
1876void release_ino_entry(struct f2fs_sb_info *);
Jaegeuk Kimfff04f92014-07-25 07:40:59 -07001877bool exist_written_data(struct f2fs_sb_info *, nid_t, int);
Jaegeuk Kimcbd56e72013-07-30 11:36:53 +09001878int acquire_orphan_inode(struct f2fs_sb_info *);
1879void release_orphan_inode(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001880void add_orphan_inode(struct f2fs_sb_info *, nid_t);
1881void remove_orphan_inode(struct f2fs_sb_info *, nid_t);
Chao Yu8c14bfa2015-08-07 17:58:43 +08001882int recover_orphan_inodes(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001883int get_valid_checkpoint(struct f2fs_sb_info *);
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001884void update_dirty_page(struct inode *, struct page *);
Jaegeuk Kim5deb8262013-06-05 17:42:45 +09001885void add_dirty_dir_inode(struct inode *);
Chao Yuc227f912015-12-16 13:09:20 +08001886void remove_dirty_inode(struct inode *);
Chao Yu6d5a1492015-12-24 18:04:56 +08001887int sync_dirty_inodes(struct f2fs_sb_info *, enum inode_type);
Chao Yuc34f42e2015-12-23 17:50:30 +08001888int write_checkpoint(struct f2fs_sb_info *, struct cp_control *);
Jaegeuk Kim6451e042014-07-25 15:47:17 -07001889void init_ino_entry_info(struct f2fs_sb_info *);
Namjae Jeon6e6093a2013-01-17 00:08:30 +09001890int __init create_checkpoint_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001891void destroy_checkpoint_caches(void);
1892
1893/*
1894 * data.c
1895 */
Chao Yu0fd785e2016-01-18 18:24:59 +08001896bool is_merged_page(struct f2fs_sb_info *, struct page *, enum page_type);
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001897void f2fs_submit_merged_bio(struct f2fs_sb_info *, enum page_type, int);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001898int f2fs_submit_page_bio(struct f2fs_io_info *);
1899void f2fs_submit_page_mbio(struct f2fs_io_info *);
Chao Yu216a6202015-03-19 19:23:32 +08001900void set_data_blkaddr(struct dnode_of_data *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001901int reserve_new_block(struct dnode_of_data *);
Fan Li759af1c2015-08-05 15:52:16 +08001902int f2fs_get_block(struct dnode_of_data *, pgoff_t);
Huajun Lib6009652013-11-10 23:13:18 +08001903int f2fs_reserve_block(struct dnode_of_data *, pgoff_t);
Jaegeuk Kima56c7c62015-10-09 15:11:38 -07001904struct page *get_read_data_page(struct inode *, pgoff_t, int, bool);
Jaegeuk Kim43f3eae2015-04-30 17:00:33 -07001905struct page *find_data_page(struct inode *, pgoff_t);
Jaegeuk Kima56c7c62015-10-09 15:11:38 -07001906struct page *get_lock_data_page(struct inode *, pgoff_t, bool);
Jaegeuk Kim64aa7ed2013-05-20 09:55:50 +09001907struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001908int do_write_data_page(struct f2fs_io_info *);
Chao Yud323d002015-10-27 09:53:45 +08001909int f2fs_map_blocks(struct inode *, struct f2fs_map_blocks *, int, int);
Jaegeuk Kim9ab701342014-06-08 04:30:14 +09001910int f2fs_fiemap(struct inode *inode, struct fiemap_extent_info *, u64, u64);
Chao Yu487261f2015-02-05 17:44:29 +08001911void f2fs_invalidate_page(struct page *, unsigned int, unsigned int);
1912int f2fs_release_page(struct page *, gfp_t);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001913
1914/*
1915 * gc.c
1916 */
1917int start_gc_thread(struct f2fs_sb_info *);
1918void stop_gc_thread(struct f2fs_sb_info *);
Jaegeuk Kimde936532013-08-12 21:08:03 +09001919block_t start_bidx_of_node(unsigned int, struct f2fs_inode_info *);
Chao Yud530d4d2015-10-05 22:22:44 +08001920int f2fs_gc(struct f2fs_sb_info *, bool);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001921void build_gc_manager(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001922
1923/*
1924 * recovery.c
1925 */
Jaegeuk Kim6ead1142013-03-20 19:01:06 +09001926int recover_fsync_data(struct f2fs_sb_info *);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001927bool space_for_roll_forward(struct f2fs_sb_info *);
1928
1929/*
1930 * debug.c
1931 */
1932#ifdef CONFIG_F2FS_STAT_FS
1933struct f2fs_stat_info {
1934 struct list_head stat_list;
1935 struct f2fs_sb_info *sbi;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001936 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
1937 int main_area_segs, main_area_sections, main_area_zones;
Chao Yu5b7ee372015-09-30 17:38:48 +08001938 unsigned long long hit_largest, hit_cached, hit_rbtree;
1939 unsigned long long hit_total, total_ext;
Jaegeuk Kimc00ba552015-12-31 15:24:14 -08001940 int ext_tree, zombie_tree, ext_node;
Chao Yu33fbd512015-12-17 17:14:44 +08001941 int ndirty_node, ndirty_meta;
1942 int ndirty_dent, ndirty_dirs, ndirty_data, ndirty_files;
Jaegeuk Kimdd4e4b52015-01-07 11:09:37 -08001943 int nats, dirty_nats, sits, dirty_sits, fnids;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001944 int total_count, utilization;
Chao Yud5e8f6c2015-07-15 17:28:53 +08001945 int bg_gc, inmem_pages, wb_pages;
1946 int inline_xattr, inline_inode, inline_dir;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001947 unsigned int valid_count, valid_node_count, valid_inode_count;
1948 unsigned int bimodal, avg_vblocks;
1949 int util_free, util_valid, util_invalid;
1950 int rsvd_segs, overp_segs;
1951 int dirty_count, node_pages, meta_pages;
Jaegeuk Kim42190d22016-01-09 13:45:17 -08001952 int prefree_count, call_count, cp_count, bg_cp_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001953 int tot_segs, node_segs, data_segs, free_segs, free_secs;
Changman Leee1235982014-12-23 08:37:39 +09001954 int bg_node_segs, bg_data_segs;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001955 int tot_blks, data_blks, node_blks;
Changman Leee1235982014-12-23 08:37:39 +09001956 int bg_data_blks, bg_node_blks;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001957 int curseg[NR_CURSEG_TYPE];
1958 int cursec[NR_CURSEG_TYPE];
1959 int curzone[NR_CURSEG_TYPE];
1960
1961 unsigned int segment_count[2];
1962 unsigned int block_count[2];
Changman Leeb9a2c252014-12-24 02:16:54 +09001963 unsigned int inplace_count;
Chao Yu9edcdab2015-09-11 14:43:52 +08001964 unsigned long long base_mem, cache_mem, page_mem;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001965};
1966
Gu Zheng963d4f72013-07-12 14:47:11 +08001967static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
1968{
Chris Fries6c311ec2014-01-17 14:44:39 -06001969 return (struct f2fs_stat_info *)sbi->stat_info;
Gu Zheng963d4f72013-07-12 14:47:11 +08001970}
1971
Changman Lee942e0be2014-02-13 15:12:29 +09001972#define stat_inc_cp_count(si) ((si)->cp_count++)
Jaegeuk Kim42190d22016-01-09 13:45:17 -08001973#define stat_inc_bg_cp_count(si) ((si)->bg_cp_count++)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001974#define stat_inc_call_count(si) ((si)->call_count++)
1975#define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++)
Chao Yu33fbd512015-12-17 17:14:44 +08001976#define stat_inc_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]++)
1977#define stat_dec_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]--)
Chao Yu5b7ee372015-09-30 17:38:48 +08001978#define stat_inc_total_hit(sbi) (atomic64_inc(&(sbi)->total_hit_ext))
1979#define stat_inc_rbtree_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_rbtree))
1980#define stat_inc_largest_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_largest))
1981#define stat_inc_cached_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_cached))
Chao Yud5e8f6c2015-07-15 17:28:53 +08001982#define stat_inc_inline_xattr(inode) \
1983 do { \
1984 if (f2fs_has_inline_xattr(inode)) \
1985 (atomic_inc(&F2FS_I_SB(inode)->inline_xattr)); \
1986 } while (0)
1987#define stat_dec_inline_xattr(inode) \
1988 do { \
1989 if (f2fs_has_inline_xattr(inode)) \
1990 (atomic_dec(&F2FS_I_SB(inode)->inline_xattr)); \
1991 } while (0)
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001992#define stat_inc_inline_inode(inode) \
1993 do { \
1994 if (f2fs_has_inline_data(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08001995 (atomic_inc(&F2FS_I_SB(inode)->inline_inode)); \
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09001996 } while (0)
1997#define stat_dec_inline_inode(inode) \
1998 do { \
1999 if (f2fs_has_inline_data(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08002000 (atomic_dec(&F2FS_I_SB(inode)->inline_inode)); \
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09002001 } while (0)
Jaegeuk Kim3289c062014-10-13 20:00:16 -07002002#define stat_inc_inline_dir(inode) \
2003 do { \
2004 if (f2fs_has_inline_dentry(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08002005 (atomic_inc(&F2FS_I_SB(inode)->inline_dir)); \
Jaegeuk Kim3289c062014-10-13 20:00:16 -07002006 } while (0)
2007#define stat_dec_inline_dir(inode) \
2008 do { \
2009 if (f2fs_has_inline_dentry(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08002010 (atomic_dec(&F2FS_I_SB(inode)->inline_dir)); \
Jaegeuk Kim3289c062014-10-13 20:00:16 -07002011 } while (0)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09002012#define stat_inc_seg_type(sbi, curseg) \
2013 ((sbi)->segment_count[(curseg)->alloc_type]++)
2014#define stat_inc_block_count(sbi, curseg) \
2015 ((sbi)->block_count[(curseg)->alloc_type]++)
Changman Leeb9a2c252014-12-24 02:16:54 +09002016#define stat_inc_inplace_blocks(sbi) \
2017 (atomic_inc(&(sbi)->inplace_count))
Changman Leee1235982014-12-23 08:37:39 +09002018#define stat_inc_seg_count(sbi, type, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002019 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08002020 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002021 (si)->tot_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09002022 if (type == SUM_TYPE_DATA) { \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002023 si->data_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09002024 si->bg_data_segs += (gc_type == BG_GC) ? 1 : 0; \
2025 } else { \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002026 si->node_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09002027 si->bg_node_segs += (gc_type == BG_GC) ? 1 : 0; \
2028 } \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002029 } while (0)
2030
2031#define stat_inc_tot_blk_count(si, blks) \
2032 (si->tot_blks += (blks))
2033
Changman Leee1235982014-12-23 08:37:39 +09002034#define stat_inc_data_blk_count(sbi, blks, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002035 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08002036 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002037 stat_inc_tot_blk_count(si, blks); \
2038 si->data_blks += (blks); \
Changman Leee1235982014-12-23 08:37:39 +09002039 si->bg_data_blks += (gc_type == BG_GC) ? (blks) : 0; \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002040 } while (0)
2041
Changman Leee1235982014-12-23 08:37:39 +09002042#define stat_inc_node_blk_count(sbi, blks, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002043 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08002044 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002045 stat_inc_tot_blk_count(si, blks); \
2046 si->node_blks += (blks); \
Changman Leee1235982014-12-23 08:37:39 +09002047 si->bg_node_blks += (gc_type == BG_GC) ? (blks) : 0; \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002048 } while (0)
2049
2050int f2fs_build_stats(struct f2fs_sb_info *);
2051void f2fs_destroy_stats(struct f2fs_sb_info *);
Chao Yu787c7b8c2015-10-29 09:13:04 +08002052int __init f2fs_create_root_stats(void);
Namjae Jeon4589d252013-01-15 19:58:47 +09002053void f2fs_destroy_root_stats(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002054#else
Changman Lee942e0be2014-02-13 15:12:29 +09002055#define stat_inc_cp_count(si)
Jaegeuk Kim42190d22016-01-09 13:45:17 -08002056#define stat_inc_bg_cp_count(si)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002057#define stat_inc_call_count(si)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09002058#define stat_inc_bggc_count(si)
Chao Yu33fbd512015-12-17 17:14:44 +08002059#define stat_inc_dirty_inode(sbi, type)
2060#define stat_dec_dirty_inode(sbi, type)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09002061#define stat_inc_total_hit(sb)
Chao Yu029e13c2015-08-19 19:13:25 +08002062#define stat_inc_rbtree_node_hit(sb)
Chao Yu91c481f2015-08-19 19:12:20 +08002063#define stat_inc_largest_node_hit(sbi)
2064#define stat_inc_cached_node_hit(sbi)
Chao Yud5e8f6c2015-07-15 17:28:53 +08002065#define stat_inc_inline_xattr(inode)
2066#define stat_dec_inline_xattr(inode)
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09002067#define stat_inc_inline_inode(inode)
2068#define stat_dec_inline_inode(inode)
Jaegeuk Kim3289c062014-10-13 20:00:16 -07002069#define stat_inc_inline_dir(inode)
2070#define stat_dec_inline_dir(inode)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09002071#define stat_inc_seg_type(sbi, curseg)
2072#define stat_inc_block_count(sbi, curseg)
Changman Leeb9a2c252014-12-24 02:16:54 +09002073#define stat_inc_inplace_blocks(sbi)
Changman Leee1235982014-12-23 08:37:39 +09002074#define stat_inc_seg_count(sbi, type, gc_type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002075#define stat_inc_tot_blk_count(si, blks)
Changman Leee1235982014-12-23 08:37:39 +09002076#define stat_inc_data_blk_count(sbi, blks, gc_type)
2077#define stat_inc_node_blk_count(sbi, blks, gc_type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002078
2079static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
2080static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
Chao Yu787c7b8c2015-10-29 09:13:04 +08002081static inline int __init f2fs_create_root_stats(void) { return 0; }
Namjae Jeon4589d252013-01-15 19:58:47 +09002082static inline void f2fs_destroy_root_stats(void) { }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002083#endif
2084
2085extern const struct file_operations f2fs_dir_operations;
2086extern const struct file_operations f2fs_file_operations;
2087extern const struct inode_operations f2fs_file_inode_operations;
2088extern const struct address_space_operations f2fs_dblock_aops;
2089extern const struct address_space_operations f2fs_node_aops;
2090extern const struct address_space_operations f2fs_meta_aops;
2091extern const struct inode_operations f2fs_dir_inode_operations;
2092extern const struct inode_operations f2fs_symlink_inode_operations;
Jaegeuk Kimcbaf0422015-04-29 15:10:53 -07002093extern const struct inode_operations f2fs_encrypted_symlink_inode_operations;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002094extern const struct inode_operations f2fs_special_inode_operations;
Jaegeuk Kim29e70432015-02-10 16:23:12 -08002095extern struct kmem_cache *inode_entry_slab;
Huajun Li1001b342013-11-10 23:13:16 +08002096
Huajun Lie18c65b2013-11-10 23:13:19 +08002097/*
2098 * inline.c
2099 */
Jaegeuk Kim01b960e2015-04-23 10:27:21 -07002100bool f2fs_may_inline_data(struct inode *);
2101bool f2fs_may_inline_dentry(struct inode *);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07002102void read_inline_data(struct page *, struct page *);
Chao Yu0bfcfcc2015-03-10 13:16:25 +08002103bool truncate_inline_inode(struct page *, u64);
Huajun Lie18c65b2013-11-10 23:13:19 +08002104int f2fs_read_inline_data(struct inode *, struct page *);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07002105int f2fs_convert_inline_page(struct dnode_of_data *, struct page *);
2106int f2fs_convert_inline_inode(struct inode *);
2107int f2fs_write_inline_data(struct inode *, struct page *);
Jaegeuk Kim0342fd32014-08-07 16:57:17 -07002108bool recover_inline_data(struct inode *, struct page *);
Jaegeuk Kim6e22c692015-04-27 17:12:39 -07002109struct f2fs_dir_entry *find_in_inline_dir(struct inode *,
2110 struct f2fs_filename *, struct page **);
Chao Yu201a05b2014-09-24 18:17:53 +08002111struct f2fs_dir_entry *f2fs_parent_inline_dir(struct inode *, struct page **);
2112int make_empty_inline_dir(struct inode *inode, struct inode *, struct page *);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07002113int f2fs_add_inline_entry(struct inode *, const struct qstr *, struct inode *,
2114 nid_t, umode_t);
Chao Yu201a05b2014-09-24 18:17:53 +08002115void f2fs_delete_inline_entry(struct f2fs_dir_entry *, struct page *,
2116 struct inode *, struct inode *);
2117bool f2fs_empty_inline_dir(struct inode *);
Jaegeuk Kimd8c68222015-04-27 16:26:24 -07002118int f2fs_read_inline_dir(struct file *, struct dir_context *,
2119 struct f2fs_str *);
Jaegeuk Kim67f8cf32015-10-15 11:34:49 -07002120int f2fs_inline_data_fiemap(struct inode *,
2121 struct fiemap_extent_info *, __u64, __u64);
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07002122
2123/*
Jaegeuk Kim2658e502015-06-19 12:01:21 -07002124 * shrinker.c
2125 */
2126unsigned long f2fs_shrink_count(struct shrinker *, struct shrink_control *);
2127unsigned long f2fs_shrink_scan(struct shrinker *, struct shrink_control *);
2128void f2fs_join_shrinker(struct f2fs_sb_info *);
2129void f2fs_leave_shrinker(struct f2fs_sb_info *);
2130
2131/*
Chao Yua28ef1f2015-07-08 17:59:36 +08002132 * extent_cache.c
2133 */
2134unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *, int);
Jaegeuk Kimed3d1252015-12-28 11:39:06 -08002135bool f2fs_init_extent_tree(struct inode *, struct f2fs_extent *);
Chao Yua28ef1f2015-07-08 17:59:36 +08002136unsigned int f2fs_destroy_extent_node(struct inode *);
2137void f2fs_destroy_extent_tree(struct inode *);
2138bool f2fs_lookup_extent_cache(struct inode *, pgoff_t, struct extent_info *);
2139void f2fs_update_extent_cache(struct dnode_of_data *);
Chao Yu19b2c302015-08-26 20:34:48 +08002140void f2fs_update_extent_cache_range(struct dnode_of_data *dn,
2141 pgoff_t, block_t, unsigned int);
Chao Yua28ef1f2015-07-08 17:59:36 +08002142void init_extent_cache_info(struct f2fs_sb_info *);
2143int __init create_extent_cache(void);
2144void destroy_extent_cache(void);
2145
2146/*
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07002147 * crypto support
2148 */
2149static inline int f2fs_encrypted_inode(struct inode *inode)
2150{
2151#ifdef CONFIG_F2FS_FS_ENCRYPTION
2152 return file_is_encrypt(inode);
2153#else
2154 return 0;
2155#endif
2156}
2157
2158static inline void f2fs_set_encrypted_inode(struct inode *inode)
2159{
2160#ifdef CONFIG_F2FS_FS_ENCRYPTION
2161 file_set_encrypt(inode);
2162#endif
2163}
2164
2165static inline bool f2fs_bio_encrypted(struct bio *bio)
2166{
2167#ifdef CONFIG_F2FS_FS_ENCRYPTION
2168 return unlikely(bio->bi_private != NULL);
2169#else
2170 return false;
2171#endif
2172}
2173
2174static inline int f2fs_sb_has_crypto(struct super_block *sb)
2175{
2176#ifdef CONFIG_F2FS_FS_ENCRYPTION
2177 return F2FS_HAS_FEATURE(sb, F2FS_FEATURE_ENCRYPT);
2178#else
2179 return 0;
2180#endif
2181}
Jaegeuk Kimf424f662015-04-20 15:19:06 -07002182
Jaegeuk Kimfcc85a42015-04-21 20:39:58 -07002183static inline bool f2fs_may_encrypt(struct inode *inode)
2184{
2185#ifdef CONFIG_F2FS_FS_ENCRYPTION
Al Viro886f56f2015-12-05 03:56:06 -05002186 umode_t mode = inode->i_mode;
Jaegeuk Kimfcc85a42015-04-21 20:39:58 -07002187
2188 return (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode));
2189#else
2190 return 0;
2191#endif
2192}
2193
Jaegeuk Kimf424f662015-04-20 15:19:06 -07002194/* crypto_policy.c */
2195int f2fs_is_child_context_consistent_with_parent(struct inode *,
2196 struct inode *);
2197int f2fs_inherit_context(struct inode *, struct inode *, struct page *);
2198int f2fs_process_policy(const struct f2fs_encryption_policy *, struct inode *);
2199int f2fs_get_policy(struct inode *, struct f2fs_encryption_policy *);
Jaegeuk Kim57e50552015-04-20 19:52:47 -07002200
2201/* crypt.c */
Jaegeuk Kim8bacf6de2015-05-12 13:26:54 -07002202extern struct kmem_cache *f2fs_crypt_info_cachep;
Jaegeuk Kim57e50552015-04-20 19:52:47 -07002203bool f2fs_valid_contents_enc_mode(uint32_t);
2204uint32_t f2fs_validate_encryption_key_size(uint32_t, uint32_t);
2205struct f2fs_crypto_ctx *f2fs_get_crypto_ctx(struct inode *);
2206void f2fs_release_crypto_ctx(struct f2fs_crypto_ctx *);
2207struct page *f2fs_encrypt(struct inode *, struct page *);
2208int f2fs_decrypt(struct f2fs_crypto_ctx *, struct page *);
2209int f2fs_decrypt_one(struct inode *, struct page *);
2210void f2fs_end_io_crypto_work(struct f2fs_crypto_ctx *, struct bio *);
2211
Jaegeuk Kim0adda902015-04-21 16:23:47 -07002212/* crypto_key.c */
Jaegeuk Kim26bf3dc2015-05-19 22:26:54 -07002213void f2fs_free_encryption_info(struct inode *, struct f2fs_crypt_info *);
Jaegeuk Kim0adda902015-04-21 16:23:47 -07002214int _f2fs_get_encryption_info(struct inode *inode);
2215
Jaegeuk Kim6b3bd082015-04-26 00:12:50 -07002216/* crypto_fname.c */
2217bool f2fs_valid_filenames_enc_mode(uint32_t);
2218u32 f2fs_fname_crypto_round_up(u32, u32);
2219int f2fs_fname_crypto_alloc_buffer(struct inode *, u32, struct f2fs_str *);
2220int f2fs_fname_disk_to_usr(struct inode *, f2fs_hash_t *,
2221 const struct f2fs_str *, struct f2fs_str *);
2222int f2fs_fname_usr_to_disk(struct inode *, const struct qstr *,
2223 struct f2fs_str *);
2224
Jaegeuk Kim57e50552015-04-20 19:52:47 -07002225#ifdef CONFIG_F2FS_FS_ENCRYPTION
2226void f2fs_restore_and_release_control_page(struct page **);
2227void f2fs_restore_control_page(struct page *);
2228
Jaegeuk Kimcfc4d972015-05-15 15:37:24 -07002229int __init f2fs_init_crypto(void);
2230int f2fs_crypto_initialize(void);
Jaegeuk Kim57e50552015-04-20 19:52:47 -07002231void f2fs_exit_crypto(void);
Jaegeuk Kim0adda902015-04-21 16:23:47 -07002232
2233int f2fs_has_encryption_key(struct inode *);
2234
2235static inline int f2fs_get_encryption_info(struct inode *inode)
2236{
2237 struct f2fs_crypt_info *ci = F2FS_I(inode)->i_crypt_info;
2238
2239 if (!ci ||
2240 (ci->ci_keyring_key &&
2241 (ci->ci_keyring_key->flags & ((1 << KEY_FLAG_INVALIDATED) |
2242 (1 << KEY_FLAG_REVOKED) |
2243 (1 << KEY_FLAG_DEAD)))))
2244 return _f2fs_get_encryption_info(inode);
2245 return 0;
2246}
Jaegeuk Kim6b3bd082015-04-26 00:12:50 -07002247
Jaegeuk Kim6b3bd082015-04-26 00:12:50 -07002248void f2fs_fname_crypto_free_buffer(struct f2fs_str *);
2249int f2fs_fname_setup_filename(struct inode *, const struct qstr *,
2250 int lookup, struct f2fs_filename *);
2251void f2fs_fname_free_filename(struct f2fs_filename *);
Jaegeuk Kim57e50552015-04-20 19:52:47 -07002252#else
2253static inline void f2fs_restore_and_release_control_page(struct page **p) { }
2254static inline void f2fs_restore_control_page(struct page *p) { }
2255
Jaegeuk Kimcfc4d972015-05-15 15:37:24 -07002256static inline int __init f2fs_init_crypto(void) { return 0; }
Jaegeuk Kim57e50552015-04-20 19:52:47 -07002257static inline void f2fs_exit_crypto(void) { }
Jaegeuk Kim0adda902015-04-21 16:23:47 -07002258
2259static inline int f2fs_has_encryption_key(struct inode *i) { return 0; }
2260static inline int f2fs_get_encryption_info(struct inode *i) { return 0; }
Jaegeuk Kim6b3bd082015-04-26 00:12:50 -07002261static inline void f2fs_fname_crypto_free_buffer(struct f2fs_str *p) { }
2262
2263static inline int f2fs_fname_setup_filename(struct inode *dir,
2264 const struct qstr *iname,
2265 int lookup, struct f2fs_filename *fname)
2266{
2267 memset(fname, 0, sizeof(struct f2fs_filename));
2268 fname->usr_fname = iname;
2269 fname->disk_name.name = (unsigned char *)iname->name;
2270 fname->disk_name.len = iname->len;
2271 return 0;
2272}
2273
2274static inline void f2fs_fname_free_filename(struct f2fs_filename *fname) { }
Jaegeuk Kim57e50552015-04-20 19:52:47 -07002275#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002276#endif