Chao Yu | 7c1a000 | 2018-09-12 09:16:07 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Jaegeuk Kim | 0a8165d | 2012-11-29 13:28:09 +0900 | [diff] [blame] | 2 | /* |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3 | * fs/f2fs/f2fs.h |
| 4 | * |
| 5 | * Copyright (c) 2012 Samsung Electronics Co., Ltd. |
| 6 | * http://www.samsung.com/ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 7 | */ |
| 8 | #ifndef _LINUX_F2FS_H |
| 9 | #define _LINUX_F2FS_H |
| 10 | |
Chao Yu | f847c69 | 2018-09-27 18:34:52 +0800 | [diff] [blame] | 11 | #include <linux/uio.h> |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 12 | #include <linux/types.h> |
| 13 | #include <linux/page-flags.h> |
| 14 | #include <linux/buffer_head.h> |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 15 | #include <linux/slab.h> |
| 16 | #include <linux/crc32.h> |
| 17 | #include <linux/magic.h> |
Jaegeuk Kim | c2d715d | 2013-08-08 15:56:49 +0900 | [diff] [blame] | 18 | #include <linux/kobject.h> |
Gu Zheng | 7bd5938 | 2013-10-22 14:52:26 +0800 | [diff] [blame] | 19 | #include <linux/sched.h> |
Jaegeuk Kim | 7c2e596 | 2018-01-04 21:36:09 -0800 | [diff] [blame] | 20 | #include <linux/cred.h> |
Jaegeuk Kim | 39307a8 | 2015-09-22 13:50:47 -0700 | [diff] [blame] | 21 | #include <linux/vmalloc.h> |
Jaegeuk Kim | 740432f | 2015-08-14 11:43:56 -0700 | [diff] [blame] | 22 | #include <linux/bio.h> |
Jaegeuk Kim | d0239e1 | 2016-01-08 16:57:48 -0800 | [diff] [blame] | 23 | #include <linux/blkdev.h> |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 24 | #include <linux/quotaops.h> |
Christoph Hellwig | c6a564ff | 2020-03-25 16:48:42 +0100 | [diff] [blame] | 25 | #include <linux/part_stat.h> |
Keith Mok | 43b6573 | 2016-03-02 12:04:24 -0800 | [diff] [blame] | 26 | #include <crypto/hash.h> |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 27 | |
Dave Chinner | 734f0d2 | 2017-10-09 12:15:34 -0700 | [diff] [blame] | 28 | #include <linux/fscrypt.h> |
Eric Biggers | 95ae251 | 2019-07-22 09:26:24 -0700 | [diff] [blame] | 29 | #include <linux/fsverity.h> |
Dave Chinner | 734f0d2 | 2017-10-09 12:15:34 -0700 | [diff] [blame] | 30 | |
Jaegeuk Kim | 5d56b67 | 2013-10-29 15:14:54 +0900 | [diff] [blame] | 31 | #ifdef CONFIG_F2FS_CHECK_FS |
Jaegeuk Kim | 9850cf4 | 2014-09-02 15:52:58 -0700 | [diff] [blame] | 32 | #define f2fs_bug_on(sbi, condition) BUG_ON(condition) |
Jaegeuk Kim | 5d56b67 | 2013-10-29 15:14:54 +0900 | [diff] [blame] | 33 | #else |
Jaegeuk Kim | 9850cf4 | 2014-09-02 15:52:58 -0700 | [diff] [blame] | 34 | #define f2fs_bug_on(sbi, condition) \ |
| 35 | do { \ |
| 36 | if (unlikely(condition)) { \ |
| 37 | WARN_ON(1); \ |
Chao Yu | caf0047 | 2015-01-28 17:48:42 +0800 | [diff] [blame] | 38 | set_sbi_flag(sbi, SBI_NEED_FSCK); \ |
Jaegeuk Kim | 9850cf4 | 2014-09-02 15:52:58 -0700 | [diff] [blame] | 39 | } \ |
| 40 | } while (0) |
Jaegeuk Kim | 5d56b67 | 2013-10-29 15:14:54 +0900 | [diff] [blame] | 41 | #endif |
| 42 | |
Jaegeuk Kim | 2c63fea | 2016-04-29 15:49:56 -0700 | [diff] [blame] | 43 | enum { |
| 44 | FAULT_KMALLOC, |
Chao Yu | 628b3d1 | 2017-11-30 19:28:18 +0800 | [diff] [blame] | 45 | FAULT_KVMALLOC, |
Jaegeuk Kim | c41f3cc3 | 2016-04-29 16:17:09 -0700 | [diff] [blame] | 46 | FAULT_PAGE_ALLOC, |
Chao Yu | 01eccef | 2017-10-28 16:52:30 +0800 | [diff] [blame] | 47 | FAULT_PAGE_GET, |
Chao Yu | d62fe97 | 2017-10-28 16:52:31 +0800 | [diff] [blame] | 48 | FAULT_ALLOC_BIO, |
Jaegeuk Kim | cb78942 | 2016-04-29 16:29:22 -0700 | [diff] [blame] | 49 | FAULT_ALLOC_NID, |
| 50 | FAULT_ORPHAN, |
| 51 | FAULT_BLOCK, |
| 52 | FAULT_DIR_DEPTH, |
Jaegeuk Kim | 53aa6bb | 2016-05-25 15:24:18 -0700 | [diff] [blame] | 53 | FAULT_EVICT_INODE, |
Jaegeuk Kim | 14b44d2 | 2017-03-09 15:24:24 -0800 | [diff] [blame] | 54 | FAULT_TRUNCATE, |
Chao Yu | 6f5c2ed | 2018-09-12 09:22:29 +0800 | [diff] [blame] | 55 | FAULT_READ_IO, |
Chao Yu | 0f34802 | 2016-09-26 19:45:55 +0800 | [diff] [blame] | 56 | FAULT_CHECKPOINT, |
Chao Yu | b83dcfe | 2018-08-06 20:30:18 +0800 | [diff] [blame] | 57 | FAULT_DISCARD, |
Chao Yu | 6f5c2ed | 2018-09-12 09:22:29 +0800 | [diff] [blame] | 58 | FAULT_WRITE_IO, |
Jaegeuk Kim | 2c63fea | 2016-04-29 15:49:56 -0700 | [diff] [blame] | 59 | FAULT_MAX, |
| 60 | }; |
| 61 | |
Arnd Bergmann | 7fa750a | 2018-08-13 23:38:06 +0200 | [diff] [blame] | 62 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
Chao Yu | d494500 | 2018-08-08 17:36:41 +0800 | [diff] [blame] | 63 | #define F2FS_ALL_FAULT_TYPE ((1 << FAULT_MAX) - 1) |
| 64 | |
Sheng Yong | 0879689 | 2016-05-16 12:38:50 +0800 | [diff] [blame] | 65 | struct f2fs_fault_info { |
| 66 | atomic_t inject_ops; |
| 67 | unsigned int inject_rate; |
| 68 | unsigned int inject_type; |
| 69 | }; |
| 70 | |
Alexey Dobriyan | 19880e6 | 2018-11-24 12:06:42 +0300 | [diff] [blame] | 71 | extern const char *f2fs_fault_name[FAULT_MAX]; |
Tomohiro Kusumi | 68afcf2 | 2017-04-09 02:11:36 +0300 | [diff] [blame] | 72 | #define IS_FAULT_SET(fi, type) ((fi)->inject_type & (1 << (type))) |
Jaegeuk Kim | 2c63fea | 2016-04-29 15:49:56 -0700 | [diff] [blame] | 73 | #endif |
| 74 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 75 | /* |
| 76 | * For mount options |
| 77 | */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 78 | #define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002 |
| 79 | #define F2FS_MOUNT_DISCARD 0x00000004 |
| 80 | #define F2FS_MOUNT_NOHEAP 0x00000008 |
| 81 | #define F2FS_MOUNT_XATTR_USER 0x00000010 |
| 82 | #define F2FS_MOUNT_POSIX_ACL 0x00000020 |
| 83 | #define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040 |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 84 | #define F2FS_MOUNT_INLINE_XATTR 0x00000080 |
Huajun Li | 1001b34 | 2013-11-10 23:13:16 +0800 | [diff] [blame] | 85 | #define F2FS_MOUNT_INLINE_DATA 0x00000100 |
Chao Yu | 34d67de | 2014-09-24 18:15:19 +0800 | [diff] [blame] | 86 | #define F2FS_MOUNT_INLINE_DENTRY 0x00000200 |
| 87 | #define F2FS_MOUNT_FLUSH_MERGE 0x00000400 |
| 88 | #define F2FS_MOUNT_NOBARRIER 0x00000800 |
Jaegeuk Kim | d5053a34 | 2014-10-30 22:47:03 -0700 | [diff] [blame] | 89 | #define F2FS_MOUNT_FASTBOOT 0x00001000 |
Chao Yu | 8967215 | 2015-02-05 17:55:51 +0800 | [diff] [blame] | 90 | #define F2FS_MOUNT_EXTENT_CACHE 0x00002000 |
Chao Yu | 343f40f | 2015-12-16 13:12:16 +0800 | [diff] [blame] | 91 | #define F2FS_MOUNT_DATA_FLUSH 0x00008000 |
Jaegeuk Kim | 73faec4d | 2016-04-29 15:34:32 -0700 | [diff] [blame] | 92 | #define F2FS_MOUNT_FAULT_INJECTION 0x00010000 |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 93 | #define F2FS_MOUNT_USRQUOTA 0x00080000 |
| 94 | #define F2FS_MOUNT_GRPQUOTA 0x00100000 |
Chao Yu | 5c57132 | 2017-07-26 00:01:41 +0800 | [diff] [blame] | 95 | #define F2FS_MOUNT_PRJQUOTA 0x00200000 |
Chao Yu | 4b2414d | 2017-08-08 10:54:31 +0800 | [diff] [blame] | 96 | #define F2FS_MOUNT_QUOTA 0x00400000 |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 97 | #define F2FS_MOUNT_INLINE_XATTR_SIZE 0x00800000 |
Jaegeuk Kim | 7e65be4 | 2017-12-27 15:05:52 -0800 | [diff] [blame] | 98 | #define F2FS_MOUNT_RESERVE_ROOT 0x01000000 |
Daniel Rosenberg | 4354994 | 2018-08-20 19:21:43 -0700 | [diff] [blame] | 99 | #define F2FS_MOUNT_DISABLE_CHECKPOINT 0x02000000 |
Chao Yu | a9117ec | 2020-02-14 17:45:11 +0800 | [diff] [blame] | 100 | #define F2FS_MOUNT_NORECOVERY 0x04000000 |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 101 | |
Chao Yu | 63189b7 | 2018-03-08 14:22:56 +0800 | [diff] [blame] | 102 | #define F2FS_OPTION(sbi) ((sbi)->mount_opt) |
| 103 | #define clear_opt(sbi, option) (F2FS_OPTION(sbi).opt &= ~F2FS_MOUNT_##option) |
| 104 | #define set_opt(sbi, option) (F2FS_OPTION(sbi).opt |= F2FS_MOUNT_##option) |
| 105 | #define test_opt(sbi, option) (F2FS_OPTION(sbi).opt & F2FS_MOUNT_##option) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 106 | |
| 107 | #define ver_after(a, b) (typecheck(unsigned long long, a) && \ |
| 108 | typecheck(unsigned long long, b) && \ |
| 109 | ((long long)((a) - (b)) > 0)) |
| 110 | |
Jaegeuk Kim | a9841c4 | 2013-05-24 12:41:04 +0900 | [diff] [blame] | 111 | typedef u32 block_t; /* |
| 112 | * should not change u32, since it is the on-disk block |
| 113 | * address format, __le32. |
| 114 | */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 115 | typedef u32 nid_t; |
| 116 | |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 117 | #define COMPRESS_EXT_NUM 16 |
| 118 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 119 | struct f2fs_mount_info { |
Chao Yu | 63189b7 | 2018-03-08 14:22:56 +0800 | [diff] [blame] | 120 | unsigned int opt; |
| 121 | int write_io_size_bits; /* Write IO size bits */ |
| 122 | block_t root_reserved_blocks; /* root reserved blocks */ |
| 123 | kuid_t s_resuid; /* reserved blocks for uid */ |
| 124 | kgid_t s_resgid; /* reserved blocks for gid */ |
| 125 | int active_logs; /* # of active logs */ |
| 126 | int inline_xattr_size; /* inline xattr size */ |
| 127 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
| 128 | struct f2fs_fault_info fault_info; /* For fault injection */ |
| 129 | #endif |
| 130 | #ifdef CONFIG_QUOTA |
| 131 | /* Names of quota files with journalled quota */ |
| 132 | char *s_qf_names[MAXQUOTAS]; |
| 133 | int s_jquota_fmt; /* Format of quota to use */ |
| 134 | #endif |
| 135 | /* For which write hints are passed down to block layer */ |
| 136 | int whint_mode; |
| 137 | int alloc_mode; /* segment allocation policy */ |
| 138 | int fsync_mode; /* fsync policy */ |
Chao Yu | b0332a0 | 2020-02-14 17:44:12 +0800 | [diff] [blame] | 139 | int fs_mode; /* fs mode: LFS or ADAPTIVE */ |
Chao Yu | bbbc34f | 2020-02-14 17:44:13 +0800 | [diff] [blame] | 140 | int bggc_mode; /* bggc mode: off, on or sync */ |
Sheng Yong | ff62af2 | 2018-03-15 18:51:42 +0800 | [diff] [blame] | 141 | bool test_dummy_encryption; /* test dummy encryption */ |
Daniel Rosenberg | 4d3aed7 | 2019-05-29 17:49:06 -0700 | [diff] [blame] | 142 | block_t unusable_cap; /* Amount of space allowed to be |
| 143 | * unusable when disabling checkpoint |
| 144 | */ |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 145 | |
| 146 | /* For compression */ |
| 147 | unsigned char compress_algorithm; /* algorithm type */ |
| 148 | unsigned compress_log_size; /* cluster log size */ |
| 149 | unsigned char compress_ext_cnt; /* extension count */ |
| 150 | unsigned char extensions[COMPRESS_EXT_NUM][F2FS_EXTENSION_LEN]; /* extensions */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 151 | }; |
| 152 | |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 153 | #define F2FS_FEATURE_ENCRYPT 0x0001 |
| 154 | #define F2FS_FEATURE_BLKZONED 0x0002 |
| 155 | #define F2FS_FEATURE_ATOMIC_WRITE 0x0004 |
| 156 | #define F2FS_FEATURE_EXTRA_ATTR 0x0008 |
Chao Yu | 5c57132 | 2017-07-26 00:01:41 +0800 | [diff] [blame] | 157 | #define F2FS_FEATURE_PRJQUOTA 0x0010 |
Chao Yu | 704956e | 2017-07-31 20:19:09 +0800 | [diff] [blame] | 158 | #define F2FS_FEATURE_INODE_CHKSUM 0x0020 |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 159 | #define F2FS_FEATURE_FLEXIBLE_INLINE_XATTR 0x0040 |
Jaegeuk Kim | 234a968 | 2017-10-05 21:03:06 -0700 | [diff] [blame] | 160 | #define F2FS_FEATURE_QUOTA_INO 0x0080 |
Chao Yu | 1c1d35d | 2018-01-25 14:54:42 +0800 | [diff] [blame] | 161 | #define F2FS_FEATURE_INODE_CRTIME 0x0100 |
Sheng Yong | b7c409d | 2018-03-15 18:51:41 +0800 | [diff] [blame] | 162 | #define F2FS_FEATURE_LOST_FOUND 0x0200 |
Eric Biggers | 95ae251 | 2019-07-22 09:26:24 -0700 | [diff] [blame] | 163 | #define F2FS_FEATURE_VERITY 0x0400 |
Junling Zheng | d440c52 | 2018-09-28 20:25:56 +0800 | [diff] [blame] | 164 | #define F2FS_FEATURE_SB_CHKSUM 0x0800 |
Daniel Rosenberg | 5aba543 | 2019-07-23 16:05:28 -0700 | [diff] [blame] | 165 | #define F2FS_FEATURE_CASEFOLD 0x1000 |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 166 | #define F2FS_FEATURE_COMPRESSION 0x2000 |
Jaegeuk Kim | cde4de1 | 2015-04-20 13:57:51 -0700 | [diff] [blame] | 167 | |
Chao Yu | 7beb01f | 2018-10-24 18:34:26 +0800 | [diff] [blame] | 168 | #define __F2FS_HAS_FEATURE(raw_super, mask) \ |
| 169 | ((raw_super->feature & cpu_to_le32(mask)) != 0) |
| 170 | #define F2FS_HAS_FEATURE(sbi, mask) __F2FS_HAS_FEATURE(sbi->raw_super, mask) |
| 171 | #define F2FS_SET_FEATURE(sbi, mask) \ |
| 172 | (sbi->raw_super->feature |= cpu_to_le32(mask)) |
| 173 | #define F2FS_CLEAR_FEATURE(sbi, mask) \ |
| 174 | (sbi->raw_super->feature &= ~cpu_to_le32(mask)) |
Jaegeuk Kim | 76f105a | 2015-04-13 15:10:36 -0700 | [diff] [blame] | 175 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 176 | /* |
Jaegeuk Kim | 7c2e596 | 2018-01-04 21:36:09 -0800 | [diff] [blame] | 177 | * Default values for user and/or group using reserved blocks |
| 178 | */ |
| 179 | #define F2FS_DEF_RESUID 0 |
| 180 | #define F2FS_DEF_RESGID 0 |
| 181 | |
| 182 | /* |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 183 | * For checkpoint manager |
| 184 | */ |
| 185 | enum { |
| 186 | NAT_BITMAP, |
| 187 | SIT_BITMAP |
| 188 | }; |
| 189 | |
Chao Yu | c473f1a | 2017-04-27 20:40:39 +0800 | [diff] [blame] | 190 | #define CP_UMOUNT 0x00000001 |
| 191 | #define CP_FASTBOOT 0x00000002 |
| 192 | #define CP_SYNC 0x00000004 |
| 193 | #define CP_RECOVERY 0x00000008 |
| 194 | #define CP_DISCARD 0x00000010 |
Chao Yu | 1f43e2a | 2017-04-28 13:56:08 +0800 | [diff] [blame] | 195 | #define CP_TRIMMED 0x00000020 |
Daniel Rosenberg | 4354994 | 2018-08-20 19:21:43 -0700 | [diff] [blame] | 196 | #define CP_PAUSE 0x00000040 |
Jaegeuk Kim | 75ab4cb | 2014-09-20 21:57:51 -0700 | [diff] [blame] | 197 | |
Jaegeuk Kim | 4ddb1a4 | 2017-04-07 15:08:17 -0700 | [diff] [blame] | 198 | #define MAX_DISCARD_BLOCKS(sbi) BLKS_PER_SEC(sbi) |
Chao Yu | ecc9aa0 | 2017-10-04 09:08:33 +0800 | [diff] [blame] | 199 | #define DEF_MAX_DISCARD_REQUEST 8 /* issue 8 discards per round */ |
Chao Yu | 969d1b1 | 2017-08-07 23:09:56 +0800 | [diff] [blame] | 200 | #define DEF_MIN_DISCARD_ISSUE_TIME 50 /* 50 ms, if exists */ |
Yunlei He | f9d1dce | 2018-04-08 15:11:11 +0800 | [diff] [blame] | 201 | #define DEF_MID_DISCARD_ISSUE_TIME 500 /* 500 ms, if device busy */ |
Chao Yu | 969d1b1 | 2017-08-07 23:09:56 +0800 | [diff] [blame] | 202 | #define DEF_MAX_DISCARD_ISSUE_TIME 60000 /* 60 s, if no candidates */ |
Jaegeuk Kim | 8bb4f25 | 2018-05-29 09:58:42 -0700 | [diff] [blame] | 203 | #define DEF_DISCARD_URGENT_UTIL 80 /* do more discard over 80% */ |
Jaegeuk Kim | 60b99b4 | 2015-10-05 14:49:57 -0700 | [diff] [blame] | 204 | #define DEF_CP_INTERVAL 60 /* 60 secs */ |
Chao Yu | dcf25fe | 2016-07-15 19:25:47 +0800 | [diff] [blame] | 205 | #define DEF_IDLE_INTERVAL 5 /* 5 secs */ |
Daniel Rosenberg | 4354994 | 2018-08-20 19:21:43 -0700 | [diff] [blame] | 206 | #define DEF_DISABLE_INTERVAL 5 /* 5 secs */ |
Jaegeuk Kim | db610a6 | 2019-01-24 17:48:38 -0800 | [diff] [blame] | 207 | #define DEF_DISABLE_QUICK_INTERVAL 1 /* 1 secs */ |
Jaegeuk Kim | 03f2c02 | 2019-01-14 10:42:11 -0800 | [diff] [blame] | 208 | #define DEF_UMOUNT_DISCARD_TIMEOUT 5 /* 5 secs */ |
Jaegeuk Kim | bba681c | 2015-01-26 17:41:23 -0800 | [diff] [blame] | 209 | |
Jaegeuk Kim | 75ab4cb | 2014-09-20 21:57:51 -0700 | [diff] [blame] | 210 | struct cp_control { |
| 211 | int reason; |
Jaegeuk Kim | 4b2fecc | 2014-09-20 22:06:39 -0700 | [diff] [blame] | 212 | __u64 trim_start; |
| 213 | __u64 trim_end; |
| 214 | __u64 trim_minlen; |
Jaegeuk Kim | 75ab4cb | 2014-09-20 21:57:51 -0700 | [diff] [blame] | 215 | }; |
| 216 | |
Chao Yu | 662befd | 2014-02-07 16:11:53 +0800 | [diff] [blame] | 217 | /* |
Chao Yu | e1da787 | 2018-06-05 17:44:11 +0800 | [diff] [blame] | 218 | * indicate meta/data type |
Chao Yu | 662befd | 2014-02-07 16:11:53 +0800 | [diff] [blame] | 219 | */ |
| 220 | enum { |
| 221 | META_CP, |
| 222 | META_NAT, |
Chao Yu | 81c1a0f1 | 2014-02-27 19:12:24 +0800 | [diff] [blame] | 223 | META_SIT, |
Jaegeuk Kim | 4c521f49 | 2014-09-11 13:49:55 -0700 | [diff] [blame] | 224 | META_SSA, |
Chao Yu | b63e7be | 2018-09-29 18:31:27 +0800 | [diff] [blame] | 225 | META_MAX, |
Jaegeuk Kim | 4c521f49 | 2014-09-11 13:49:55 -0700 | [diff] [blame] | 226 | META_POR, |
Chao Yu | 93770ab | 2019-04-15 15:26:32 +0800 | [diff] [blame] | 227 | DATA_GENERIC, /* check range only */ |
| 228 | DATA_GENERIC_ENHANCE, /* strong check on range and segment bitmap */ |
| 229 | DATA_GENERIC_ENHANCE_READ, /* |
| 230 | * strong check on range and segment |
| 231 | * bitmap but no warning due to race |
| 232 | * condition of read on truncated area |
| 233 | * by extent_cache |
| 234 | */ |
Chao Yu | e1da787 | 2018-06-05 17:44:11 +0800 | [diff] [blame] | 235 | META_GENERIC, |
Chao Yu | 662befd | 2014-02-07 16:11:53 +0800 | [diff] [blame] | 236 | }; |
| 237 | |
Jaegeuk Kim | 6451e04 | 2014-07-25 15:47:17 -0700 | [diff] [blame] | 238 | /* for the list of ino */ |
| 239 | enum { |
| 240 | ORPHAN_INO, /* for orphan ino list */ |
Jaegeuk Kim | fff04f9 | 2014-07-25 07:40:59 -0700 | [diff] [blame] | 241 | APPEND_INO, /* for append ino list */ |
| 242 | UPDATE_INO, /* for update ino list */ |
Jaegeuk Kim | 0a007b97 | 2017-12-28 08:09:44 -0800 | [diff] [blame] | 243 | TRANS_DIR_INO, /* for trasactions dir ino list */ |
Chao Yu | 39d787b | 2017-09-29 13:59:38 +0800 | [diff] [blame] | 244 | FLUSH_INO, /* for multiple device flushing */ |
Jaegeuk Kim | 6451e04 | 2014-07-25 15:47:17 -0700 | [diff] [blame] | 245 | MAX_INO_ENTRY, /* max. list */ |
| 246 | }; |
| 247 | |
| 248 | struct ino_entry { |
Chao Yu | 39d787b | 2017-09-29 13:59:38 +0800 | [diff] [blame] | 249 | struct list_head list; /* list head */ |
| 250 | nid_t ino; /* inode number */ |
| 251 | unsigned int dirty_device; /* dirty device bitmap */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 252 | }; |
| 253 | |
Chao Yu | 2710fd7 | 2015-12-15 13:30:45 +0800 | [diff] [blame] | 254 | /* for the list of inodes to be GCed */ |
Chao Yu | 0629207 | 2014-12-29 15:56:18 +0800 | [diff] [blame] | 255 | struct inode_entry { |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 256 | struct list_head list; /* list head */ |
| 257 | struct inode *inode; /* vfs inode pointer */ |
| 258 | }; |
| 259 | |
Chao Yu | 50fa53e | 2018-08-02 23:03:19 +0800 | [diff] [blame] | 260 | struct fsync_node_entry { |
| 261 | struct list_head list; /* list head */ |
| 262 | struct page *page; /* warm node page pointer */ |
| 263 | unsigned int seq_id; /* sequence id */ |
| 264 | }; |
| 265 | |
Chao Yu | a7eeb823 | 2017-03-28 18:18:50 +0800 | [diff] [blame] | 266 | /* for the bitmap indicate blocks to be discarded */ |
Jaegeuk Kim | 7fd9e54 | 2013-11-15 13:55:58 +0900 | [diff] [blame] | 267 | struct discard_entry { |
| 268 | struct list_head list; /* list head */ |
Chao Yu | a7eeb823 | 2017-03-28 18:18:50 +0800 | [diff] [blame] | 269 | block_t start_blkaddr; /* start blockaddr of current segment */ |
| 270 | unsigned char discard_map[SIT_VBLOCK_MAP_SIZE]; /* segment discard bitmap */ |
Jaegeuk Kim | 7fd9e54 | 2013-11-15 13:55:58 +0900 | [diff] [blame] | 271 | }; |
| 272 | |
Chao Yu | 969d1b1 | 2017-08-07 23:09:56 +0800 | [diff] [blame] | 273 | /* default discard granularity of inner discard thread, unit: block count */ |
| 274 | #define DEFAULT_DISCARD_GRANULARITY 16 |
| 275 | |
Chao Yu | ba48a33 | 2017-04-15 14:09:37 +0800 | [diff] [blame] | 276 | /* max discard pend list number */ |
| 277 | #define MAX_PLIST_NUM 512 |
| 278 | #define plist_idx(blk_num) ((blk_num) >= MAX_PLIST_NUM ? \ |
Sheng Yong | 2f84bab | 2019-01-14 22:05:14 +0800 | [diff] [blame] | 279 | (MAX_PLIST_NUM - 1) : ((blk_num) - 1)) |
Chao Yu | ba48a33 | 2017-04-15 14:09:37 +0800 | [diff] [blame] | 280 | |
Jaegeuk Kim | 1546996 | 2017-01-09 20:32:07 -0800 | [diff] [blame] | 281 | enum { |
Chao Yu | 35ec7d5 | 2018-08-06 22:43:50 +0800 | [diff] [blame] | 282 | D_PREP, /* initial */ |
| 283 | D_PARTIAL, /* partially submitted */ |
| 284 | D_SUBMIT, /* all submitted */ |
| 285 | D_DONE, /* finished */ |
Jaegeuk Kim | 1546996 | 2017-01-09 20:32:07 -0800 | [diff] [blame] | 286 | }; |
| 287 | |
Chao Yu | 004b686 | 2017-04-14 23:24:55 +0800 | [diff] [blame] | 288 | struct discard_info { |
Jaegeuk Kim | b01a920 | 2017-01-09 14:13:03 -0800 | [diff] [blame] | 289 | block_t lstart; /* logical start address */ |
| 290 | block_t len; /* length */ |
Chao Yu | 004b686 | 2017-04-14 23:24:55 +0800 | [diff] [blame] | 291 | block_t start; /* actual start address in dev */ |
| 292 | }; |
| 293 | |
Jaegeuk Kim | b01a920 | 2017-01-09 14:13:03 -0800 | [diff] [blame] | 294 | struct discard_cmd { |
Chao Yu | 004b686 | 2017-04-14 23:24:55 +0800 | [diff] [blame] | 295 | struct rb_node rb_node; /* rb node located in rb-tree */ |
| 296 | union { |
| 297 | struct { |
| 298 | block_t lstart; /* logical start address */ |
| 299 | block_t len; /* length */ |
| 300 | block_t start; /* actual start address in dev */ |
| 301 | }; |
| 302 | struct discard_info di; /* discard info */ |
| 303 | |
| 304 | }; |
Jaegeuk Kim | b01a920 | 2017-01-09 14:13:03 -0800 | [diff] [blame] | 305 | struct list_head list; /* command list */ |
| 306 | struct completion wait; /* compleation */ |
Jaegeuk Kim | c81abe3 | 2017-03-07 18:02:02 -0800 | [diff] [blame] | 307 | struct block_device *bdev; /* bdev */ |
Chao Yu | ec9895a | 2017-04-26 17:39:54 +0800 | [diff] [blame] | 308 | unsigned short ref; /* reference count */ |
Chao Yu | 9a744b9 | 2017-04-26 17:39:55 +0800 | [diff] [blame] | 309 | unsigned char state; /* state */ |
Jaegeuk Kim | 72691af | 2018-12-13 16:53:57 -0800 | [diff] [blame] | 310 | unsigned char queued; /* queued discard */ |
Jaegeuk Kim | c81abe3 | 2017-03-07 18:02:02 -0800 | [diff] [blame] | 311 | int error; /* bio error */ |
Chao Yu | 35ec7d5 | 2018-08-06 22:43:50 +0800 | [diff] [blame] | 312 | spinlock_t lock; /* for state/bio_ref updating */ |
| 313 | unsigned short bio_ref; /* bio reference count */ |
Chao Yu | 275b66b | 2016-08-29 23:58:34 +0800 | [diff] [blame] | 314 | }; |
| 315 | |
Chao Yu | 78997b5 | 2017-10-04 09:08:34 +0800 | [diff] [blame] | 316 | enum { |
| 317 | DPOLICY_BG, |
| 318 | DPOLICY_FORCE, |
| 319 | DPOLICY_FSTRIM, |
| 320 | DPOLICY_UMOUNT, |
| 321 | MAX_DPOLICY, |
| 322 | }; |
| 323 | |
Chao Yu | ecc9aa0 | 2017-10-04 09:08:33 +0800 | [diff] [blame] | 324 | struct discard_policy { |
Chao Yu | 78997b5 | 2017-10-04 09:08:34 +0800 | [diff] [blame] | 325 | int type; /* type of discard */ |
Chao Yu | ecc9aa0 | 2017-10-04 09:08:33 +0800 | [diff] [blame] | 326 | unsigned int min_interval; /* used for candidates exist */ |
Yunlei He | f9d1dce | 2018-04-08 15:11:11 +0800 | [diff] [blame] | 327 | unsigned int mid_interval; /* used for device busy */ |
Chao Yu | ecc9aa0 | 2017-10-04 09:08:33 +0800 | [diff] [blame] | 328 | unsigned int max_interval; /* used for candidates not exist */ |
| 329 | unsigned int max_requests; /* # of discards issued per round */ |
| 330 | unsigned int io_aware_gran; /* minimum granularity discard not be aware of I/O */ |
| 331 | bool io_aware; /* issue discard in idle time */ |
| 332 | bool sync; /* submit discard with REQ_SYNC flag */ |
Chao Yu | 20ee438 | 2018-07-08 22:11:01 +0800 | [diff] [blame] | 333 | bool ordered; /* issue discard by lba order */ |
Chao Yu | 6ce48b0 | 2020-03-26 17:43:56 +0800 | [diff] [blame] | 334 | bool timeout; /* discard timeout for put_super */ |
Chao Yu | 78997b5 | 2017-10-04 09:08:34 +0800 | [diff] [blame] | 335 | unsigned int granularity; /* discard granularity */ |
Chao Yu | ecc9aa0 | 2017-10-04 09:08:33 +0800 | [diff] [blame] | 336 | }; |
| 337 | |
Jaegeuk Kim | 0b54fb8 | 2017-01-11 14:40:24 -0800 | [diff] [blame] | 338 | struct discard_cmd_control { |
Jaegeuk Kim | 1546996 | 2017-01-09 20:32:07 -0800 | [diff] [blame] | 339 | struct task_struct *f2fs_issue_discard; /* discard thread */ |
Chao Yu | 46f84c2 | 2017-04-15 14:09:36 +0800 | [diff] [blame] | 340 | struct list_head entry_list; /* 4KB discard entry list */ |
Chao Yu | ba48a33 | 2017-04-15 14:09:37 +0800 | [diff] [blame] | 341 | struct list_head pend_list[MAX_PLIST_NUM];/* store pending entries */ |
Chao Yu | 46f84c2 | 2017-04-15 14:09:36 +0800 | [diff] [blame] | 342 | struct list_head wait_list; /* store on-flushing entries */ |
Chao Yu | 8412663 | 2017-10-04 09:08:32 +0800 | [diff] [blame] | 343 | struct list_head fstrim_list; /* in-flight discard from fstrim */ |
Jaegeuk Kim | 1546996 | 2017-01-09 20:32:07 -0800 | [diff] [blame] | 344 | wait_queue_head_t discard_wait_queue; /* waiting queue for wake-up */ |
Chao Yu | 969d1b1 | 2017-08-07 23:09:56 +0800 | [diff] [blame] | 345 | unsigned int discard_wake; /* to wake up discard thread */ |
Jaegeuk Kim | 1546996 | 2017-01-09 20:32:07 -0800 | [diff] [blame] | 346 | struct mutex cmd_lock; |
Chao Yu | d618eba | 2017-04-25 00:21:35 +0800 | [diff] [blame] | 347 | unsigned int nr_discards; /* # of discards in the list */ |
| 348 | unsigned int max_discards; /* max. discards to be issued */ |
Chao Yu | 969d1b1 | 2017-08-07 23:09:56 +0800 | [diff] [blame] | 349 | unsigned int discard_granularity; /* discard granularity */ |
Chao Yu | d84d1cb | 2017-04-18 19:27:39 +0800 | [diff] [blame] | 350 | unsigned int undiscard_blks; /* # of undiscard blocks */ |
Chao Yu | 20ee438 | 2018-07-08 22:11:01 +0800 | [diff] [blame] | 351 | unsigned int next_pos; /* next discard position */ |
Chao Yu | 8b8dd65 | 2017-03-25 17:19:58 +0800 | [diff] [blame] | 352 | atomic_t issued_discard; /* # of issued discard */ |
Jaegeuk Kim | 72691af | 2018-12-13 16:53:57 -0800 | [diff] [blame] | 353 | atomic_t queued_discard; /* # of queued discard */ |
Chao Yu | 5f32366 | 2017-03-25 17:19:59 +0800 | [diff] [blame] | 354 | atomic_t discard_cmd_cnt; /* # of cached cmd count */ |
Chao Yu | 4dada3f | 2018-10-04 11:18:30 +0800 | [diff] [blame] | 355 | struct rb_root_cached root; /* root of discard rb-tree */ |
Chao Yu | 67fce70 | 2018-06-22 16:06:59 +0800 | [diff] [blame] | 356 | bool rbtree_check; /* config for consistence check */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 357 | }; |
| 358 | |
| 359 | /* for the list of fsync inodes, used only during recovery */ |
| 360 | struct fsync_inode_entry { |
| 361 | struct list_head list; /* list head */ |
| 362 | struct inode *inode; /* vfs inode pointer */ |
Jaegeuk Kim | c52e1b1 | 2014-09-11 14:29:06 -0700 | [diff] [blame] | 363 | block_t blkaddr; /* block address locating the last fsync */ |
| 364 | block_t last_dentry; /* block address locating the last dentry */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 365 | }; |
| 366 | |
Tomohiro Kusumi | 68afcf2 | 2017-04-09 02:11:36 +0300 | [diff] [blame] | 367 | #define nats_in_cursum(jnl) (le16_to_cpu((jnl)->n_nats)) |
| 368 | #define sits_in_cursum(jnl) (le16_to_cpu((jnl)->n_sits)) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 369 | |
Tomohiro Kusumi | 68afcf2 | 2017-04-09 02:11:36 +0300 | [diff] [blame] | 370 | #define nat_in_journal(jnl, i) ((jnl)->nat_j.entries[i].ne) |
| 371 | #define nid_in_journal(jnl, i) ((jnl)->nat_j.entries[i].nid) |
| 372 | #define sit_in_journal(jnl, i) ((jnl)->sit_j.entries[i].se) |
| 373 | #define segno_in_journal(jnl, i) ((jnl)->sit_j.entries[i].segno) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 374 | |
Chao Yu | dfc08a1 | 2016-02-14 18:50:40 +0800 | [diff] [blame] | 375 | #define MAX_NAT_JENTRIES(jnl) (NAT_JOURNAL_ENTRIES - nats_in_cursum(jnl)) |
| 376 | #define MAX_SIT_JENTRIES(jnl) (SIT_JOURNAL_ENTRIES - sits_in_cursum(jnl)) |
Jaegeuk Kim | 309cc2b | 2014-09-22 11:40:48 -0700 | [diff] [blame] | 377 | |
Chao Yu | dfc08a1 | 2016-02-14 18:50:40 +0800 | [diff] [blame] | 378 | static inline int update_nats_in_cursum(struct f2fs_journal *journal, int i) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 379 | { |
Chao Yu | dfc08a1 | 2016-02-14 18:50:40 +0800 | [diff] [blame] | 380 | int before = nats_in_cursum(journal); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 381 | |
Chao Yu | dfc08a1 | 2016-02-14 18:50:40 +0800 | [diff] [blame] | 382 | journal->n_nats = cpu_to_le16(before + i); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 383 | return before; |
| 384 | } |
| 385 | |
Chao Yu | dfc08a1 | 2016-02-14 18:50:40 +0800 | [diff] [blame] | 386 | static inline int update_sits_in_cursum(struct f2fs_journal *journal, int i) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 387 | { |
Chao Yu | dfc08a1 | 2016-02-14 18:50:40 +0800 | [diff] [blame] | 388 | int before = sits_in_cursum(journal); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 389 | |
Chao Yu | dfc08a1 | 2016-02-14 18:50:40 +0800 | [diff] [blame] | 390 | journal->n_sits = cpu_to_le16(before + i); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 391 | return before; |
| 392 | } |
| 393 | |
Chao Yu | dfc08a1 | 2016-02-14 18:50:40 +0800 | [diff] [blame] | 394 | static inline bool __has_cursum_space(struct f2fs_journal *journal, |
| 395 | int size, int type) |
Chao Yu | 184a5cd | 2014-09-04 18:13:01 +0800 | [diff] [blame] | 396 | { |
| 397 | if (type == NAT_JOURNAL) |
Chao Yu | dfc08a1 | 2016-02-14 18:50:40 +0800 | [diff] [blame] | 398 | return size <= MAX_NAT_JENTRIES(journal); |
| 399 | return size <= MAX_SIT_JENTRIES(journal); |
Chao Yu | 184a5cd | 2014-09-04 18:13:01 +0800 | [diff] [blame] | 400 | } |
| 401 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 402 | /* |
Namjae Jeon | e975082 | 2013-02-04 23:41:41 +0900 | [diff] [blame] | 403 | * ioctl commands |
| 404 | */ |
Jaegeuk Kim | 88b88a6 | 2014-10-06 17:39:50 -0700 | [diff] [blame] | 405 | #define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS |
| 406 | #define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS |
Chao Yu | d49f3e8 | 2015-01-23 20:36:04 +0800 | [diff] [blame] | 407 | #define F2FS_IOC_GETVERSION FS_IOC_GETVERSION |
Jaegeuk Kim | 88b88a6 | 2014-10-06 17:39:50 -0700 | [diff] [blame] | 408 | |
| 409 | #define F2FS_IOCTL_MAGIC 0xf5 |
| 410 | #define F2FS_IOC_START_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 1) |
| 411 | #define F2FS_IOC_COMMIT_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 2) |
Jaegeuk Kim | 02a1335 | 2014-10-06 16:11:16 -0700 | [diff] [blame] | 412 | #define F2FS_IOC_START_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 3) |
Jaegeuk Kim | 1e84371 | 2014-12-09 06:08:59 -0800 | [diff] [blame] | 413 | #define F2FS_IOC_RELEASE_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 4) |
| 414 | #define F2FS_IOC_ABORT_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 5) |
Jaegeuk Kim | d07efb5 | 2017-04-18 13:47:25 -0700 | [diff] [blame] | 415 | #define F2FS_IOC_GARBAGE_COLLECT _IOW(F2FS_IOCTL_MAGIC, 6, __u32) |
Chao Yu | 456b88e | 2015-10-05 22:24:19 +0800 | [diff] [blame] | 416 | #define F2FS_IOC_WRITE_CHECKPOINT _IO(F2FS_IOCTL_MAGIC, 7) |
Jaegeuk Kim | d07efb5 | 2017-04-18 13:47:25 -0700 | [diff] [blame] | 417 | #define F2FS_IOC_DEFRAGMENT _IOWR(F2FS_IOCTL_MAGIC, 8, \ |
| 418 | struct f2fs_defragment) |
Jaegeuk Kim | 4dd6f97 | 2016-07-08 15:16:47 -0700 | [diff] [blame] | 419 | #define F2FS_IOC_MOVE_RANGE _IOWR(F2FS_IOCTL_MAGIC, 9, \ |
| 420 | struct f2fs_move_range) |
Jaegeuk Kim | e066b83 | 2017-04-13 15:17:00 -0700 | [diff] [blame] | 421 | #define F2FS_IOC_FLUSH_DEVICE _IOW(F2FS_IOCTL_MAGIC, 10, \ |
| 422 | struct f2fs_flush_device) |
Jaegeuk Kim | 34dc77a | 2017-06-15 16:44:42 -0700 | [diff] [blame] | 423 | #define F2FS_IOC_GARBAGE_COLLECT_RANGE _IOW(F2FS_IOCTL_MAGIC, 11, \ |
| 424 | struct f2fs_gc_range) |
Jaegeuk Kim | e65ef20 | 2017-07-21 12:58:59 -0700 | [diff] [blame] | 425 | #define F2FS_IOC_GET_FEATURES _IOR(F2FS_IOCTL_MAGIC, 12, __u32) |
Jaegeuk Kim | 1ad71a2 | 2017-12-07 16:25:39 -0800 | [diff] [blame] | 426 | #define F2FS_IOC_SET_PIN_FILE _IOW(F2FS_IOCTL_MAGIC, 13, __u32) |
| 427 | #define F2FS_IOC_GET_PIN_FILE _IOR(F2FS_IOCTL_MAGIC, 14, __u32) |
Chao Yu | c4020b2 | 2018-01-11 14:42:30 +0800 | [diff] [blame] | 428 | #define F2FS_IOC_PRECACHE_EXTENTS _IO(F2FS_IOCTL_MAGIC, 15) |
Qiuyang Sun | 04f0b2e | 2019-06-05 11:33:25 +0800 | [diff] [blame] | 429 | #define F2FS_IOC_RESIZE_FS _IOW(F2FS_IOCTL_MAGIC, 16, __u64) |
Chao Yu | 439dfb1 | 2020-02-21 18:09:21 +0800 | [diff] [blame] | 430 | #define F2FS_IOC_GET_COMPRESS_BLOCKS _IOR(F2FS_IOCTL_MAGIC, 17, __u64) |
Namjae Jeon | e975082 | 2013-02-04 23:41:41 +0900 | [diff] [blame] | 431 | |
Chao Yu | 4507847c | 2019-07-17 17:06:11 +0800 | [diff] [blame] | 432 | #define F2FS_IOC_GET_VOLUME_NAME FS_IOC_GETFSLABEL |
| 433 | #define F2FS_IOC_SET_VOLUME_NAME FS_IOC_SETFSLABEL |
| 434 | |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 435 | #define F2FS_IOC_SET_ENCRYPTION_POLICY FS_IOC_SET_ENCRYPTION_POLICY |
| 436 | #define F2FS_IOC_GET_ENCRYPTION_POLICY FS_IOC_GET_ENCRYPTION_POLICY |
| 437 | #define F2FS_IOC_GET_ENCRYPTION_PWSALT FS_IOC_GET_ENCRYPTION_PWSALT |
Jaegeuk Kim | f424f66 | 2015-04-20 15:19:06 -0700 | [diff] [blame] | 438 | |
Jaegeuk Kim | 1abff93 | 2015-01-08 19:15:53 -0800 | [diff] [blame] | 439 | /* |
| 440 | * should be same as XFS_IOC_GOINGDOWN. |
| 441 | * Flags for going down operation used by FS_IOC_GOINGDOWN |
| 442 | */ |
| 443 | #define F2FS_IOC_SHUTDOWN _IOR('X', 125, __u32) /* Shutdown */ |
| 444 | #define F2FS_GOING_DOWN_FULLSYNC 0x0 /* going down with full sync */ |
| 445 | #define F2FS_GOING_DOWN_METASYNC 0x1 /* going down with metadata */ |
| 446 | #define F2FS_GOING_DOWN_NOSYNC 0x2 /* going down */ |
Jaegeuk Kim | c912a82 | 2015-10-07 09:46:37 -0700 | [diff] [blame] | 447 | #define F2FS_GOING_DOWN_METAFLUSH 0x3 /* going down with meta flush */ |
Jaegeuk Kim | 0cd6d9b | 2018-11-28 13:26:03 -0800 | [diff] [blame] | 448 | #define F2FS_GOING_DOWN_NEED_FSCK 0x4 /* going down to trigger fsck */ |
Jaegeuk Kim | 1abff93 | 2015-01-08 19:15:53 -0800 | [diff] [blame] | 449 | |
Namjae Jeon | e975082 | 2013-02-04 23:41:41 +0900 | [diff] [blame] | 450 | #if defined(__KERNEL__) && defined(CONFIG_COMPAT) |
| 451 | /* |
| 452 | * ioctl commands in 32 bit emulation |
| 453 | */ |
Chao Yu | 04ef4b6 | 2015-11-10 18:44:20 +0800 | [diff] [blame] | 454 | #define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS |
| 455 | #define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS |
| 456 | #define F2FS_IOC32_GETVERSION FS_IOC32_GETVERSION |
Namjae Jeon | e975082 | 2013-02-04 23:41:41 +0900 | [diff] [blame] | 457 | #endif |
| 458 | |
Chao Yu | 2c1d030 | 2017-07-29 00:32:52 +0800 | [diff] [blame] | 459 | #define F2FS_IOC_FSGETXATTR FS_IOC_FSGETXATTR |
| 460 | #define F2FS_IOC_FSSETXATTR FS_IOC_FSSETXATTR |
| 461 | |
Jaegeuk Kim | 34dc77a | 2017-06-15 16:44:42 -0700 | [diff] [blame] | 462 | struct f2fs_gc_range { |
| 463 | u32 sync; |
| 464 | u64 start; |
| 465 | u64 len; |
| 466 | }; |
| 467 | |
Chao Yu | d323d00 | 2015-10-27 09:53:45 +0800 | [diff] [blame] | 468 | struct f2fs_defragment { |
| 469 | u64 start; |
| 470 | u64 len; |
| 471 | }; |
| 472 | |
Jaegeuk Kim | 4dd6f97 | 2016-07-08 15:16:47 -0700 | [diff] [blame] | 473 | struct f2fs_move_range { |
| 474 | u32 dst_fd; /* destination fd */ |
| 475 | u64 pos_in; /* start position in src_fd */ |
| 476 | u64 pos_out; /* start position in dst_fd */ |
| 477 | u64 len; /* size to move */ |
| 478 | }; |
| 479 | |
Jaegeuk Kim | e066b83 | 2017-04-13 15:17:00 -0700 | [diff] [blame] | 480 | struct f2fs_flush_device { |
| 481 | u32 dev_num; /* device number to flush */ |
| 482 | u32 segments; /* # of segments to flush */ |
| 483 | }; |
| 484 | |
Chao Yu | f247037 | 2017-07-19 00:19:05 +0800 | [diff] [blame] | 485 | /* for inline stuff */ |
| 486 | #define DEF_INLINE_RESERVED_SIZE 1 |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 487 | static inline int get_extra_isize(struct inode *inode); |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 488 | static inline int get_inline_xattr_addrs(struct inode *inode); |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 489 | #define MAX_INLINE_DATA(inode) (sizeof(__le32) * \ |
| 490 | (CUR_ADDRS_PER_INODE(inode) - \ |
Chao Yu | b323fd2 | 2018-01-17 16:31:36 +0800 | [diff] [blame] | 491 | get_inline_xattr_addrs(inode) - \ |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 492 | DEF_INLINE_RESERVED_SIZE)) |
Chao Yu | f247037 | 2017-07-19 00:19:05 +0800 | [diff] [blame] | 493 | |
| 494 | /* for inline dir */ |
| 495 | #define NR_INLINE_DENTRY(inode) (MAX_INLINE_DATA(inode) * BITS_PER_BYTE / \ |
| 496 | ((SIZE_OF_DIR_ENTRY + F2FS_SLOT_LEN) * \ |
| 497 | BITS_PER_BYTE + 1)) |
Geert Uytterhoeven | f91108b | 2019-06-20 16:42:08 +0200 | [diff] [blame] | 498 | #define INLINE_DENTRY_BITMAP_SIZE(inode) \ |
| 499 | DIV_ROUND_UP(NR_INLINE_DENTRY(inode), BITS_PER_BYTE) |
Chao Yu | f247037 | 2017-07-19 00:19:05 +0800 | [diff] [blame] | 500 | #define INLINE_RESERVED_SIZE(inode) (MAX_INLINE_DATA(inode) - \ |
| 501 | ((SIZE_OF_DIR_ENTRY + F2FS_SLOT_LEN) * \ |
| 502 | NR_INLINE_DENTRY(inode) + \ |
| 503 | INLINE_DENTRY_BITMAP_SIZE(inode))) |
| 504 | |
Namjae Jeon | e975082 | 2013-02-04 23:41:41 +0900 | [diff] [blame] | 505 | /* |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 506 | * For INODE and NODE manager |
| 507 | */ |
Jaegeuk Kim | 7b3cd7d | 2014-10-18 22:52:52 -0700 | [diff] [blame] | 508 | /* for directory operations */ |
| 509 | struct f2fs_dentry_ptr { |
Jaegeuk Kim | d8c6822 | 2015-04-27 16:26:24 -0700 | [diff] [blame] | 510 | struct inode *inode; |
Chao Yu | 76a9dd8 | 2017-07-16 15:08:54 +0800 | [diff] [blame] | 511 | void *bitmap; |
Jaegeuk Kim | 7b3cd7d | 2014-10-18 22:52:52 -0700 | [diff] [blame] | 512 | struct f2fs_dir_entry *dentry; |
| 513 | __u8 (*filename)[F2FS_SLOT_LEN]; |
| 514 | int max; |
Chao Yu | 76a9dd8 | 2017-07-16 15:08:54 +0800 | [diff] [blame] | 515 | int nr_bitmap; |
Jaegeuk Kim | 7b3cd7d | 2014-10-18 22:52:52 -0700 | [diff] [blame] | 516 | }; |
| 517 | |
Tomohiro Kusumi | 64c24ec | 2017-04-04 13:01:22 +0300 | [diff] [blame] | 518 | static inline void make_dentry_ptr_block(struct inode *inode, |
| 519 | struct f2fs_dentry_ptr *d, struct f2fs_dentry_block *t) |
Jaegeuk Kim | 7b3cd7d | 2014-10-18 22:52:52 -0700 | [diff] [blame] | 520 | { |
Jaegeuk Kim | d8c6822 | 2015-04-27 16:26:24 -0700 | [diff] [blame] | 521 | d->inode = inode; |
Tomohiro Kusumi | 64c24ec | 2017-04-04 13:01:22 +0300 | [diff] [blame] | 522 | d->max = NR_DENTRY_IN_BLOCK; |
Chao Yu | 76a9dd8 | 2017-07-16 15:08:54 +0800 | [diff] [blame] | 523 | d->nr_bitmap = SIZE_OF_DENTRY_BITMAP; |
Yunlong Song | c79d152 | 2018-04-02 20:22:20 +0800 | [diff] [blame] | 524 | d->bitmap = t->dentry_bitmap; |
Tomohiro Kusumi | 64c24ec | 2017-04-04 13:01:22 +0300 | [diff] [blame] | 525 | d->dentry = t->dentry; |
| 526 | d->filename = t->filename; |
| 527 | } |
Jaegeuk Kim | d8c6822 | 2015-04-27 16:26:24 -0700 | [diff] [blame] | 528 | |
Tomohiro Kusumi | 64c24ec | 2017-04-04 13:01:22 +0300 | [diff] [blame] | 529 | static inline void make_dentry_ptr_inline(struct inode *inode, |
Chao Yu | f247037 | 2017-07-19 00:19:05 +0800 | [diff] [blame] | 530 | struct f2fs_dentry_ptr *d, void *t) |
Tomohiro Kusumi | 64c24ec | 2017-04-04 13:01:22 +0300 | [diff] [blame] | 531 | { |
Chao Yu | f247037 | 2017-07-19 00:19:05 +0800 | [diff] [blame] | 532 | int entry_cnt = NR_INLINE_DENTRY(inode); |
| 533 | int bitmap_size = INLINE_DENTRY_BITMAP_SIZE(inode); |
| 534 | int reserved_size = INLINE_RESERVED_SIZE(inode); |
| 535 | |
Tomohiro Kusumi | 64c24ec | 2017-04-04 13:01:22 +0300 | [diff] [blame] | 536 | d->inode = inode; |
Chao Yu | f247037 | 2017-07-19 00:19:05 +0800 | [diff] [blame] | 537 | d->max = entry_cnt; |
| 538 | d->nr_bitmap = bitmap_size; |
| 539 | d->bitmap = t; |
| 540 | d->dentry = t + bitmap_size + reserved_size; |
| 541 | d->filename = t + bitmap_size + reserved_size + |
| 542 | SIZE_OF_DIR_ENTRY * entry_cnt; |
Jaegeuk Kim | 7b3cd7d | 2014-10-18 22:52:52 -0700 | [diff] [blame] | 543 | } |
| 544 | |
Jaegeuk Kim | dbe6a5f | 2013-08-09 08:14:06 +0900 | [diff] [blame] | 545 | /* |
| 546 | * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1 |
| 547 | * as its node offset to distinguish from index node blocks. |
| 548 | * But some bits are used to mark the node block. |
| 549 | */ |
| 550 | #define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \ |
| 551 | >> OFFSET_BIT_SHIFT) |
Jaegeuk Kim | 266e97a | 2013-02-26 13:10:46 +0900 | [diff] [blame] | 552 | enum { |
| 553 | ALLOC_NODE, /* allocate a new node page if needed */ |
| 554 | LOOKUP_NODE, /* look up a node without readahead */ |
| 555 | LOOKUP_NODE_RA, /* |
| 556 | * look up a node with readahead called |
Chao Yu | 4f4124d | 2013-12-21 18:02:14 +0800 | [diff] [blame] | 557 | * by get_data_block. |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 558 | */ |
Jaegeuk Kim | 266e97a | 2013-02-26 13:10:46 +0900 | [diff] [blame] | 559 | }; |
| 560 | |
Chao Yu | 7735730 | 2018-07-17 00:02:17 +0800 | [diff] [blame] | 561 | #define DEFAULT_RETRY_IO_COUNT 8 /* maximum retry read IO count */ |
| 562 | |
Chao Yu | 5df7731f | 2020-02-17 17:45:44 +0800 | [diff] [blame] | 563 | /* congestion wait timeout value, default: 20ms */ |
| 564 | #define DEFAULT_IO_TIMEOUT (msecs_to_jiffies(20)) |
| 565 | |
Chao Yu | af033b2 | 2018-09-20 20:05:00 +0800 | [diff] [blame] | 566 | /* maximum retry quota flush count */ |
| 567 | #define DEFAULT_RETRY_QUOTA_FLUSH_COUNT 8 |
| 568 | |
Jaegeuk Kim | a6db67f | 2015-08-10 15:01:12 -0700 | [diff] [blame] | 569 | #define F2FS_LINK_MAX 0xffffffff /* maximum link count per file */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 570 | |
Chao Yu | 817202d9 | 2014-04-28 17:59:43 +0800 | [diff] [blame] | 571 | #define MAX_DIR_RA_PAGES 4 /* maximum ra pages of dir */ |
| 572 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 573 | /* for in-memory extent cache entry */ |
Chao Yu | 13054c5 | 2015-02-05 17:52:58 +0800 | [diff] [blame] | 574 | #define F2FS_MIN_EXTENT_LEN 64 /* minimum extent length */ |
| 575 | |
| 576 | /* number of extent info in extent cache we try to shrink */ |
| 577 | #define EXTENT_CACHE_SHRINK_NUMBER 128 |
Jaegeuk Kim | c11abd1 | 2013-11-19 10:41:54 +0900 | [diff] [blame] | 578 | |
Chao Yu | 54c2258 | 2017-04-11 09:25:22 +0800 | [diff] [blame] | 579 | struct rb_entry { |
| 580 | struct rb_node rb_node; /* rb node located in rb-tree */ |
| 581 | unsigned int ofs; /* start offset of the entry */ |
| 582 | unsigned int len; /* length of the entry */ |
| 583 | }; |
| 584 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 585 | struct extent_info { |
Chao Yu | 13054c5 | 2015-02-05 17:52:58 +0800 | [diff] [blame] | 586 | unsigned int fofs; /* start offset in a file */ |
Chao Yu | 13054c5 | 2015-02-05 17:52:58 +0800 | [diff] [blame] | 587 | unsigned int len; /* length of the extent */ |
Chao Yu | 54c2258 | 2017-04-11 09:25:22 +0800 | [diff] [blame] | 588 | u32 blk; /* start block address of the extent */ |
Chao Yu | 13054c5 | 2015-02-05 17:52:58 +0800 | [diff] [blame] | 589 | }; |
| 590 | |
| 591 | struct extent_node { |
Chao Yu | c036211 | 2018-12-18 19:20:16 +0800 | [diff] [blame] | 592 | struct rb_node rb_node; /* rb node located in rb-tree */ |
| 593 | struct extent_info ei; /* extent info */ |
Chao Yu | 13054c5 | 2015-02-05 17:52:58 +0800 | [diff] [blame] | 594 | struct list_head list; /* node in global extent list of sbi */ |
Hou Pengyang | 201ef5e | 2016-01-26 12:56:26 +0000 | [diff] [blame] | 595 | struct extent_tree *et; /* extent tree pointer */ |
Chao Yu | 13054c5 | 2015-02-05 17:52:58 +0800 | [diff] [blame] | 596 | }; |
| 597 | |
| 598 | struct extent_tree { |
| 599 | nid_t ino; /* inode number */ |
Chao Yu | 4dada3f | 2018-10-04 11:18:30 +0800 | [diff] [blame] | 600 | struct rb_root_cached root; /* root of extent info rb-tree */ |
Chao Yu | 62c8af6 | 2015-02-05 18:01:39 +0800 | [diff] [blame] | 601 | struct extent_node *cached_en; /* recently accessed extent node */ |
Jaegeuk Kim | 3e72f72 | 2015-06-19 17:53:26 -0700 | [diff] [blame] | 602 | struct extent_info largest; /* largested extent info */ |
Jaegeuk Kim | 137d09f | 2015-12-31 15:02:16 -0800 | [diff] [blame] | 603 | struct list_head list; /* to be used by sbi->zombie_list */ |
Chao Yu | 13054c5 | 2015-02-05 17:52:58 +0800 | [diff] [blame] | 604 | rwlock_t lock; /* protect extent info rb-tree */ |
Chao Yu | 68e3538 | 2016-01-08 20:22:52 +0800 | [diff] [blame] | 605 | atomic_t node_cnt; /* # of extent node in rb-tree*/ |
Zhikang Zhang | b430f72 | 2018-09-10 16:18:25 +0800 | [diff] [blame] | 606 | bool largest_updated; /* largest extent updated */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 607 | }; |
| 608 | |
| 609 | /* |
Jaegeuk Kim | 003a3e1 | 2015-04-06 19:55:34 -0700 | [diff] [blame] | 610 | * This structure is taken from ext4_map_blocks. |
| 611 | * |
| 612 | * Note that, however, f2fs uses NEW and MAPPED flags for f2fs_map_blocks(). |
| 613 | */ |
| 614 | #define F2FS_MAP_NEW (1 << BH_New) |
| 615 | #define F2FS_MAP_MAPPED (1 << BH_Mapped) |
Jaegeuk Kim | 7f63eb7 | 2015-05-08 19:30:32 -0700 | [diff] [blame] | 616 | #define F2FS_MAP_UNWRITTEN (1 << BH_Unwritten) |
| 617 | #define F2FS_MAP_FLAGS (F2FS_MAP_NEW | F2FS_MAP_MAPPED |\ |
| 618 | F2FS_MAP_UNWRITTEN) |
Jaegeuk Kim | 003a3e1 | 2015-04-06 19:55:34 -0700 | [diff] [blame] | 619 | |
| 620 | struct f2fs_map_blocks { |
| 621 | block_t m_pblk; |
| 622 | block_t m_lblk; |
| 623 | unsigned int m_len; |
| 624 | unsigned int m_flags; |
Chao Yu | da85985 | 2016-01-26 15:42:58 +0800 | [diff] [blame] | 625 | pgoff_t *m_next_pgofs; /* point next possible non-hole pgofs */ |
Chao Yu | c4020b2 | 2018-01-11 14:42:30 +0800 | [diff] [blame] | 626 | pgoff_t *m_next_extent; /* point to next possible extent */ |
Hyunchul Lee | d5097be | 2017-11-28 09:23:00 +0900 | [diff] [blame] | 627 | int m_seg_type; |
Chao Yu | f9d6d05 | 2018-11-13 14:33:45 +0800 | [diff] [blame] | 628 | bool m_may_create; /* indicate it is from write path */ |
Jaegeuk Kim | 003a3e1 | 2015-04-06 19:55:34 -0700 | [diff] [blame] | 629 | }; |
| 630 | |
Chao Yu | e2b4e2b | 2015-08-19 19:11:19 +0800 | [diff] [blame] | 631 | /* for flag in get_data_block */ |
Qiuyang Sun | f2220c7 | 2017-08-09 17:27:30 +0800 | [diff] [blame] | 632 | enum { |
| 633 | F2FS_GET_BLOCK_DEFAULT, |
| 634 | F2FS_GET_BLOCK_FIEMAP, |
| 635 | F2FS_GET_BLOCK_BMAP, |
Jaegeuk Kim | 0a4daae | 2018-09-19 15:28:40 -0700 | [diff] [blame] | 636 | F2FS_GET_BLOCK_DIO, |
Qiuyang Sun | f2220c7 | 2017-08-09 17:27:30 +0800 | [diff] [blame] | 637 | F2FS_GET_BLOCK_PRE_DIO, |
| 638 | F2FS_GET_BLOCK_PRE_AIO, |
Chao Yu | c4020b2 | 2018-01-11 14:42:30 +0800 | [diff] [blame] | 639 | F2FS_GET_BLOCK_PRECACHE, |
Qiuyang Sun | f2220c7 | 2017-08-09 17:27:30 +0800 | [diff] [blame] | 640 | }; |
Chao Yu | e2b4e2b | 2015-08-19 19:11:19 +0800 | [diff] [blame] | 641 | |
Jaegeuk Kim | 003a3e1 | 2015-04-06 19:55:34 -0700 | [diff] [blame] | 642 | /* |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 643 | * i_advise uses FADVISE_XXX_BIT. We can add additional hints later. |
| 644 | */ |
| 645 | #define FADVISE_COLD_BIT 0x01 |
Jaegeuk Kim | 354a339 | 2013-06-14 08:52:35 +0900 | [diff] [blame] | 646 | #define FADVISE_LOST_PINO_BIT 0x02 |
Jaegeuk Kim | cde4de1 | 2015-04-20 13:57:51 -0700 | [diff] [blame] | 647 | #define FADVISE_ENCRYPT_BIT 0x04 |
Jaegeuk Kim | e7d5545 | 2015-04-29 17:02:18 -0700 | [diff] [blame] | 648 | #define FADVISE_ENC_NAME_BIT 0x08 |
Jaegeuk Kim | 2678723 | 2016-11-28 15:33:38 -0800 | [diff] [blame] | 649 | #define FADVISE_KEEP_SIZE_BIT 0x10 |
Chao Yu | b6a06cb | 2018-02-28 17:07:27 +0800 | [diff] [blame] | 650 | #define FADVISE_HOT_BIT 0x20 |
Eric Biggers | 95ae251 | 2019-07-22 09:26:24 -0700 | [diff] [blame] | 651 | #define FADVISE_VERITY_BIT 0x40 |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 652 | |
Chao Yu | 797c1cb | 2018-07-19 23:57:54 +0800 | [diff] [blame] | 653 | #define FADVISE_MODIFIABLE_BITS (FADVISE_COLD_BIT | FADVISE_HOT_BIT) |
| 654 | |
Jaegeuk Kim | b5492af | 2015-04-20 13:44:41 -0700 | [diff] [blame] | 655 | #define file_is_cold(inode) is_file(inode, FADVISE_COLD_BIT) |
| 656 | #define file_wrong_pino(inode) is_file(inode, FADVISE_LOST_PINO_BIT) |
| 657 | #define file_set_cold(inode) set_file(inode, FADVISE_COLD_BIT) |
| 658 | #define file_lost_pino(inode) set_file(inode, FADVISE_LOST_PINO_BIT) |
| 659 | #define file_clear_cold(inode) clear_file(inode, FADVISE_COLD_BIT) |
| 660 | #define file_got_pino(inode) clear_file(inode, FADVISE_LOST_PINO_BIT) |
Jaegeuk Kim | cde4de1 | 2015-04-20 13:57:51 -0700 | [diff] [blame] | 661 | #define file_is_encrypt(inode) is_file(inode, FADVISE_ENCRYPT_BIT) |
| 662 | #define file_set_encrypt(inode) set_file(inode, FADVISE_ENCRYPT_BIT) |
| 663 | #define file_clear_encrypt(inode) clear_file(inode, FADVISE_ENCRYPT_BIT) |
Jaegeuk Kim | e7d5545 | 2015-04-29 17:02:18 -0700 | [diff] [blame] | 664 | #define file_enc_name(inode) is_file(inode, FADVISE_ENC_NAME_BIT) |
| 665 | #define file_set_enc_name(inode) set_file(inode, FADVISE_ENC_NAME_BIT) |
Jaegeuk Kim | 2678723 | 2016-11-28 15:33:38 -0800 | [diff] [blame] | 666 | #define file_keep_isize(inode) is_file(inode, FADVISE_KEEP_SIZE_BIT) |
| 667 | #define file_set_keep_isize(inode) set_file(inode, FADVISE_KEEP_SIZE_BIT) |
Chao Yu | b6a06cb | 2018-02-28 17:07:27 +0800 | [diff] [blame] | 668 | #define file_is_hot(inode) is_file(inode, FADVISE_HOT_BIT) |
| 669 | #define file_set_hot(inode) set_file(inode, FADVISE_HOT_BIT) |
| 670 | #define file_clear_hot(inode) clear_file(inode, FADVISE_HOT_BIT) |
Eric Biggers | 95ae251 | 2019-07-22 09:26:24 -0700 | [diff] [blame] | 671 | #define file_is_verity(inode) is_file(inode, FADVISE_VERITY_BIT) |
| 672 | #define file_set_verity(inode) set_file(inode, FADVISE_VERITY_BIT) |
Jaegeuk Kim | cde4de1 | 2015-04-20 13:57:51 -0700 | [diff] [blame] | 673 | |
Jaegeuk Kim | ab9fa66 | 2014-02-27 20:09:05 +0900 | [diff] [blame] | 674 | #define DEF_DIR_LEVEL 0 |
| 675 | |
Chao Yu | 2ef79ec | 2018-05-07 20:28:54 +0800 | [diff] [blame] | 676 | enum { |
| 677 | GC_FAILURE_PIN, |
| 678 | GC_FAILURE_ATOMIC, |
| 679 | MAX_GC_FAILURE |
| 680 | }; |
| 681 | |
Chao Yu | 7653b9d | 2020-03-23 11:18:07 +0800 | [diff] [blame] | 682 | /* used for f2fs_inode_info->flags */ |
| 683 | enum { |
| 684 | FI_NEW_INODE, /* indicate newly allocated inode */ |
| 685 | FI_DIRTY_INODE, /* indicate inode is dirty or not */ |
| 686 | FI_AUTO_RECOVER, /* indicate inode is recoverable */ |
| 687 | FI_DIRTY_DIR, /* indicate directory has dirty pages */ |
| 688 | FI_INC_LINK, /* need to increment i_nlink */ |
| 689 | FI_ACL_MODE, /* indicate acl mode */ |
| 690 | FI_NO_ALLOC, /* should not allocate any blocks */ |
| 691 | FI_FREE_NID, /* free allocated nide */ |
| 692 | FI_NO_EXTENT, /* not to use the extent cache */ |
| 693 | FI_INLINE_XATTR, /* used for inline xattr */ |
| 694 | FI_INLINE_DATA, /* used for inline data*/ |
| 695 | FI_INLINE_DENTRY, /* used for inline dentry */ |
| 696 | FI_APPEND_WRITE, /* inode has appended data */ |
| 697 | FI_UPDATE_WRITE, /* inode has in-place-update data */ |
| 698 | FI_NEED_IPU, /* used for ipu per file */ |
| 699 | FI_ATOMIC_FILE, /* indicate atomic file */ |
| 700 | FI_ATOMIC_COMMIT, /* indicate the state of atomical committing */ |
| 701 | FI_VOLATILE_FILE, /* indicate volatile file */ |
| 702 | FI_FIRST_BLOCK_WRITTEN, /* indicate #0 data block was written */ |
| 703 | FI_DROP_CACHE, /* drop dirty page cache */ |
| 704 | FI_DATA_EXIST, /* indicate data exists */ |
| 705 | FI_INLINE_DOTS, /* indicate inline dot dentries */ |
| 706 | FI_DO_DEFRAG, /* indicate defragment is running */ |
| 707 | FI_DIRTY_FILE, /* indicate regular/symlink has dirty pages */ |
| 708 | FI_NO_PREALLOC, /* indicate skipped preallocated blocks */ |
| 709 | FI_HOT_DATA, /* indicate file is hot */ |
| 710 | FI_EXTRA_ATTR, /* indicate file has extra attribute */ |
| 711 | FI_PROJ_INHERIT, /* indicate file inherits projectid */ |
| 712 | FI_PIN_FILE, /* indicate file should not be gced */ |
| 713 | FI_ATOMIC_REVOKE_REQUEST, /* request to drop atomic data */ |
| 714 | FI_VERITY_IN_PROGRESS, /* building fs-verity Merkle tree */ |
| 715 | FI_COMPRESSED_FILE, /* indicate file's data can be compressed */ |
| 716 | FI_MMAP_FILE, /* indicate file was mmapped */ |
| 717 | FI_MAX, /* max flag, never be used */ |
| 718 | }; |
| 719 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 720 | struct f2fs_inode_info { |
| 721 | struct inode vfs_inode; /* serve a vfs inode */ |
| 722 | unsigned long i_flags; /* keep an inode flags for ioctl */ |
| 723 | unsigned char i_advise; /* use to give file attribute hints */ |
Jaegeuk Kim | 3843154 | 2014-02-27 18:20:00 +0900 | [diff] [blame] | 724 | unsigned char i_dir_level; /* use for dentry level for large dir */ |
Chao Yu | 2ef79ec | 2018-05-07 20:28:54 +0800 | [diff] [blame] | 725 | unsigned int i_current_depth; /* only for directory depth */ |
| 726 | /* for gc failure statistic */ |
| 727 | unsigned int i_gc_failures[MAX_GC_FAILURE]; |
Jaegeuk Kim | 6666e6a | 2012-12-10 17:52:48 +0900 | [diff] [blame] | 728 | unsigned int i_pino; /* parent inode number */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 729 | umode_t i_acl_mode; /* keep file acl mode temporarily */ |
| 730 | |
| 731 | /* Use below internally in f2fs*/ |
Chao Yu | 7653b9d | 2020-03-23 11:18:07 +0800 | [diff] [blame] | 732 | unsigned long flags[BITS_TO_LONGS(FI_MAX)]; /* use to pass per-file flags */ |
Jaegeuk Kim | d928bfb | 2014-03-20 19:10:08 +0900 | [diff] [blame] | 733 | struct rw_semaphore i_sem; /* protect fi info */ |
Jaegeuk Kim | 204706c | 2016-12-02 15:11:32 -0800 | [diff] [blame] | 734 | atomic_t dirty_pages; /* # of dirty pages */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 735 | f2fs_hash_t chash; /* hash value of given file name */ |
| 736 | unsigned int clevel; /* maximum level of given file name */ |
Jaegeuk Kim | 88c5c13 | 2017-02-14 09:54:37 -0800 | [diff] [blame] | 737 | struct task_struct *task; /* lookup and create consistency */ |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 738 | struct task_struct *cp_task; /* separate cp/wb IO stats*/ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 739 | nid_t i_xattr_nid; /* node id that contains xattrs */ |
Jaegeuk Kim | 26de9b1 | 2016-05-20 20:42:37 -0700 | [diff] [blame] | 740 | loff_t last_disk_size; /* lastly written file size */ |
Chao Yu | c10c982 | 2020-02-27 19:30:03 +0800 | [diff] [blame] | 741 | spinlock_t i_size_lock; /* protect last_disk_size */ |
Jaegeuk Kim | 88b88a6 | 2014-10-06 17:39:50 -0700 | [diff] [blame] | 742 | |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 743 | #ifdef CONFIG_QUOTA |
| 744 | struct dquot *i_dquot[MAXQUOTAS]; |
| 745 | |
| 746 | /* quota space reservation, managed internally by quota code */ |
| 747 | qsize_t i_reserved_quota; |
| 748 | #endif |
Jaegeuk Kim | 0f18b46 | 2016-05-20 11:10:10 -0700 | [diff] [blame] | 749 | struct list_head dirty_list; /* dirty list for dirs and files */ |
| 750 | struct list_head gdirty_list; /* linked in global dirty list */ |
Jaegeuk Kim | 57864ae | 2017-10-18 19:05:57 -0700 | [diff] [blame] | 751 | struct list_head inmem_ilist; /* list for inmem inodes */ |
Jaegeuk Kim | 88b88a6 | 2014-10-06 17:39:50 -0700 | [diff] [blame] | 752 | struct list_head inmem_pages; /* inmemory pages managed by f2fs */ |
Jaegeuk Kim | 7a10f01 | 2017-07-24 19:46:29 -0700 | [diff] [blame] | 753 | struct task_struct *inmem_task; /* store inmemory task */ |
Jaegeuk Kim | 88b88a6 | 2014-10-06 17:39:50 -0700 | [diff] [blame] | 754 | struct mutex inmem_lock; /* lock for inmemory pages */ |
Jaegeuk Kim | 3e72f72 | 2015-06-19 17:53:26 -0700 | [diff] [blame] | 755 | struct extent_tree *extent_tree; /* cached extent_tree entry */ |
Chao Yu | b2532c6 | 2018-04-24 10:55:28 +0800 | [diff] [blame] | 756 | |
| 757 | /* avoid racing between foreground op and gc */ |
| 758 | struct rw_semaphore i_gc_rwsem[2]; |
Qiuyang Sun | 5a3a2d8 | 2017-05-18 11:06:45 +0800 | [diff] [blame] | 759 | struct rw_semaphore i_mmap_sem; |
Yunlei He | 27161f1 | 2017-09-07 10:40:54 +0800 | [diff] [blame] | 760 | struct rw_semaphore i_xattr_sem; /* avoid racing between reading and changing EAs */ |
Chao Yu | f247037 | 2017-07-19 00:19:05 +0800 | [diff] [blame] | 761 | |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 762 | int i_extra_isize; /* size of extra space located in i_addr */ |
Chao Yu | 5c57132 | 2017-07-26 00:01:41 +0800 | [diff] [blame] | 763 | kprojid_t i_projid; /* id for project quota */ |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 764 | int i_inline_xattr_size; /* inline xattr size */ |
Arnd Bergmann | 24b81df | 2018-06-20 10:02:19 +0200 | [diff] [blame] | 765 | struct timespec64 i_crtime; /* inode creation time */ |
| 766 | struct timespec64 i_disk_time[4];/* inode disk times */ |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 767 | |
| 768 | /* for file compress */ |
| 769 | u64 i_compr_blocks; /* # of compressed blocks */ |
| 770 | unsigned char i_compress_algorithm; /* algorithm type */ |
| 771 | unsigned char i_log_cluster_size; /* log of cluster size */ |
| 772 | unsigned int i_cluster_size; /* cluster size */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 773 | }; |
| 774 | |
| 775 | static inline void get_extent_info(struct extent_info *ext, |
Chao Yu | bd933d4 | 2016-05-04 23:19:47 +0800 | [diff] [blame] | 776 | struct f2fs_extent *i_ext) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 777 | { |
Chao Yu | bd933d4 | 2016-05-04 23:19:47 +0800 | [diff] [blame] | 778 | ext->fofs = le32_to_cpu(i_ext->fofs); |
| 779 | ext->blk = le32_to_cpu(i_ext->blk); |
| 780 | ext->len = le32_to_cpu(i_ext->len); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 781 | } |
| 782 | |
| 783 | static inline void set_raw_extent(struct extent_info *ext, |
| 784 | struct f2fs_extent *i_ext) |
| 785 | { |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 786 | i_ext->fofs = cpu_to_le32(ext->fofs); |
Chao Yu | 4d0b0bd | 2015-02-05 17:47:25 +0800 | [diff] [blame] | 787 | i_ext->blk = cpu_to_le32(ext->blk); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 788 | i_ext->len = cpu_to_le32(ext->len); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 789 | } |
| 790 | |
Chao Yu | 429511c | 2015-02-05 17:54:31 +0800 | [diff] [blame] | 791 | static inline void set_extent_info(struct extent_info *ei, unsigned int fofs, |
| 792 | u32 blk, unsigned int len) |
| 793 | { |
| 794 | ei->fofs = fofs; |
| 795 | ei->blk = blk; |
| 796 | ei->len = len; |
| 797 | } |
| 798 | |
Chao Yu | 004b686 | 2017-04-14 23:24:55 +0800 | [diff] [blame] | 799 | static inline bool __is_discard_mergeable(struct discard_info *back, |
Chao Yu | 35ec7d5 | 2018-08-06 22:43:50 +0800 | [diff] [blame] | 800 | struct discard_info *front, unsigned int max_len) |
Chao Yu | 004b686 | 2017-04-14 23:24:55 +0800 | [diff] [blame] | 801 | { |
Jaegeuk Kim | 9a99718 | 2018-05-24 13:57:26 -0700 | [diff] [blame] | 802 | return (back->lstart + back->len == front->lstart) && |
Chao Yu | 35ec7d5 | 2018-08-06 22:43:50 +0800 | [diff] [blame] | 803 | (back->len + front->len <= max_len); |
Chao Yu | 004b686 | 2017-04-14 23:24:55 +0800 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | static inline bool __is_discard_back_mergeable(struct discard_info *cur, |
Chao Yu | 35ec7d5 | 2018-08-06 22:43:50 +0800 | [diff] [blame] | 807 | struct discard_info *back, unsigned int max_len) |
Chao Yu | 004b686 | 2017-04-14 23:24:55 +0800 | [diff] [blame] | 808 | { |
Chao Yu | 35ec7d5 | 2018-08-06 22:43:50 +0800 | [diff] [blame] | 809 | return __is_discard_mergeable(back, cur, max_len); |
Chao Yu | 004b686 | 2017-04-14 23:24:55 +0800 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | static inline bool __is_discard_front_mergeable(struct discard_info *cur, |
Chao Yu | 35ec7d5 | 2018-08-06 22:43:50 +0800 | [diff] [blame] | 813 | struct discard_info *front, unsigned int max_len) |
Chao Yu | 004b686 | 2017-04-14 23:24:55 +0800 | [diff] [blame] | 814 | { |
Chao Yu | 35ec7d5 | 2018-08-06 22:43:50 +0800 | [diff] [blame] | 815 | return __is_discard_mergeable(cur, front, max_len); |
Chao Yu | 004b686 | 2017-04-14 23:24:55 +0800 | [diff] [blame] | 816 | } |
| 817 | |
Chao Yu | 429511c | 2015-02-05 17:54:31 +0800 | [diff] [blame] | 818 | static inline bool __is_extent_mergeable(struct extent_info *back, |
| 819 | struct extent_info *front) |
| 820 | { |
| 821 | return (back->fofs + back->len == front->fofs && |
| 822 | back->blk + back->len == front->blk); |
| 823 | } |
| 824 | |
| 825 | static inline bool __is_back_mergeable(struct extent_info *cur, |
| 826 | struct extent_info *back) |
| 827 | { |
| 828 | return __is_extent_mergeable(back, cur); |
| 829 | } |
| 830 | |
| 831 | static inline bool __is_front_mergeable(struct extent_info *cur, |
| 832 | struct extent_info *front) |
| 833 | { |
| 834 | return __is_extent_mergeable(cur, front); |
| 835 | } |
| 836 | |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 837 | extern void f2fs_mark_inode_dirty_sync(struct inode *inode, bool sync); |
Zhikang Zhang | b430f72 | 2018-09-10 16:18:25 +0800 | [diff] [blame] | 838 | static inline void __try_update_largest_extent(struct extent_tree *et, |
| 839 | struct extent_node *en) |
Chao Yu | 4abd3f5 | 2015-09-22 21:07:47 +0800 | [diff] [blame] | 840 | { |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 841 | if (en->ei.len > et->largest.len) { |
Chao Yu | 4abd3f5 | 2015-09-22 21:07:47 +0800 | [diff] [blame] | 842 | et->largest = en->ei; |
Zhikang Zhang | b430f72 | 2018-09-10 16:18:25 +0800 | [diff] [blame] | 843 | et->largest_updated = true; |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 844 | } |
Chao Yu | 4abd3f5 | 2015-09-22 21:07:47 +0800 | [diff] [blame] | 845 | } |
| 846 | |
Chao Yu | 9a4ffdf | 2017-09-29 13:59:35 +0800 | [diff] [blame] | 847 | /* |
| 848 | * For free nid management |
| 849 | */ |
| 850 | enum nid_state { |
| 851 | FREE_NID, /* newly added to free nid list */ |
| 852 | PREALLOC_NID, /* it is preallocated */ |
| 853 | MAX_NID_STATE, |
Chao Yu | b8559dc | 2016-10-12 19:28:29 +0800 | [diff] [blame] | 854 | }; |
| 855 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 856 | struct f2fs_nm_info { |
| 857 | block_t nat_blkaddr; /* base disk address of NAT */ |
| 858 | nid_t max_nid; /* maximum possible node ids */ |
Chao Yu | 04d47e6 | 2016-11-17 20:53:11 +0800 | [diff] [blame] | 859 | nid_t available_nids; /* # of available node ids */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 860 | nid_t next_scan_nid; /* the next nid to be scanned */ |
Jaegeuk Kim | cdfc41c | 2014-03-19 13:31:37 +0900 | [diff] [blame] | 861 | unsigned int ram_thresh; /* control the memory footprint */ |
Chao Yu | ea1a29a0 | 2015-10-12 17:08:48 +0800 | [diff] [blame] | 862 | unsigned int ra_nid_pages; /* # of nid pages to be readaheaded */ |
Chao Yu | 2304cb0 | 2016-01-18 18:32:58 +0800 | [diff] [blame] | 863 | unsigned int dirty_nats_ratio; /* control dirty nats ratio threshold */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 864 | |
| 865 | /* NAT cache management */ |
| 866 | struct radix_tree_root nat_root;/* root of the nat entry cache */ |
Jaegeuk Kim | 309cc2b | 2014-09-22 11:40:48 -0700 | [diff] [blame] | 867 | struct radix_tree_root nat_set_root;/* root of the nat set cache */ |
Jaegeuk Kim | b873b79 | 2016-08-04 11:38:25 -0700 | [diff] [blame] | 868 | struct rw_semaphore nat_tree_lock; /* protect nat_tree_lock */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 869 | struct list_head nat_entries; /* cached nat entry list (clean) */ |
Chao Yu | 2296915 | 2018-08-05 23:08:59 +0800 | [diff] [blame] | 870 | spinlock_t nat_list_lock; /* protect clean nat entry list */ |
Jaegeuk Kim | 309cc2b | 2014-09-22 11:40:48 -0700 | [diff] [blame] | 871 | unsigned int nat_cnt; /* the # of cached nat entries */ |
Chao Yu | aec7138 | 2014-06-24 09:18:20 +0800 | [diff] [blame] | 872 | unsigned int dirty_nat_cnt; /* total num of nat entries in set */ |
Jaegeuk Kim | 22ad0b6 | 2017-02-09 10:38:09 -0800 | [diff] [blame] | 873 | unsigned int nat_blocks; /* # of nat blocks */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 874 | |
| 875 | /* free node ids management */ |
Jaegeuk Kim | 8a7ed66 | 2014-02-21 14:29:35 +0900 | [diff] [blame] | 876 | struct radix_tree_root free_nid_root;/* root of the free_nid cache */ |
Chao Yu | 9a4ffdf | 2017-09-29 13:59:35 +0800 | [diff] [blame] | 877 | struct list_head free_nid_list; /* list for free nids excluding preallocated nids */ |
| 878 | unsigned int nid_cnt[MAX_NID_STATE]; /* the number of free node id */ |
Chao Yu | b8559dc | 2016-10-12 19:28:29 +0800 | [diff] [blame] | 879 | spinlock_t nid_list_lock; /* protect nid lists ops */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 880 | struct mutex build_lock; /* lock for build free nids */ |
Jaegeuk Kim | bb1105e | 2018-03-09 17:42:28 -0800 | [diff] [blame] | 881 | unsigned char **free_nid_bitmap; |
Chao Yu | 4ac9124 | 2017-02-23 10:53:49 +0800 | [diff] [blame] | 882 | unsigned char *nat_block_bitmap; |
Chao Yu | 586d149 | 2017-03-01 17:09:07 +0800 | [diff] [blame] | 883 | unsigned short *free_nid_count; /* free nid count of NAT block */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 884 | |
| 885 | /* for checkpoint */ |
| 886 | char *nat_bitmap; /* NAT bitmap pointer */ |
Jaegeuk Kim | 22ad0b6 | 2017-02-09 10:38:09 -0800 | [diff] [blame] | 887 | |
| 888 | unsigned int nat_bits_blocks; /* # of nat bits blocks */ |
| 889 | unsigned char *nat_bits; /* NAT bits blocks */ |
| 890 | unsigned char *full_nat_bits; /* full NAT pages */ |
| 891 | unsigned char *empty_nat_bits; /* empty NAT pages */ |
Chao Yu | 599a09b | 2017-01-07 18:52:01 +0800 | [diff] [blame] | 892 | #ifdef CONFIG_F2FS_CHECK_FS |
| 893 | char *nat_bitmap_mir; /* NAT bitmap mirror */ |
| 894 | #endif |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 895 | int bitmap_size; /* bitmap size */ |
| 896 | }; |
| 897 | |
| 898 | /* |
| 899 | * this structure is used as one of function parameters. |
| 900 | * all the information are dedicated to a given direct node block determined |
| 901 | * by the data offset in a file. |
| 902 | */ |
| 903 | struct dnode_of_data { |
| 904 | struct inode *inode; /* vfs inode pointer */ |
| 905 | struct page *inode_page; /* its inode page, NULL is possible */ |
| 906 | struct page *node_page; /* cached direct node page */ |
| 907 | nid_t nid; /* node id of the direct node block */ |
| 908 | unsigned int ofs_in_node; /* data offset in the node page */ |
| 909 | bool inode_page_locked; /* inode page is locked or not */ |
Jaegeuk Kim | 93bae09 | 2015-12-22 12:59:54 -0800 | [diff] [blame] | 910 | bool node_changed; /* is node block changed */ |
Chao Yu | 3cf4574 | 2016-01-26 15:40:44 +0800 | [diff] [blame] | 911 | char cur_level; /* level of hole node page */ |
| 912 | char max_level; /* level of current page located */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 913 | block_t data_blkaddr; /* block address of the node block */ |
| 914 | }; |
| 915 | |
| 916 | static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode, |
| 917 | struct page *ipage, struct page *npage, nid_t nid) |
| 918 | { |
Jaegeuk Kim | d66d1f7 | 2013-01-03 08:57:21 +0900 | [diff] [blame] | 919 | memset(dn, 0, sizeof(*dn)); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 920 | dn->inode = inode; |
| 921 | dn->inode_page = ipage; |
| 922 | dn->node_page = npage; |
| 923 | dn->nid = nid; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 924 | } |
| 925 | |
| 926 | /* |
| 927 | * For SIT manager |
| 928 | * |
| 929 | * By default, there are 6 active log areas across the whole main area. |
| 930 | * When considering hot and cold data separation to reduce cleaning overhead, |
| 931 | * we split 3 for data logs and 3 for node logs as hot, warm, and cold types, |
| 932 | * respectively. |
| 933 | * In the current design, you should not change the numbers intentionally. |
| 934 | * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6 |
| 935 | * logs individually according to the underlying devices. (default: 6) |
| 936 | * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for |
| 937 | * data and 8 for node logs. |
| 938 | */ |
| 939 | #define NR_CURSEG_DATA_TYPE (3) |
| 940 | #define NR_CURSEG_NODE_TYPE (3) |
| 941 | #define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE) |
| 942 | |
| 943 | enum { |
| 944 | CURSEG_HOT_DATA = 0, /* directory entry blocks */ |
| 945 | CURSEG_WARM_DATA, /* data blocks */ |
| 946 | CURSEG_COLD_DATA, /* multimedia or GCed data blocks */ |
| 947 | CURSEG_HOT_NODE, /* direct node blocks of directory files */ |
| 948 | CURSEG_WARM_NODE, /* direct node blocks of normal files */ |
| 949 | CURSEG_COLD_NODE, /* indirect node blocks */ |
Jaegeuk Kim | 38aa088 | 2015-01-05 16:02:20 -0800 | [diff] [blame] | 950 | NO_CHECK_TYPE, |
Jaegeuk Kim | f5a53ed | 2019-10-18 10:06:40 -0700 | [diff] [blame] | 951 | CURSEG_COLD_DATA_PINNED,/* cold data for pinned file */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 952 | }; |
| 953 | |
Jaegeuk Kim | 6b4afdd | 2014-04-02 15:34:36 +0900 | [diff] [blame] | 954 | struct flush_cmd { |
Jaegeuk Kim | 6b4afdd | 2014-04-02 15:34:36 +0900 | [diff] [blame] | 955 | struct completion wait; |
Gu Zheng | 721bd4d | 2014-09-05 18:31:00 +0800 | [diff] [blame] | 956 | struct llist_node llnode; |
Chao Yu | 39d787b | 2017-09-29 13:59:38 +0800 | [diff] [blame] | 957 | nid_t ino; |
Jaegeuk Kim | 6b4afdd | 2014-04-02 15:34:36 +0900 | [diff] [blame] | 958 | int ret; |
| 959 | }; |
| 960 | |
Gu Zheng | a688b9d9e | 2014-04-27 14:21:21 +0800 | [diff] [blame] | 961 | struct flush_cmd_control { |
| 962 | struct task_struct *f2fs_issue_flush; /* flush thread */ |
| 963 | wait_queue_head_t flush_wait_queue; /* waiting queue for wake-up */ |
Chao Yu | 8b8dd65 | 2017-03-25 17:19:58 +0800 | [diff] [blame] | 964 | atomic_t issued_flush; /* # of issued flushes */ |
Jaegeuk Kim | 72691af | 2018-12-13 16:53:57 -0800 | [diff] [blame] | 965 | atomic_t queued_flush; /* # of queued flushes */ |
Gu Zheng | 721bd4d | 2014-09-05 18:31:00 +0800 | [diff] [blame] | 966 | struct llist_head issue_list; /* list for command issue */ |
| 967 | struct llist_node *dispatch_list; /* list for command dispatch */ |
Gu Zheng | a688b9d9e | 2014-04-27 14:21:21 +0800 | [diff] [blame] | 968 | }; |
| 969 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 970 | struct f2fs_sm_info { |
| 971 | struct sit_info *sit_info; /* whole segment information */ |
| 972 | struct free_segmap_info *free_info; /* free segment information */ |
| 973 | struct dirty_seglist_info *dirty_info; /* dirty segment information */ |
| 974 | struct curseg_info *curseg_array; /* active segment information */ |
| 975 | |
Chao Yu | 2b60311 | 2017-11-02 20:41:03 +0800 | [diff] [blame] | 976 | struct rw_semaphore curseg_lock; /* for preventing curseg change */ |
| 977 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 978 | block_t seg0_blkaddr; /* block address of 0'th segment */ |
| 979 | block_t main_blkaddr; /* start block address of main area */ |
| 980 | block_t ssa_blkaddr; /* start block address of SSA area */ |
| 981 | |
| 982 | unsigned int segment_count; /* total # of segments */ |
| 983 | unsigned int main_segments; /* # of segments in main area */ |
| 984 | unsigned int reserved_segments; /* # of reserved segments */ |
| 985 | unsigned int ovp_segments; /* # of overprovision segments */ |
Jaegeuk Kim | 81eb8d6 | 2013-10-24 13:31:34 +0900 | [diff] [blame] | 986 | |
| 987 | /* a threshold to reclaim prefree segments */ |
| 988 | unsigned int rec_prefree_segments; |
Jaegeuk Kim | 7fd9e54 | 2013-11-15 13:55:58 +0900 | [diff] [blame] | 989 | |
Jaegeuk Kim | bba681c | 2015-01-26 17:41:23 -0800 | [diff] [blame] | 990 | /* for batched trimming */ |
| 991 | unsigned int trim_sections; /* # of sections to trim */ |
| 992 | |
Chao Yu | 184a5cd | 2014-09-04 18:13:01 +0800 | [diff] [blame] | 993 | struct list_head sit_entry_set; /* sit entry set list */ |
| 994 | |
Jaegeuk Kim | 216fbd6 | 2013-11-07 13:13:42 +0900 | [diff] [blame] | 995 | unsigned int ipu_policy; /* in-place-update policy */ |
| 996 | unsigned int min_ipu_util; /* in-place-update threshold */ |
Jaegeuk Kim | c1ce1b0 | 2014-09-10 16:53:02 -0700 | [diff] [blame] | 997 | unsigned int min_fsync_blocks; /* threshold for fsync */ |
Jaegeuk Kim | 853137c | 2018-08-09 17:53:34 -0700 | [diff] [blame] | 998 | unsigned int min_seq_blocks; /* threshold for sequential blocks */ |
Jaegeuk Kim | ef095d1 | 2017-03-24 20:05:13 -0400 | [diff] [blame] | 999 | unsigned int min_hot_blocks; /* threshold for hot block allocation */ |
Chao Yu | a2a12b6 | 2017-10-28 16:52:33 +0800 | [diff] [blame] | 1000 | unsigned int min_ssr_sections; /* threshold to trigger SSR allocation */ |
Jaegeuk Kim | 6b4afdd | 2014-04-02 15:34:36 +0900 | [diff] [blame] | 1001 | |
| 1002 | /* for flush command control */ |
Jaegeuk Kim | b01a920 | 2017-01-09 14:13:03 -0800 | [diff] [blame] | 1003 | struct flush_cmd_control *fcc_info; |
Gu Zheng | a688b9d9e | 2014-04-27 14:21:21 +0800 | [diff] [blame] | 1004 | |
Jaegeuk Kim | 0b54fb8 | 2017-01-11 14:40:24 -0800 | [diff] [blame] | 1005 | /* for discard command control */ |
| 1006 | struct discard_cmd_control *dcc_info; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1007 | }; |
| 1008 | |
| 1009 | /* |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1010 | * For superblock |
| 1011 | */ |
| 1012 | /* |
| 1013 | * COUNT_TYPE for monitoring |
| 1014 | * |
| 1015 | * f2fs monitors the number of several block types such as on-writeback, |
| 1016 | * dirty dentry blocks, dirty node blocks, and dirty meta blocks. |
| 1017 | */ |
Chao Yu | 36951b3 | 2016-11-16 10:41:20 +0800 | [diff] [blame] | 1018 | #define WB_DATA_TYPE(p) (__is_cp_guaranteed(p) ? F2FS_WB_CP_DATA : F2FS_WB_DATA) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1019 | enum count_type { |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1020 | F2FS_DIRTY_DENTS, |
Chao Yu | c227f91 | 2015-12-16 13:09:20 +0800 | [diff] [blame] | 1021 | F2FS_DIRTY_DATA, |
Jaegeuk Kim | 2c8a4a2 | 2017-11-13 17:46:38 -0800 | [diff] [blame] | 1022 | F2FS_DIRTY_QDATA, |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1023 | F2FS_DIRTY_NODES, |
| 1024 | F2FS_DIRTY_META, |
Jaegeuk Kim | 8dcf2ff7 | 2014-12-05 17:18:15 -0800 | [diff] [blame] | 1025 | F2FS_INMEM_PAGES, |
Jaegeuk Kim | 0f18b46 | 2016-05-20 11:10:10 -0700 | [diff] [blame] | 1026 | F2FS_DIRTY_IMETA, |
Chao Yu | 36951b3 | 2016-11-16 10:41:20 +0800 | [diff] [blame] | 1027 | F2FS_WB_CP_DATA, |
| 1028 | F2FS_WB_DATA, |
Jaegeuk Kim | 5f9abab | 2018-10-16 10:20:53 -0700 | [diff] [blame] | 1029 | F2FS_RD_DATA, |
| 1030 | F2FS_RD_NODE, |
| 1031 | F2FS_RD_META, |
Chao Yu | 02b16d0 | 2018-11-12 00:46:46 +0800 | [diff] [blame] | 1032 | F2FS_DIO_WRITE, |
| 1033 | F2FS_DIO_READ, |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1034 | NR_COUNT_TYPE, |
| 1035 | }; |
| 1036 | |
| 1037 | /* |
arter97 | e1c4204 | 2014-08-06 23:22:50 +0900 | [diff] [blame] | 1038 | * The below are the page types of bios used in submit_bio(). |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1039 | * The available types are: |
| 1040 | * DATA User data pages. It operates as async mode. |
| 1041 | * NODE Node pages. It operates as async mode. |
| 1042 | * META FS metadata pages such as SIT, NAT, CP. |
| 1043 | * NR_PAGE_TYPE The number of page types. |
| 1044 | * META_FLUSH Make sure the previous pages are written |
| 1045 | * with waiting the bio's completion |
| 1046 | * ... Only can be used with META. |
| 1047 | */ |
Jaegeuk Kim | 7d5e510 | 2013-11-18 17:13:35 +0900 | [diff] [blame] | 1048 | #define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type)) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1049 | enum page_type { |
| 1050 | DATA, |
| 1051 | NODE, |
| 1052 | META, |
| 1053 | NR_PAGE_TYPE, |
| 1054 | META_FLUSH, |
Jaegeuk Kim | 8ce67cb | 2015-03-17 17:58:08 -0700 | [diff] [blame] | 1055 | INMEM, /* the below types are used by tracepoints only. */ |
| 1056 | INMEM_DROP, |
Jaegeuk Kim | 8c242db | 2017-03-17 09:55:52 +0800 | [diff] [blame] | 1057 | INMEM_INVALIDATE, |
Chao Yu | 28bc106 | 2016-02-06 14:40:34 +0800 | [diff] [blame] | 1058 | INMEM_REVOKE, |
Jaegeuk Kim | 8ce67cb | 2015-03-17 17:58:08 -0700 | [diff] [blame] | 1059 | IPU, |
| 1060 | OPU, |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1061 | }; |
| 1062 | |
Jaegeuk Kim | a912b54 | 2017-05-10 11:18:25 -0700 | [diff] [blame] | 1063 | enum temp_type { |
| 1064 | HOT = 0, /* must be zero for meta bio */ |
| 1065 | WARM, |
| 1066 | COLD, |
| 1067 | NR_TEMP_TYPE, |
| 1068 | }; |
| 1069 | |
Jaegeuk Kim | cc15620 | 2017-05-12 13:51:34 -0700 | [diff] [blame] | 1070 | enum need_lock_type { |
| 1071 | LOCK_REQ = 0, |
| 1072 | LOCK_DONE, |
| 1073 | LOCK_RETRY, |
| 1074 | }; |
| 1075 | |
Chao Yu | a5fd505 | 2017-11-06 22:51:45 +0800 | [diff] [blame] | 1076 | enum cp_reason_type { |
| 1077 | CP_NO_NEEDED, |
| 1078 | CP_NON_REGULAR, |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1079 | CP_COMPRESSED, |
Chao Yu | a5fd505 | 2017-11-06 22:51:45 +0800 | [diff] [blame] | 1080 | CP_HARDLINK, |
| 1081 | CP_SB_NEED_CP, |
| 1082 | CP_WRONG_PINO, |
| 1083 | CP_NO_SPC_ROLL, |
| 1084 | CP_NODE_NEED_CP, |
| 1085 | CP_FASTBOOT_MODE, |
| 1086 | CP_SPEC_LOG_NUM, |
Jaegeuk Kim | 0a007b97 | 2017-12-28 08:09:44 -0800 | [diff] [blame] | 1087 | CP_RECOVER_DIR, |
Chao Yu | a5fd505 | 2017-11-06 22:51:45 +0800 | [diff] [blame] | 1088 | }; |
| 1089 | |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 1090 | enum iostat_type { |
| 1091 | APP_DIRECT_IO, /* app direct IOs */ |
| 1092 | APP_BUFFERED_IO, /* app buffered IOs */ |
| 1093 | APP_WRITE_IO, /* app write IOs */ |
| 1094 | APP_MAPPED_IO, /* app mapped IOs */ |
| 1095 | FS_DATA_IO, /* data IOs from kworker/fsync/reclaimer */ |
| 1096 | FS_NODE_IO, /* node IOs from kworker/fsync/reclaimer */ |
| 1097 | FS_META_IO, /* meta IOs from kworker/reclaimer */ |
| 1098 | FS_GC_DATA_IO, /* data IOs from forground gc */ |
| 1099 | FS_GC_NODE_IO, /* node IOs from forground gc */ |
| 1100 | FS_CP_DATA_IO, /* data IOs from checkpoint */ |
| 1101 | FS_CP_NODE_IO, /* node IOs from checkpoint */ |
| 1102 | FS_CP_META_IO, /* meta IOs from checkpoint */ |
| 1103 | FS_DISCARD, /* discard */ |
| 1104 | NR_IO_TYPE, |
| 1105 | }; |
| 1106 | |
Jaegeuk Kim | 458e619 | 2013-12-11 13:54:01 +0900 | [diff] [blame] | 1107 | struct f2fs_io_info { |
Jaegeuk Kim | 05ca363 | 2015-04-23 14:38:15 -0700 | [diff] [blame] | 1108 | struct f2fs_sb_info *sbi; /* f2fs_sb_info pointer */ |
Chao Yu | 39d787b | 2017-09-29 13:59:38 +0800 | [diff] [blame] | 1109 | nid_t ino; /* inode number */ |
Gu Zheng | 7e8f230 | 2013-12-20 18:17:49 +0800 | [diff] [blame] | 1110 | enum page_type type; /* contains DATA/NODE/META/META_FLUSH */ |
Jaegeuk Kim | a912b54 | 2017-05-10 11:18:25 -0700 | [diff] [blame] | 1111 | enum temp_type temp; /* contains HOT/WARM/COLD */ |
Mike Christie | 04d328d | 2016-06-05 14:31:55 -0500 | [diff] [blame] | 1112 | int op; /* contains REQ_OP_ */ |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 1113 | int op_flags; /* req_flag_bits */ |
Chao Yu | 7a9d754 | 2016-02-22 18:36:38 +0800 | [diff] [blame] | 1114 | block_t new_blkaddr; /* new block address to be written */ |
Chao Yu | 28bc106 | 2016-02-06 14:40:34 +0800 | [diff] [blame] | 1115 | block_t old_blkaddr; /* old block address before Cow */ |
Jaegeuk Kim | 05ca363 | 2015-04-23 14:38:15 -0700 | [diff] [blame] | 1116 | struct page *page; /* page to be written */ |
Jaegeuk Kim | 4375a33 | 2015-04-23 12:04:33 -0700 | [diff] [blame] | 1117 | struct page *encrypted_page; /* encrypted page */ |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1118 | struct page *compressed_page; /* compressed page */ |
Chao Yu | fb830fc | 2017-05-19 23:37:01 +0800 | [diff] [blame] | 1119 | struct list_head list; /* serialize IOs */ |
Jaegeuk Kim | d68f735 | 2017-02-03 17:44:04 -0800 | [diff] [blame] | 1120 | bool submitted; /* indicate IO submission */ |
Jaegeuk Kim | cc15620 | 2017-05-12 13:51:34 -0700 | [diff] [blame] | 1121 | int need_lock; /* indicate we need to lock cp_rwsem */ |
Chao Yu | fb830fc | 2017-05-19 23:37:01 +0800 | [diff] [blame] | 1122 | bool in_list; /* indicate fio is in io_list */ |
Chao Yu | 6dc3a12 | 2019-04-15 15:26:31 +0800 | [diff] [blame] | 1123 | bool is_por; /* indicate IO is from recovery or not */ |
Chao Yu | fe16efe | 2018-05-28 23:47:18 +0800 | [diff] [blame] | 1124 | bool retry; /* need to reallocate block address */ |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1125 | int compr_blocks; /* # of compressed block addresses */ |
| 1126 | bool encrypted; /* indicate file is encrypted */ |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 1127 | enum iostat_type io_type; /* io type */ |
Yufen Yu | 578c647 | 2018-01-09 19:33:39 +0800 | [diff] [blame] | 1128 | struct writeback_control *io_wbc; /* writeback control */ |
Chao Yu | 8648de2 | 2019-02-19 16:15:29 +0800 | [diff] [blame] | 1129 | struct bio **bio; /* bio for ipu */ |
| 1130 | sector_t *last_block; /* last block number in bio */ |
Chao Yu | 7735730 | 2018-07-17 00:02:17 +0800 | [diff] [blame] | 1131 | unsigned char version; /* version of the node */ |
Jaegeuk Kim | 458e619 | 2013-12-11 13:54:01 +0900 | [diff] [blame] | 1132 | }; |
| 1133 | |
Chao Yu | 0b20fce | 2019-09-30 18:53:25 +0800 | [diff] [blame] | 1134 | struct bio_entry { |
| 1135 | struct bio *bio; |
| 1136 | struct list_head list; |
| 1137 | }; |
| 1138 | |
Tomohiro Kusumi | 68afcf2 | 2017-04-09 02:11:36 +0300 | [diff] [blame] | 1139 | #define is_read_io(rw) ((rw) == READ) |
Jaegeuk Kim | 1ff7bd3 | 2013-11-19 12:47:22 +0900 | [diff] [blame] | 1140 | struct f2fs_bio_info { |
Jaegeuk Kim | 458e619 | 2013-12-11 13:54:01 +0900 | [diff] [blame] | 1141 | struct f2fs_sb_info *sbi; /* f2fs superblock */ |
Jaegeuk Kim | 1ff7bd3 | 2013-11-19 12:47:22 +0900 | [diff] [blame] | 1142 | struct bio *bio; /* bios to merge */ |
| 1143 | sector_t last_block_in_bio; /* last block number */ |
Jaegeuk Kim | 458e619 | 2013-12-11 13:54:01 +0900 | [diff] [blame] | 1144 | struct f2fs_io_info fio; /* store buffered io info. */ |
Chao Yu | df0f8dc | 2014-03-22 14:57:23 +0800 | [diff] [blame] | 1145 | struct rw_semaphore io_rwsem; /* blocking op for bio */ |
Chao Yu | fb830fc | 2017-05-19 23:37:01 +0800 | [diff] [blame] | 1146 | spinlock_t io_lock; /* serialize DATA/NODE IOs */ |
| 1147 | struct list_head io_list; /* track fios */ |
Chao Yu | 0b20fce | 2019-09-30 18:53:25 +0800 | [diff] [blame] | 1148 | struct list_head bio_list; /* bio entry list head */ |
| 1149 | struct rw_semaphore bio_list_lock; /* lock to protect bio entry list */ |
Jaegeuk Kim | 1ff7bd3 | 2013-11-19 12:47:22 +0900 | [diff] [blame] | 1150 | }; |
| 1151 | |
Jaegeuk Kim | 3c62be1 | 2016-10-06 19:02:05 -0700 | [diff] [blame] | 1152 | #define FDEV(i) (sbi->devs[i]) |
| 1153 | #define RDEV(i) (raw_super->devs[i]) |
| 1154 | struct f2fs_dev_info { |
| 1155 | struct block_device *bdev; |
| 1156 | char path[MAX_PATH_LEN]; |
| 1157 | unsigned int total_segments; |
| 1158 | block_t start_blk; |
| 1159 | block_t end_blk; |
| 1160 | #ifdef CONFIG_BLK_DEV_ZONED |
Damien Le Moal | 95175da | 2019-03-16 09:13:07 +0900 | [diff] [blame] | 1161 | unsigned int nr_blkz; /* Total number of zones */ |
| 1162 | unsigned long *blkz_seq; /* Bitmap indicating sequential zones */ |
Jaegeuk Kim | 3c62be1 | 2016-10-06 19:02:05 -0700 | [diff] [blame] | 1163 | #endif |
| 1164 | }; |
| 1165 | |
Chao Yu | c227f91 | 2015-12-16 13:09:20 +0800 | [diff] [blame] | 1166 | enum inode_type { |
| 1167 | DIR_INODE, /* for dirty dir inode */ |
| 1168 | FILE_INODE, /* for dirty regular/symlink inode */ |
Jaegeuk Kim | 0f18b46 | 2016-05-20 11:10:10 -0700 | [diff] [blame] | 1169 | DIRTY_META, /* for all dirtied inode metadata */ |
Jaegeuk Kim | 57864ae | 2017-10-18 19:05:57 -0700 | [diff] [blame] | 1170 | ATOMIC_FILE, /* for all atomic files */ |
Chao Yu | c227f91 | 2015-12-16 13:09:20 +0800 | [diff] [blame] | 1171 | NR_INODE_TYPE, |
| 1172 | }; |
| 1173 | |
Chao Yu | 6729880 | 2014-11-18 11:18:36 +0800 | [diff] [blame] | 1174 | /* for inner inode cache management */ |
| 1175 | struct inode_management { |
| 1176 | struct radix_tree_root ino_root; /* ino entry array */ |
| 1177 | spinlock_t ino_lock; /* for ino entry lock */ |
| 1178 | struct list_head ino_list; /* inode list head */ |
| 1179 | unsigned long ino_num; /* number of entries */ |
| 1180 | }; |
| 1181 | |
Chao Yu | caf0047 | 2015-01-28 17:48:42 +0800 | [diff] [blame] | 1182 | /* For s_flag in struct f2fs_sb_info */ |
| 1183 | enum { |
| 1184 | SBI_IS_DIRTY, /* dirty flag for checkpoint */ |
| 1185 | SBI_IS_CLOSE, /* specify unmounting */ |
| 1186 | SBI_NEED_FSCK, /* need fsck.f2fs to fix */ |
| 1187 | SBI_POR_DOING, /* recovery is doing or not */ |
Jaegeuk Kim | df728b0 | 2016-03-23 17:05:27 -0700 | [diff] [blame] | 1188 | SBI_NEED_SB_WRITE, /* need to recover superblock */ |
Jaegeuk Kim | bbf156f | 2016-08-29 18:23:45 -0700 | [diff] [blame] | 1189 | SBI_NEED_CP, /* need to checkpoint */ |
Jaegeuk Kim | 83a3bfd | 2018-06-21 13:46:23 -0700 | [diff] [blame] | 1190 | SBI_IS_SHUTDOWN, /* shutdown by ioctl */ |
Chao Yu | 1378752 | 2018-08-22 17:11:05 +0800 | [diff] [blame] | 1191 | SBI_IS_RECOVERED, /* recovered orphan/data */ |
Daniel Rosenberg | 4354994 | 2018-08-20 19:21:43 -0700 | [diff] [blame] | 1192 | SBI_CP_DISABLED, /* CP was disabled last mount */ |
Jaegeuk Kim | db610a6 | 2019-01-24 17:48:38 -0800 | [diff] [blame] | 1193 | SBI_CP_DISABLED_QUICK, /* CP was disabled quickly */ |
Chao Yu | af033b2 | 2018-09-20 20:05:00 +0800 | [diff] [blame] | 1194 | SBI_QUOTA_NEED_FLUSH, /* need to flush quota info in CP */ |
| 1195 | SBI_QUOTA_SKIP_FLUSH, /* skip flushing quota in current CP */ |
| 1196 | SBI_QUOTA_NEED_REPAIR, /* quota file may be corrupted */ |
Qiuyang Sun | 04f0b2e | 2019-06-05 11:33:25 +0800 | [diff] [blame] | 1197 | SBI_IS_RESIZEFS, /* resizefs is in process */ |
Chao Yu | caf0047 | 2015-01-28 17:48:42 +0800 | [diff] [blame] | 1198 | }; |
| 1199 | |
Jaegeuk Kim | 6beceb5 | 2016-01-08 15:51:50 -0800 | [diff] [blame] | 1200 | enum { |
| 1201 | CP_TIME, |
Jaegeuk Kim | d0239e1 | 2016-01-08 16:57:48 -0800 | [diff] [blame] | 1202 | REQ_TIME, |
Sahitya Tummala | a7d10cf | 2018-09-19 14:18:47 +0530 | [diff] [blame] | 1203 | DISCARD_TIME, |
| 1204 | GC_TIME, |
Daniel Rosenberg | 4354994 | 2018-08-20 19:21:43 -0700 | [diff] [blame] | 1205 | DISABLE_TIME, |
Jaegeuk Kim | 03f2c02 | 2019-01-14 10:42:11 -0800 | [diff] [blame] | 1206 | UMOUNT_DISCARD_TIMEOUT, |
Jaegeuk Kim | 6beceb5 | 2016-01-08 15:51:50 -0800 | [diff] [blame] | 1207 | MAX_TIME, |
| 1208 | }; |
| 1209 | |
Hyunchul Lee | 0cdd319 | 2018-01-31 11:36:57 +0900 | [diff] [blame] | 1210 | enum { |
Jaegeuk Kim | 5b0e953 | 2018-05-07 14:22:40 -0700 | [diff] [blame] | 1211 | GC_NORMAL, |
| 1212 | GC_IDLE_CB, |
| 1213 | GC_IDLE_GREEDY, |
| 1214 | GC_URGENT, |
| 1215 | }; |
| 1216 | |
| 1217 | enum { |
Chao Yu | bbbc34f | 2020-02-14 17:44:13 +0800 | [diff] [blame] | 1218 | BGGC_MODE_ON, /* background gc is on */ |
| 1219 | BGGC_MODE_OFF, /* background gc is off */ |
| 1220 | BGGC_MODE_SYNC, /* |
| 1221 | * background gc is on, migrating blocks |
| 1222 | * like foreground gc |
| 1223 | */ |
| 1224 | }; |
| 1225 | |
| 1226 | enum { |
Chao Yu | b0332a0 | 2020-02-14 17:44:12 +0800 | [diff] [blame] | 1227 | FS_MODE_ADAPTIVE, /* use both lfs/ssr allocation */ |
| 1228 | FS_MODE_LFS, /* use lfs allocation only */ |
| 1229 | }; |
| 1230 | |
| 1231 | enum { |
Hyunchul Lee | 0cdd319 | 2018-01-31 11:36:57 +0900 | [diff] [blame] | 1232 | WHINT_MODE_OFF, /* not pass down write hints */ |
| 1233 | WHINT_MODE_USER, /* try to pass down hints given by users */ |
Hyunchul Lee | f2e703f | 2018-01-31 11:36:58 +0900 | [diff] [blame] | 1234 | WHINT_MODE_FS, /* pass down hints with F2FS policy */ |
Hyunchul Lee | 0cdd319 | 2018-01-31 11:36:57 +0900 | [diff] [blame] | 1235 | }; |
| 1236 | |
Jaegeuk Kim | 0793962 | 2018-02-18 08:50:49 -0800 | [diff] [blame] | 1237 | enum { |
| 1238 | ALLOC_MODE_DEFAULT, /* stay default */ |
| 1239 | ALLOC_MODE_REUSE, /* reuse segments as much as possible */ |
| 1240 | }; |
| 1241 | |
Junling Zheng | 93cf93f | 2018-03-07 12:07:49 +0800 | [diff] [blame] | 1242 | enum fsync_mode { |
| 1243 | FSYNC_MODE_POSIX, /* fsync follows posix semantics */ |
| 1244 | FSYNC_MODE_STRICT, /* fsync behaves in line with ext4 */ |
Jaegeuk Kim | d629081 | 2018-05-25 18:02:58 -0700 | [diff] [blame] | 1245 | FSYNC_MODE_NOBARRIER, /* fsync behaves nobarrier based on posix */ |
Junling Zheng | 93cf93f | 2018-03-07 12:07:49 +0800 | [diff] [blame] | 1246 | }; |
| 1247 | |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1248 | /* |
| 1249 | * this value is set in page as a private data which indicate that |
| 1250 | * the page is atomically written, and it is in inmem_pages list. |
| 1251 | */ |
| 1252 | #define ATOMIC_WRITTEN_PAGE ((unsigned long)-1) |
| 1253 | #define DUMMY_WRITTEN_PAGE ((unsigned long)-2) |
| 1254 | |
| 1255 | #define IS_ATOMIC_WRITTEN_PAGE(page) \ |
| 1256 | (page_private(page) == (unsigned long)ATOMIC_WRITTEN_PAGE) |
| 1257 | #define IS_DUMMY_WRITTEN_PAGE(page) \ |
| 1258 | (page_private(page) == (unsigned long)DUMMY_WRITTEN_PAGE) |
| 1259 | |
Chandan Rajendra | 643fa96 | 2018-12-12 15:20:12 +0530 | [diff] [blame] | 1260 | #ifdef CONFIG_FS_ENCRYPTION |
Sheng Yong | ff62af2 | 2018-03-15 18:51:42 +0800 | [diff] [blame] | 1261 | #define DUMMY_ENCRYPTION_ENABLED(sbi) \ |
| 1262 | (unlikely(F2FS_OPTION(sbi).test_dummy_encryption)) |
| 1263 | #else |
| 1264 | #define DUMMY_ENCRYPTION_ENABLED(sbi) (0) |
| 1265 | #endif |
| 1266 | |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1267 | /* For compression */ |
| 1268 | enum compress_algorithm_type { |
| 1269 | COMPRESS_LZO, |
| 1270 | COMPRESS_LZ4, |
Chao Yu | 50cfa66 | 2020-03-03 17:46:02 +0800 | [diff] [blame] | 1271 | COMPRESS_ZSTD, |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1272 | COMPRESS_MAX, |
| 1273 | }; |
| 1274 | |
Chao Yu | 0b32dc1 | 2020-02-24 19:20:18 +0800 | [diff] [blame] | 1275 | #define COMPRESS_DATA_RESERVED_SIZE 5 |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1276 | struct compress_data { |
| 1277 | __le32 clen; /* compressed data size */ |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1278 | __le32 reserved[COMPRESS_DATA_RESERVED_SIZE]; /* reserved */ |
| 1279 | u8 cdata[]; /* compressed data */ |
| 1280 | }; |
| 1281 | |
| 1282 | #define COMPRESS_HEADER_SIZE (sizeof(struct compress_data)) |
| 1283 | |
| 1284 | #define F2FS_COMPRESSED_PAGE_MAGIC 0xF5F2C000 |
| 1285 | |
| 1286 | /* compress context */ |
| 1287 | struct compress_ctx { |
| 1288 | struct inode *inode; /* inode the context belong to */ |
| 1289 | pgoff_t cluster_idx; /* cluster index number */ |
| 1290 | unsigned int cluster_size; /* page count in cluster */ |
| 1291 | unsigned int log_cluster_size; /* log of cluster size */ |
| 1292 | struct page **rpages; /* pages store raw data in cluster */ |
| 1293 | unsigned int nr_rpages; /* total page number in rpages */ |
| 1294 | struct page **cpages; /* pages store compressed data in cluster */ |
| 1295 | unsigned int nr_cpages; /* total page number in cpages */ |
| 1296 | void *rbuf; /* virtual mapped address on rpages */ |
| 1297 | struct compress_data *cbuf; /* virtual mapped address on cpages */ |
| 1298 | size_t rlen; /* valid data length in rbuf */ |
| 1299 | size_t clen; /* valid data length in cbuf */ |
| 1300 | void *private; /* payload buffer for specified compression algorithm */ |
Chao Yu | 50cfa66 | 2020-03-03 17:46:02 +0800 | [diff] [blame] | 1301 | void *private2; /* extra payload buffer */ |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1302 | }; |
| 1303 | |
| 1304 | /* compress context for write IO path */ |
| 1305 | struct compress_io_ctx { |
| 1306 | u32 magic; /* magic number to indicate page is compressed */ |
| 1307 | struct inode *inode; /* inode the context belong to */ |
| 1308 | struct page **rpages; /* pages store raw data in cluster */ |
| 1309 | unsigned int nr_rpages; /* total page number in rpages */ |
| 1310 | refcount_t ref; /* referrence count of raw page */ |
| 1311 | }; |
| 1312 | |
| 1313 | /* decompress io context for read IO path */ |
| 1314 | struct decompress_io_ctx { |
| 1315 | u32 magic; /* magic number to indicate page is compressed */ |
| 1316 | struct inode *inode; /* inode the context belong to */ |
| 1317 | pgoff_t cluster_idx; /* cluster index number */ |
| 1318 | unsigned int cluster_size; /* page count in cluster */ |
| 1319 | unsigned int log_cluster_size; /* log of cluster size */ |
| 1320 | struct page **rpages; /* pages store raw data in cluster */ |
| 1321 | unsigned int nr_rpages; /* total page number in rpages */ |
| 1322 | struct page **cpages; /* pages store compressed data in cluster */ |
| 1323 | unsigned int nr_cpages; /* total page number in cpages */ |
| 1324 | struct page **tpages; /* temp pages to pad holes in cluster */ |
| 1325 | void *rbuf; /* virtual mapped address on rpages */ |
| 1326 | struct compress_data *cbuf; /* virtual mapped address on cpages */ |
| 1327 | size_t rlen; /* valid data length in rbuf */ |
| 1328 | size_t clen; /* valid data length in cbuf */ |
| 1329 | refcount_t ref; /* referrence count of compressed page */ |
| 1330 | bool failed; /* indicate IO error during decompression */ |
Chao Yu | 50cfa66 | 2020-03-03 17:46:02 +0800 | [diff] [blame] | 1331 | void *private; /* payload buffer for specified decompression algorithm */ |
| 1332 | void *private2; /* extra payload buffer */ |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1333 | }; |
| 1334 | |
| 1335 | #define NULL_CLUSTER ((unsigned int)(~0)) |
| 1336 | #define MIN_COMPRESS_LOG_SIZE 2 |
| 1337 | #define MAX_COMPRESS_LOG_SIZE 8 |
Chao Yu | 50cfa66 | 2020-03-03 17:46:02 +0800 | [diff] [blame] | 1338 | #define MAX_COMPRESS_WINDOW_SIZE ((PAGE_SIZE) << MAX_COMPRESS_LOG_SIZE) |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1339 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1340 | struct f2fs_sb_info { |
| 1341 | struct super_block *sb; /* pointer to VFS super block */ |
Jaegeuk Kim | 5e176d5 | 2013-06-28 12:47:01 +0900 | [diff] [blame] | 1342 | struct proc_dir_entry *s_proc; /* proc entry */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1343 | struct f2fs_super_block *raw_super; /* raw super block pointer */ |
Chao Yu | 846ae67 | 2018-02-26 22:04:13 +0800 | [diff] [blame] | 1344 | struct rw_semaphore sb_lock; /* lock for raw super block */ |
Chao Yu | e8240f6 | 2015-12-15 17:19:26 +0800 | [diff] [blame] | 1345 | int valid_super_block; /* valid super block no */ |
Chao Yu | fadb2fb | 2016-09-20 10:29:47 +0800 | [diff] [blame] | 1346 | unsigned long s_flag; /* flags for sbi */ |
Jaegeuk Kim | 853137c | 2018-08-09 17:53:34 -0700 | [diff] [blame] | 1347 | struct mutex writepages; /* mutex for writepages() */ |
Daniel Rosenberg | 5aba543 | 2019-07-23 16:05:28 -0700 | [diff] [blame] | 1348 | #ifdef CONFIG_UNICODE |
| 1349 | struct unicode_map *s_encoding; |
| 1350 | __u16 s_encoding_flags; |
| 1351 | #endif |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1352 | |
Damien Le Moal | 178053e | 2016-10-28 17:45:05 +0900 | [diff] [blame] | 1353 | #ifdef CONFIG_BLK_DEV_ZONED |
Damien Le Moal | 178053e | 2016-10-28 17:45:05 +0900 | [diff] [blame] | 1354 | unsigned int blocks_per_blkz; /* F2FS blocks per zone */ |
| 1355 | unsigned int log_blocks_per_blkz; /* log2 F2FS blocks per zone */ |
Damien Le Moal | 178053e | 2016-10-28 17:45:05 +0900 | [diff] [blame] | 1356 | #endif |
| 1357 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1358 | /* for node-related operations */ |
| 1359 | struct f2fs_nm_info *nm_info; /* node manager */ |
| 1360 | struct inode *node_inode; /* cache node blocks */ |
| 1361 | |
| 1362 | /* for segment-related operations */ |
| 1363 | struct f2fs_sm_info *sm_info; /* segment manager */ |
Jaegeuk Kim | 1ff7bd3 | 2013-11-19 12:47:22 +0900 | [diff] [blame] | 1364 | |
| 1365 | /* for bio operations */ |
Jaegeuk Kim | a912b54 | 2017-05-10 11:18:25 -0700 | [diff] [blame] | 1366 | struct f2fs_bio_info *write_io[NR_PAGE_TYPE]; /* for write bios */ |
Chao Yu | 107a805 | 2018-05-26 09:00:13 +0800 | [diff] [blame] | 1367 | /* keep migration IO order for LFS mode */ |
| 1368 | struct rw_semaphore io_order_lock; |
Jaegeuk Kim | 0a595eb | 2016-12-14 10:12:56 -0800 | [diff] [blame] | 1369 | mempool_t *write_io_dummy; /* Dummy pages */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1370 | |
| 1371 | /* for checkpoint */ |
| 1372 | struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */ |
Jaegeuk Kim | 8508e44 | 2016-11-24 12:45:15 -0800 | [diff] [blame] | 1373 | int cur_cp_pack; /* remain current cp pack */ |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 1374 | spinlock_t cp_lock; /* for flag in ckpt */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1375 | struct inode *meta_inode; /* cache meta blocks */ |
Jaegeuk Kim | 3993683 | 2012-11-22 16:21:29 +0900 | [diff] [blame] | 1376 | struct mutex cp_mutex; /* checkpoint procedure lock */ |
Jaegeuk Kim | b873b79 | 2016-08-04 11:38:25 -0700 | [diff] [blame] | 1377 | struct rw_semaphore cp_rwsem; /* blocking FS operations */ |
Chao Yu | b3582c6 | 2014-07-03 18:58:39 +0800 | [diff] [blame] | 1378 | struct rw_semaphore node_write; /* locking node writes */ |
Yunlei He | 59c9081 | 2017-03-13 20:22:18 +0800 | [diff] [blame] | 1379 | struct rw_semaphore node_change; /* locking node change */ |
Changman Lee | fb51b5e | 2013-11-07 12:48:25 +0900 | [diff] [blame] | 1380 | wait_queue_head_t cp_wait; |
Jaegeuk Kim | 6beceb5 | 2016-01-08 15:51:50 -0800 | [diff] [blame] | 1381 | unsigned long last_time[MAX_TIME]; /* to store time in jiffies */ |
| 1382 | long interval_time[MAX_TIME]; /* to store thresholds */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1383 | |
Chao Yu | 6729880 | 2014-11-18 11:18:36 +0800 | [diff] [blame] | 1384 | struct inode_management im[MAX_INO_ENTRY]; /* manage inode cache */ |
Jaegeuk Kim | 6451e04 | 2014-07-25 15:47:17 -0700 | [diff] [blame] | 1385 | |
Chao Yu | 50fa53e | 2018-08-02 23:03:19 +0800 | [diff] [blame] | 1386 | spinlock_t fsync_node_lock; /* for node entry lock */ |
| 1387 | struct list_head fsync_node_list; /* node list head */ |
| 1388 | unsigned int fsync_seg_id; /* sequence id */ |
| 1389 | unsigned int fsync_node_num; /* number of node entries */ |
| 1390 | |
Jaegeuk Kim | 6451e04 | 2014-07-25 15:47:17 -0700 | [diff] [blame] | 1391 | /* for orphan inode, use 0'th array */ |
Gu Zheng | 0d47c1a | 2013-12-26 18:24:19 +0800 | [diff] [blame] | 1392 | unsigned int max_orphans; /* max orphan inodes */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1393 | |
Chao Yu | c227f91 | 2015-12-16 13:09:20 +0800 | [diff] [blame] | 1394 | /* for inode management */ |
| 1395 | struct list_head inode_list[NR_INODE_TYPE]; /* dirty inode list */ |
| 1396 | spinlock_t inode_lock[NR_INODE_TYPE]; /* for dirty inode list lock */ |
Chao Yu | 040d2bb | 2019-05-20 17:36:59 +0800 | [diff] [blame] | 1397 | struct mutex flush_lock; /* for flush exclusion */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1398 | |
Chao Yu | 13054c5 | 2015-02-05 17:52:58 +0800 | [diff] [blame] | 1399 | /* for extent tree cache */ |
| 1400 | struct radix_tree_root extent_tree_root;/* cache extent cache entries */ |
Yunlei He | 5e8256a | 2017-02-23 19:39:59 +0800 | [diff] [blame] | 1401 | struct mutex extent_tree_lock; /* locking extent radix tree */ |
Chao Yu | 13054c5 | 2015-02-05 17:52:58 +0800 | [diff] [blame] | 1402 | struct list_head extent_list; /* lru list for shrinker */ |
| 1403 | spinlock_t extent_lock; /* locking extent lru list */ |
Jaegeuk Kim | 7441cce | 2015-12-21 19:20:15 -0800 | [diff] [blame] | 1404 | atomic_t total_ext_tree; /* extent tree count */ |
Jaegeuk Kim | 137d09f | 2015-12-31 15:02:16 -0800 | [diff] [blame] | 1405 | struct list_head zombie_list; /* extent zombie tree list */ |
Jaegeuk Kim | 74fd8d9 | 2015-12-21 19:25:50 -0800 | [diff] [blame] | 1406 | atomic_t total_zombie_tree; /* extent zombie tree count */ |
Chao Yu | 13054c5 | 2015-02-05 17:52:58 +0800 | [diff] [blame] | 1407 | atomic_t total_ext_node; /* extent info count */ |
| 1408 | |
arter97 | e1c4204 | 2014-08-06 23:22:50 +0900 | [diff] [blame] | 1409 | /* basic filesystem units */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1410 | unsigned int log_sectors_per_block; /* log2 sectors per block */ |
| 1411 | unsigned int log_blocksize; /* log2 block size */ |
| 1412 | unsigned int blocksize; /* block size */ |
| 1413 | unsigned int root_ino_num; /* root inode number*/ |
| 1414 | unsigned int node_ino_num; /* node inode number*/ |
| 1415 | unsigned int meta_ino_num; /* meta inode number*/ |
| 1416 | unsigned int log_blocks_per_seg; /* log2 blocks per segment */ |
| 1417 | unsigned int blocks_per_seg; /* blocks per segment */ |
| 1418 | unsigned int segs_per_sec; /* segments per section */ |
| 1419 | unsigned int secs_per_zone; /* sections per zone */ |
| 1420 | unsigned int total_sections; /* total section count */ |
Qiuyang Sun | 04f0b2e | 2019-06-05 11:33:25 +0800 | [diff] [blame] | 1421 | struct mutex resize_mutex; /* for resize exclusion */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1422 | unsigned int total_node_count; /* total node block count */ |
| 1423 | unsigned int total_valid_node_count; /* valid node block count */ |
Chao Yu | e0afc4d | 2015-12-31 14:35:37 +0800 | [diff] [blame] | 1424 | loff_t max_file_blocks; /* max block index of file */ |
Jaegeuk Kim | ab9fa66 | 2014-02-27 20:09:05 +0900 | [diff] [blame] | 1425 | int dir_level; /* directory level */ |
Sheng Yong | f6df8f2 | 2017-11-22 18:23:38 +0800 | [diff] [blame] | 1426 | int readdir_ra; /* readahead inode in readdir */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1427 | |
| 1428 | block_t user_block_count; /* # of user blocks */ |
| 1429 | block_t total_valid_block_count; /* # of valid blocks */ |
Jaegeuk Kim | a66cdd9 | 2015-04-30 22:37:50 -0700 | [diff] [blame] | 1430 | block_t discard_blks; /* discard command candidats */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1431 | block_t last_valid_block_count; /* for recovery */ |
Chao Yu | daeb433 | 2017-06-26 16:24:41 +0800 | [diff] [blame] | 1432 | block_t reserved_blocks; /* configurable reserved blocks */ |
Yunlong Song | 80d4214 | 2017-10-27 20:45:05 +0800 | [diff] [blame] | 1433 | block_t current_reserved_blocks; /* current reserved blocks */ |
Chao Yu | daeb433 | 2017-06-26 16:24:41 +0800 | [diff] [blame] | 1434 | |
Daniel Rosenberg | 4354994 | 2018-08-20 19:21:43 -0700 | [diff] [blame] | 1435 | /* Additional tracking for no checkpoint mode */ |
| 1436 | block_t unusable_block_count; /* # of blocks saved by last cp */ |
| 1437 | |
Chao Yu | 292c196a | 2017-11-16 16:59:14 +0800 | [diff] [blame] | 1438 | unsigned int nquota_files; /* # of quota sysfile */ |
Jaegeuk Kim | db6ec53 | 2019-05-29 10:58:45 -0700 | [diff] [blame] | 1439 | struct rw_semaphore quota_sem; /* blocking cp for flags */ |
Chao Yu | 292c196a | 2017-11-16 16:59:14 +0800 | [diff] [blame] | 1440 | |
Jaegeuk Kim | 523be8a | 2016-05-13 12:36:58 -0700 | [diff] [blame] | 1441 | /* # of pages, see count_type */ |
Jaegeuk Kim | 35782b2 | 2016-10-20 19:09:57 -0700 | [diff] [blame] | 1442 | atomic_t nr_pages[NR_COUNT_TYPE]; |
Jaegeuk Kim | 41382ec | 2016-05-16 11:06:50 -0700 | [diff] [blame] | 1443 | /* # of allocated blocks */ |
| 1444 | struct percpu_counter alloc_valid_block_count; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1445 | |
Jaegeuk Kim | 687de7f | 2017-03-28 18:07:38 -0700 | [diff] [blame] | 1446 | /* writeback control */ |
Chao Yu | c29fd0c | 2018-06-04 23:20:36 +0800 | [diff] [blame] | 1447 | atomic_t wb_sync_req[META]; /* count # of WB_SYNC threads */ |
Jaegeuk Kim | 687de7f | 2017-03-28 18:07:38 -0700 | [diff] [blame] | 1448 | |
Jaegeuk Kim | 513c5f3 | 2016-05-16 11:42:32 -0700 | [diff] [blame] | 1449 | /* valid inode count */ |
| 1450 | struct percpu_counter total_valid_inode_count; |
| 1451 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1452 | struct f2fs_mount_info mount_opt; /* mount options */ |
| 1453 | |
| 1454 | /* for cleaning operations */ |
Chao Yu | fb24fea | 2020-01-14 19:36:50 +0800 | [diff] [blame] | 1455 | struct rw_semaphore gc_lock; /* |
| 1456 | * semaphore for GC, avoid |
| 1457 | * race between GC and GC or CP |
| 1458 | */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1459 | struct f2fs_gc_kthread *gc_thread; /* GC thread */ |
Jaegeuk Kim | 5ec4e49 | 2013-03-31 13:26:03 +0900 | [diff] [blame] | 1460 | unsigned int cur_victim_sec; /* current victim section num */ |
Jaegeuk Kim | 5b0e953 | 2018-05-07 14:22:40 -0700 | [diff] [blame] | 1461 | unsigned int gc_mode; /* current GC state */ |
Chao Yu | e3080b0 | 2018-10-24 18:37:27 +0800 | [diff] [blame] | 1462 | unsigned int next_victim_seg[2]; /* next segment in victim section */ |
Chao Yu | 2ef79ec | 2018-05-07 20:28:54 +0800 | [diff] [blame] | 1463 | /* for skip statistic */ |
Sahitya Tummala | 677017d | 2019-11-13 16:01:03 +0530 | [diff] [blame] | 1464 | unsigned int atomic_files; /* # of opened atomic file */ |
Chao Yu | 2ef79ec | 2018-05-07 20:28:54 +0800 | [diff] [blame] | 1465 | unsigned long long skipped_atomic_files[2]; /* FG_GC and BG_GC */ |
Jaegeuk Kim | 6f8d445 | 2018-07-25 12:11:56 +0900 | [diff] [blame] | 1466 | unsigned long long skipped_gc_rwsem; /* FG_GC only */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1467 | |
Jaegeuk Kim | 1ad71a2 | 2017-12-07 16:25:39 -0800 | [diff] [blame] | 1468 | /* threshold for gc trials on pinned files */ |
| 1469 | u64 gc_pin_file_threshold; |
Jaegeuk Kim | f5a53ed | 2019-10-18 10:06:40 -0700 | [diff] [blame] | 1470 | struct rw_semaphore pin_sem; |
Jaegeuk Kim | 1ad71a2 | 2017-12-07 16:25:39 -0800 | [diff] [blame] | 1471 | |
Jaegeuk Kim | b1c57c1 | 2014-01-08 13:45:08 +0900 | [diff] [blame] | 1472 | /* maximum # of trials to find a victim segment for SSR and GC */ |
| 1473 | unsigned int max_victim_search; |
Chao Yu | e3080b0 | 2018-10-24 18:37:27 +0800 | [diff] [blame] | 1474 | /* migration granularity of garbage collection, unit: segment */ |
| 1475 | unsigned int migration_granularity; |
Jaegeuk Kim | b1c57c1 | 2014-01-08 13:45:08 +0900 | [diff] [blame] | 1476 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1477 | /* |
| 1478 | * for stat information. |
| 1479 | * one is for the LFS mode, and the other is for the SSR mode. |
| 1480 | */ |
Namjae Jeon | 35b09d8 | 2013-05-23 22:57:53 +0900 | [diff] [blame] | 1481 | #ifdef CONFIG_F2FS_STAT_FS |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1482 | struct f2fs_stat_info *stat_info; /* FS status information */ |
Chao Yu | b63e7be | 2018-09-29 18:31:27 +0800 | [diff] [blame] | 1483 | atomic_t meta_count[META_MAX]; /* # of meta blocks */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1484 | unsigned int segment_count[2]; /* # of allocated segments */ |
| 1485 | unsigned int block_count[2]; /* # of allocated blocks */ |
Changman Lee | b9a2c25 | 2014-12-24 02:16:54 +0900 | [diff] [blame] | 1486 | atomic_t inplace_count; /* # of inplace update */ |
Chao Yu | 5b7ee37 | 2015-09-30 17:38:48 +0800 | [diff] [blame] | 1487 | atomic64_t total_hit_ext; /* # of lookup extent cache */ |
| 1488 | atomic64_t read_hit_rbtree; /* # of hit rbtree extent node */ |
| 1489 | atomic64_t read_hit_largest; /* # of hit largest extent node */ |
| 1490 | atomic64_t read_hit_cached; /* # of hit cached extent node */ |
Chao Yu | d5e8f6c | 2015-07-15 17:28:53 +0800 | [diff] [blame] | 1491 | atomic_t inline_xattr; /* # of inline_xattr inodes */ |
Chao Yu | 03e14d5 | 2014-12-08 19:08:20 +0800 | [diff] [blame] | 1492 | atomic_t inline_inode; /* # of inline_data inodes */ |
| 1493 | atomic_t inline_dir; /* # of inline_dentry inodes */ |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1494 | atomic_t compr_inode; /* # of compressed inodes */ |
| 1495 | atomic_t compr_blocks; /* # of compressed blocks */ |
Chao Yu | 648d50b | 2017-03-22 17:23:45 +0800 | [diff] [blame] | 1496 | atomic_t vw_cnt; /* # of volatile writes */ |
Jaegeuk Kim | 26a28a0 | 2016-12-28 13:55:09 -0800 | [diff] [blame] | 1497 | atomic_t max_aw_cnt; /* max # of atomic writes */ |
Chao Yu | 648d50b | 2017-03-22 17:23:45 +0800 | [diff] [blame] | 1498 | atomic_t max_vw_cnt; /* max # of volatile writes */ |
Chao Yu | 274bd9b | 2018-09-29 18:31:28 +0800 | [diff] [blame] | 1499 | unsigned int io_skip_bggc; /* skip background gc for in-flight IO */ |
| 1500 | unsigned int other_skip_bggc; /* skip background gc for other reasons */ |
Chao Yu | 33fbd51 | 2015-12-17 17:14:44 +0800 | [diff] [blame] | 1501 | unsigned int ndirty_inode[NR_INODE_TYPE]; /* # of dirty inodes */ |
Namjae Jeon | 35b09d8 | 2013-05-23 22:57:53 +0900 | [diff] [blame] | 1502 | #endif |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1503 | spinlock_t stat_lock; /* lock for stat operations */ |
Namjae Jeon | b59d0ba | 2013-08-04 23:09:40 +0900 | [diff] [blame] | 1504 | |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 1505 | /* For app/fs IO statistics */ |
| 1506 | spinlock_t iostat_lock; |
| 1507 | unsigned long long write_iostat[NR_IO_TYPE]; |
Daeho Jeong | 2bc4bea | 2020-03-30 03:30:59 +0000 | [diff] [blame^] | 1508 | unsigned long long prev_write_iostat[NR_IO_TYPE]; |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 1509 | bool iostat_enable; |
Daeho Jeong | 2bc4bea | 2020-03-30 03:30:59 +0000 | [diff] [blame^] | 1510 | unsigned long iostat_next_period; |
| 1511 | unsigned int iostat_period_ms; |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 1512 | |
Jaegeuk Kim | da9953b | 2020-04-02 09:32:35 -0700 | [diff] [blame] | 1513 | /* to attach REQ_META|REQ_FUA flags */ |
| 1514 | unsigned int data_io_flag; |
| 1515 | |
Namjae Jeon | b59d0ba | 2013-08-04 23:09:40 +0900 | [diff] [blame] | 1516 | /* For sysfs suppport */ |
| 1517 | struct kobject s_kobj; |
| 1518 | struct completion s_kobj_unregister; |
Jaegeuk Kim | 2658e50 | 2015-06-19 12:01:21 -0700 | [diff] [blame] | 1519 | |
| 1520 | /* For shrinker support */ |
| 1521 | struct list_head s_list; |
Jaegeuk Kim | 3c62be1 | 2016-10-06 19:02:05 -0700 | [diff] [blame] | 1522 | int s_ndevs; /* number of devices */ |
| 1523 | struct f2fs_dev_info *devs; /* for device list */ |
Chao Yu | 1228b48 | 2017-09-29 13:59:39 +0800 | [diff] [blame] | 1524 | unsigned int dirty_device; /* for checkpoint data flush */ |
| 1525 | spinlock_t dev_lock; /* protect dirty_device */ |
Jaegeuk Kim | 2658e50 | 2015-06-19 12:01:21 -0700 | [diff] [blame] | 1526 | struct mutex umount_mutex; |
| 1527 | unsigned int shrinker_run_no; |
Shuoran Liu | 8f1dbbb | 2016-01-27 09:57:30 +0800 | [diff] [blame] | 1528 | |
| 1529 | /* For write statistics */ |
| 1530 | u64 sectors_written_start; |
| 1531 | u64 kbytes_written; |
Keith Mok | 43b6573 | 2016-03-02 12:04:24 -0800 | [diff] [blame] | 1532 | |
| 1533 | /* Reference to checksum algorithm driver via cryptoapi */ |
| 1534 | struct crypto_shash *s_chksum_driver; |
Chao Yu | 1ecc0c5 | 2016-09-23 21:30:09 +0800 | [diff] [blame] | 1535 | |
Chao Yu | 704956e | 2017-07-31 20:19:09 +0800 | [diff] [blame] | 1536 | /* Precomputed FS UUID checksum for seeding other checksums */ |
| 1537 | __u32 s_chksum_seed; |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 1538 | |
| 1539 | struct workqueue_struct *post_read_wq; /* post read workqueue */ |
Chao Yu | a999150 | 2020-02-25 18:17:10 +0800 | [diff] [blame] | 1540 | |
| 1541 | struct kmem_cache *inline_xattr_slab; /* inline xattr entry */ |
| 1542 | unsigned int inline_xattr_slab_size; /* default inline xattr slab size */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1543 | }; |
| 1544 | |
Chao Yu | 02b16d0 | 2018-11-12 00:46:46 +0800 | [diff] [blame] | 1545 | struct f2fs_private_dio { |
| 1546 | struct inode *inode; |
| 1547 | void *orig_private; |
| 1548 | bio_end_io_t *orig_end_io; |
| 1549 | bool write; |
| 1550 | }; |
| 1551 | |
Chao Yu | 1ecc0c5 | 2016-09-23 21:30:09 +0800 | [diff] [blame] | 1552 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
Chao Yu | c45d600 | 2019-11-01 17:53:23 +0800 | [diff] [blame] | 1553 | #define f2fs_show_injection_info(sbi, type) \ |
| 1554 | printk_ratelimited("%sF2FS-fs (%s) : inject %s in %s of %pS\n", \ |
| 1555 | KERN_INFO, sbi->sb->s_id, \ |
| 1556 | f2fs_fault_name[type], \ |
Chao Yu | 5552351 | 2017-02-25 11:08:28 +0800 | [diff] [blame] | 1557 | __func__, __builtin_return_address(0)) |
Chao Yu | 1ecc0c5 | 2016-09-23 21:30:09 +0800 | [diff] [blame] | 1558 | static inline bool time_to_inject(struct f2fs_sb_info *sbi, int type) |
| 1559 | { |
Chao Yu | 63189b7 | 2018-03-08 14:22:56 +0800 | [diff] [blame] | 1560 | struct f2fs_fault_info *ffi = &F2FS_OPTION(sbi).fault_info; |
Chao Yu | 1ecc0c5 | 2016-09-23 21:30:09 +0800 | [diff] [blame] | 1561 | |
| 1562 | if (!ffi->inject_rate) |
| 1563 | return false; |
| 1564 | |
| 1565 | if (!IS_FAULT_SET(ffi, type)) |
| 1566 | return false; |
| 1567 | |
| 1568 | atomic_inc(&ffi->inject_ops); |
| 1569 | if (atomic_read(&ffi->inject_ops) >= ffi->inject_rate) { |
| 1570 | atomic_set(&ffi->inject_ops, 0); |
Chao Yu | 1ecc0c5 | 2016-09-23 21:30:09 +0800 | [diff] [blame] | 1571 | return true; |
| 1572 | } |
| 1573 | return false; |
| 1574 | } |
Arnd Bergmann | 7fa750a | 2018-08-13 23:38:06 +0200 | [diff] [blame] | 1575 | #else |
Chao Yu | c45d600 | 2019-11-01 17:53:23 +0800 | [diff] [blame] | 1576 | #define f2fs_show_injection_info(sbi, type) do { } while (0) |
Arnd Bergmann | 7fa750a | 2018-08-13 23:38:06 +0200 | [diff] [blame] | 1577 | static inline bool time_to_inject(struct f2fs_sb_info *sbi, int type) |
| 1578 | { |
| 1579 | return false; |
| 1580 | } |
Chao Yu | 1ecc0c5 | 2016-09-23 21:30:09 +0800 | [diff] [blame] | 1581 | #endif |
| 1582 | |
Damien Le Moal | 0916878 | 2019-03-16 09:13:06 +0900 | [diff] [blame] | 1583 | /* |
| 1584 | * Test if the mounted volume is a multi-device volume. |
| 1585 | * - For a single regular disk volume, sbi->s_ndevs is 0. |
| 1586 | * - For a single zoned disk volume, sbi->s_ndevs is 1. |
| 1587 | * - For a multi-device volume, sbi->s_ndevs is always 2 or more. |
| 1588 | */ |
| 1589 | static inline bool f2fs_is_multi_device(struct f2fs_sb_info *sbi) |
| 1590 | { |
| 1591 | return sbi->s_ndevs > 1; |
| 1592 | } |
| 1593 | |
Shuoran Liu | 8f1dbbb | 2016-01-27 09:57:30 +0800 | [diff] [blame] | 1594 | /* For write statistics. Suppose sector size is 512 bytes, |
| 1595 | * and the return value is in kbytes. s is of struct f2fs_sb_info. |
| 1596 | */ |
| 1597 | #define BD_PART_WRITTEN(s) \ |
Michael Callahan | dbae2c5 | 2018-07-18 04:47:38 -0700 | [diff] [blame] | 1598 | (((u64)part_stat_read((s)->sb->s_bdev->bd_part, sectors[STAT_WRITE]) - \ |
Tomohiro Kusumi | 68afcf2 | 2017-04-09 02:11:36 +0300 | [diff] [blame] | 1599 | (s)->sectors_written_start) >> 1) |
Shuoran Liu | 8f1dbbb | 2016-01-27 09:57:30 +0800 | [diff] [blame] | 1600 | |
Jaegeuk Kim | 6beceb5 | 2016-01-08 15:51:50 -0800 | [diff] [blame] | 1601 | static inline void f2fs_update_time(struct f2fs_sb_info *sbi, int type) |
| 1602 | { |
Sahitya Tummala | a7d10cf | 2018-09-19 14:18:47 +0530 | [diff] [blame] | 1603 | unsigned long now = jiffies; |
| 1604 | |
| 1605 | sbi->last_time[type] = now; |
| 1606 | |
| 1607 | /* DISCARD_TIME and GC_TIME are based on REQ_TIME */ |
| 1608 | if (type == REQ_TIME) { |
| 1609 | sbi->last_time[DISCARD_TIME] = now; |
| 1610 | sbi->last_time[GC_TIME] = now; |
| 1611 | } |
Jaegeuk Kim | 6beceb5 | 2016-01-08 15:51:50 -0800 | [diff] [blame] | 1612 | } |
| 1613 | |
| 1614 | static inline bool f2fs_time_over(struct f2fs_sb_info *sbi, int type) |
| 1615 | { |
Arnd Bergmann | 6bccfa1 | 2017-10-19 11:52:47 +0200 | [diff] [blame] | 1616 | unsigned long interval = sbi->interval_time[type] * HZ; |
Jaegeuk Kim | 6beceb5 | 2016-01-08 15:51:50 -0800 | [diff] [blame] | 1617 | |
| 1618 | return time_after(jiffies, sbi->last_time[type] + interval); |
| 1619 | } |
| 1620 | |
Sahitya Tummala | a7d10cf | 2018-09-19 14:18:47 +0530 | [diff] [blame] | 1621 | static inline unsigned int f2fs_time_to_wait(struct f2fs_sb_info *sbi, |
| 1622 | int type) |
| 1623 | { |
| 1624 | unsigned long interval = sbi->interval_time[type] * HZ; |
| 1625 | unsigned int wait_ms = 0; |
| 1626 | long delta; |
| 1627 | |
| 1628 | delta = (sbi->last_time[type] + interval) - jiffies; |
| 1629 | if (delta > 0) |
| 1630 | wait_ms = jiffies_to_msecs(delta); |
| 1631 | |
| 1632 | return wait_ms; |
| 1633 | } |
| 1634 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1635 | /* |
| 1636 | * Inline functions |
| 1637 | */ |
Chao Yu | 416d2db | 2017-11-30 19:28:21 +0800 | [diff] [blame] | 1638 | static inline u32 __f2fs_crc32(struct f2fs_sb_info *sbi, u32 crc, |
Chao Yu | 704956e | 2017-07-31 20:19:09 +0800 | [diff] [blame] | 1639 | const void *address, unsigned int length) |
| 1640 | { |
| 1641 | struct { |
| 1642 | struct shash_desc shash; |
| 1643 | char ctx[4]; |
| 1644 | } desc; |
| 1645 | int err; |
| 1646 | |
| 1647 | BUG_ON(crypto_shash_descsize(sbi->s_chksum_driver) != sizeof(desc.ctx)); |
| 1648 | |
| 1649 | desc.shash.tfm = sbi->s_chksum_driver; |
Chao Yu | 704956e | 2017-07-31 20:19:09 +0800 | [diff] [blame] | 1650 | *(u32 *)desc.ctx = crc; |
| 1651 | |
| 1652 | err = crypto_shash_update(&desc.shash, address, length); |
| 1653 | BUG_ON(err); |
| 1654 | |
| 1655 | return *(u32 *)desc.ctx; |
| 1656 | } |
| 1657 | |
Chao Yu | 416d2db | 2017-11-30 19:28:21 +0800 | [diff] [blame] | 1658 | static inline u32 f2fs_crc32(struct f2fs_sb_info *sbi, const void *address, |
| 1659 | unsigned int length) |
| 1660 | { |
| 1661 | return __f2fs_crc32(sbi, F2FS_SUPER_MAGIC, address, length); |
| 1662 | } |
| 1663 | |
| 1664 | static inline bool f2fs_crc_valid(struct f2fs_sb_info *sbi, __u32 blk_crc, |
| 1665 | void *buf, size_t buf_size) |
| 1666 | { |
| 1667 | return f2fs_crc32(sbi, buf, buf_size) == blk_crc; |
| 1668 | } |
| 1669 | |
| 1670 | static inline u32 f2fs_chksum(struct f2fs_sb_info *sbi, u32 crc, |
| 1671 | const void *address, unsigned int length) |
| 1672 | { |
| 1673 | return __f2fs_crc32(sbi, crc, address, length); |
| 1674 | } |
| 1675 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1676 | static inline struct f2fs_inode_info *F2FS_I(struct inode *inode) |
| 1677 | { |
| 1678 | return container_of(inode, struct f2fs_inode_info, vfs_inode); |
| 1679 | } |
| 1680 | |
| 1681 | static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb) |
| 1682 | { |
| 1683 | return sb->s_fs_info; |
| 1684 | } |
| 1685 | |
Jaegeuk Kim | 4081363 | 2014-09-02 15:31:18 -0700 | [diff] [blame] | 1686 | static inline struct f2fs_sb_info *F2FS_I_SB(struct inode *inode) |
| 1687 | { |
| 1688 | return F2FS_SB(inode->i_sb); |
| 1689 | } |
| 1690 | |
| 1691 | static inline struct f2fs_sb_info *F2FS_M_SB(struct address_space *mapping) |
| 1692 | { |
| 1693 | return F2FS_I_SB(mapping->host); |
| 1694 | } |
| 1695 | |
| 1696 | static inline struct f2fs_sb_info *F2FS_P_SB(struct page *page) |
| 1697 | { |
Jaegeuk Kim | 4969c06 | 2019-07-01 19:15:29 -0700 | [diff] [blame] | 1698 | return F2FS_M_SB(page_file_mapping(page)); |
Jaegeuk Kim | 4081363 | 2014-09-02 15:31:18 -0700 | [diff] [blame] | 1699 | } |
| 1700 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1701 | static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi) |
| 1702 | { |
| 1703 | return (struct f2fs_super_block *)(sbi->raw_super); |
| 1704 | } |
| 1705 | |
| 1706 | static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi) |
| 1707 | { |
| 1708 | return (struct f2fs_checkpoint *)(sbi->ckpt); |
| 1709 | } |
| 1710 | |
Gu Zheng | 4559071 | 2013-07-15 17:57:38 +0800 | [diff] [blame] | 1711 | static inline struct f2fs_node *F2FS_NODE(struct page *page) |
| 1712 | { |
| 1713 | return (struct f2fs_node *)page_address(page); |
| 1714 | } |
| 1715 | |
Jaegeuk Kim | 58bfaf4 | 2013-12-26 16:30:41 +0900 | [diff] [blame] | 1716 | static inline struct f2fs_inode *F2FS_INODE(struct page *page) |
| 1717 | { |
| 1718 | return &((struct f2fs_node *)page_address(page))->i; |
| 1719 | } |
| 1720 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1721 | static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi) |
| 1722 | { |
| 1723 | return (struct f2fs_nm_info *)(sbi->nm_info); |
| 1724 | } |
| 1725 | |
| 1726 | static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi) |
| 1727 | { |
| 1728 | return (struct f2fs_sm_info *)(sbi->sm_info); |
| 1729 | } |
| 1730 | |
| 1731 | static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi) |
| 1732 | { |
| 1733 | return (struct sit_info *)(SM_I(sbi)->sit_info); |
| 1734 | } |
| 1735 | |
| 1736 | static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi) |
| 1737 | { |
| 1738 | return (struct free_segmap_info *)(SM_I(sbi)->free_info); |
| 1739 | } |
| 1740 | |
| 1741 | static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi) |
| 1742 | { |
| 1743 | return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info); |
| 1744 | } |
| 1745 | |
Gu Zheng | 9df27d9 | 2014-01-20 18:37:04 +0800 | [diff] [blame] | 1746 | static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi) |
| 1747 | { |
| 1748 | return sbi->meta_inode->i_mapping; |
| 1749 | } |
| 1750 | |
Jaegeuk Kim | 4ef51a8 | 2014-01-21 18:51:16 +0900 | [diff] [blame] | 1751 | static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi) |
| 1752 | { |
| 1753 | return sbi->node_inode->i_mapping; |
| 1754 | } |
| 1755 | |
Chao Yu | caf0047 | 2015-01-28 17:48:42 +0800 | [diff] [blame] | 1756 | static inline bool is_sbi_flag_set(struct f2fs_sb_info *sbi, unsigned int type) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1757 | { |
Chao Yu | fadb2fb | 2016-09-20 10:29:47 +0800 | [diff] [blame] | 1758 | return test_bit(type, &sbi->s_flag); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1759 | } |
| 1760 | |
Chao Yu | caf0047 | 2015-01-28 17:48:42 +0800 | [diff] [blame] | 1761 | static inline void set_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1762 | { |
Chao Yu | fadb2fb | 2016-09-20 10:29:47 +0800 | [diff] [blame] | 1763 | set_bit(type, &sbi->s_flag); |
Chao Yu | caf0047 | 2015-01-28 17:48:42 +0800 | [diff] [blame] | 1764 | } |
| 1765 | |
| 1766 | static inline void clear_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type) |
| 1767 | { |
Chao Yu | fadb2fb | 2016-09-20 10:29:47 +0800 | [diff] [blame] | 1768 | clear_bit(type, &sbi->s_flag); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1769 | } |
| 1770 | |
Jaegeuk Kim | d71b556 | 2013-08-09 15:03:21 +0900 | [diff] [blame] | 1771 | static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp) |
| 1772 | { |
| 1773 | return le64_to_cpu(cp->checkpoint_ver); |
| 1774 | } |
| 1775 | |
Jaegeuk Kim | ea67673 | 2017-10-06 09:14:28 -0700 | [diff] [blame] | 1776 | static inline unsigned long f2fs_qf_ino(struct super_block *sb, int type) |
| 1777 | { |
| 1778 | if (type < F2FS_MAX_QUOTAS) |
| 1779 | return le32_to_cpu(F2FS_SB(sb)->raw_super->qf_ino[type]); |
| 1780 | return 0; |
| 1781 | } |
| 1782 | |
Kinglong Mee | ced2c7e | 2017-02-25 19:53:39 +0800 | [diff] [blame] | 1783 | static inline __u64 cur_cp_crc(struct f2fs_checkpoint *cp) |
| 1784 | { |
| 1785 | size_t crc_offset = le32_to_cpu(cp->checksum_offset); |
| 1786 | return le32_to_cpu(*((__le32 *)((unsigned char *)cp + crc_offset))); |
| 1787 | } |
| 1788 | |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 1789 | static inline bool __is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f) |
Jaegeuk Kim | 25ca923 | 2012-11-28 16:12:41 +0900 | [diff] [blame] | 1790 | { |
| 1791 | unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags); |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 1792 | |
Jaegeuk Kim | 25ca923 | 2012-11-28 16:12:41 +0900 | [diff] [blame] | 1793 | return ckpt_flags & f; |
| 1794 | } |
| 1795 | |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 1796 | static inline bool is_set_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f) |
Jaegeuk Kim | 25ca923 | 2012-11-28 16:12:41 +0900 | [diff] [blame] | 1797 | { |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 1798 | return __is_set_ckpt_flags(F2FS_CKPT(sbi), f); |
| 1799 | } |
| 1800 | |
| 1801 | static inline void __set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f) |
| 1802 | { |
| 1803 | unsigned int ckpt_flags; |
| 1804 | |
| 1805 | ckpt_flags = le32_to_cpu(cp->ckpt_flags); |
Jaegeuk Kim | 25ca923 | 2012-11-28 16:12:41 +0900 | [diff] [blame] | 1806 | ckpt_flags |= f; |
| 1807 | cp->ckpt_flags = cpu_to_le32(ckpt_flags); |
| 1808 | } |
| 1809 | |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 1810 | static inline void set_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f) |
Jaegeuk Kim | 25ca923 | 2012-11-28 16:12:41 +0900 | [diff] [blame] | 1811 | { |
Chao Yu | d1aa245 | 2017-07-07 14:10:15 +0800 | [diff] [blame] | 1812 | unsigned long flags; |
| 1813 | |
| 1814 | spin_lock_irqsave(&sbi->cp_lock, flags); |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 1815 | __set_ckpt_flags(F2FS_CKPT(sbi), f); |
Chao Yu | d1aa245 | 2017-07-07 14:10:15 +0800 | [diff] [blame] | 1816 | spin_unlock_irqrestore(&sbi->cp_lock, flags); |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 1817 | } |
| 1818 | |
| 1819 | static inline void __clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f) |
| 1820 | { |
| 1821 | unsigned int ckpt_flags; |
| 1822 | |
| 1823 | ckpt_flags = le32_to_cpu(cp->ckpt_flags); |
Jaegeuk Kim | 25ca923 | 2012-11-28 16:12:41 +0900 | [diff] [blame] | 1824 | ckpt_flags &= (~f); |
| 1825 | cp->ckpt_flags = cpu_to_le32(ckpt_flags); |
| 1826 | } |
| 1827 | |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 1828 | static inline void clear_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f) |
| 1829 | { |
Chao Yu | d1aa245 | 2017-07-07 14:10:15 +0800 | [diff] [blame] | 1830 | unsigned long flags; |
| 1831 | |
| 1832 | spin_lock_irqsave(&sbi->cp_lock, flags); |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 1833 | __clear_ckpt_flags(F2FS_CKPT(sbi), f); |
Chao Yu | d1aa245 | 2017-07-07 14:10:15 +0800 | [diff] [blame] | 1834 | spin_unlock_irqrestore(&sbi->cp_lock, flags); |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 1835 | } |
| 1836 | |
Jaegeuk Kim | 22ad0b6 | 2017-02-09 10:38:09 -0800 | [diff] [blame] | 1837 | static inline void disable_nat_bits(struct f2fs_sb_info *sbi, bool lock) |
| 1838 | { |
Chao Yu | d1aa245 | 2017-07-07 14:10:15 +0800 | [diff] [blame] | 1839 | unsigned long flags; |
Chao Yu | 0921835 | 2019-07-26 15:43:17 +0800 | [diff] [blame] | 1840 | unsigned char *nat_bits; |
Chao Yu | d1aa245 | 2017-07-07 14:10:15 +0800 | [diff] [blame] | 1841 | |
Jaegeuk Kim | a742fd4 | 2018-11-27 23:28:37 -0800 | [diff] [blame] | 1842 | /* |
| 1843 | * In order to re-enable nat_bits we need to call fsck.f2fs by |
| 1844 | * set_sbi_flag(sbi, SBI_NEED_FSCK). But it may give huge cost, |
| 1845 | * so let's rely on regular fsck or unclean shutdown. |
| 1846 | */ |
Jaegeuk Kim | 22ad0b6 | 2017-02-09 10:38:09 -0800 | [diff] [blame] | 1847 | |
| 1848 | if (lock) |
Chao Yu | d1aa245 | 2017-07-07 14:10:15 +0800 | [diff] [blame] | 1849 | spin_lock_irqsave(&sbi->cp_lock, flags); |
Jaegeuk Kim | 22ad0b6 | 2017-02-09 10:38:09 -0800 | [diff] [blame] | 1850 | __clear_ckpt_flags(F2FS_CKPT(sbi), CP_NAT_BITS_FLAG); |
Chao Yu | 0921835 | 2019-07-26 15:43:17 +0800 | [diff] [blame] | 1851 | nat_bits = NM_I(sbi)->nat_bits; |
Jaegeuk Kim | 22ad0b6 | 2017-02-09 10:38:09 -0800 | [diff] [blame] | 1852 | NM_I(sbi)->nat_bits = NULL; |
| 1853 | if (lock) |
Chao Yu | d1aa245 | 2017-07-07 14:10:15 +0800 | [diff] [blame] | 1854 | spin_unlock_irqrestore(&sbi->cp_lock, flags); |
Chao Yu | 0921835 | 2019-07-26 15:43:17 +0800 | [diff] [blame] | 1855 | |
| 1856 | kvfree(nat_bits); |
Jaegeuk Kim | 22ad0b6 | 2017-02-09 10:38:09 -0800 | [diff] [blame] | 1857 | } |
| 1858 | |
| 1859 | static inline bool enabled_nat_bits(struct f2fs_sb_info *sbi, |
| 1860 | struct cp_control *cpc) |
| 1861 | { |
| 1862 | bool set = is_set_ckpt_flags(sbi, CP_NAT_BITS_FLAG); |
| 1863 | |
Chao Yu | c473f1a | 2017-04-27 20:40:39 +0800 | [diff] [blame] | 1864 | return (cpc) ? (cpc->reason & CP_UMOUNT) && set : set; |
Jaegeuk Kim | 22ad0b6 | 2017-02-09 10:38:09 -0800 | [diff] [blame] | 1865 | } |
| 1866 | |
Gu Zheng | e479556 | 2013-09-27 18:08:30 +0800 | [diff] [blame] | 1867 | static inline void f2fs_lock_op(struct f2fs_sb_info *sbi) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1868 | { |
Jaegeuk Kim | b873b79 | 2016-08-04 11:38:25 -0700 | [diff] [blame] | 1869 | down_read(&sbi->cp_rwsem); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1870 | } |
| 1871 | |
Jaegeuk Kim | cc15620 | 2017-05-12 13:51:34 -0700 | [diff] [blame] | 1872 | static inline int f2fs_trylock_op(struct f2fs_sb_info *sbi) |
| 1873 | { |
| 1874 | return down_read_trylock(&sbi->cp_rwsem); |
| 1875 | } |
| 1876 | |
Gu Zheng | e479556 | 2013-09-27 18:08:30 +0800 | [diff] [blame] | 1877 | static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1878 | { |
Jaegeuk Kim | b873b79 | 2016-08-04 11:38:25 -0700 | [diff] [blame] | 1879 | up_read(&sbi->cp_rwsem); |
Jaegeuk Kim | 3993683 | 2012-11-22 16:21:29 +0900 | [diff] [blame] | 1880 | } |
| 1881 | |
Gu Zheng | e479556 | 2013-09-27 18:08:30 +0800 | [diff] [blame] | 1882 | static inline void f2fs_lock_all(struct f2fs_sb_info *sbi) |
Jaegeuk Kim | 3993683 | 2012-11-22 16:21:29 +0900 | [diff] [blame] | 1883 | { |
Jaegeuk Kim | b873b79 | 2016-08-04 11:38:25 -0700 | [diff] [blame] | 1884 | down_write(&sbi->cp_rwsem); |
Jaegeuk Kim | 3993683 | 2012-11-22 16:21:29 +0900 | [diff] [blame] | 1885 | } |
| 1886 | |
Gu Zheng | e479556 | 2013-09-27 18:08:30 +0800 | [diff] [blame] | 1887 | static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi) |
Jaegeuk Kim | 3993683 | 2012-11-22 16:21:29 +0900 | [diff] [blame] | 1888 | { |
Jaegeuk Kim | b873b79 | 2016-08-04 11:38:25 -0700 | [diff] [blame] | 1889 | up_write(&sbi->cp_rwsem); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1890 | } |
| 1891 | |
Jaegeuk Kim | 119ee91 | 2015-01-29 11:45:33 -0800 | [diff] [blame] | 1892 | static inline int __get_cp_reason(struct f2fs_sb_info *sbi) |
| 1893 | { |
| 1894 | int reason = CP_SYNC; |
| 1895 | |
| 1896 | if (test_opt(sbi, FASTBOOT)) |
| 1897 | reason = CP_FASTBOOT; |
| 1898 | if (is_sbi_flag_set(sbi, SBI_IS_CLOSE)) |
| 1899 | reason = CP_UMOUNT; |
| 1900 | return reason; |
| 1901 | } |
| 1902 | |
| 1903 | static inline bool __remain_node_summaries(int reason) |
| 1904 | { |
Chao Yu | c473f1a | 2017-04-27 20:40:39 +0800 | [diff] [blame] | 1905 | return (reason & (CP_UMOUNT | CP_FASTBOOT)); |
Jaegeuk Kim | 119ee91 | 2015-01-29 11:45:33 -0800 | [diff] [blame] | 1906 | } |
| 1907 | |
| 1908 | static inline bool __exist_node_summaries(struct f2fs_sb_info *sbi) |
| 1909 | { |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 1910 | return (is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG) || |
| 1911 | is_set_ckpt_flags(sbi, CP_FASTBOOT_FLAG)); |
Jaegeuk Kim | 119ee91 | 2015-01-29 11:45:33 -0800 | [diff] [blame] | 1912 | } |
| 1913 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1914 | /* |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1915 | * Check whether the inode has blocks or not |
| 1916 | */ |
| 1917 | static inline int F2FS_HAS_BLOCKS(struct inode *inode) |
| 1918 | { |
Chao Yu | 0eb0ada | 2017-06-14 23:00:56 +0800 | [diff] [blame] | 1919 | block_t xattr_block = F2FS_I(inode)->i_xattr_nid ? 1 : 0; |
| 1920 | |
Chao Yu | 000519f | 2017-07-06 01:11:31 +0800 | [diff] [blame] | 1921 | return (inode->i_blocks >> F2FS_LOG_SECTORS_PER_BLOCK) > xattr_block; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1922 | } |
| 1923 | |
Chao Yu | 4bc8e9b | 2014-03-17 16:35:06 +0800 | [diff] [blame] | 1924 | static inline bool f2fs_has_xattr_block(unsigned int ofs) |
| 1925 | { |
| 1926 | return ofs == XATTR_NODE_OFFSET; |
| 1927 | } |
| 1928 | |
Jaegeuk Kim | d8a9a22 | 2018-01-05 16:02:36 -0800 | [diff] [blame] | 1929 | static inline bool __allow_reserved_blocks(struct f2fs_sb_info *sbi, |
Jaegeuk Kim | a90a0884 | 2018-04-20 23:44:59 -0700 | [diff] [blame] | 1930 | struct inode *inode, bool cap) |
Jaegeuk Kim | 7c2e596 | 2018-01-04 21:36:09 -0800 | [diff] [blame] | 1931 | { |
Jaegeuk Kim | d8a9a22 | 2018-01-05 16:02:36 -0800 | [diff] [blame] | 1932 | if (!inode) |
| 1933 | return true; |
Jaegeuk Kim | 7c2e596 | 2018-01-04 21:36:09 -0800 | [diff] [blame] | 1934 | if (!test_opt(sbi, RESERVE_ROOT)) |
| 1935 | return false; |
Jaegeuk Kim | d8a9a22 | 2018-01-05 16:02:36 -0800 | [diff] [blame] | 1936 | if (IS_NOQUOTA(inode)) |
| 1937 | return true; |
Chao Yu | 63189b7 | 2018-03-08 14:22:56 +0800 | [diff] [blame] | 1938 | if (uid_eq(F2FS_OPTION(sbi).s_resuid, current_fsuid())) |
Jaegeuk Kim | 7c2e596 | 2018-01-04 21:36:09 -0800 | [diff] [blame] | 1939 | return true; |
Chao Yu | 63189b7 | 2018-03-08 14:22:56 +0800 | [diff] [blame] | 1940 | if (!gid_eq(F2FS_OPTION(sbi).s_resgid, GLOBAL_ROOT_GID) && |
| 1941 | in_group_p(F2FS_OPTION(sbi).s_resgid)) |
Jaegeuk Kim | 7c2e596 | 2018-01-04 21:36:09 -0800 | [diff] [blame] | 1942 | return true; |
Jaegeuk Kim | a90a0884 | 2018-04-20 23:44:59 -0700 | [diff] [blame] | 1943 | if (cap && capable(CAP_SYS_RESOURCE)) |
Jaegeuk Kim | 162b27a | 2018-03-08 20:47:33 -0800 | [diff] [blame] | 1944 | return true; |
Jaegeuk Kim | 7c2e596 | 2018-01-04 21:36:09 -0800 | [diff] [blame] | 1945 | return false; |
| 1946 | } |
| 1947 | |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 1948 | static inline void f2fs_i_blocks_write(struct inode *, block_t, bool, bool); |
| 1949 | static inline int inc_valid_block_count(struct f2fs_sb_info *sbi, |
Chao Yu | 46008c6 | 2016-05-09 19:56:30 +0800 | [diff] [blame] | 1950 | struct inode *inode, blkcnt_t *count) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1951 | { |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 1952 | blkcnt_t diff = 0, release = 0; |
Chao Yu | daeb433 | 2017-06-26 16:24:41 +0800 | [diff] [blame] | 1953 | block_t avail_user_block_count; |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 1954 | int ret; |
| 1955 | |
| 1956 | ret = dquot_reserve_block(inode, *count); |
| 1957 | if (ret) |
| 1958 | return ret; |
Jaegeuk Kim | dd11a5d | 2016-07-19 19:20:11 -0700 | [diff] [blame] | 1959 | |
Chao Yu | 5552351 | 2017-02-25 11:08:28 +0800 | [diff] [blame] | 1960 | if (time_to_inject(sbi, FAULT_BLOCK)) { |
Chao Yu | c45d600 | 2019-11-01 17:53:23 +0800 | [diff] [blame] | 1961 | f2fs_show_injection_info(sbi, FAULT_BLOCK); |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 1962 | release = *count; |
Chao Yu | 9ea2f0b | 2019-08-23 17:58:34 +0800 | [diff] [blame] | 1963 | goto release_quota; |
Chao Yu | 5552351 | 2017-02-25 11:08:28 +0800 | [diff] [blame] | 1964 | } |
Arnd Bergmann | 7fa750a | 2018-08-13 23:38:06 +0200 | [diff] [blame] | 1965 | |
Jaegeuk Kim | dd11a5d | 2016-07-19 19:20:11 -0700 | [diff] [blame] | 1966 | /* |
| 1967 | * let's increase this in prior to actual block count change in order |
| 1968 | * for f2fs_sync_file to avoid data races when deciding checkpoint. |
| 1969 | */ |
| 1970 | percpu_counter_add(&sbi->alloc_valid_block_count, (*count)); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1971 | |
| 1972 | spin_lock(&sbi->stat_lock); |
Jaegeuk Kim | 2555a2d | 2016-06-30 19:02:06 -0700 | [diff] [blame] | 1973 | sbi->total_valid_block_count += (block_t)(*count); |
Yunlong Song | 80d4214 | 2017-10-27 20:45:05 +0800 | [diff] [blame] | 1974 | avail_user_block_count = sbi->user_block_count - |
| 1975 | sbi->current_reserved_blocks; |
Jaegeuk Kim | 7e65be4 | 2017-12-27 15:05:52 -0800 | [diff] [blame] | 1976 | |
Jaegeuk Kim | a90a0884 | 2018-04-20 23:44:59 -0700 | [diff] [blame] | 1977 | if (!__allow_reserved_blocks(sbi, inode, true)) |
Chao Yu | 63189b7 | 2018-03-08 14:22:56 +0800 | [diff] [blame] | 1978 | avail_user_block_count -= F2FS_OPTION(sbi).root_reserved_blocks; |
Daniel Rosenberg | a4c3eca | 2019-05-29 17:49:05 -0700 | [diff] [blame] | 1979 | if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) { |
| 1980 | if (avail_user_block_count > sbi->unusable_block_count) |
| 1981 | avail_user_block_count -= sbi->unusable_block_count; |
| 1982 | else |
| 1983 | avail_user_block_count = 0; |
| 1984 | } |
Chao Yu | daeb433 | 2017-06-26 16:24:41 +0800 | [diff] [blame] | 1985 | if (unlikely(sbi->total_valid_block_count > avail_user_block_count)) { |
| 1986 | diff = sbi->total_valid_block_count - avail_user_block_count; |
Jaegeuk Kim | 7e65be4 | 2017-12-27 15:05:52 -0800 | [diff] [blame] | 1987 | if (diff > *count) |
| 1988 | diff = *count; |
Jaegeuk Kim | dd11a5d | 2016-07-19 19:20:11 -0700 | [diff] [blame] | 1989 | *count -= diff; |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 1990 | release = diff; |
Jaegeuk Kim | 7e65be4 | 2017-12-27 15:05:52 -0800 | [diff] [blame] | 1991 | sbi->total_valid_block_count -= diff; |
Chao Yu | 46008c6 | 2016-05-09 19:56:30 +0800 | [diff] [blame] | 1992 | if (!*count) { |
| 1993 | spin_unlock(&sbi->stat_lock); |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 1994 | goto enospc; |
Chao Yu | 46008c6 | 2016-05-09 19:56:30 +0800 | [diff] [blame] | 1995 | } |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1996 | } |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1997 | spin_unlock(&sbi->stat_lock); |
Jaegeuk Kim | 41382ec | 2016-05-16 11:06:50 -0700 | [diff] [blame] | 1998 | |
Daniel Rosenberg | 36b877a | 2018-07-09 20:32:42 -0700 | [diff] [blame] | 1999 | if (unlikely(release)) { |
| 2000 | percpu_counter_sub(&sbi->alloc_valid_block_count, release); |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2001 | dquot_release_reservation_block(inode, release); |
Daniel Rosenberg | 36b877a | 2018-07-09 20:32:42 -0700 | [diff] [blame] | 2002 | } |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2003 | f2fs_i_blocks_write(inode, *count, true, true); |
| 2004 | return 0; |
| 2005 | |
| 2006 | enospc: |
Daniel Rosenberg | 36b877a | 2018-07-09 20:32:42 -0700 | [diff] [blame] | 2007 | percpu_counter_sub(&sbi->alloc_valid_block_count, release); |
Chao Yu | 9ea2f0b | 2019-08-23 17:58:34 +0800 | [diff] [blame] | 2008 | release_quota: |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2009 | dquot_release_reservation_block(inode, release); |
| 2010 | return -ENOSPC; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2011 | } |
| 2012 | |
Joe Perches | dcbb4c1 | 2019-06-18 17:48:42 +0800 | [diff] [blame] | 2013 | __printf(2, 3) |
| 2014 | void f2fs_printk(struct f2fs_sb_info *sbi, const char *fmt, ...); |
| 2015 | |
| 2016 | #define f2fs_err(sbi, fmt, ...) \ |
| 2017 | f2fs_printk(sbi, KERN_ERR fmt, ##__VA_ARGS__) |
| 2018 | #define f2fs_warn(sbi, fmt, ...) \ |
| 2019 | f2fs_printk(sbi, KERN_WARNING fmt, ##__VA_ARGS__) |
| 2020 | #define f2fs_notice(sbi, fmt, ...) \ |
| 2021 | f2fs_printk(sbi, KERN_NOTICE fmt, ##__VA_ARGS__) |
| 2022 | #define f2fs_info(sbi, fmt, ...) \ |
| 2023 | f2fs_printk(sbi, KERN_INFO fmt, ##__VA_ARGS__) |
| 2024 | #define f2fs_debug(sbi, fmt, ...) \ |
| 2025 | f2fs_printk(sbi, KERN_DEBUG fmt, ##__VA_ARGS__) |
| 2026 | |
Gu Zheng | da19b0d | 2013-11-19 18:03:27 +0800 | [diff] [blame] | 2027 | static inline void dec_valid_block_count(struct f2fs_sb_info *sbi, |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2028 | struct inode *inode, |
Chao Yu | 0eb0ada | 2017-06-14 23:00:56 +0800 | [diff] [blame] | 2029 | block_t count) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2030 | { |
Chao Yu | 0eb0ada | 2017-06-14 23:00:56 +0800 | [diff] [blame] | 2031 | blkcnt_t sectors = count << F2FS_LOG_SECTORS_PER_BLOCK; |
| 2032 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2033 | spin_lock(&sbi->stat_lock); |
Jaegeuk Kim | 9850cf4 | 2014-09-02 15:52:58 -0700 | [diff] [blame] | 2034 | f2fs_bug_on(sbi, sbi->total_valid_block_count < (block_t) count); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2035 | sbi->total_valid_block_count -= (block_t)count; |
Yunlong Song | 80d4214 | 2017-10-27 20:45:05 +0800 | [diff] [blame] | 2036 | if (sbi->reserved_blocks && |
| 2037 | sbi->current_reserved_blocks < sbi->reserved_blocks) |
| 2038 | sbi->current_reserved_blocks = min(sbi->reserved_blocks, |
| 2039 | sbi->current_reserved_blocks + count); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2040 | spin_unlock(&sbi->stat_lock); |
Chao Yu | 5e159cd | 2019-04-15 15:28:30 +0800 | [diff] [blame] | 2041 | if (unlikely(inode->i_blocks < sectors)) { |
Joe Perches | dcbb4c1 | 2019-06-18 17:48:42 +0800 | [diff] [blame] | 2042 | f2fs_warn(sbi, "Inconsistent i_blocks, ino:%lu, iblocks:%llu, sectors:%llu", |
| 2043 | inode->i_ino, |
| 2044 | (unsigned long long)inode->i_blocks, |
| 2045 | (unsigned long long)sectors); |
Chao Yu | 5e159cd | 2019-04-15 15:28:30 +0800 | [diff] [blame] | 2046 | set_sbi_flag(sbi, SBI_NEED_FSCK); |
| 2047 | return; |
| 2048 | } |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2049 | f2fs_i_blocks_write(inode, count, false, true); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2050 | } |
| 2051 | |
| 2052 | static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type) |
| 2053 | { |
Jaegeuk Kim | 35782b2 | 2016-10-20 19:09:57 -0700 | [diff] [blame] | 2054 | atomic_inc(&sbi->nr_pages[count_type]); |
Chao Yu | 7c4abcb | 2016-08-18 17:46:14 +0800 | [diff] [blame] | 2055 | |
Chao Yu | 2010987 | 2019-01-10 16:40:12 +0800 | [diff] [blame] | 2056 | if (count_type == F2FS_DIRTY_DENTS || |
| 2057 | count_type == F2FS_DIRTY_NODES || |
| 2058 | count_type == F2FS_DIRTY_META || |
| 2059 | count_type == F2FS_DIRTY_QDATA || |
| 2060 | count_type == F2FS_DIRTY_IMETA) |
| 2061 | set_sbi_flag(sbi, SBI_IS_DIRTY); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2062 | } |
| 2063 | |
Jaegeuk Kim | a7ffdbe | 2014-09-12 15:53:45 -0700 | [diff] [blame] | 2064 | static inline void inode_inc_dirty_pages(struct inode *inode) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2065 | { |
Jaegeuk Kim | 204706c | 2016-12-02 15:11:32 -0800 | [diff] [blame] | 2066 | atomic_inc(&F2FS_I(inode)->dirty_pages); |
Chao Yu | c227f91 | 2015-12-16 13:09:20 +0800 | [diff] [blame] | 2067 | inc_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ? |
| 2068 | F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA); |
Jaegeuk Kim | 2c8a4a2 | 2017-11-13 17:46:38 -0800 | [diff] [blame] | 2069 | if (IS_NOQUOTA(inode)) |
| 2070 | inc_page_count(F2FS_I_SB(inode), F2FS_DIRTY_QDATA); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2071 | } |
| 2072 | |
| 2073 | static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type) |
| 2074 | { |
Jaegeuk Kim | 35782b2 | 2016-10-20 19:09:57 -0700 | [diff] [blame] | 2075 | atomic_dec(&sbi->nr_pages[count_type]); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2076 | } |
| 2077 | |
Jaegeuk Kim | a7ffdbe | 2014-09-12 15:53:45 -0700 | [diff] [blame] | 2078 | static inline void inode_dec_dirty_pages(struct inode *inode) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2079 | { |
Chao Yu | 5ac9f36 | 2015-06-29 18:14:10 +0800 | [diff] [blame] | 2080 | if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) && |
| 2081 | !S_ISLNK(inode->i_mode)) |
Jaegeuk Kim | 1fe54f9 | 2014-02-07 10:00:06 +0900 | [diff] [blame] | 2082 | return; |
| 2083 | |
Jaegeuk Kim | 204706c | 2016-12-02 15:11:32 -0800 | [diff] [blame] | 2084 | atomic_dec(&F2FS_I(inode)->dirty_pages); |
Chao Yu | c227f91 | 2015-12-16 13:09:20 +0800 | [diff] [blame] | 2085 | dec_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ? |
| 2086 | F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA); |
Jaegeuk Kim | 2c8a4a2 | 2017-11-13 17:46:38 -0800 | [diff] [blame] | 2087 | if (IS_NOQUOTA(inode)) |
| 2088 | dec_page_count(F2FS_I_SB(inode), F2FS_DIRTY_QDATA); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2089 | } |
| 2090 | |
Jaegeuk Kim | 523be8a | 2016-05-13 12:36:58 -0700 | [diff] [blame] | 2091 | static inline s64 get_pages(struct f2fs_sb_info *sbi, int count_type) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2092 | { |
Jaegeuk Kim | 35782b2 | 2016-10-20 19:09:57 -0700 | [diff] [blame] | 2093 | return atomic_read(&sbi->nr_pages[count_type]); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2094 | } |
| 2095 | |
Jaegeuk Kim | 204706c | 2016-12-02 15:11:32 -0800 | [diff] [blame] | 2096 | static inline int get_dirty_pages(struct inode *inode) |
Jaegeuk Kim | f8b2c1f | 2014-03-18 12:33:06 +0900 | [diff] [blame] | 2097 | { |
Jaegeuk Kim | 204706c | 2016-12-02 15:11:32 -0800 | [diff] [blame] | 2098 | return atomic_read(&F2FS_I(inode)->dirty_pages); |
Jaegeuk Kim | f8b2c1f | 2014-03-18 12:33:06 +0900 | [diff] [blame] | 2099 | } |
| 2100 | |
Namjae Jeon | 5ac206c | 2013-02-02 23:52:59 +0900 | [diff] [blame] | 2101 | static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type) |
| 2102 | { |
Chao Yu | 3519e3f | 2015-12-01 11:56:52 +0800 | [diff] [blame] | 2103 | unsigned int pages_per_sec = sbi->segs_per_sec * sbi->blocks_per_seg; |
Jaegeuk Kim | 523be8a | 2016-05-13 12:36:58 -0700 | [diff] [blame] | 2104 | unsigned int segs = (get_pages(sbi, block_type) + pages_per_sec - 1) >> |
| 2105 | sbi->log_blocks_per_seg; |
| 2106 | |
| 2107 | return segs / sbi->segs_per_sec; |
Namjae Jeon | 5ac206c | 2013-02-02 23:52:59 +0900 | [diff] [blame] | 2108 | } |
| 2109 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2110 | static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi) |
| 2111 | { |
Jaegeuk Kim | 8b8343f | 2014-02-24 13:00:13 +0900 | [diff] [blame] | 2112 | return sbi->total_valid_block_count; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2113 | } |
| 2114 | |
Yunlei He | f83a258 | 2016-08-18 21:01:18 +0800 | [diff] [blame] | 2115 | static inline block_t discard_blocks(struct f2fs_sb_info *sbi) |
| 2116 | { |
| 2117 | return sbi->discard_blks; |
| 2118 | } |
| 2119 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2120 | static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag) |
| 2121 | { |
| 2122 | struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); |
| 2123 | |
| 2124 | /* return NAT or SIT bitmap */ |
| 2125 | if (flag == NAT_BITMAP) |
| 2126 | return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize); |
| 2127 | else if (flag == SIT_BITMAP) |
| 2128 | return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize); |
| 2129 | |
| 2130 | return 0; |
| 2131 | } |
| 2132 | |
Wanpeng Li | 5514148 | 2015-02-26 07:57:20 +0800 | [diff] [blame] | 2133 | static inline block_t __cp_payload(struct f2fs_sb_info *sbi) |
| 2134 | { |
| 2135 | return le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload); |
| 2136 | } |
| 2137 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2138 | static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag) |
| 2139 | { |
| 2140 | struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); |
Changman Lee | 1dbe415 | 2014-05-12 12:27:43 +0900 | [diff] [blame] | 2141 | int offset; |
| 2142 | |
Chao Yu | 199bc3f | 2018-01-25 19:40:08 +0800 | [diff] [blame] | 2143 | if (is_set_ckpt_flags(sbi, CP_LARGE_NAT_BITMAP_FLAG)) { |
| 2144 | offset = (flag == SIT_BITMAP) ? |
| 2145 | le32_to_cpu(ckpt->nat_ver_bitmap_bytesize) : 0; |
Chao Yu | b471eb9 | 2019-04-22 17:33:53 +0800 | [diff] [blame] | 2146 | /* |
| 2147 | * if large_nat_bitmap feature is enabled, leave checksum |
| 2148 | * protection for all nat/sit bitmaps. |
| 2149 | */ |
| 2150 | return &ckpt->sit_nat_version_bitmap + offset + sizeof(__le32); |
Chao Yu | 199bc3f | 2018-01-25 19:40:08 +0800 | [diff] [blame] | 2151 | } |
| 2152 | |
Wanpeng Li | 5514148 | 2015-02-26 07:57:20 +0800 | [diff] [blame] | 2153 | if (__cp_payload(sbi) > 0) { |
Changman Lee | 1dbe415 | 2014-05-12 12:27:43 +0900 | [diff] [blame] | 2154 | if (flag == NAT_BITMAP) |
| 2155 | return &ckpt->sit_nat_version_bitmap; |
| 2156 | else |
Jaegeuk Kim | 65b85cc | 2014-07-30 17:25:54 -0700 | [diff] [blame] | 2157 | return (unsigned char *)ckpt + F2FS_BLKSIZE; |
Changman Lee | 1dbe415 | 2014-05-12 12:27:43 +0900 | [diff] [blame] | 2158 | } else { |
| 2159 | offset = (flag == NAT_BITMAP) ? |
Jaegeuk Kim | 25ca923 | 2012-11-28 16:12:41 +0900 | [diff] [blame] | 2160 | le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0; |
Changman Lee | 1dbe415 | 2014-05-12 12:27:43 +0900 | [diff] [blame] | 2161 | return &ckpt->sit_nat_version_bitmap + offset; |
| 2162 | } |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2163 | } |
| 2164 | |
| 2165 | static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi) |
| 2166 | { |
Jaegeuk Kim | 8508e44 | 2016-11-24 12:45:15 -0800 | [diff] [blame] | 2167 | block_t start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2168 | |
Jaegeuk Kim | 8508e44 | 2016-11-24 12:45:15 -0800 | [diff] [blame] | 2169 | if (sbi->cur_cp_pack == 2) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2170 | start_addr += sbi->blocks_per_seg; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2171 | return start_addr; |
| 2172 | } |
| 2173 | |
Jaegeuk Kim | 8508e44 | 2016-11-24 12:45:15 -0800 | [diff] [blame] | 2174 | static inline block_t __start_cp_next_addr(struct f2fs_sb_info *sbi) |
| 2175 | { |
| 2176 | block_t start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr); |
| 2177 | |
| 2178 | if (sbi->cur_cp_pack == 1) |
| 2179 | start_addr += sbi->blocks_per_seg; |
| 2180 | return start_addr; |
| 2181 | } |
| 2182 | |
| 2183 | static inline void __set_cp_next_pack(struct f2fs_sb_info *sbi) |
| 2184 | { |
| 2185 | sbi->cur_cp_pack = (sbi->cur_cp_pack == 1) ? 2 : 1; |
| 2186 | } |
| 2187 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2188 | static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi) |
| 2189 | { |
| 2190 | return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum); |
| 2191 | } |
| 2192 | |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2193 | static inline int inc_valid_node_count(struct f2fs_sb_info *sbi, |
Chao Yu | 000519f | 2017-07-06 01:11:31 +0800 | [diff] [blame] | 2194 | struct inode *inode, bool is_inode) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2195 | { |
| 2196 | block_t valid_block_count; |
Daniel Rosenberg | a4c3eca | 2019-05-29 17:49:05 -0700 | [diff] [blame] | 2197 | unsigned int valid_node_count, user_block_count; |
Chao Yu | af033b2 | 2018-09-20 20:05:00 +0800 | [diff] [blame] | 2198 | int err; |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2199 | |
Chao Yu | af033b2 | 2018-09-20 20:05:00 +0800 | [diff] [blame] | 2200 | if (is_inode) { |
| 2201 | if (inode) { |
| 2202 | err = dquot_alloc_inode(inode); |
| 2203 | if (err) |
| 2204 | return err; |
| 2205 | } |
| 2206 | } else { |
| 2207 | err = dquot_reserve_block(inode, 1); |
| 2208 | if (err) |
| 2209 | return err; |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2210 | } |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2211 | |
Chao Yu | 812c605 | 2017-11-13 17:32:40 +0800 | [diff] [blame] | 2212 | if (time_to_inject(sbi, FAULT_BLOCK)) { |
Chao Yu | c45d600 | 2019-11-01 17:53:23 +0800 | [diff] [blame] | 2213 | f2fs_show_injection_info(sbi, FAULT_BLOCK); |
Chao Yu | 812c605 | 2017-11-13 17:32:40 +0800 | [diff] [blame] | 2214 | goto enospc; |
| 2215 | } |
Chao Yu | 812c605 | 2017-11-13 17:32:40 +0800 | [diff] [blame] | 2216 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2217 | spin_lock(&sbi->stat_lock); |
| 2218 | |
Jaegeuk Kim | 7e65be4 | 2017-12-27 15:05:52 -0800 | [diff] [blame] | 2219 | valid_block_count = sbi->total_valid_block_count + |
| 2220 | sbi->current_reserved_blocks + 1; |
| 2221 | |
Jaegeuk Kim | a90a0884 | 2018-04-20 23:44:59 -0700 | [diff] [blame] | 2222 | if (!__allow_reserved_blocks(sbi, inode, false)) |
Chao Yu | 63189b7 | 2018-03-08 14:22:56 +0800 | [diff] [blame] | 2223 | valid_block_count += F2FS_OPTION(sbi).root_reserved_blocks; |
Daniel Rosenberg | a4c3eca | 2019-05-29 17:49:05 -0700 | [diff] [blame] | 2224 | user_block_count = sbi->user_block_count; |
Daniel Rosenberg | 4354994 | 2018-08-20 19:21:43 -0700 | [diff] [blame] | 2225 | if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) |
Daniel Rosenberg | a4c3eca | 2019-05-29 17:49:05 -0700 | [diff] [blame] | 2226 | user_block_count -= sbi->unusable_block_count; |
Jaegeuk Kim | 7e65be4 | 2017-12-27 15:05:52 -0800 | [diff] [blame] | 2227 | |
Daniel Rosenberg | a4c3eca | 2019-05-29 17:49:05 -0700 | [diff] [blame] | 2228 | if (unlikely(valid_block_count > user_block_count)) { |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2229 | spin_unlock(&sbi->stat_lock); |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2230 | goto enospc; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2231 | } |
| 2232 | |
Gu Zheng | ef86d70 | 2013-11-19 18:03:38 +0800 | [diff] [blame] | 2233 | valid_node_count = sbi->total_valid_node_count + 1; |
Chao Yu | cfb271d | 2013-12-05 17:15:22 +0800 | [diff] [blame] | 2234 | if (unlikely(valid_node_count > sbi->total_node_count)) { |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2235 | spin_unlock(&sbi->stat_lock); |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2236 | goto enospc; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2237 | } |
| 2238 | |
Gu Zheng | ef86d70 | 2013-11-19 18:03:38 +0800 | [diff] [blame] | 2239 | sbi->total_valid_node_count++; |
| 2240 | sbi->total_valid_block_count++; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2241 | spin_unlock(&sbi->stat_lock); |
| 2242 | |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2243 | if (inode) { |
| 2244 | if (is_inode) |
| 2245 | f2fs_mark_inode_dirty_sync(inode, true); |
| 2246 | else |
| 2247 | f2fs_i_blocks_write(inode, 1, true, true); |
| 2248 | } |
| 2249 | |
Jaegeuk Kim | 41382ec | 2016-05-16 11:06:50 -0700 | [diff] [blame] | 2250 | percpu_counter_inc(&sbi->alloc_valid_block_count); |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2251 | return 0; |
| 2252 | |
| 2253 | enospc: |
Chao Yu | af033b2 | 2018-09-20 20:05:00 +0800 | [diff] [blame] | 2254 | if (is_inode) { |
| 2255 | if (inode) |
| 2256 | dquot_free_inode(inode); |
| 2257 | } else { |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2258 | dquot_release_reservation_block(inode, 1); |
Chao Yu | af033b2 | 2018-09-20 20:05:00 +0800 | [diff] [blame] | 2259 | } |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2260 | return -ENOSPC; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2261 | } |
| 2262 | |
| 2263 | static inline void dec_valid_node_count(struct f2fs_sb_info *sbi, |
Chao Yu | 000519f | 2017-07-06 01:11:31 +0800 | [diff] [blame] | 2264 | struct inode *inode, bool is_inode) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2265 | { |
| 2266 | spin_lock(&sbi->stat_lock); |
| 2267 | |
Jaegeuk Kim | 9850cf4 | 2014-09-02 15:52:58 -0700 | [diff] [blame] | 2268 | f2fs_bug_on(sbi, !sbi->total_valid_block_count); |
| 2269 | f2fs_bug_on(sbi, !sbi->total_valid_node_count); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2270 | |
Gu Zheng | ef86d70 | 2013-11-19 18:03:38 +0800 | [diff] [blame] | 2271 | sbi->total_valid_node_count--; |
| 2272 | sbi->total_valid_block_count--; |
Yunlong Song | 80d4214 | 2017-10-27 20:45:05 +0800 | [diff] [blame] | 2273 | if (sbi->reserved_blocks && |
| 2274 | sbi->current_reserved_blocks < sbi->reserved_blocks) |
| 2275 | sbi->current_reserved_blocks++; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2276 | |
| 2277 | spin_unlock(&sbi->stat_lock); |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2278 | |
Chao Yu | ea6d7e7 | 2019-04-15 15:28:31 +0800 | [diff] [blame] | 2279 | if (is_inode) { |
Chao Yu | af033b2 | 2018-09-20 20:05:00 +0800 | [diff] [blame] | 2280 | dquot_free_inode(inode); |
Chao Yu | ea6d7e7 | 2019-04-15 15:28:31 +0800 | [diff] [blame] | 2281 | } else { |
| 2282 | if (unlikely(inode->i_blocks == 0)) { |
Chao Yu | 097a768 | 2020-02-24 19:20:19 +0800 | [diff] [blame] | 2283 | f2fs_warn(sbi, "dec_valid_node_count: inconsistent i_blocks, ino:%lu, iblocks:%llu", |
Joe Perches | dcbb4c1 | 2019-06-18 17:48:42 +0800 | [diff] [blame] | 2284 | inode->i_ino, |
| 2285 | (unsigned long long)inode->i_blocks); |
Chao Yu | ea6d7e7 | 2019-04-15 15:28:31 +0800 | [diff] [blame] | 2286 | set_sbi_flag(sbi, SBI_NEED_FSCK); |
| 2287 | return; |
| 2288 | } |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2289 | f2fs_i_blocks_write(inode, 1, false, true); |
Chao Yu | ea6d7e7 | 2019-04-15 15:28:31 +0800 | [diff] [blame] | 2290 | } |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2291 | } |
| 2292 | |
| 2293 | static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi) |
| 2294 | { |
Jaegeuk Kim | 8b8343f | 2014-02-24 13:00:13 +0900 | [diff] [blame] | 2295 | return sbi->total_valid_node_count; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2296 | } |
| 2297 | |
| 2298 | static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi) |
| 2299 | { |
Jaegeuk Kim | 513c5f3 | 2016-05-16 11:42:32 -0700 | [diff] [blame] | 2300 | percpu_counter_inc(&sbi->total_valid_inode_count); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2301 | } |
| 2302 | |
Jaegeuk Kim | 0e80220 | 2013-11-26 16:36:20 +0900 | [diff] [blame] | 2303 | static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2304 | { |
Jaegeuk Kim | 513c5f3 | 2016-05-16 11:42:32 -0700 | [diff] [blame] | 2305 | percpu_counter_dec(&sbi->total_valid_inode_count); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2306 | } |
| 2307 | |
Jaegeuk Kim | 513c5f3 | 2016-05-16 11:42:32 -0700 | [diff] [blame] | 2308 | static inline s64 valid_inode_count(struct f2fs_sb_info *sbi) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2309 | { |
Jaegeuk Kim | 513c5f3 | 2016-05-16 11:42:32 -0700 | [diff] [blame] | 2310 | return percpu_counter_sum_positive(&sbi->total_valid_inode_count); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2311 | } |
| 2312 | |
Jaegeuk Kim | a56c7c6 | 2015-10-09 15:11:38 -0700 | [diff] [blame] | 2313 | static inline struct page *f2fs_grab_cache_page(struct address_space *mapping, |
| 2314 | pgoff_t index, bool for_write) |
| 2315 | { |
Chao Yu | 82cf4f1 | 2018-07-27 18:15:14 +0800 | [diff] [blame] | 2316 | struct page *page; |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 2317 | |
Arnd Bergmann | 7fa750a | 2018-08-13 23:38:06 +0200 | [diff] [blame] | 2318 | if (IS_ENABLED(CONFIG_F2FS_FAULT_INJECTION)) { |
| 2319 | if (!for_write) |
| 2320 | page = find_get_page_flags(mapping, index, |
| 2321 | FGP_LOCK | FGP_ACCESSED); |
| 2322 | else |
| 2323 | page = find_lock_page(mapping, index); |
| 2324 | if (page) |
| 2325 | return page; |
Jaegeuk Kim | c41f3cc3 | 2016-04-29 16:17:09 -0700 | [diff] [blame] | 2326 | |
Arnd Bergmann | 7fa750a | 2018-08-13 23:38:06 +0200 | [diff] [blame] | 2327 | if (time_to_inject(F2FS_M_SB(mapping), FAULT_PAGE_ALLOC)) { |
Chao Yu | c45d600 | 2019-11-01 17:53:23 +0800 | [diff] [blame] | 2328 | f2fs_show_injection_info(F2FS_M_SB(mapping), |
| 2329 | FAULT_PAGE_ALLOC); |
Arnd Bergmann | 7fa750a | 2018-08-13 23:38:06 +0200 | [diff] [blame] | 2330 | return NULL; |
| 2331 | } |
Chao Yu | 5552351 | 2017-02-25 11:08:28 +0800 | [diff] [blame] | 2332 | } |
Arnd Bergmann | 7fa750a | 2018-08-13 23:38:06 +0200 | [diff] [blame] | 2333 | |
Jaegeuk Kim | a56c7c6 | 2015-10-09 15:11:38 -0700 | [diff] [blame] | 2334 | if (!for_write) |
| 2335 | return grab_cache_page(mapping, index); |
| 2336 | return grab_cache_page_write_begin(mapping, index, AOP_FLAG_NOFS); |
| 2337 | } |
| 2338 | |
Chao Yu | 01eccef | 2017-10-28 16:52:30 +0800 | [diff] [blame] | 2339 | static inline struct page *f2fs_pagecache_get_page( |
| 2340 | struct address_space *mapping, pgoff_t index, |
| 2341 | int fgp_flags, gfp_t gfp_mask) |
| 2342 | { |
Chao Yu | 01eccef | 2017-10-28 16:52:30 +0800 | [diff] [blame] | 2343 | if (time_to_inject(F2FS_M_SB(mapping), FAULT_PAGE_GET)) { |
Chao Yu | c45d600 | 2019-11-01 17:53:23 +0800 | [diff] [blame] | 2344 | f2fs_show_injection_info(F2FS_M_SB(mapping), FAULT_PAGE_GET); |
Chao Yu | 01eccef | 2017-10-28 16:52:30 +0800 | [diff] [blame] | 2345 | return NULL; |
| 2346 | } |
Arnd Bergmann | 7fa750a | 2018-08-13 23:38:06 +0200 | [diff] [blame] | 2347 | |
Chao Yu | 01eccef | 2017-10-28 16:52:30 +0800 | [diff] [blame] | 2348 | return pagecache_get_page(mapping, index, fgp_flags, gfp_mask); |
| 2349 | } |
| 2350 | |
Jaegeuk Kim | 6e2c64a | 2015-10-07 12:28:41 -0700 | [diff] [blame] | 2351 | static inline void f2fs_copy_page(struct page *src, struct page *dst) |
| 2352 | { |
| 2353 | char *src_kaddr = kmap(src); |
| 2354 | char *dst_kaddr = kmap(dst); |
| 2355 | |
| 2356 | memcpy(dst_kaddr, src_kaddr, PAGE_SIZE); |
| 2357 | kunmap(dst); |
| 2358 | kunmap(src); |
| 2359 | } |
| 2360 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2361 | static inline void f2fs_put_page(struct page *page, int unlock) |
| 2362 | { |
Jaegeuk Kim | 031fa8c | 2013-11-28 12:55:13 +0900 | [diff] [blame] | 2363 | if (!page) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2364 | return; |
| 2365 | |
| 2366 | if (unlock) { |
Jaegeuk Kim | 9850cf4 | 2014-09-02 15:52:58 -0700 | [diff] [blame] | 2367 | f2fs_bug_on(F2FS_P_SB(page), !PageLocked(page)); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2368 | unlock_page(page); |
| 2369 | } |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2370 | put_page(page); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2371 | } |
| 2372 | |
| 2373 | static inline void f2fs_put_dnode(struct dnode_of_data *dn) |
| 2374 | { |
| 2375 | if (dn->node_page) |
| 2376 | f2fs_put_page(dn->node_page, 1); |
| 2377 | if (dn->inode_page && dn->node_page != dn->inode_page) |
| 2378 | f2fs_put_page(dn->inode_page, 0); |
| 2379 | dn->node_page = NULL; |
| 2380 | dn->inode_page = NULL; |
| 2381 | } |
| 2382 | |
| 2383 | static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name, |
Gu Zheng | e8512d2 | 2014-03-07 18:43:28 +0800 | [diff] [blame] | 2384 | size_t size) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2385 | { |
Gu Zheng | e8512d2 | 2014-03-07 18:43:28 +0800 | [diff] [blame] | 2386 | return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2387 | } |
| 2388 | |
Gu Zheng | 7bd5938 | 2013-10-22 14:52:26 +0800 | [diff] [blame] | 2389 | static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep, |
| 2390 | gfp_t flags) |
| 2391 | { |
| 2392 | void *entry; |
Gu Zheng | 7bd5938 | 2013-10-22 14:52:26 +0800 | [diff] [blame] | 2393 | |
Jaegeuk Kim | 80c5450 | 2015-08-20 08:51:56 -0700 | [diff] [blame] | 2394 | entry = kmem_cache_alloc(cachep, flags); |
| 2395 | if (!entry) |
| 2396 | entry = kmem_cache_alloc(cachep, flags | __GFP_NOFAIL); |
Gu Zheng | 7bd5938 | 2013-10-22 14:52:26 +0800 | [diff] [blame] | 2397 | return entry; |
| 2398 | } |
| 2399 | |
Jaegeuk Kim | 5f9abab | 2018-10-16 10:20:53 -0700 | [diff] [blame] | 2400 | static inline bool is_idle(struct f2fs_sb_info *sbi, int type) |
| 2401 | { |
Park Ju Hyung | f7dfd9f | 2019-05-14 15:36:23 +0900 | [diff] [blame] | 2402 | if (sbi->gc_mode == GC_URGENT) |
| 2403 | return true; |
| 2404 | |
Jaegeuk Kim | 5f9abab | 2018-10-16 10:20:53 -0700 | [diff] [blame] | 2405 | if (get_pages(sbi, F2FS_RD_DATA) || get_pages(sbi, F2FS_RD_NODE) || |
| 2406 | get_pages(sbi, F2FS_RD_META) || get_pages(sbi, F2FS_WB_DATA) || |
Chao Yu | fef4129 | 2018-11-12 00:55:44 +0800 | [diff] [blame] | 2407 | get_pages(sbi, F2FS_WB_CP_DATA) || |
| 2408 | get_pages(sbi, F2FS_DIO_READ) || |
Jaegeuk Kim | 11ac8ef | 2019-01-25 12:05:25 -0800 | [diff] [blame] | 2409 | get_pages(sbi, F2FS_DIO_WRITE)) |
Jaegeuk Kim | 5f9abab | 2018-10-16 10:20:53 -0700 | [diff] [blame] | 2410 | return false; |
Jaegeuk Kim | 11ac8ef | 2019-01-25 12:05:25 -0800 | [diff] [blame] | 2411 | |
Sahitya Tummala | 56659ce | 2019-06-06 15:08:13 +0530 | [diff] [blame] | 2412 | if (type != DISCARD_TIME && SM_I(sbi) && SM_I(sbi)->dcc_info && |
Jaegeuk Kim | 11ac8ef | 2019-01-25 12:05:25 -0800 | [diff] [blame] | 2413 | atomic_read(&SM_I(sbi)->dcc_info->queued_discard)) |
| 2414 | return false; |
| 2415 | |
| 2416 | if (SM_I(sbi) && SM_I(sbi)->fcc_info && |
| 2417 | atomic_read(&SM_I(sbi)->fcc_info->queued_flush)) |
| 2418 | return false; |
| 2419 | |
Jaegeuk Kim | 5f9abab | 2018-10-16 10:20:53 -0700 | [diff] [blame] | 2420 | return f2fs_time_over(sbi, type); |
| 2421 | } |
| 2422 | |
Jaegeuk Kim | 9be32d7 | 2014-12-05 10:39:49 -0800 | [diff] [blame] | 2423 | static inline void f2fs_radix_tree_insert(struct radix_tree_root *root, |
| 2424 | unsigned long index, void *item) |
| 2425 | { |
| 2426 | while (radix_tree_insert(root, index, item)) |
| 2427 | cond_resched(); |
| 2428 | } |
| 2429 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2430 | #define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino) |
| 2431 | |
| 2432 | static inline bool IS_INODE(struct page *page) |
| 2433 | { |
Gu Zheng | 4559071 | 2013-07-15 17:57:38 +0800 | [diff] [blame] | 2434 | struct f2fs_node *p = F2FS_NODE(page); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 2435 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2436 | return RAW_IS_INODE(p); |
| 2437 | } |
| 2438 | |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2439 | static inline int offset_in_addr(struct f2fs_inode *i) |
| 2440 | { |
| 2441 | return (i->i_inline & F2FS_EXTRA_ATTR) ? |
| 2442 | (le16_to_cpu(i->i_extra_isize) / sizeof(__le32)) : 0; |
| 2443 | } |
| 2444 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2445 | static inline __le32 *blkaddr_in_node(struct f2fs_node *node) |
| 2446 | { |
| 2447 | return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr; |
| 2448 | } |
| 2449 | |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2450 | static inline int f2fs_has_extra_attr(struct inode *inode); |
Chao Yu | a2ced1c | 2020-02-14 17:44:10 +0800 | [diff] [blame] | 2451 | static inline block_t data_blkaddr(struct inode *inode, |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2452 | struct page *node_page, unsigned int offset) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2453 | { |
| 2454 | struct f2fs_node *raw_node; |
| 2455 | __le32 *addr_array; |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2456 | int base = 0; |
| 2457 | bool is_inode = IS_INODE(node_page); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 2458 | |
Gu Zheng | 4559071 | 2013-07-15 17:57:38 +0800 | [diff] [blame] | 2459 | raw_node = F2FS_NODE(node_page); |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2460 | |
LiFan | 979f492 | 2017-11-28 20:17:41 +0800 | [diff] [blame] | 2461 | if (is_inode) { |
| 2462 | if (!inode) |
Chao Yu | 7a88ddb | 2020-02-27 19:30:05 +0800 | [diff] [blame] | 2463 | /* from GC path only */ |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2464 | base = offset_in_addr(&raw_node->i); |
LiFan | 979f492 | 2017-11-28 20:17:41 +0800 | [diff] [blame] | 2465 | else if (f2fs_has_extra_attr(inode)) |
| 2466 | base = get_extra_isize(inode); |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2467 | } |
| 2468 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2469 | addr_array = blkaddr_in_node(raw_node); |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2470 | return le32_to_cpu(addr_array[base + offset]); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2471 | } |
| 2472 | |
Chao Yu | a2ced1c | 2020-02-14 17:44:10 +0800 | [diff] [blame] | 2473 | static inline block_t f2fs_data_blkaddr(struct dnode_of_data *dn) |
| 2474 | { |
| 2475 | return data_blkaddr(dn->inode, dn->node_page, dn->ofs_in_node); |
| 2476 | } |
| 2477 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2478 | static inline int f2fs_test_bit(unsigned int nr, char *addr) |
| 2479 | { |
| 2480 | int mask; |
| 2481 | |
| 2482 | addr += (nr >> 3); |
| 2483 | mask = 1 << (7 - (nr & 0x07)); |
| 2484 | return mask & *addr; |
| 2485 | } |
| 2486 | |
Jaegeuk Kim | a66cdd9 | 2015-04-30 22:37:50 -0700 | [diff] [blame] | 2487 | static inline void f2fs_set_bit(unsigned int nr, char *addr) |
| 2488 | { |
| 2489 | int mask; |
| 2490 | |
| 2491 | addr += (nr >> 3); |
| 2492 | mask = 1 << (7 - (nr & 0x07)); |
| 2493 | *addr |= mask; |
| 2494 | } |
| 2495 | |
| 2496 | static inline void f2fs_clear_bit(unsigned int nr, char *addr) |
| 2497 | { |
| 2498 | int mask; |
| 2499 | |
| 2500 | addr += (nr >> 3); |
| 2501 | mask = 1 << (7 - (nr & 0x07)); |
| 2502 | *addr &= ~mask; |
| 2503 | } |
| 2504 | |
Gu Zheng | 52aca07 | 2014-10-20 17:45:51 +0800 | [diff] [blame] | 2505 | static inline int f2fs_test_and_set_bit(unsigned int nr, char *addr) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2506 | { |
| 2507 | int mask; |
| 2508 | int ret; |
| 2509 | |
| 2510 | addr += (nr >> 3); |
| 2511 | mask = 1 << (7 - (nr & 0x07)); |
| 2512 | ret = mask & *addr; |
| 2513 | *addr |= mask; |
| 2514 | return ret; |
| 2515 | } |
| 2516 | |
Gu Zheng | 52aca07 | 2014-10-20 17:45:51 +0800 | [diff] [blame] | 2517 | static inline int f2fs_test_and_clear_bit(unsigned int nr, char *addr) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2518 | { |
| 2519 | int mask; |
| 2520 | int ret; |
| 2521 | |
| 2522 | addr += (nr >> 3); |
| 2523 | mask = 1 << (7 - (nr & 0x07)); |
| 2524 | ret = mask & *addr; |
| 2525 | *addr &= ~mask; |
| 2526 | return ret; |
| 2527 | } |
| 2528 | |
Gu Zheng | c6ac4c0 | 2014-10-20 17:45:50 +0800 | [diff] [blame] | 2529 | static inline void f2fs_change_bit(unsigned int nr, char *addr) |
| 2530 | { |
| 2531 | int mask; |
| 2532 | |
| 2533 | addr += (nr >> 3); |
| 2534 | mask = 1 << (7 - (nr & 0x07)); |
| 2535 | *addr ^= mask; |
| 2536 | } |
| 2537 | |
Chao Yu | 59c8440 | 2018-04-03 15:08:17 +0800 | [diff] [blame] | 2538 | /* |
Eric Biggers | 3609855 | 2019-06-04 22:59:04 -0700 | [diff] [blame] | 2539 | * On-disk inode flags (f2fs_inode::i_flags) |
Chao Yu | 59c8440 | 2018-04-03 15:08:17 +0800 | [diff] [blame] | 2540 | */ |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 2541 | #define F2FS_COMPR_FL 0x00000004 /* Compress file */ |
Chao Yu | 59c8440 | 2018-04-03 15:08:17 +0800 | [diff] [blame] | 2542 | #define F2FS_SYNC_FL 0x00000008 /* Synchronous updates */ |
| 2543 | #define F2FS_IMMUTABLE_FL 0x00000010 /* Immutable file */ |
| 2544 | #define F2FS_APPEND_FL 0x00000020 /* writes to file may only append */ |
| 2545 | #define F2FS_NODUMP_FL 0x00000040 /* do not dump file */ |
| 2546 | #define F2FS_NOATIME_FL 0x00000080 /* do not update atime */ |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 2547 | #define F2FS_NOCOMP_FL 0x00000400 /* Don't compress */ |
Chao Yu | 59c8440 | 2018-04-03 15:08:17 +0800 | [diff] [blame] | 2548 | #define F2FS_INDEX_FL 0x00001000 /* hash-indexed directory */ |
Chao Yu | 59c8440 | 2018-04-03 15:08:17 +0800 | [diff] [blame] | 2549 | #define F2FS_DIRSYNC_FL 0x00010000 /* dirsync behaviour (directories only) */ |
Chao Yu | 59c8440 | 2018-04-03 15:08:17 +0800 | [diff] [blame] | 2550 | #define F2FS_PROJINHERIT_FL 0x20000000 /* Create with parents projid */ |
Daniel Rosenberg | 2c2eb7a | 2019-07-23 16:05:29 -0700 | [diff] [blame] | 2551 | #define F2FS_CASEFOLD_FL 0x40000000 /* Casefolded file */ |
Chao Yu | 59c8440 | 2018-04-03 15:08:17 +0800 | [diff] [blame] | 2552 | |
| 2553 | /* Flags that should be inherited by new inodes from their parent. */ |
Eric Biggers | 3609855 | 2019-06-04 22:59:04 -0700 | [diff] [blame] | 2554 | #define F2FS_FL_INHERITED (F2FS_SYNC_FL | F2FS_NODUMP_FL | F2FS_NOATIME_FL | \ |
Daniel Rosenberg | 2c2eb7a | 2019-07-23 16:05:29 -0700 | [diff] [blame] | 2555 | F2FS_DIRSYNC_FL | F2FS_PROJINHERIT_FL | \ |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 2556 | F2FS_CASEFOLD_FL | F2FS_COMPR_FL | F2FS_NOCOMP_FL) |
Chao Yu | 59c8440 | 2018-04-03 15:08:17 +0800 | [diff] [blame] | 2557 | |
| 2558 | /* Flags that are appropriate for regular files (all but dir-specific ones). */ |
Daniel Rosenberg | 2c2eb7a | 2019-07-23 16:05:29 -0700 | [diff] [blame] | 2559 | #define F2FS_REG_FLMASK (~(F2FS_DIRSYNC_FL | F2FS_PROJINHERIT_FL | \ |
| 2560 | F2FS_CASEFOLD_FL)) |
Chao Yu | 59c8440 | 2018-04-03 15:08:17 +0800 | [diff] [blame] | 2561 | |
| 2562 | /* Flags that are appropriate for non-directories/regular files. */ |
| 2563 | #define F2FS_OTHER_FLMASK (F2FS_NODUMP_FL | F2FS_NOATIME_FL) |
Chao Yu | 5c57132 | 2017-07-26 00:01:41 +0800 | [diff] [blame] | 2564 | |
| 2565 | static inline __u32 f2fs_mask_flags(umode_t mode, __u32 flags) |
| 2566 | { |
| 2567 | if (S_ISDIR(mode)) |
| 2568 | return flags; |
| 2569 | else if (S_ISREG(mode)) |
| 2570 | return flags & F2FS_REG_FLMASK; |
| 2571 | else |
| 2572 | return flags & F2FS_OTHER_FLMASK; |
| 2573 | } |
| 2574 | |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2575 | static inline void __mark_inode_dirty_flag(struct inode *inode, |
| 2576 | int flag, bool set) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2577 | { |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2578 | switch (flag) { |
| 2579 | case FI_INLINE_XATTR: |
| 2580 | case FI_INLINE_DATA: |
| 2581 | case FI_INLINE_DENTRY: |
Daeho Jeong | 9ac1e2d | 2018-01-11 11:26:19 +0900 | [diff] [blame] | 2582 | case FI_NEW_INODE: |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2583 | if (set) |
| 2584 | return; |
Jaegeuk Kim | f5d5510 | 2018-11-26 14:20:32 -0800 | [diff] [blame] | 2585 | /* fall through */ |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2586 | case FI_DATA_EXIST: |
| 2587 | case FI_INLINE_DOTS: |
Jaegeuk Kim | 1ad71a2 | 2017-12-07 16:25:39 -0800 | [diff] [blame] | 2588 | case FI_PIN_FILE: |
Jaegeuk Kim | 7c45729 | 2016-10-14 11:51:23 -0700 | [diff] [blame] | 2589 | f2fs_mark_inode_dirty_sync(inode, true); |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2590 | } |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2591 | } |
| 2592 | |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2593 | static inline void set_inode_flag(struct inode *inode, int flag) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2594 | { |
Chao Yu | 7653b9d | 2020-03-23 11:18:07 +0800 | [diff] [blame] | 2595 | test_and_set_bit(flag, F2FS_I(inode)->flags); |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2596 | __mark_inode_dirty_flag(inode, flag, true); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2597 | } |
| 2598 | |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2599 | static inline int is_inode_flag_set(struct inode *inode, int flag) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2600 | { |
Chao Yu | 7653b9d | 2020-03-23 11:18:07 +0800 | [diff] [blame] | 2601 | return test_bit(flag, F2FS_I(inode)->flags); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2602 | } |
| 2603 | |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2604 | static inline void clear_inode_flag(struct inode *inode, int flag) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2605 | { |
Chao Yu | 7653b9d | 2020-03-23 11:18:07 +0800 | [diff] [blame] | 2606 | test_and_clear_bit(flag, F2FS_I(inode)->flags); |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2607 | __mark_inode_dirty_flag(inode, flag, false); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2608 | } |
| 2609 | |
Eric Biggers | 95ae251 | 2019-07-22 09:26:24 -0700 | [diff] [blame] | 2610 | static inline bool f2fs_verity_in_progress(struct inode *inode) |
| 2611 | { |
| 2612 | return IS_ENABLED(CONFIG_FS_VERITY) && |
| 2613 | is_inode_flag_set(inode, FI_VERITY_IN_PROGRESS); |
| 2614 | } |
| 2615 | |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2616 | static inline void set_acl_inode(struct inode *inode, umode_t mode) |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 2617 | { |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2618 | F2FS_I(inode)->i_acl_mode = mode; |
| 2619 | set_inode_flag(inode, FI_ACL_MODE); |
Jaegeuk Kim | 7c45729 | 2016-10-14 11:51:23 -0700 | [diff] [blame] | 2620 | f2fs_mark_inode_dirty_sync(inode, false); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2621 | } |
| 2622 | |
Jaegeuk Kim | a196124 | 2016-05-20 09:43:20 -0700 | [diff] [blame] | 2623 | static inline void f2fs_i_links_write(struct inode *inode, bool inc) |
| 2624 | { |
| 2625 | if (inc) |
| 2626 | inc_nlink(inode); |
| 2627 | else |
| 2628 | drop_nlink(inode); |
Jaegeuk Kim | 7c45729 | 2016-10-14 11:51:23 -0700 | [diff] [blame] | 2629 | f2fs_mark_inode_dirty_sync(inode, true); |
Jaegeuk Kim | a196124 | 2016-05-20 09:43:20 -0700 | [diff] [blame] | 2630 | } |
| 2631 | |
Jaegeuk Kim | 8edd03c | 2016-05-20 09:26:06 -0700 | [diff] [blame] | 2632 | static inline void f2fs_i_blocks_write(struct inode *inode, |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2633 | block_t diff, bool add, bool claim) |
Jaegeuk Kim | 8edd03c | 2016-05-20 09:26:06 -0700 | [diff] [blame] | 2634 | { |
Jaegeuk Kim | 26de9b1 | 2016-05-20 20:42:37 -0700 | [diff] [blame] | 2635 | bool clean = !is_inode_flag_set(inode, FI_DIRTY_INODE); |
| 2636 | bool recover = is_inode_flag_set(inode, FI_AUTO_RECOVER); |
| 2637 | |
Chao Yu | 0abd675 | 2017-07-09 00:13:07 +0800 | [diff] [blame] | 2638 | /* add = 1, claim = 1 should be dquot_reserve_block in pair */ |
| 2639 | if (add) { |
| 2640 | if (claim) |
| 2641 | dquot_claim_block(inode, diff); |
| 2642 | else |
| 2643 | dquot_alloc_block_nofail(inode, diff); |
| 2644 | } else { |
| 2645 | dquot_free_block(inode, diff); |
| 2646 | } |
| 2647 | |
Jaegeuk Kim | 7c45729 | 2016-10-14 11:51:23 -0700 | [diff] [blame] | 2648 | f2fs_mark_inode_dirty_sync(inode, true); |
Jaegeuk Kim | 26de9b1 | 2016-05-20 20:42:37 -0700 | [diff] [blame] | 2649 | if (clean || recover) |
| 2650 | set_inode_flag(inode, FI_AUTO_RECOVER); |
Jaegeuk Kim | 8edd03c | 2016-05-20 09:26:06 -0700 | [diff] [blame] | 2651 | } |
| 2652 | |
Jaegeuk Kim | fc9581c | 2016-05-20 09:22:03 -0700 | [diff] [blame] | 2653 | static inline void f2fs_i_size_write(struct inode *inode, loff_t i_size) |
| 2654 | { |
Jaegeuk Kim | 26de9b1 | 2016-05-20 20:42:37 -0700 | [diff] [blame] | 2655 | bool clean = !is_inode_flag_set(inode, FI_DIRTY_INODE); |
| 2656 | bool recover = is_inode_flag_set(inode, FI_AUTO_RECOVER); |
| 2657 | |
Jaegeuk Kim | fc9581c | 2016-05-20 09:22:03 -0700 | [diff] [blame] | 2658 | if (i_size_read(inode) == i_size) |
| 2659 | return; |
| 2660 | |
| 2661 | i_size_write(inode, i_size); |
Jaegeuk Kim | 7c45729 | 2016-10-14 11:51:23 -0700 | [diff] [blame] | 2662 | f2fs_mark_inode_dirty_sync(inode, true); |
Jaegeuk Kim | 26de9b1 | 2016-05-20 20:42:37 -0700 | [diff] [blame] | 2663 | if (clean || recover) |
| 2664 | set_inode_flag(inode, FI_AUTO_RECOVER); |
| 2665 | } |
| 2666 | |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2667 | static inline void f2fs_i_depth_write(struct inode *inode, unsigned int depth) |
| 2668 | { |
| 2669 | F2FS_I(inode)->i_current_depth = depth; |
Jaegeuk Kim | 7c45729 | 2016-10-14 11:51:23 -0700 | [diff] [blame] | 2670 | f2fs_mark_inode_dirty_sync(inode, true); |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2671 | } |
| 2672 | |
Jaegeuk Kim | 1ad71a2 | 2017-12-07 16:25:39 -0800 | [diff] [blame] | 2673 | static inline void f2fs_i_gc_failures_write(struct inode *inode, |
| 2674 | unsigned int count) |
| 2675 | { |
Chao Yu | 2ef79ec | 2018-05-07 20:28:54 +0800 | [diff] [blame] | 2676 | F2FS_I(inode)->i_gc_failures[GC_FAILURE_PIN] = count; |
Jaegeuk Kim | 1ad71a2 | 2017-12-07 16:25:39 -0800 | [diff] [blame] | 2677 | f2fs_mark_inode_dirty_sync(inode, true); |
| 2678 | } |
| 2679 | |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2680 | static inline void f2fs_i_xnid_write(struct inode *inode, nid_t xnid) |
| 2681 | { |
| 2682 | F2FS_I(inode)->i_xattr_nid = xnid; |
Jaegeuk Kim | 7c45729 | 2016-10-14 11:51:23 -0700 | [diff] [blame] | 2683 | f2fs_mark_inode_dirty_sync(inode, true); |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2684 | } |
| 2685 | |
| 2686 | static inline void f2fs_i_pino_write(struct inode *inode, nid_t pino) |
| 2687 | { |
| 2688 | F2FS_I(inode)->i_pino = pino; |
Jaegeuk Kim | 7c45729 | 2016-10-14 11:51:23 -0700 | [diff] [blame] | 2689 | f2fs_mark_inode_dirty_sync(inode, true); |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2690 | } |
| 2691 | |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2692 | static inline void get_inline_info(struct inode *inode, struct f2fs_inode *ri) |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 2693 | { |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 2694 | struct f2fs_inode_info *fi = F2FS_I(inode); |
| 2695 | |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 2696 | if (ri->i_inline & F2FS_INLINE_XATTR) |
Chao Yu | 7653b9d | 2020-03-23 11:18:07 +0800 | [diff] [blame] | 2697 | set_bit(FI_INLINE_XATTR, fi->flags); |
Huajun Li | 1001b34 | 2013-11-10 23:13:16 +0800 | [diff] [blame] | 2698 | if (ri->i_inline & F2FS_INLINE_DATA) |
Chao Yu | 7653b9d | 2020-03-23 11:18:07 +0800 | [diff] [blame] | 2699 | set_bit(FI_INLINE_DATA, fi->flags); |
Chao Yu | 34d67de | 2014-09-24 18:15:19 +0800 | [diff] [blame] | 2700 | if (ri->i_inline & F2FS_INLINE_DENTRY) |
Chao Yu | 7653b9d | 2020-03-23 11:18:07 +0800 | [diff] [blame] | 2701 | set_bit(FI_INLINE_DENTRY, fi->flags); |
Jaegeuk Kim | b3d208f | 2014-10-23 19:48:09 -0700 | [diff] [blame] | 2702 | if (ri->i_inline & F2FS_DATA_EXIST) |
Chao Yu | 7653b9d | 2020-03-23 11:18:07 +0800 | [diff] [blame] | 2703 | set_bit(FI_DATA_EXIST, fi->flags); |
Jaegeuk Kim | 510022a | 2015-03-30 15:07:16 -0700 | [diff] [blame] | 2704 | if (ri->i_inline & F2FS_INLINE_DOTS) |
Chao Yu | 7653b9d | 2020-03-23 11:18:07 +0800 | [diff] [blame] | 2705 | set_bit(FI_INLINE_DOTS, fi->flags); |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2706 | if (ri->i_inline & F2FS_EXTRA_ATTR) |
Chao Yu | 7653b9d | 2020-03-23 11:18:07 +0800 | [diff] [blame] | 2707 | set_bit(FI_EXTRA_ATTR, fi->flags); |
Jaegeuk Kim | 1ad71a2 | 2017-12-07 16:25:39 -0800 | [diff] [blame] | 2708 | if (ri->i_inline & F2FS_PIN_FILE) |
Chao Yu | 7653b9d | 2020-03-23 11:18:07 +0800 | [diff] [blame] | 2709 | set_bit(FI_PIN_FILE, fi->flags); |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 2710 | } |
| 2711 | |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2712 | static inline void set_raw_inline(struct inode *inode, struct f2fs_inode *ri) |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 2713 | { |
| 2714 | ri->i_inline = 0; |
| 2715 | |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2716 | if (is_inode_flag_set(inode, FI_INLINE_XATTR)) |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 2717 | ri->i_inline |= F2FS_INLINE_XATTR; |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2718 | if (is_inode_flag_set(inode, FI_INLINE_DATA)) |
Huajun Li | 1001b34 | 2013-11-10 23:13:16 +0800 | [diff] [blame] | 2719 | ri->i_inline |= F2FS_INLINE_DATA; |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2720 | if (is_inode_flag_set(inode, FI_INLINE_DENTRY)) |
Chao Yu | 34d67de | 2014-09-24 18:15:19 +0800 | [diff] [blame] | 2721 | ri->i_inline |= F2FS_INLINE_DENTRY; |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2722 | if (is_inode_flag_set(inode, FI_DATA_EXIST)) |
Jaegeuk Kim | b3d208f | 2014-10-23 19:48:09 -0700 | [diff] [blame] | 2723 | ri->i_inline |= F2FS_DATA_EXIST; |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2724 | if (is_inode_flag_set(inode, FI_INLINE_DOTS)) |
Jaegeuk Kim | 510022a | 2015-03-30 15:07:16 -0700 | [diff] [blame] | 2725 | ri->i_inline |= F2FS_INLINE_DOTS; |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2726 | if (is_inode_flag_set(inode, FI_EXTRA_ATTR)) |
| 2727 | ri->i_inline |= F2FS_EXTRA_ATTR; |
Jaegeuk Kim | 1ad71a2 | 2017-12-07 16:25:39 -0800 | [diff] [blame] | 2728 | if (is_inode_flag_set(inode, FI_PIN_FILE)) |
| 2729 | ri->i_inline |= F2FS_PIN_FILE; |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2730 | } |
| 2731 | |
| 2732 | static inline int f2fs_has_extra_attr(struct inode *inode) |
| 2733 | { |
| 2734 | return is_inode_flag_set(inode, FI_EXTRA_ATTR); |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 2735 | } |
| 2736 | |
Chao Yu | 987c7c3 | 2014-03-12 15:59:03 +0800 | [diff] [blame] | 2737 | static inline int f2fs_has_inline_xattr(struct inode *inode) |
| 2738 | { |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2739 | return is_inode_flag_set(inode, FI_INLINE_XATTR); |
Chao Yu | 987c7c3 | 2014-03-12 15:59:03 +0800 | [diff] [blame] | 2740 | } |
| 2741 | |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 2742 | static inline int f2fs_compressed_file(struct inode *inode) |
| 2743 | { |
| 2744 | return S_ISREG(inode->i_mode) && |
| 2745 | is_inode_flag_set(inode, FI_COMPRESSED_FILE); |
| 2746 | } |
| 2747 | |
Chao Yu | 81ca735 | 2016-01-26 15:39:35 +0800 | [diff] [blame] | 2748 | static inline unsigned int addrs_per_inode(struct inode *inode) |
Jaegeuk Kim | de93653 | 2013-08-12 21:08:03 +0900 | [diff] [blame] | 2749 | { |
Chao Yu | d02a6e6 | 2019-03-25 21:08:19 +0800 | [diff] [blame] | 2750 | unsigned int addrs = CUR_ADDRS_PER_INODE(inode) - |
| 2751 | get_inline_xattr_addrs(inode); |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 2752 | |
| 2753 | if (!f2fs_compressed_file(inode)) |
| 2754 | return addrs; |
| 2755 | return ALIGN_DOWN(addrs, F2FS_I(inode)->i_cluster_size); |
Chao Yu | d02a6e6 | 2019-03-25 21:08:19 +0800 | [diff] [blame] | 2756 | } |
| 2757 | |
| 2758 | static inline unsigned int addrs_per_block(struct inode *inode) |
| 2759 | { |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 2760 | if (!f2fs_compressed_file(inode)) |
| 2761 | return DEF_ADDRS_PER_BLOCK; |
| 2762 | return ALIGN_DOWN(DEF_ADDRS_PER_BLOCK, F2FS_I(inode)->i_cluster_size); |
Jaegeuk Kim | de93653 | 2013-08-12 21:08:03 +0900 | [diff] [blame] | 2763 | } |
| 2764 | |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 2765 | static inline void *inline_xattr_addr(struct inode *inode, struct page *page) |
Jaegeuk Kim | 65985d9 | 2013-08-14 21:57:27 +0900 | [diff] [blame] | 2766 | { |
Chao Yu | 695fd1e | 2014-02-27 19:52:21 +0800 | [diff] [blame] | 2767 | struct f2fs_inode *ri = F2FS_INODE(page); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 2768 | |
Jaegeuk Kim | 65985d9 | 2013-08-14 21:57:27 +0900 | [diff] [blame] | 2769 | return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE - |
Chao Yu | b323fd2 | 2018-01-17 16:31:36 +0800 | [diff] [blame] | 2770 | get_inline_xattr_addrs(inode)]); |
Jaegeuk Kim | 65985d9 | 2013-08-14 21:57:27 +0900 | [diff] [blame] | 2771 | } |
| 2772 | |
| 2773 | static inline int inline_xattr_size(struct inode *inode) |
| 2774 | { |
Chao Yu | 622927f | 2019-04-11 11:48:10 +0800 | [diff] [blame] | 2775 | if (f2fs_has_inline_xattr(inode)) |
| 2776 | return get_inline_xattr_addrs(inode) * sizeof(__le32); |
| 2777 | return 0; |
Jaegeuk Kim | 65985d9 | 2013-08-14 21:57:27 +0900 | [diff] [blame] | 2778 | } |
| 2779 | |
Jaegeuk Kim | 0dbdc2a | 2013-11-26 11:08:57 +0900 | [diff] [blame] | 2780 | static inline int f2fs_has_inline_data(struct inode *inode) |
| 2781 | { |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2782 | return is_inode_flag_set(inode, FI_INLINE_DATA); |
Jaegeuk Kim | 0dbdc2a | 2013-11-26 11:08:57 +0900 | [diff] [blame] | 2783 | } |
| 2784 | |
Jaegeuk Kim | b3d208f | 2014-10-23 19:48:09 -0700 | [diff] [blame] | 2785 | static inline int f2fs_exist_data(struct inode *inode) |
| 2786 | { |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2787 | return is_inode_flag_set(inode, FI_DATA_EXIST); |
Jaegeuk Kim | b3d208f | 2014-10-23 19:48:09 -0700 | [diff] [blame] | 2788 | } |
| 2789 | |
Jaegeuk Kim | 510022a | 2015-03-30 15:07:16 -0700 | [diff] [blame] | 2790 | static inline int f2fs_has_inline_dots(struct inode *inode) |
| 2791 | { |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2792 | return is_inode_flag_set(inode, FI_INLINE_DOTS); |
Jaegeuk Kim | 510022a | 2015-03-30 15:07:16 -0700 | [diff] [blame] | 2793 | } |
| 2794 | |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 2795 | static inline int f2fs_is_mmap_file(struct inode *inode) |
| 2796 | { |
| 2797 | return is_inode_flag_set(inode, FI_MMAP_FILE); |
| 2798 | } |
| 2799 | |
Jaegeuk Kim | 1ad71a2 | 2017-12-07 16:25:39 -0800 | [diff] [blame] | 2800 | static inline bool f2fs_is_pinned_file(struct inode *inode) |
| 2801 | { |
| 2802 | return is_inode_flag_set(inode, FI_PIN_FILE); |
| 2803 | } |
| 2804 | |
Jaegeuk Kim | 88b88a6 | 2014-10-06 17:39:50 -0700 | [diff] [blame] | 2805 | static inline bool f2fs_is_atomic_file(struct inode *inode) |
| 2806 | { |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2807 | return is_inode_flag_set(inode, FI_ATOMIC_FILE); |
Jaegeuk Kim | 88b88a6 | 2014-10-06 17:39:50 -0700 | [diff] [blame] | 2808 | } |
| 2809 | |
Chao Yu | 5fe4574 | 2017-01-07 18:50:26 +0800 | [diff] [blame] | 2810 | static inline bool f2fs_is_commit_atomic_write(struct inode *inode) |
| 2811 | { |
| 2812 | return is_inode_flag_set(inode, FI_ATOMIC_COMMIT); |
| 2813 | } |
| 2814 | |
Jaegeuk Kim | 02a1335 | 2014-10-06 16:11:16 -0700 | [diff] [blame] | 2815 | static inline bool f2fs_is_volatile_file(struct inode *inode) |
| 2816 | { |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2817 | return is_inode_flag_set(inode, FI_VOLATILE_FILE); |
Jaegeuk Kim | 02a1335 | 2014-10-06 16:11:16 -0700 | [diff] [blame] | 2818 | } |
| 2819 | |
Jaegeuk Kim | 3c6c2be | 2015-03-17 17:16:35 -0700 | [diff] [blame] | 2820 | static inline bool f2fs_is_first_block_written(struct inode *inode) |
| 2821 | { |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2822 | return is_inode_flag_set(inode, FI_FIRST_BLOCK_WRITTEN); |
Jaegeuk Kim | 3c6c2be | 2015-03-17 17:16:35 -0700 | [diff] [blame] | 2823 | } |
| 2824 | |
Jaegeuk Kim | 1e84371 | 2014-12-09 06:08:59 -0800 | [diff] [blame] | 2825 | static inline bool f2fs_is_drop_cache(struct inode *inode) |
| 2826 | { |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2827 | return is_inode_flag_set(inode, FI_DROP_CACHE); |
Jaegeuk Kim | 1e84371 | 2014-12-09 06:08:59 -0800 | [diff] [blame] | 2828 | } |
| 2829 | |
Chao Yu | f247037 | 2017-07-19 00:19:05 +0800 | [diff] [blame] | 2830 | static inline void *inline_data_addr(struct inode *inode, struct page *page) |
Huajun Li | 1001b34 | 2013-11-10 23:13:16 +0800 | [diff] [blame] | 2831 | { |
Chao Yu | 695fd1e | 2014-02-27 19:52:21 +0800 | [diff] [blame] | 2832 | struct f2fs_inode *ri = F2FS_INODE(page); |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2833 | int extra_size = get_extra_isize(inode); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 2834 | |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2835 | return (void *)&(ri->i_addr[extra_size + DEF_INLINE_RESERVED_SIZE]); |
Huajun Li | 1001b34 | 2013-11-10 23:13:16 +0800 | [diff] [blame] | 2836 | } |
| 2837 | |
Chao Yu | 34d67de | 2014-09-24 18:15:19 +0800 | [diff] [blame] | 2838 | static inline int f2fs_has_inline_dentry(struct inode *inode) |
| 2839 | { |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2840 | return is_inode_flag_set(inode, FI_INLINE_DENTRY); |
Chao Yu | 34d67de | 2014-09-24 18:15:19 +0800 | [diff] [blame] | 2841 | } |
| 2842 | |
Jaegeuk Kim | b5492af | 2015-04-20 13:44:41 -0700 | [diff] [blame] | 2843 | static inline int is_file(struct inode *inode, int type) |
| 2844 | { |
| 2845 | return F2FS_I(inode)->i_advise & type; |
| 2846 | } |
| 2847 | |
| 2848 | static inline void set_file(struct inode *inode, int type) |
| 2849 | { |
| 2850 | F2FS_I(inode)->i_advise |= type; |
Jaegeuk Kim | 7c45729 | 2016-10-14 11:51:23 -0700 | [diff] [blame] | 2851 | f2fs_mark_inode_dirty_sync(inode, true); |
Jaegeuk Kim | b5492af | 2015-04-20 13:44:41 -0700 | [diff] [blame] | 2852 | } |
| 2853 | |
| 2854 | static inline void clear_file(struct inode *inode, int type) |
| 2855 | { |
| 2856 | F2FS_I(inode)->i_advise &= ~type; |
Jaegeuk Kim | 7c45729 | 2016-10-14 11:51:23 -0700 | [diff] [blame] | 2857 | f2fs_mark_inode_dirty_sync(inode, true); |
Jaegeuk Kim | b5492af | 2015-04-20 13:44:41 -0700 | [diff] [blame] | 2858 | } |
| 2859 | |
Chao Yu | fe1897e | 2019-09-27 18:01:35 +0800 | [diff] [blame] | 2860 | static inline bool f2fs_is_time_consistent(struct inode *inode) |
| 2861 | { |
| 2862 | if (!timespec64_equal(F2FS_I(inode)->i_disk_time, &inode->i_atime)) |
| 2863 | return false; |
| 2864 | if (!timespec64_equal(F2FS_I(inode)->i_disk_time + 1, &inode->i_ctime)) |
| 2865 | return false; |
| 2866 | if (!timespec64_equal(F2FS_I(inode)->i_disk_time + 2, &inode->i_mtime)) |
| 2867 | return false; |
| 2868 | if (!timespec64_equal(F2FS_I(inode)->i_disk_time + 3, |
| 2869 | &F2FS_I(inode)->i_crtime)) |
| 2870 | return false; |
| 2871 | return true; |
| 2872 | } |
| 2873 | |
Jaegeuk Kim | 2678723 | 2016-11-28 15:33:38 -0800 | [diff] [blame] | 2874 | static inline bool f2fs_skip_inode_update(struct inode *inode, int dsync) |
| 2875 | { |
Chao Yu | a0d00fa | 2017-10-09 17:55:19 +0800 | [diff] [blame] | 2876 | bool ret; |
| 2877 | |
Jaegeuk Kim | 2678723 | 2016-11-28 15:33:38 -0800 | [diff] [blame] | 2878 | if (dsync) { |
| 2879 | struct f2fs_sb_info *sbi = F2FS_I_SB(inode); |
Jaegeuk Kim | 2678723 | 2016-11-28 15:33:38 -0800 | [diff] [blame] | 2880 | |
| 2881 | spin_lock(&sbi->inode_lock[DIRTY_META]); |
| 2882 | ret = list_empty(&F2FS_I(inode)->gdirty_list); |
| 2883 | spin_unlock(&sbi->inode_lock[DIRTY_META]); |
| 2884 | return ret; |
| 2885 | } |
| 2886 | if (!is_inode_flag_set(inode, FI_AUTO_RECOVER) || |
| 2887 | file_keep_isize(inode) || |
Junling Zheng | 235831d | 2018-03-29 19:27:12 +0800 | [diff] [blame] | 2888 | i_size_read(inode) & ~PAGE_MASK) |
Jaegeuk Kim | 2678723 | 2016-11-28 15:33:38 -0800 | [diff] [blame] | 2889 | return false; |
Chao Yu | a0d00fa | 2017-10-09 17:55:19 +0800 | [diff] [blame] | 2890 | |
Chao Yu | fe1897e | 2019-09-27 18:01:35 +0800 | [diff] [blame] | 2891 | if (!f2fs_is_time_consistent(inode)) |
Jaegeuk Kim | 214c246 | 2018-03-29 22:50:41 -0700 | [diff] [blame] | 2892 | return false; |
| 2893 | |
Chao Yu | c10c982 | 2020-02-27 19:30:03 +0800 | [diff] [blame] | 2894 | spin_lock(&F2FS_I(inode)->i_size_lock); |
Chao Yu | a0d00fa | 2017-10-09 17:55:19 +0800 | [diff] [blame] | 2895 | ret = F2FS_I(inode)->last_disk_size == i_size_read(inode); |
Chao Yu | c10c982 | 2020-02-27 19:30:03 +0800 | [diff] [blame] | 2896 | spin_unlock(&F2FS_I(inode)->i_size_lock); |
Chao Yu | a0d00fa | 2017-10-09 17:55:19 +0800 | [diff] [blame] | 2897 | |
| 2898 | return ret; |
Chao Yu | 267378d | 2014-04-23 14:10:24 +0800 | [diff] [blame] | 2899 | } |
| 2900 | |
Chao Yu | deeedd7 | 2018-03-01 23:40:31 +0800 | [diff] [blame] | 2901 | static inline bool f2fs_readonly(struct super_block *sb) |
Jaegeuk Kim | 77888c1 | 2013-05-20 20:28:47 +0900 | [diff] [blame] | 2902 | { |
Chao Yu | deeedd7 | 2018-03-01 23:40:31 +0800 | [diff] [blame] | 2903 | return sb_rdonly(sb); |
Jaegeuk Kim | 77888c1 | 2013-05-20 20:28:47 +0900 | [diff] [blame] | 2904 | } |
| 2905 | |
Jaegeuk Kim | 744602c | 2014-01-24 09:42:16 +0900 | [diff] [blame] | 2906 | static inline bool f2fs_cp_error(struct f2fs_sb_info *sbi) |
| 2907 | { |
Chao Yu | aaec2b1 | 2016-09-20 11:04:18 +0800 | [diff] [blame] | 2908 | return is_set_ckpt_flags(sbi, CP_ERROR_FLAG); |
Jaegeuk Kim | 744602c | 2014-01-24 09:42:16 +0900 | [diff] [blame] | 2909 | } |
| 2910 | |
Jaegeuk Kim | eaa693f | 2015-04-26 00:15:29 -0700 | [diff] [blame] | 2911 | static inline bool is_dot_dotdot(const struct qstr *str) |
| 2912 | { |
| 2913 | if (str->len == 1 && str->name[0] == '.') |
| 2914 | return true; |
| 2915 | |
| 2916 | if (str->len == 2 && str->name[0] == '.' && str->name[1] == '.') |
| 2917 | return true; |
| 2918 | |
| 2919 | return false; |
| 2920 | } |
| 2921 | |
Jaegeuk Kim | 3e72f72 | 2015-06-19 17:53:26 -0700 | [diff] [blame] | 2922 | static inline bool f2fs_may_extent_tree(struct inode *inode) |
| 2923 | { |
Sahitya Tummala | e4589fa | 2018-12-18 16:39:24 +0530 | [diff] [blame] | 2924 | struct f2fs_sb_info *sbi = F2FS_I_SB(inode); |
| 2925 | |
| 2926 | if (!test_opt(sbi, EXTENT_CACHE) || |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 2927 | is_inode_flag_set(inode, FI_NO_EXTENT) || |
| 2928 | is_inode_flag_set(inode, FI_COMPRESSED_FILE)) |
Jaegeuk Kim | 3e72f72 | 2015-06-19 17:53:26 -0700 | [diff] [blame] | 2929 | return false; |
| 2930 | |
Sahitya Tummala | e4589fa | 2018-12-18 16:39:24 +0530 | [diff] [blame] | 2931 | /* |
| 2932 | * for recovered files during mount do not create extents |
| 2933 | * if shrinker is not registered. |
| 2934 | */ |
| 2935 | if (list_empty(&sbi->s_list)) |
| 2936 | return false; |
| 2937 | |
Al Viro | 886f56f | 2015-12-05 03:56:06 -0500 | [diff] [blame] | 2938 | return S_ISREG(inode->i_mode); |
Jaegeuk Kim | 3e72f72 | 2015-06-19 17:53:26 -0700 | [diff] [blame] | 2939 | } |
| 2940 | |
Chao Yu | 1ecc0c5 | 2016-09-23 21:30:09 +0800 | [diff] [blame] | 2941 | static inline void *f2fs_kmalloc(struct f2fs_sb_info *sbi, |
| 2942 | size_t size, gfp_t flags) |
Jaegeuk Kim | 0414b00 | 2016-04-29 15:16:42 -0700 | [diff] [blame] | 2943 | { |
Jaegeuk Kim | 5222595 | 2018-12-13 18:38:33 -0800 | [diff] [blame] | 2944 | void *ret; |
| 2945 | |
Chao Yu | 5552351 | 2017-02-25 11:08:28 +0800 | [diff] [blame] | 2946 | if (time_to_inject(sbi, FAULT_KMALLOC)) { |
Chao Yu | c45d600 | 2019-11-01 17:53:23 +0800 | [diff] [blame] | 2947 | f2fs_show_injection_info(sbi, FAULT_KMALLOC); |
Jaegeuk Kim | 2c63fea | 2016-04-29 15:49:56 -0700 | [diff] [blame] | 2948 | return NULL; |
Chao Yu | 5552351 | 2017-02-25 11:08:28 +0800 | [diff] [blame] | 2949 | } |
Arnd Bergmann | 7fa750a | 2018-08-13 23:38:06 +0200 | [diff] [blame] | 2950 | |
Jaegeuk Kim | 5222595 | 2018-12-13 18:38:33 -0800 | [diff] [blame] | 2951 | ret = kmalloc(size, flags); |
| 2952 | if (ret) |
| 2953 | return ret; |
| 2954 | |
| 2955 | return kvmalloc(size, flags); |
Jaegeuk Kim | 0414b00 | 2016-04-29 15:16:42 -0700 | [diff] [blame] | 2956 | } |
| 2957 | |
Chao Yu | acbf054 | 2017-11-30 19:28:17 +0800 | [diff] [blame] | 2958 | static inline void *f2fs_kzalloc(struct f2fs_sb_info *sbi, |
| 2959 | size_t size, gfp_t flags) |
| 2960 | { |
| 2961 | return f2fs_kmalloc(sbi, size, flags | __GFP_ZERO); |
| 2962 | } |
| 2963 | |
Chao Yu | 628b3d1 | 2017-11-30 19:28:18 +0800 | [diff] [blame] | 2964 | static inline void *f2fs_kvmalloc(struct f2fs_sb_info *sbi, |
| 2965 | size_t size, gfp_t flags) |
| 2966 | { |
Chao Yu | 628b3d1 | 2017-11-30 19:28:18 +0800 | [diff] [blame] | 2967 | if (time_to_inject(sbi, FAULT_KVMALLOC)) { |
Chao Yu | c45d600 | 2019-11-01 17:53:23 +0800 | [diff] [blame] | 2968 | f2fs_show_injection_info(sbi, FAULT_KVMALLOC); |
Chao Yu | 628b3d1 | 2017-11-30 19:28:18 +0800 | [diff] [blame] | 2969 | return NULL; |
| 2970 | } |
Arnd Bergmann | 7fa750a | 2018-08-13 23:38:06 +0200 | [diff] [blame] | 2971 | |
Chao Yu | 628b3d1 | 2017-11-30 19:28:18 +0800 | [diff] [blame] | 2972 | return kvmalloc(size, flags); |
| 2973 | } |
| 2974 | |
| 2975 | static inline void *f2fs_kvzalloc(struct f2fs_sb_info *sbi, |
| 2976 | size_t size, gfp_t flags) |
| 2977 | { |
| 2978 | return f2fs_kvmalloc(sbi, size, flags | __GFP_ZERO); |
| 2979 | } |
| 2980 | |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2981 | static inline int get_extra_isize(struct inode *inode) |
Chao Yu | f247037 | 2017-07-19 00:19:05 +0800 | [diff] [blame] | 2982 | { |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2983 | return F2FS_I(inode)->i_extra_isize / sizeof(__le32); |
Chao Yu | f247037 | 2017-07-19 00:19:05 +0800 | [diff] [blame] | 2984 | } |
| 2985 | |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 2986 | static inline int get_inline_xattr_addrs(struct inode *inode) |
| 2987 | { |
| 2988 | return F2FS_I(inode)->i_inline_xattr_size; |
| 2989 | } |
| 2990 | |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 2991 | #define f2fs_get_inode_mode(i) \ |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 2992 | ((is_inode_flag_set(i, FI_ACL_MODE)) ? \ |
Christoph Hellwig | a6dda0e | 2013-12-20 05:16:45 -0800 | [diff] [blame] | 2993 | (F2FS_I(i)->i_acl_mode) : ((i)->i_mode)) |
| 2994 | |
Chao Yu | 7a2af76 | 2017-07-19 00:19:06 +0800 | [diff] [blame] | 2995 | #define F2FS_TOTAL_EXTRA_ATTR_SIZE \ |
| 2996 | (offsetof(struct f2fs_inode, i_extra_end) - \ |
| 2997 | offsetof(struct f2fs_inode, i_extra_isize)) \ |
| 2998 | |
Chao Yu | 5c57132 | 2017-07-26 00:01:41 +0800 | [diff] [blame] | 2999 | #define F2FS_OLD_ATTRIBUTE_SIZE (offsetof(struct f2fs_inode, i_addr)) |
| 3000 | #define F2FS_FITS_IN_INODE(f2fs_inode, extra_isize, field) \ |
Sheng Yong | 2f84bab | 2019-01-14 22:05:14 +0800 | [diff] [blame] | 3001 | ((offsetof(typeof(*(f2fs_inode)), field) + \ |
Chao Yu | 5c57132 | 2017-07-26 00:01:41 +0800 | [diff] [blame] | 3002 | sizeof((f2fs_inode)->field)) \ |
Sheng Yong | 2f84bab | 2019-01-14 22:05:14 +0800 | [diff] [blame] | 3003 | <= (F2FS_OLD_ATTRIBUTE_SIZE + (extra_isize))) \ |
Chao Yu | 5c57132 | 2017-07-26 00:01:41 +0800 | [diff] [blame] | 3004 | |
Daeho Jeong | 2bc4bea | 2020-03-30 03:30:59 +0000 | [diff] [blame^] | 3005 | #define DEFAULT_IOSTAT_PERIOD_MS 3000 |
| 3006 | #define MIN_IOSTAT_PERIOD_MS 100 |
| 3007 | /* maximum period of iostat tracing is 1 day */ |
| 3008 | #define MAX_IOSTAT_PERIOD_MS 8640000 |
| 3009 | |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 3010 | static inline void f2fs_reset_iostat(struct f2fs_sb_info *sbi) |
| 3011 | { |
| 3012 | int i; |
| 3013 | |
| 3014 | spin_lock(&sbi->iostat_lock); |
Daeho Jeong | 2bc4bea | 2020-03-30 03:30:59 +0000 | [diff] [blame^] | 3015 | for (i = 0; i < NR_IO_TYPE; i++) { |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 3016 | sbi->write_iostat[i] = 0; |
Daeho Jeong | 2bc4bea | 2020-03-30 03:30:59 +0000 | [diff] [blame^] | 3017 | sbi->prev_write_iostat[i] = 0; |
| 3018 | } |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 3019 | spin_unlock(&sbi->iostat_lock); |
| 3020 | } |
| 3021 | |
Daeho Jeong | 2bc4bea | 2020-03-30 03:30:59 +0000 | [diff] [blame^] | 3022 | extern void f2fs_record_iostat(struct f2fs_sb_info *sbi); |
| 3023 | |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 3024 | static inline void f2fs_update_iostat(struct f2fs_sb_info *sbi, |
| 3025 | enum iostat_type type, unsigned long long io_bytes) |
| 3026 | { |
| 3027 | if (!sbi->iostat_enable) |
| 3028 | return; |
| 3029 | spin_lock(&sbi->iostat_lock); |
| 3030 | sbi->write_iostat[type] += io_bytes; |
| 3031 | |
| 3032 | if (type == APP_WRITE_IO || type == APP_DIRECT_IO) |
| 3033 | sbi->write_iostat[APP_BUFFERED_IO] = |
| 3034 | sbi->write_iostat[APP_WRITE_IO] - |
| 3035 | sbi->write_iostat[APP_DIRECT_IO]; |
| 3036 | spin_unlock(&sbi->iostat_lock); |
Daeho Jeong | 2bc4bea | 2020-03-30 03:30:59 +0000 | [diff] [blame^] | 3037 | |
| 3038 | f2fs_record_iostat(sbi); |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 3039 | } |
| 3040 | |
Chao Yu | 2c70c5e | 2018-10-24 18:37:26 +0800 | [diff] [blame] | 3041 | #define __is_large_section(sbi) ((sbi)->segs_per_sec > 1) |
| 3042 | |
Chao Yu | 6dc3a12 | 2019-04-15 15:26:31 +0800 | [diff] [blame] | 3043 | #define __is_meta_io(fio) (PAGE_TYPE_OF_BIO((fio)->type) == META) |
Chao Yu | c9b6078 | 2018-08-01 19:13:44 +0800 | [diff] [blame] | 3044 | |
Chao Yu | e1da787 | 2018-06-05 17:44:11 +0800 | [diff] [blame] | 3045 | bool f2fs_is_valid_blkaddr(struct f2fs_sb_info *sbi, |
| 3046 | block_t blkaddr, int type); |
Chao Yu | e1da787 | 2018-06-05 17:44:11 +0800 | [diff] [blame] | 3047 | static inline void verify_blkaddr(struct f2fs_sb_info *sbi, |
| 3048 | block_t blkaddr, int type) |
| 3049 | { |
| 3050 | if (!f2fs_is_valid_blkaddr(sbi, blkaddr, type)) { |
Joe Perches | dcbb4c1 | 2019-06-18 17:48:42 +0800 | [diff] [blame] | 3051 | f2fs_err(sbi, "invalid blkaddr: %u, type: %d, run fsck to fix.", |
| 3052 | blkaddr, type); |
Chao Yu | e1da787 | 2018-06-05 17:44:11 +0800 | [diff] [blame] | 3053 | f2fs_bug_on(sbi, 1); |
| 3054 | } |
| 3055 | } |
| 3056 | |
| 3057 | static inline bool __is_valid_data_blkaddr(block_t blkaddr) |
Chao Yu | 7b525dd | 2018-05-23 22:25:08 +0800 | [diff] [blame] | 3058 | { |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3059 | if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR || |
| 3060 | blkaddr == COMPRESS_ADDR) |
Chao Yu | 7b525dd | 2018-05-23 22:25:08 +0800 | [diff] [blame] | 3061 | return false; |
| 3062 | return true; |
| 3063 | } |
| 3064 | |
Chao Yu | 240a591 | 2019-03-06 17:30:59 +0800 | [diff] [blame] | 3065 | static inline void f2fs_set_page_private(struct page *page, |
| 3066 | unsigned long data) |
| 3067 | { |
| 3068 | if (PagePrivate(page)) |
| 3069 | return; |
| 3070 | |
| 3071 | get_page(page); |
| 3072 | SetPagePrivate(page); |
| 3073 | set_page_private(page, data); |
| 3074 | } |
| 3075 | |
| 3076 | static inline void f2fs_clear_page_private(struct page *page) |
| 3077 | { |
| 3078 | if (!PagePrivate(page)) |
| 3079 | return; |
| 3080 | |
| 3081 | set_page_private(page, 0); |
| 3082 | ClearPagePrivate(page); |
| 3083 | f2fs_put_page(page, 0); |
| 3084 | } |
| 3085 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3086 | /* |
| 3087 | * file.c |
| 3088 | */ |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3089 | int f2fs_sync_file(struct file *file, loff_t start, loff_t end, int datasync); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3090 | void f2fs_truncate_data_blocks(struct dnode_of_data *dn); |
Chao Yu | c42d28c | 2019-02-02 17:33:01 +0800 | [diff] [blame] | 3091 | int f2fs_truncate_blocks(struct inode *inode, u64 from, bool lock); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3092 | int f2fs_truncate(struct inode *inode); |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 3093 | int f2fs_getattr(const struct path *path, struct kstat *stat, |
| 3094 | u32 request_mask, unsigned int flags); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3095 | int f2fs_setattr(struct dentry *dentry, struct iattr *attr); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3096 | int f2fs_truncate_hole(struct inode *inode, pgoff_t pg_start, pgoff_t pg_end); |
| 3097 | void f2fs_truncate_data_blocks_range(struct dnode_of_data *dn, int count); |
Chao Yu | c4020b2 | 2018-01-11 14:42:30 +0800 | [diff] [blame] | 3098 | int f2fs_precache_extents(struct inode *inode); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3099 | long f2fs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg); |
| 3100 | long f2fs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg); |
Chao Yu | 7813081 | 2018-09-25 15:36:02 +0800 | [diff] [blame] | 3101 | int f2fs_transfer_project_quota(struct inode *inode, kprojid_t kprojid); |
Jaegeuk Kim | 1ad71a2 | 2017-12-07 16:25:39 -0800 | [diff] [blame] | 3102 | int f2fs_pin_file_control(struct inode *inode, bool inc); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3103 | |
| 3104 | /* |
| 3105 | * inode.c |
| 3106 | */ |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3107 | void f2fs_set_inode_flags(struct inode *inode); |
Chao Yu | 704956e | 2017-07-31 20:19:09 +0800 | [diff] [blame] | 3108 | bool f2fs_inode_chksum_verify(struct f2fs_sb_info *sbi, struct page *page); |
| 3109 | void f2fs_inode_chksum_set(struct f2fs_sb_info *sbi, struct page *page); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3110 | struct inode *f2fs_iget(struct super_block *sb, unsigned long ino); |
| 3111 | struct inode *f2fs_iget_retry(struct super_block *sb, unsigned long ino); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3112 | int f2fs_try_to_free_nats(struct f2fs_sb_info *sbi, int nr_shrink); |
| 3113 | void f2fs_update_inode(struct inode *inode, struct page *node_page); |
| 3114 | void f2fs_update_inode_page(struct inode *inode); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3115 | int f2fs_write_inode(struct inode *inode, struct writeback_control *wbc); |
| 3116 | void f2fs_evict_inode(struct inode *inode); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3117 | void f2fs_handle_failed_inode(struct inode *inode); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3118 | |
| 3119 | /* |
| 3120 | * namei.c |
| 3121 | */ |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3122 | int f2fs_update_extension_list(struct f2fs_sb_info *sbi, const char *name, |
Chao Yu | b6a06cb | 2018-02-28 17:07:27 +0800 | [diff] [blame] | 3123 | bool hot, bool set); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3124 | struct dentry *f2fs_get_parent(struct dentry *child); |
| 3125 | |
Daniel Rosenberg | 2c2eb7a | 2019-07-23 16:05:29 -0700 | [diff] [blame] | 3126 | extern int f2fs_ci_compare(const struct inode *parent, |
| 3127 | const struct qstr *name, |
Chao Yu | 950d47f | 2019-08-21 23:13:35 +0800 | [diff] [blame] | 3128 | const struct qstr *entry, |
| 3129 | bool quick); |
Daniel Rosenberg | 2c2eb7a | 2019-07-23 16:05:29 -0700 | [diff] [blame] | 3130 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3131 | /* |
| 3132 | * dir.c |
| 3133 | */ |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3134 | unsigned char f2fs_get_de_type(struct f2fs_dir_entry *de); |
| 3135 | struct f2fs_dir_entry *f2fs_find_target_dentry(struct fscrypt_name *fname, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3136 | f2fs_hash_t namehash, int *max_slots, |
| 3137 | struct f2fs_dentry_ptr *d); |
| 3138 | int f2fs_fill_dentries(struct dir_context *ctx, struct f2fs_dentry_ptr *d, |
| 3139 | unsigned int start_pos, struct fscrypt_str *fstr); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3140 | void f2fs_do_make_empty_dir(struct inode *inode, struct inode *parent, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3141 | struct f2fs_dentry_ptr *d); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3142 | struct page *f2fs_init_inode_metadata(struct inode *inode, struct inode *dir, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3143 | const struct qstr *new_name, |
| 3144 | const struct qstr *orig_name, struct page *dpage); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3145 | void f2fs_update_parent_metadata(struct inode *dir, struct inode *inode, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3146 | unsigned int current_depth); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3147 | int f2fs_room_for_filename(const void *bitmap, int slots, int max_slots); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3148 | void f2fs_drop_nlink(struct inode *dir, struct inode *inode); |
| 3149 | struct f2fs_dir_entry *__f2fs_find_entry(struct inode *dir, |
| 3150 | struct fscrypt_name *fname, struct page **res_page); |
| 3151 | struct f2fs_dir_entry *f2fs_find_entry(struct inode *dir, |
| 3152 | const struct qstr *child, struct page **res_page); |
| 3153 | struct f2fs_dir_entry *f2fs_parent_dir(struct inode *dir, struct page **p); |
| 3154 | ino_t f2fs_inode_by_name(struct inode *dir, const struct qstr *qstr, |
| 3155 | struct page **page); |
| 3156 | void f2fs_set_link(struct inode *dir, struct f2fs_dir_entry *de, |
| 3157 | struct page *page, struct inode *inode); |
Jaegeuk Kim | b06af2a | 2019-12-09 19:03:05 -0800 | [diff] [blame] | 3158 | bool f2fs_has_enough_room(struct inode *dir, struct page *ipage, |
| 3159 | struct fscrypt_name *fname); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3160 | void f2fs_update_dentry(nid_t ino, umode_t mode, struct f2fs_dentry_ptr *d, |
| 3161 | const struct qstr *name, f2fs_hash_t name_hash, |
| 3162 | unsigned int bit_pos); |
| 3163 | int f2fs_add_regular_entry(struct inode *dir, const struct qstr *new_name, |
| 3164 | const struct qstr *orig_name, |
| 3165 | struct inode *inode, nid_t ino, umode_t mode); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3166 | int f2fs_add_dentry(struct inode *dir, struct fscrypt_name *fname, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3167 | struct inode *inode, nid_t ino, umode_t mode); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3168 | int f2fs_do_add_link(struct inode *dir, const struct qstr *name, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3169 | struct inode *inode, nid_t ino, umode_t mode); |
| 3170 | void f2fs_delete_entry(struct f2fs_dir_entry *dentry, struct page *page, |
| 3171 | struct inode *dir, struct inode *inode); |
| 3172 | int f2fs_do_tmpfile(struct inode *inode, struct inode *dir); |
| 3173 | bool f2fs_empty_dir(struct inode *dir); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3174 | |
Al Viro | b7f7a5e | 2013-01-25 16:15:43 -0500 | [diff] [blame] | 3175 | static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode) |
| 3176 | { |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3177 | return f2fs_do_add_link(d_inode(dentry->d_parent), &dentry->d_name, |
Jaegeuk Kim | 510022a | 2015-03-30 15:07:16 -0700 | [diff] [blame] | 3178 | inode, inode->i_ino, inode->i_mode); |
Al Viro | b7f7a5e | 2013-01-25 16:15:43 -0500 | [diff] [blame] | 3179 | } |
| 3180 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3181 | /* |
| 3182 | * super.c |
| 3183 | */ |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3184 | int f2fs_inode_dirtied(struct inode *inode, bool sync); |
| 3185 | void f2fs_inode_synced(struct inode *inode); |
Jaegeuk Kim | ea67673 | 2017-10-06 09:14:28 -0700 | [diff] [blame] | 3186 | int f2fs_enable_quota_files(struct f2fs_sb_info *sbi, bool rdonly); |
Chao Yu | af033b2 | 2018-09-20 20:05:00 +0800 | [diff] [blame] | 3187 | int f2fs_quota_sync(struct super_block *sb, int type); |
Chao Yu | 4b2414d | 2017-08-08 10:54:31 +0800 | [diff] [blame] | 3188 | void f2fs_quota_off_umount(struct super_block *sb); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3189 | int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover); |
| 3190 | int f2fs_sync_fs(struct super_block *sb, int sync); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3191 | int f2fs_sanity_check_ckpt(struct f2fs_sb_info *sbi); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3192 | |
| 3193 | /* |
| 3194 | * hash.c |
| 3195 | */ |
Daniel Rosenberg | 2c2eb7a | 2019-07-23 16:05:29 -0700 | [diff] [blame] | 3196 | f2fs_hash_t f2fs_dentry_hash(const struct inode *dir, |
| 3197 | const struct qstr *name_info, struct fscrypt_name *fname); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3198 | |
| 3199 | /* |
| 3200 | * node.c |
| 3201 | */ |
| 3202 | struct dnode_of_data; |
| 3203 | struct node_info; |
| 3204 | |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3205 | int f2fs_check_nid_range(struct f2fs_sb_info *sbi, nid_t nid); |
| 3206 | bool f2fs_available_free_memory(struct f2fs_sb_info *sbi, int type); |
Chao Yu | 50fa53e | 2018-08-02 23:03:19 +0800 | [diff] [blame] | 3207 | bool f2fs_in_warm_node_list(struct f2fs_sb_info *sbi, struct page *page); |
| 3208 | void f2fs_init_fsync_node_info(struct f2fs_sb_info *sbi); |
| 3209 | void f2fs_del_fsync_node_entry(struct f2fs_sb_info *sbi, struct page *page); |
| 3210 | void f2fs_reset_fsync_node_info(struct f2fs_sb_info *sbi); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3211 | int f2fs_need_dentry_mark(struct f2fs_sb_info *sbi, nid_t nid); |
| 3212 | bool f2fs_is_checkpointed_node(struct f2fs_sb_info *sbi, nid_t nid); |
| 3213 | bool f2fs_need_inode_block_update(struct f2fs_sb_info *sbi, nid_t ino); |
Chao Yu | 7735730 | 2018-07-17 00:02:17 +0800 | [diff] [blame] | 3214 | int f2fs_get_node_info(struct f2fs_sb_info *sbi, nid_t nid, |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3215 | struct node_info *ni); |
| 3216 | pgoff_t f2fs_get_next_page_offset(struct dnode_of_data *dn, pgoff_t pgofs); |
| 3217 | int f2fs_get_dnode_of_data(struct dnode_of_data *dn, pgoff_t index, int mode); |
| 3218 | int f2fs_truncate_inode_blocks(struct inode *inode, pgoff_t from); |
| 3219 | int f2fs_truncate_xattr_node(struct inode *inode); |
Chao Yu | 50fa53e | 2018-08-02 23:03:19 +0800 | [diff] [blame] | 3220 | int f2fs_wait_on_node_pages_writeback(struct f2fs_sb_info *sbi, |
| 3221 | unsigned int seq_id); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3222 | int f2fs_remove_inode_page(struct inode *inode); |
| 3223 | struct page *f2fs_new_inode_page(struct inode *inode); |
| 3224 | struct page *f2fs_new_node_page(struct dnode_of_data *dn, unsigned int ofs); |
| 3225 | void f2fs_ra_node_page(struct f2fs_sb_info *sbi, nid_t nid); |
| 3226 | struct page *f2fs_get_node_page(struct f2fs_sb_info *sbi, pgoff_t nid); |
| 3227 | struct page *f2fs_get_node_page_ra(struct page *parent, int start); |
Chao Yu | 48018b4 | 2018-09-13 07:40:53 +0800 | [diff] [blame] | 3228 | int f2fs_move_node_page(struct page *node_page, int gc_type); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3229 | int f2fs_fsync_node_pages(struct f2fs_sb_info *sbi, struct inode *inode, |
Chao Yu | 50fa53e | 2018-08-02 23:03:19 +0800 | [diff] [blame] | 3230 | struct writeback_control *wbc, bool atomic, |
| 3231 | unsigned int *seq_id); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3232 | int f2fs_sync_node_pages(struct f2fs_sb_info *sbi, |
| 3233 | struct writeback_control *wbc, |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 3234 | bool do_balance, enum iostat_type io_type); |
Chao Yu | e237401 | 2018-06-15 14:45:57 +0800 | [diff] [blame] | 3235 | int f2fs_build_free_nids(struct f2fs_sb_info *sbi, bool sync, bool mount); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3236 | bool f2fs_alloc_nid(struct f2fs_sb_info *sbi, nid_t *nid); |
| 3237 | void f2fs_alloc_nid_done(struct f2fs_sb_info *sbi, nid_t nid); |
| 3238 | void f2fs_alloc_nid_failed(struct f2fs_sb_info *sbi, nid_t nid); |
| 3239 | int f2fs_try_to_free_nids(struct f2fs_sb_info *sbi, int nr_shrink); |
| 3240 | void f2fs_recover_inline_xattr(struct inode *inode, struct page *page); |
| 3241 | int f2fs_recover_xattr_data(struct inode *inode, struct page *page); |
| 3242 | int f2fs_recover_inode_page(struct f2fs_sb_info *sbi, struct page *page); |
Chao Yu | 7735730 | 2018-07-17 00:02:17 +0800 | [diff] [blame] | 3243 | int f2fs_restore_node_summary(struct f2fs_sb_info *sbi, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3244 | unsigned int segno, struct f2fs_summary_block *sum); |
Jaegeuk Kim | edc55aa | 2018-09-17 17:36:06 -0700 | [diff] [blame] | 3245 | int f2fs_flush_nat_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3246 | int f2fs_build_node_manager(struct f2fs_sb_info *sbi); |
| 3247 | void f2fs_destroy_node_manager(struct f2fs_sb_info *sbi); |
| 3248 | int __init f2fs_create_node_manager_caches(void); |
| 3249 | void f2fs_destroy_node_manager_caches(void); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3250 | |
| 3251 | /* |
| 3252 | * segment.c |
| 3253 | */ |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3254 | bool f2fs_need_SSR(struct f2fs_sb_info *sbi); |
| 3255 | void f2fs_register_inmem_page(struct inode *inode, struct page *page); |
| 3256 | void f2fs_drop_inmem_pages_all(struct f2fs_sb_info *sbi, bool gc_failure); |
| 3257 | void f2fs_drop_inmem_pages(struct inode *inode); |
| 3258 | void f2fs_drop_inmem_page(struct inode *inode, struct page *page); |
| 3259 | int f2fs_commit_inmem_pages(struct inode *inode); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3260 | void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need); |
Chao Yu | 7bcd0cf | 2020-03-19 19:57:58 +0800 | [diff] [blame] | 3261 | void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi, bool from_bg); |
Chao Yu | 39d787b | 2017-09-29 13:59:38 +0800 | [diff] [blame] | 3262 | int f2fs_issue_flush(struct f2fs_sb_info *sbi, nid_t ino); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3263 | int f2fs_create_flush_cmd_control(struct f2fs_sb_info *sbi); |
Chao Yu | 1228b48 | 2017-09-29 13:59:39 +0800 | [diff] [blame] | 3264 | int f2fs_flush_device_cache(struct f2fs_sb_info *sbi); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3265 | void f2fs_destroy_flush_cmd_control(struct f2fs_sb_info *sbi, bool free); |
| 3266 | void f2fs_invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr); |
| 3267 | bool f2fs_is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr); |
| 3268 | void f2fs_drop_discard_cmd(struct f2fs_sb_info *sbi); |
| 3269 | void f2fs_stop_discard_thread(struct f2fs_sb_info *sbi); |
Jaegeuk Kim | 03f2c02 | 2019-01-14 10:42:11 -0800 | [diff] [blame] | 3270 | bool f2fs_issue_discard_timeout(struct f2fs_sb_info *sbi); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3271 | void f2fs_clear_prefree_segments(struct f2fs_sb_info *sbi, |
| 3272 | struct cp_control *cpc); |
Daniel Rosenberg | 4354994 | 2018-08-20 19:21:43 -0700 | [diff] [blame] | 3273 | void f2fs_dirty_to_prefree(struct f2fs_sb_info *sbi); |
Daniel Rosenberg | 4d3aed7 | 2019-05-29 17:49:06 -0700 | [diff] [blame] | 3274 | block_t f2fs_get_unusable_blocks(struct f2fs_sb_info *sbi); |
| 3275 | int f2fs_disable_cp_again(struct f2fs_sb_info *sbi, block_t unusable); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3276 | void f2fs_release_discard_addrs(struct f2fs_sb_info *sbi); |
| 3277 | int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra); |
Qiuyang Sun | 04f0b2e | 2019-06-05 11:33:25 +0800 | [diff] [blame] | 3278 | void allocate_segment_for_resize(struct f2fs_sb_info *sbi, int type, |
| 3279 | unsigned int start, unsigned int end); |
Jaegeuk Kim | f5a53ed | 2019-10-18 10:06:40 -0700 | [diff] [blame] | 3280 | void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi, int type); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3281 | int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3282 | bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi, |
| 3283 | struct cp_control *cpc); |
| 3284 | struct page *f2fs_get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno); |
| 3285 | void f2fs_update_meta_page(struct f2fs_sb_info *sbi, void *src, |
| 3286 | block_t blk_addr); |
| 3287 | void f2fs_do_write_meta_page(struct f2fs_sb_info *sbi, struct page *page, |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 3288 | enum iostat_type io_type); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3289 | void f2fs_do_write_node_page(unsigned int nid, struct f2fs_io_info *fio); |
| 3290 | void f2fs_outplace_write_data(struct dnode_of_data *dn, |
| 3291 | struct f2fs_io_info *fio); |
| 3292 | int f2fs_inplace_write_data(struct f2fs_io_info *fio); |
| 3293 | void f2fs_do_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3294 | block_t old_blkaddr, block_t new_blkaddr, |
| 3295 | bool recover_curseg, bool recover_newaddr); |
| 3296 | void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn, |
| 3297 | block_t old_addr, block_t new_addr, |
| 3298 | unsigned char version, bool recover_curseg, |
| 3299 | bool recover_newaddr); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3300 | void f2fs_allocate_data_block(struct f2fs_sb_info *sbi, struct page *page, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3301 | block_t old_blkaddr, block_t *new_blkaddr, |
Chao Yu | fb830fc | 2017-05-19 23:37:01 +0800 | [diff] [blame] | 3302 | struct f2fs_summary *sum, int type, |
| 3303 | struct f2fs_io_info *fio, bool add_list); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3304 | void f2fs_wait_on_page_writeback(struct page *page, |
Chao Yu | bae0ee7 | 2018-12-25 17:43:42 +0800 | [diff] [blame] | 3305 | enum page_type type, bool ordered, bool locked); |
Jaegeuk Kim | 0ded69f | 2018-08-22 21:18:00 -0700 | [diff] [blame] | 3306 | void f2fs_wait_on_block_writeback(struct inode *inode, block_t blkaddr); |
Sahitya Tummala | 1e78e8b | 2018-10-10 10:56:22 +0530 | [diff] [blame] | 3307 | void f2fs_wait_on_block_writeback_range(struct inode *inode, block_t blkaddr, |
| 3308 | block_t len); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3309 | void f2fs_write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk); |
| 3310 | void f2fs_write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk); |
| 3311 | int f2fs_lookup_journal_in_cursum(struct f2fs_journal *journal, int type, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3312 | unsigned int val, int alloc); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3313 | void f2fs_flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc); |
Shin'ichiro Kawasaki | c426d99 | 2019-12-09 19:44:44 +0900 | [diff] [blame] | 3314 | int f2fs_fix_curseg_write_pointer(struct f2fs_sb_info *sbi); |
Shin'ichiro Kawasaki | d508c94 | 2019-12-09 19:44:45 +0900 | [diff] [blame] | 3315 | int f2fs_check_write_pointer(struct f2fs_sb_info *sbi); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3316 | int f2fs_build_segment_manager(struct f2fs_sb_info *sbi); |
| 3317 | void f2fs_destroy_segment_manager(struct f2fs_sb_info *sbi); |
| 3318 | int __init f2fs_create_segment_manager_caches(void); |
| 3319 | void f2fs_destroy_segment_manager_caches(void); |
| 3320 | int f2fs_rw_hint_to_seg_type(enum rw_hint hint); |
| 3321 | enum rw_hint f2fs_io_type_to_rw_hint(struct f2fs_sb_info *sbi, |
| 3322 | enum page_type type, enum temp_type temp); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3323 | |
| 3324 | /* |
| 3325 | * checkpoint.c |
| 3326 | */ |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3327 | void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi, bool end_io); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3328 | struct page *f2fs_grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index); |
| 3329 | struct page *f2fs_get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index); |
Chao Yu | 7735730 | 2018-07-17 00:02:17 +0800 | [diff] [blame] | 3330 | struct page *f2fs_get_meta_page_nofail(struct f2fs_sb_info *sbi, pgoff_t index); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3331 | struct page *f2fs_get_tmp_page(struct f2fs_sb_info *sbi, pgoff_t index); |
Chao Yu | e1da787 | 2018-06-05 17:44:11 +0800 | [diff] [blame] | 3332 | bool f2fs_is_valid_blkaddr(struct f2fs_sb_info *sbi, |
| 3333 | block_t blkaddr, int type); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3334 | int f2fs_ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3335 | int type, bool sync); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3336 | void f2fs_ra_meta_pages_cond(struct f2fs_sb_info *sbi, pgoff_t index); |
| 3337 | long f2fs_sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type, |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 3338 | long nr_to_write, enum iostat_type io_type); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3339 | void f2fs_add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type); |
| 3340 | void f2fs_remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type); |
| 3341 | void f2fs_release_ino_entry(struct f2fs_sb_info *sbi, bool all); |
| 3342 | bool f2fs_exist_written_data(struct f2fs_sb_info *sbi, nid_t ino, int mode); |
| 3343 | void f2fs_set_dirty_device(struct f2fs_sb_info *sbi, nid_t ino, |
Chao Yu | 39d787b | 2017-09-29 13:59:38 +0800 | [diff] [blame] | 3344 | unsigned int devidx, int type); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3345 | bool f2fs_is_dirty_device(struct f2fs_sb_info *sbi, nid_t ino, |
Chao Yu | 39d787b | 2017-09-29 13:59:38 +0800 | [diff] [blame] | 3346 | unsigned int devidx, int type); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3347 | int f2fs_sync_inode_meta(struct f2fs_sb_info *sbi); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3348 | int f2fs_acquire_orphan_inode(struct f2fs_sb_info *sbi); |
| 3349 | void f2fs_release_orphan_inode(struct f2fs_sb_info *sbi); |
| 3350 | void f2fs_add_orphan_inode(struct inode *inode); |
| 3351 | void f2fs_remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino); |
| 3352 | int f2fs_recover_orphan_inodes(struct f2fs_sb_info *sbi); |
| 3353 | int f2fs_get_valid_checkpoint(struct f2fs_sb_info *sbi); |
| 3354 | void f2fs_update_dirty_page(struct inode *inode, struct page *page); |
| 3355 | void f2fs_remove_dirty_inode(struct inode *inode); |
| 3356 | int f2fs_sync_dirty_inodes(struct f2fs_sb_info *sbi, enum inode_type type); |
Sahitya Tummala | bf22c3c | 2020-02-18 09:19:07 +0530 | [diff] [blame] | 3357 | void f2fs_wait_on_all_pages(struct f2fs_sb_info *sbi, int type); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3358 | int f2fs_write_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc); |
| 3359 | void f2fs_init_ino_entry_info(struct f2fs_sb_info *sbi); |
| 3360 | int __init f2fs_create_checkpoint_caches(void); |
| 3361 | void f2fs_destroy_checkpoint_caches(void); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3362 | |
| 3363 | /* |
| 3364 | * data.c |
| 3365 | */ |
Chao Yu | f543805 | 2019-12-04 09:52:58 +0800 | [diff] [blame] | 3366 | int __init f2fs_init_bioset(void); |
| 3367 | void f2fs_destroy_bioset(void); |
Chao Yu | ca9e968 | 2020-02-18 18:21:34 +0800 | [diff] [blame] | 3368 | struct bio *f2fs_bio_alloc(struct f2fs_sb_info *sbi, int npages, bool noio); |
Chao Yu | 0b20fce | 2019-09-30 18:53:25 +0800 | [diff] [blame] | 3369 | int f2fs_init_bio_entry_cache(void); |
| 3370 | void f2fs_destroy_bio_entry_cache(void); |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3371 | void f2fs_submit_bio(struct f2fs_sb_info *sbi, |
| 3372 | struct bio *bio, enum page_type type); |
Jaegeuk Kim | b9109b0 | 2017-05-10 11:28:38 -0700 | [diff] [blame] | 3373 | void f2fs_submit_merged_write(struct f2fs_sb_info *sbi, enum page_type type); |
| 3374 | void f2fs_submit_merged_write_cond(struct f2fs_sb_info *sbi, |
Chao Yu | bab475c | 2018-09-27 23:41:16 +0800 | [diff] [blame] | 3375 | struct inode *inode, struct page *page, |
| 3376 | nid_t ino, enum page_type type); |
Chao Yu | 0b20fce | 2019-09-30 18:53:25 +0800 | [diff] [blame] | 3377 | void f2fs_submit_merged_ipu_write(struct f2fs_sb_info *sbi, |
| 3378 | struct bio **bio, struct page *page); |
Jaegeuk Kim | b9109b0 | 2017-05-10 11:28:38 -0700 | [diff] [blame] | 3379 | void f2fs_flush_merged_writes(struct f2fs_sb_info *sbi); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3380 | int f2fs_submit_page_bio(struct f2fs_io_info *fio); |
Chao Yu | 8648de2 | 2019-02-19 16:15:29 +0800 | [diff] [blame] | 3381 | int f2fs_merge_page_bio(struct f2fs_io_info *fio); |
Chao Yu | fe16efe | 2018-05-28 23:47:18 +0800 | [diff] [blame] | 3382 | void f2fs_submit_page_write(struct f2fs_io_info *fio); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3383 | struct block_device *f2fs_target_device(struct f2fs_sb_info *sbi, |
| 3384 | block_t blk_addr, struct bio *bio); |
| 3385 | int f2fs_target_device_index(struct f2fs_sb_info *sbi, block_t blkaddr); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3386 | void f2fs_set_data_blkaddr(struct dnode_of_data *dn); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3387 | void f2fs_update_data_blkaddr(struct dnode_of_data *dn, block_t blkaddr); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3388 | int f2fs_reserve_new_blocks(struct dnode_of_data *dn, blkcnt_t count); |
| 3389 | int f2fs_reserve_new_block(struct dnode_of_data *dn); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3390 | int f2fs_get_block(struct dnode_of_data *dn, pgoff_t index); |
| 3391 | int f2fs_preallocate_blocks(struct kiocb *iocb, struct iov_iter *from); |
| 3392 | int f2fs_reserve_block(struct dnode_of_data *dn, pgoff_t index); |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3393 | int f2fs_mpage_readpages(struct address_space *mapping, |
| 3394 | struct list_head *pages, struct page *page, |
| 3395 | unsigned nr_pages, bool is_readahead); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3396 | struct page *f2fs_get_read_data_page(struct inode *inode, pgoff_t index, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3397 | int op_flags, bool for_write); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3398 | struct page *f2fs_find_data_page(struct inode *inode, pgoff_t index); |
| 3399 | struct page *f2fs_get_lock_data_page(struct inode *inode, pgoff_t index, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3400 | bool for_write); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3401 | struct page *f2fs_get_new_data_page(struct inode *inode, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3402 | struct page *ipage, pgoff_t index, bool new_i_size); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3403 | int f2fs_do_write_data_page(struct f2fs_io_info *fio); |
Chao Yu | 39a8695 | 2018-09-27 18:33:18 +0800 | [diff] [blame] | 3404 | void __do_map_lock(struct f2fs_sb_info *sbi, int flag, bool lock); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3405 | int f2fs_map_blocks(struct inode *inode, struct f2fs_map_blocks *map, |
| 3406 | int create, int flag); |
| 3407 | int f2fs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, |
| 3408 | u64 start, u64 len); |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3409 | int f2fs_encrypt_one_page(struct f2fs_io_info *fio); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3410 | bool f2fs_should_update_inplace(struct inode *inode, struct f2fs_io_info *fio); |
| 3411 | bool f2fs_should_update_outplace(struct inode *inode, struct f2fs_io_info *fio); |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3412 | int f2fs_write_single_data_page(struct page *page, int *submitted, |
| 3413 | struct bio **bio, sector_t *last_block, |
| 3414 | struct writeback_control *wbc, |
| 3415 | enum iostat_type io_type, |
| 3416 | int compr_blocks); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3417 | void f2fs_invalidate_page(struct page *page, unsigned int offset, |
| 3418 | unsigned int length); |
| 3419 | int f2fs_release_page(struct page *page, gfp_t wait); |
Weichao Guo | 5b7a487 | 2016-09-20 05:03:27 +0800 | [diff] [blame] | 3420 | #ifdef CONFIG_MIGRATION |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3421 | int f2fs_migrate_page(struct address_space *mapping, struct page *newpage, |
| 3422 | struct page *page, enum migrate_mode mode); |
Weichao Guo | 5b7a487 | 2016-09-20 05:03:27 +0800 | [diff] [blame] | 3423 | #endif |
Hyunchul Lee | b91050a | 2018-03-08 19:34:38 +0900 | [diff] [blame] | 3424 | bool f2fs_overwrite_io(struct inode *inode, loff_t pos, size_t len); |
Matthew Wilcox | 5ec2d99 | 2017-12-04 20:25:25 -0500 | [diff] [blame] | 3425 | void f2fs_clear_page_cache_dirty_tag(struct page *page); |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3426 | int f2fs_init_post_read_processing(void); |
| 3427 | void f2fs_destroy_post_read_processing(void); |
| 3428 | int f2fs_init_post_read_wq(struct f2fs_sb_info *sbi); |
| 3429 | void f2fs_destroy_post_read_wq(struct f2fs_sb_info *sbi); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3430 | |
| 3431 | /* |
| 3432 | * gc.c |
| 3433 | */ |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3434 | int f2fs_start_gc_thread(struct f2fs_sb_info *sbi); |
| 3435 | void f2fs_stop_gc_thread(struct f2fs_sb_info *sbi); |
| 3436 | block_t f2fs_start_bidx_of_node(unsigned int node_ofs, struct inode *inode); |
Jaegeuk Kim | e066b83 | 2017-04-13 15:17:00 -0700 | [diff] [blame] | 3437 | int f2fs_gc(struct f2fs_sb_info *sbi, bool sync, bool background, |
| 3438 | unsigned int segno); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3439 | void f2fs_build_gc_manager(struct f2fs_sb_info *sbi); |
Qiuyang Sun | 04f0b2e | 2019-06-05 11:33:25 +0800 | [diff] [blame] | 3440 | int f2fs_resize_fs(struct f2fs_sb_info *sbi, __u64 block_count); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3441 | |
| 3442 | /* |
| 3443 | * recovery.c |
| 3444 | */ |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3445 | int f2fs_recover_fsync_data(struct f2fs_sb_info *sbi, bool check_only); |
| 3446 | bool f2fs_space_for_roll_forward(struct f2fs_sb_info *sbi); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3447 | |
| 3448 | /* |
| 3449 | * debug.c |
| 3450 | */ |
| 3451 | #ifdef CONFIG_F2FS_STAT_FS |
| 3452 | struct f2fs_stat_info { |
| 3453 | struct list_head stat_list; |
| 3454 | struct f2fs_sb_info *sbi; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3455 | int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs; |
| 3456 | int main_area_segs, main_area_sections, main_area_zones; |
Chao Yu | 5b7ee37 | 2015-09-30 17:38:48 +0800 | [diff] [blame] | 3457 | unsigned long long hit_largest, hit_cached, hit_rbtree; |
| 3458 | unsigned long long hit_total, total_ext; |
Jaegeuk Kim | c00ba55 | 2015-12-31 15:24:14 -0800 | [diff] [blame] | 3459 | int ext_tree, zombie_tree, ext_node; |
Jaegeuk Kim | 2c8a4a2 | 2017-11-13 17:46:38 -0800 | [diff] [blame] | 3460 | int ndirty_node, ndirty_dent, ndirty_meta, ndirty_imeta; |
| 3461 | int ndirty_data, ndirty_qdata; |
Jaegeuk Kim | 35782b2 | 2016-10-20 19:09:57 -0700 | [diff] [blame] | 3462 | int inmem_pages; |
Jaegeuk Kim | 2c8a4a2 | 2017-11-13 17:46:38 -0800 | [diff] [blame] | 3463 | unsigned int ndirty_dirs, ndirty_files, nquota_files, ndirty_all; |
Jaegeuk Kim | 5b0ef73 | 2017-05-01 18:13:03 -0700 | [diff] [blame] | 3464 | int nats, dirty_nats, sits, dirty_sits; |
| 3465 | int free_nids, avail_nids, alloc_nids; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3466 | int total_count, utilization; |
Chao Yu | 8b8dd65 | 2017-03-25 17:19:58 +0800 | [diff] [blame] | 3467 | int bg_gc, nr_wb_cp_data, nr_wb_data; |
Jaegeuk Kim | 5f9abab | 2018-10-16 10:20:53 -0700 | [diff] [blame] | 3468 | int nr_rd_data, nr_rd_node, nr_rd_meta; |
Chao Yu | 02b16d0 | 2018-11-12 00:46:46 +0800 | [diff] [blame] | 3469 | int nr_dio_read, nr_dio_write; |
Chao Yu | 274bd9b | 2018-09-29 18:31:28 +0800 | [diff] [blame] | 3470 | unsigned int io_skip_bggc, other_skip_bggc; |
Chao Yu | 14d8d5f | 2017-09-14 10:18:01 +0800 | [diff] [blame] | 3471 | int nr_flushing, nr_flushed, flush_list_empty; |
| 3472 | int nr_discarding, nr_discarded; |
Chao Yu | 5f32366 | 2017-03-25 17:19:59 +0800 | [diff] [blame] | 3473 | int nr_discard_cmd; |
Chao Yu | d84d1cb | 2017-04-18 19:27:39 +0800 | [diff] [blame] | 3474 | unsigned int undiscard_blks; |
Jaegeuk Kim | a00861d | 2017-02-01 15:40:11 -0800 | [diff] [blame] | 3475 | int inline_xattr, inline_inode, inline_dir, append, update, orphans; |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3476 | int compr_inode, compr_blocks; |
Chao Yu | 648d50b | 2017-03-22 17:23:45 +0800 | [diff] [blame] | 3477 | int aw_cnt, max_aw_cnt, vw_cnt, max_vw_cnt; |
Yunlei He | f83a258 | 2016-08-18 21:01:18 +0800 | [diff] [blame] | 3478 | unsigned int valid_count, valid_node_count, valid_inode_count, discard_blks; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3479 | unsigned int bimodal, avg_vblocks; |
| 3480 | int util_free, util_valid, util_invalid; |
| 3481 | int rsvd_segs, overp_segs; |
| 3482 | int dirty_count, node_pages, meta_pages; |
Jaegeuk Kim | 42190d2 | 2016-01-09 13:45:17 -0800 | [diff] [blame] | 3483 | int prefree_count, call_count, cp_count, bg_cp_count; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3484 | int tot_segs, node_segs, data_segs, free_segs, free_secs; |
Changman Lee | e123598 | 2014-12-23 08:37:39 +0900 | [diff] [blame] | 3485 | int bg_node_segs, bg_data_segs; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3486 | int tot_blks, data_blks, node_blks; |
Changman Lee | e123598 | 2014-12-23 08:37:39 +0900 | [diff] [blame] | 3487 | int bg_data_blks, bg_node_blks; |
Chao Yu | 2ef79ec | 2018-05-07 20:28:54 +0800 | [diff] [blame] | 3488 | unsigned long long skipped_atomic_files[2]; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3489 | int curseg[NR_CURSEG_TYPE]; |
| 3490 | int cursec[NR_CURSEG_TYPE]; |
| 3491 | int curzone[NR_CURSEG_TYPE]; |
| 3492 | |
Chao Yu | b63e7be | 2018-09-29 18:31:27 +0800 | [diff] [blame] | 3493 | unsigned int meta_count[META_MAX]; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3494 | unsigned int segment_count[2]; |
| 3495 | unsigned int block_count[2]; |
Changman Lee | b9a2c25 | 2014-12-24 02:16:54 +0900 | [diff] [blame] | 3496 | unsigned int inplace_count; |
Chao Yu | 9edcdab | 2015-09-11 14:43:52 +0800 | [diff] [blame] | 3497 | unsigned long long base_mem, cache_mem, page_mem; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3498 | }; |
| 3499 | |
Gu Zheng | 963d4f7 | 2013-07-12 14:47:11 +0800 | [diff] [blame] | 3500 | static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi) |
| 3501 | { |
Chris Fries | 6c311ec | 2014-01-17 14:44:39 -0600 | [diff] [blame] | 3502 | return (struct f2fs_stat_info *)sbi->stat_info; |
Gu Zheng | 963d4f7 | 2013-07-12 14:47:11 +0800 | [diff] [blame] | 3503 | } |
| 3504 | |
Changman Lee | 942e0be | 2014-02-13 15:12:29 +0900 | [diff] [blame] | 3505 | #define stat_inc_cp_count(si) ((si)->cp_count++) |
Jaegeuk Kim | 42190d2 | 2016-01-09 13:45:17 -0800 | [diff] [blame] | 3506 | #define stat_inc_bg_cp_count(si) ((si)->bg_cp_count++) |
Jaegeuk Kim | dcdfff6 | 2013-10-22 20:56:10 +0900 | [diff] [blame] | 3507 | #define stat_inc_call_count(si) ((si)->call_count++) |
Hridya Valsaraju | fc7100e | 2020-01-22 10:51:16 -0800 | [diff] [blame] | 3508 | #define stat_inc_bggc_count(si) ((si)->bg_gc++) |
Chao Yu | 274bd9b | 2018-09-29 18:31:28 +0800 | [diff] [blame] | 3509 | #define stat_io_skip_bggc_count(sbi) ((sbi)->io_skip_bggc++) |
| 3510 | #define stat_other_skip_bggc_count(sbi) ((sbi)->other_skip_bggc++) |
Chao Yu | 33fbd51 | 2015-12-17 17:14:44 +0800 | [diff] [blame] | 3511 | #define stat_inc_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]++) |
| 3512 | #define stat_dec_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]--) |
Chao Yu | 5b7ee37 | 2015-09-30 17:38:48 +0800 | [diff] [blame] | 3513 | #define stat_inc_total_hit(sbi) (atomic64_inc(&(sbi)->total_hit_ext)) |
| 3514 | #define stat_inc_rbtree_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_rbtree)) |
| 3515 | #define stat_inc_largest_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_largest)) |
| 3516 | #define stat_inc_cached_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_cached)) |
Chao Yu | d5e8f6c | 2015-07-15 17:28:53 +0800 | [diff] [blame] | 3517 | #define stat_inc_inline_xattr(inode) \ |
| 3518 | do { \ |
| 3519 | if (f2fs_has_inline_xattr(inode)) \ |
| 3520 | (atomic_inc(&F2FS_I_SB(inode)->inline_xattr)); \ |
| 3521 | } while (0) |
| 3522 | #define stat_dec_inline_xattr(inode) \ |
| 3523 | do { \ |
| 3524 | if (f2fs_has_inline_xattr(inode)) \ |
| 3525 | (atomic_dec(&F2FS_I_SB(inode)->inline_xattr)); \ |
| 3526 | } while (0) |
Jaegeuk Kim | 0dbdc2a | 2013-11-26 11:08:57 +0900 | [diff] [blame] | 3527 | #define stat_inc_inline_inode(inode) \ |
| 3528 | do { \ |
| 3529 | if (f2fs_has_inline_data(inode)) \ |
Chao Yu | 03e14d5 | 2014-12-08 19:08:20 +0800 | [diff] [blame] | 3530 | (atomic_inc(&F2FS_I_SB(inode)->inline_inode)); \ |
Jaegeuk Kim | 0dbdc2a | 2013-11-26 11:08:57 +0900 | [diff] [blame] | 3531 | } while (0) |
| 3532 | #define stat_dec_inline_inode(inode) \ |
| 3533 | do { \ |
| 3534 | if (f2fs_has_inline_data(inode)) \ |
Chao Yu | 03e14d5 | 2014-12-08 19:08:20 +0800 | [diff] [blame] | 3535 | (atomic_dec(&F2FS_I_SB(inode)->inline_inode)); \ |
Jaegeuk Kim | 0dbdc2a | 2013-11-26 11:08:57 +0900 | [diff] [blame] | 3536 | } while (0) |
Jaegeuk Kim | 3289c06 | 2014-10-13 20:00:16 -0700 | [diff] [blame] | 3537 | #define stat_inc_inline_dir(inode) \ |
| 3538 | do { \ |
| 3539 | if (f2fs_has_inline_dentry(inode)) \ |
Chao Yu | 03e14d5 | 2014-12-08 19:08:20 +0800 | [diff] [blame] | 3540 | (atomic_inc(&F2FS_I_SB(inode)->inline_dir)); \ |
Jaegeuk Kim | 3289c06 | 2014-10-13 20:00:16 -0700 | [diff] [blame] | 3541 | } while (0) |
| 3542 | #define stat_dec_inline_dir(inode) \ |
| 3543 | do { \ |
| 3544 | if (f2fs_has_inline_dentry(inode)) \ |
Chao Yu | 03e14d5 | 2014-12-08 19:08:20 +0800 | [diff] [blame] | 3545 | (atomic_dec(&F2FS_I_SB(inode)->inline_dir)); \ |
Jaegeuk Kim | 3289c06 | 2014-10-13 20:00:16 -0700 | [diff] [blame] | 3546 | } while (0) |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3547 | #define stat_inc_compr_inode(inode) \ |
| 3548 | do { \ |
| 3549 | if (f2fs_compressed_file(inode)) \ |
| 3550 | (atomic_inc(&F2FS_I_SB(inode)->compr_inode)); \ |
| 3551 | } while (0) |
| 3552 | #define stat_dec_compr_inode(inode) \ |
| 3553 | do { \ |
| 3554 | if (f2fs_compressed_file(inode)) \ |
| 3555 | (atomic_dec(&F2FS_I_SB(inode)->compr_inode)); \ |
| 3556 | } while (0) |
| 3557 | #define stat_add_compr_blocks(inode, blocks) \ |
| 3558 | (atomic_add(blocks, &F2FS_I_SB(inode)->compr_blocks)) |
| 3559 | #define stat_sub_compr_blocks(inode, blocks) \ |
| 3560 | (atomic_sub(blocks, &F2FS_I_SB(inode)->compr_blocks)) |
Chao Yu | b63e7be | 2018-09-29 18:31:27 +0800 | [diff] [blame] | 3561 | #define stat_inc_meta_count(sbi, blkaddr) \ |
| 3562 | do { \ |
| 3563 | if (blkaddr < SIT_I(sbi)->sit_base_addr) \ |
| 3564 | atomic_inc(&(sbi)->meta_count[META_CP]); \ |
| 3565 | else if (blkaddr < NM_I(sbi)->nat_blkaddr) \ |
| 3566 | atomic_inc(&(sbi)->meta_count[META_SIT]); \ |
| 3567 | else if (blkaddr < SM_I(sbi)->ssa_blkaddr) \ |
| 3568 | atomic_inc(&(sbi)->meta_count[META_NAT]); \ |
| 3569 | else if (blkaddr < SM_I(sbi)->main_blkaddr) \ |
| 3570 | atomic_inc(&(sbi)->meta_count[META_SSA]); \ |
| 3571 | } while (0) |
Jaegeuk Kim | dcdfff6 | 2013-10-22 20:56:10 +0900 | [diff] [blame] | 3572 | #define stat_inc_seg_type(sbi, curseg) \ |
| 3573 | ((sbi)->segment_count[(curseg)->alloc_type]++) |
| 3574 | #define stat_inc_block_count(sbi, curseg) \ |
| 3575 | ((sbi)->block_count[(curseg)->alloc_type]++) |
Changman Lee | b9a2c25 | 2014-12-24 02:16:54 +0900 | [diff] [blame] | 3576 | #define stat_inc_inplace_blocks(sbi) \ |
| 3577 | (atomic_inc(&(sbi)->inplace_count)) |
Jaegeuk Kim | 26a28a0 | 2016-12-28 13:55:09 -0800 | [diff] [blame] | 3578 | #define stat_update_max_atomic_write(inode) \ |
| 3579 | do { \ |
Sahitya Tummala | 0e6d016 | 2019-12-05 08:52:39 +0530 | [diff] [blame] | 3580 | int cur = F2FS_I_SB(inode)->atomic_files; \ |
Jaegeuk Kim | 26a28a0 | 2016-12-28 13:55:09 -0800 | [diff] [blame] | 3581 | int max = atomic_read(&F2FS_I_SB(inode)->max_aw_cnt); \ |
| 3582 | if (cur > max) \ |
| 3583 | atomic_set(&F2FS_I_SB(inode)->max_aw_cnt, cur); \ |
| 3584 | } while (0) |
Chao Yu | 648d50b | 2017-03-22 17:23:45 +0800 | [diff] [blame] | 3585 | #define stat_inc_volatile_write(inode) \ |
| 3586 | (atomic_inc(&F2FS_I_SB(inode)->vw_cnt)) |
| 3587 | #define stat_dec_volatile_write(inode) \ |
| 3588 | (atomic_dec(&F2FS_I_SB(inode)->vw_cnt)) |
| 3589 | #define stat_update_max_volatile_write(inode) \ |
| 3590 | do { \ |
| 3591 | int cur = atomic_read(&F2FS_I_SB(inode)->vw_cnt); \ |
| 3592 | int max = atomic_read(&F2FS_I_SB(inode)->max_vw_cnt); \ |
| 3593 | if (cur > max) \ |
| 3594 | atomic_set(&F2FS_I_SB(inode)->max_vw_cnt, cur); \ |
| 3595 | } while (0) |
Changman Lee | e123598 | 2014-12-23 08:37:39 +0900 | [diff] [blame] | 3596 | #define stat_inc_seg_count(sbi, type, gc_type) \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3597 | do { \ |
Gu Zheng | 963d4f7 | 2013-07-12 14:47:11 +0800 | [diff] [blame] | 3598 | struct f2fs_stat_info *si = F2FS_STAT(sbi); \ |
Tomohiro Kusumi | 68afcf2 | 2017-04-09 02:11:36 +0300 | [diff] [blame] | 3599 | si->tot_segs++; \ |
| 3600 | if ((type) == SUM_TYPE_DATA) { \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3601 | si->data_segs++; \ |
Changman Lee | e123598 | 2014-12-23 08:37:39 +0900 | [diff] [blame] | 3602 | si->bg_data_segs += (gc_type == BG_GC) ? 1 : 0; \ |
| 3603 | } else { \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3604 | si->node_segs++; \ |
Changman Lee | e123598 | 2014-12-23 08:37:39 +0900 | [diff] [blame] | 3605 | si->bg_node_segs += (gc_type == BG_GC) ? 1 : 0; \ |
| 3606 | } \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3607 | } while (0) |
| 3608 | |
| 3609 | #define stat_inc_tot_blk_count(si, blks) \ |
Tomohiro Kusumi | 68afcf2 | 2017-04-09 02:11:36 +0300 | [diff] [blame] | 3610 | ((si)->tot_blks += (blks)) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3611 | |
Changman Lee | e123598 | 2014-12-23 08:37:39 +0900 | [diff] [blame] | 3612 | #define stat_inc_data_blk_count(sbi, blks, gc_type) \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3613 | do { \ |
Gu Zheng | 963d4f7 | 2013-07-12 14:47:11 +0800 | [diff] [blame] | 3614 | struct f2fs_stat_info *si = F2FS_STAT(sbi); \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3615 | stat_inc_tot_blk_count(si, blks); \ |
| 3616 | si->data_blks += (blks); \ |
Tomohiro Kusumi | 68afcf2 | 2017-04-09 02:11:36 +0300 | [diff] [blame] | 3617 | si->bg_data_blks += ((gc_type) == BG_GC) ? (blks) : 0; \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3618 | } while (0) |
| 3619 | |
Changman Lee | e123598 | 2014-12-23 08:37:39 +0900 | [diff] [blame] | 3620 | #define stat_inc_node_blk_count(sbi, blks, gc_type) \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3621 | do { \ |
Gu Zheng | 963d4f7 | 2013-07-12 14:47:11 +0800 | [diff] [blame] | 3622 | struct f2fs_stat_info *si = F2FS_STAT(sbi); \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3623 | stat_inc_tot_blk_count(si, blks); \ |
| 3624 | si->node_blks += (blks); \ |
Tomohiro Kusumi | 68afcf2 | 2017-04-09 02:11:36 +0300 | [diff] [blame] | 3625 | si->bg_node_blks += ((gc_type) == BG_GC) ? (blks) : 0; \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3626 | } while (0) |
| 3627 | |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3628 | int f2fs_build_stats(struct f2fs_sb_info *sbi); |
| 3629 | void f2fs_destroy_stats(struct f2fs_sb_info *sbi); |
Greg Kroah-Hartman | 21acc07 | 2019-01-04 14:26:18 +0100 | [diff] [blame] | 3630 | void __init f2fs_create_root_stats(void); |
Namjae Jeon | 4589d25 | 2013-01-15 19:58:47 +0900 | [diff] [blame] | 3631 | void f2fs_destroy_root_stats(void); |
Hridya Valsaraju | fc7100e | 2020-01-22 10:51:16 -0800 | [diff] [blame] | 3632 | void f2fs_update_sit_info(struct f2fs_sb_info *sbi); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3633 | #else |
Arnd Bergmann | d66450e | 2017-04-19 19:38:33 +0200 | [diff] [blame] | 3634 | #define stat_inc_cp_count(si) do { } while (0) |
| 3635 | #define stat_inc_bg_cp_count(si) do { } while (0) |
| 3636 | #define stat_inc_call_count(si) do { } while (0) |
| 3637 | #define stat_inc_bggc_count(si) do { } while (0) |
Chao Yu | 274bd9b | 2018-09-29 18:31:28 +0800 | [diff] [blame] | 3638 | #define stat_io_skip_bggc_count(sbi) do { } while (0) |
| 3639 | #define stat_other_skip_bggc_count(sbi) do { } while (0) |
Arnd Bergmann | d66450e | 2017-04-19 19:38:33 +0200 | [diff] [blame] | 3640 | #define stat_inc_dirty_inode(sbi, type) do { } while (0) |
| 3641 | #define stat_dec_dirty_inode(sbi, type) do { } while (0) |
Hridya Valsaraju | fc7100e | 2020-01-22 10:51:16 -0800 | [diff] [blame] | 3642 | #define stat_inc_total_hit(sbi) do { } while (0) |
| 3643 | #define stat_inc_rbtree_node_hit(sbi) do { } while (0) |
Arnd Bergmann | d66450e | 2017-04-19 19:38:33 +0200 | [diff] [blame] | 3644 | #define stat_inc_largest_node_hit(sbi) do { } while (0) |
| 3645 | #define stat_inc_cached_node_hit(sbi) do { } while (0) |
| 3646 | #define stat_inc_inline_xattr(inode) do { } while (0) |
| 3647 | #define stat_dec_inline_xattr(inode) do { } while (0) |
| 3648 | #define stat_inc_inline_inode(inode) do { } while (0) |
| 3649 | #define stat_dec_inline_inode(inode) do { } while (0) |
| 3650 | #define stat_inc_inline_dir(inode) do { } while (0) |
| 3651 | #define stat_dec_inline_dir(inode) do { } while (0) |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3652 | #define stat_inc_compr_inode(inode) do { } while (0) |
| 3653 | #define stat_dec_compr_inode(inode) do { } while (0) |
| 3654 | #define stat_add_compr_blocks(inode, blocks) do { } while (0) |
| 3655 | #define stat_sub_compr_blocks(inode, blocks) do { } while (0) |
Arnd Bergmann | d66450e | 2017-04-19 19:38:33 +0200 | [diff] [blame] | 3656 | #define stat_inc_atomic_write(inode) do { } while (0) |
| 3657 | #define stat_dec_atomic_write(inode) do { } while (0) |
| 3658 | #define stat_update_max_atomic_write(inode) do { } while (0) |
| 3659 | #define stat_inc_volatile_write(inode) do { } while (0) |
| 3660 | #define stat_dec_volatile_write(inode) do { } while (0) |
| 3661 | #define stat_update_max_volatile_write(inode) do { } while (0) |
Chao Yu | b63e7be | 2018-09-29 18:31:27 +0800 | [diff] [blame] | 3662 | #define stat_inc_meta_count(sbi, blkaddr) do { } while (0) |
Arnd Bergmann | d66450e | 2017-04-19 19:38:33 +0200 | [diff] [blame] | 3663 | #define stat_inc_seg_type(sbi, curseg) do { } while (0) |
| 3664 | #define stat_inc_block_count(sbi, curseg) do { } while (0) |
| 3665 | #define stat_inc_inplace_blocks(sbi) do { } while (0) |
| 3666 | #define stat_inc_seg_count(sbi, type, gc_type) do { } while (0) |
| 3667 | #define stat_inc_tot_blk_count(si, blks) do { } while (0) |
| 3668 | #define stat_inc_data_blk_count(sbi, blks, gc_type) do { } while (0) |
| 3669 | #define stat_inc_node_blk_count(sbi, blks, gc_type) do { } while (0) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3670 | |
| 3671 | static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; } |
| 3672 | static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { } |
Greg Kroah-Hartman | 21acc07 | 2019-01-04 14:26:18 +0100 | [diff] [blame] | 3673 | static inline void __init f2fs_create_root_stats(void) { } |
Namjae Jeon | 4589d25 | 2013-01-15 19:58:47 +0900 | [diff] [blame] | 3674 | static inline void f2fs_destroy_root_stats(void) { } |
Hridya Valsaraju | fc7100e | 2020-01-22 10:51:16 -0800 | [diff] [blame] | 3675 | static inline void update_sit_info(struct f2fs_sb_info *sbi) {} |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3676 | #endif |
| 3677 | |
| 3678 | extern const struct file_operations f2fs_dir_operations; |
Daniel Rosenberg | 2c2eb7a | 2019-07-23 16:05:29 -0700 | [diff] [blame] | 3679 | #ifdef CONFIG_UNICODE |
| 3680 | extern const struct dentry_operations f2fs_dentry_ops; |
| 3681 | #endif |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3682 | extern const struct file_operations f2fs_file_operations; |
| 3683 | extern const struct inode_operations f2fs_file_inode_operations; |
| 3684 | extern const struct address_space_operations f2fs_dblock_aops; |
| 3685 | extern const struct address_space_operations f2fs_node_aops; |
| 3686 | extern const struct address_space_operations f2fs_meta_aops; |
| 3687 | extern const struct inode_operations f2fs_dir_inode_operations; |
| 3688 | extern const struct inode_operations f2fs_symlink_inode_operations; |
Jaegeuk Kim | cbaf042 | 2015-04-29 15:10:53 -0700 | [diff] [blame] | 3689 | extern const struct inode_operations f2fs_encrypted_symlink_inode_operations; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 3690 | extern const struct inode_operations f2fs_special_inode_operations; |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3691 | extern struct kmem_cache *f2fs_inode_entry_slab; |
Huajun Li | 1001b34 | 2013-11-10 23:13:16 +0800 | [diff] [blame] | 3692 | |
Huajun Li | e18c65b | 2013-11-10 23:13:19 +0800 | [diff] [blame] | 3693 | /* |
| 3694 | * inline.c |
| 3695 | */ |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3696 | bool f2fs_may_inline_data(struct inode *inode); |
| 3697 | bool f2fs_may_inline_dentry(struct inode *inode); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3698 | void f2fs_do_read_inline_data(struct page *page, struct page *ipage); |
| 3699 | void f2fs_truncate_inline_inode(struct inode *inode, |
| 3700 | struct page *ipage, u64 from); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3701 | int f2fs_read_inline_data(struct inode *inode, struct page *page); |
| 3702 | int f2fs_convert_inline_page(struct dnode_of_data *dn, struct page *page); |
| 3703 | int f2fs_convert_inline_inode(struct inode *inode); |
Jaegeuk Kim | b06af2a | 2019-12-09 19:03:05 -0800 | [diff] [blame] | 3704 | int f2fs_try_convert_inline_dir(struct inode *dir, struct dentry *dentry); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3705 | int f2fs_write_inline_data(struct inode *inode, struct page *page); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3706 | bool f2fs_recover_inline_data(struct inode *inode, struct page *npage); |
| 3707 | struct f2fs_dir_entry *f2fs_find_in_inline_dir(struct inode *dir, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3708 | struct fscrypt_name *fname, struct page **res_page); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3709 | int f2fs_make_empty_inline_dir(struct inode *inode, struct inode *parent, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3710 | struct page *ipage); |
| 3711 | int f2fs_add_inline_entry(struct inode *dir, const struct qstr *new_name, |
| 3712 | const struct qstr *orig_name, |
| 3713 | struct inode *inode, nid_t ino, umode_t mode); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3714 | void f2fs_delete_inline_entry(struct f2fs_dir_entry *dentry, |
| 3715 | struct page *page, struct inode *dir, |
| 3716 | struct inode *inode); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3717 | bool f2fs_empty_inline_dir(struct inode *dir); |
| 3718 | int f2fs_read_inline_dir(struct file *file, struct dir_context *ctx, |
| 3719 | struct fscrypt_str *fstr); |
| 3720 | int f2fs_inline_data_fiemap(struct inode *inode, |
| 3721 | struct fiemap_extent_info *fieinfo, |
| 3722 | __u64 start, __u64 len); |
Jaegeuk Kim | cde4de1 | 2015-04-20 13:57:51 -0700 | [diff] [blame] | 3723 | |
| 3724 | /* |
Jaegeuk Kim | 2658e50 | 2015-06-19 12:01:21 -0700 | [diff] [blame] | 3725 | * shrinker.c |
| 3726 | */ |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3727 | unsigned long f2fs_shrink_count(struct shrinker *shrink, |
| 3728 | struct shrink_control *sc); |
| 3729 | unsigned long f2fs_shrink_scan(struct shrinker *shrink, |
| 3730 | struct shrink_control *sc); |
| 3731 | void f2fs_join_shrinker(struct f2fs_sb_info *sbi); |
| 3732 | void f2fs_leave_shrinker(struct f2fs_sb_info *sbi); |
Jaegeuk Kim | 2658e50 | 2015-06-19 12:01:21 -0700 | [diff] [blame] | 3733 | |
| 3734 | /* |
Chao Yu | a28ef1f | 2015-07-08 17:59:36 +0800 | [diff] [blame] | 3735 | * extent_cache.c |
| 3736 | */ |
Chao Yu | 4dada3f | 2018-10-04 11:18:30 +0800 | [diff] [blame] | 3737 | struct rb_entry *f2fs_lookup_rb_tree(struct rb_root_cached *root, |
Chao Yu | 004b686 | 2017-04-14 23:24:55 +0800 | [diff] [blame] | 3738 | struct rb_entry *cached_re, unsigned int ofs); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3739 | struct rb_node **f2fs_lookup_rb_tree_for_insert(struct f2fs_sb_info *sbi, |
Chao Yu | 4dada3f | 2018-10-04 11:18:30 +0800 | [diff] [blame] | 3740 | struct rb_root_cached *root, |
| 3741 | struct rb_node **parent, |
| 3742 | unsigned int ofs, bool *leftmost); |
| 3743 | struct rb_entry *f2fs_lookup_rb_tree_ret(struct rb_root_cached *root, |
Chao Yu | 004b686 | 2017-04-14 23:24:55 +0800 | [diff] [blame] | 3744 | struct rb_entry *cached_re, unsigned int ofs, |
| 3745 | struct rb_entry **prev_entry, struct rb_entry **next_entry, |
| 3746 | struct rb_node ***insert_p, struct rb_node **insert_parent, |
Chao Yu | 4dada3f | 2018-10-04 11:18:30 +0800 | [diff] [blame] | 3747 | bool force, bool *leftmost); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3748 | bool f2fs_check_rb_tree_consistence(struct f2fs_sb_info *sbi, |
Chao Yu | 4dada3f | 2018-10-04 11:18:30 +0800 | [diff] [blame] | 3749 | struct rb_root_cached *root); |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3750 | unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *sbi, int nr_shrink); |
| 3751 | bool f2fs_init_extent_tree(struct inode *inode, struct f2fs_extent *i_ext); |
| 3752 | void f2fs_drop_extent_tree(struct inode *inode); |
| 3753 | unsigned int f2fs_destroy_extent_node(struct inode *inode); |
| 3754 | void f2fs_destroy_extent_tree(struct inode *inode); |
| 3755 | bool f2fs_lookup_extent_cache(struct inode *inode, pgoff_t pgofs, |
| 3756 | struct extent_info *ei); |
| 3757 | void f2fs_update_extent_cache(struct dnode_of_data *dn); |
Chao Yu | 19b2c30 | 2015-08-26 20:34:48 +0800 | [diff] [blame] | 3758 | void f2fs_update_extent_cache_range(struct dnode_of_data *dn, |
DongOh Shin | cac5a3d | 2017-01-30 10:55:18 -0800 | [diff] [blame] | 3759 | pgoff_t fofs, block_t blkaddr, unsigned int len); |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 3760 | void f2fs_init_extent_cache_info(struct f2fs_sb_info *sbi); |
| 3761 | int __init f2fs_create_extent_cache(void); |
| 3762 | void f2fs_destroy_extent_cache(void); |
Chao Yu | a28ef1f | 2015-07-08 17:59:36 +0800 | [diff] [blame] | 3763 | |
| 3764 | /* |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 3765 | * sysfs.c |
| 3766 | */ |
Jaegeuk Kim | dc6b205 | 2017-07-26 11:24:13 -0700 | [diff] [blame] | 3767 | int __init f2fs_init_sysfs(void); |
| 3768 | void f2fs_exit_sysfs(void); |
| 3769 | int f2fs_register_sysfs(struct f2fs_sb_info *sbi); |
| 3770 | void f2fs_unregister_sysfs(struct f2fs_sb_info *sbi); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 3771 | |
Eric Biggers | 95ae251 | 2019-07-22 09:26:24 -0700 | [diff] [blame] | 3772 | /* verity.c */ |
| 3773 | extern const struct fsverity_operations f2fs_verityops; |
| 3774 | |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 3775 | /* |
Jaegeuk Kim | cde4de1 | 2015-04-20 13:57:51 -0700 | [diff] [blame] | 3776 | * crypto support |
| 3777 | */ |
Jaegeuk Kim | 1958593 | 2017-09-05 16:54:24 -0700 | [diff] [blame] | 3778 | static inline bool f2fs_encrypted_file(struct inode *inode) |
| 3779 | { |
Chandan Rajendra | 62230e0d | 2018-12-12 15:20:11 +0530 | [diff] [blame] | 3780 | return IS_ENCRYPTED(inode) && S_ISREG(inode->i_mode); |
Jaegeuk Kim | 1958593 | 2017-09-05 16:54:24 -0700 | [diff] [blame] | 3781 | } |
| 3782 | |
Jaegeuk Kim | cde4de1 | 2015-04-20 13:57:51 -0700 | [diff] [blame] | 3783 | static inline void f2fs_set_encrypted_inode(struct inode *inode) |
| 3784 | { |
Chandan Rajendra | 643fa96 | 2018-12-12 15:20:12 +0530 | [diff] [blame] | 3785 | #ifdef CONFIG_FS_ENCRYPTION |
Jaegeuk Kim | cde4de1 | 2015-04-20 13:57:51 -0700 | [diff] [blame] | 3786 | file_set_encrypt(inode); |
Chao Yu | 9149a5e | 2018-10-07 19:06:15 +0800 | [diff] [blame] | 3787 | f2fs_set_inode_flags(inode); |
Jaegeuk Kim | cde4de1 | 2015-04-20 13:57:51 -0700 | [diff] [blame] | 3788 | #endif |
| 3789 | } |
| 3790 | |
Eric Biggers | 6dbb179 | 2018-04-18 11:09:48 -0700 | [diff] [blame] | 3791 | /* |
| 3792 | * Returns true if the reads of the inode's data need to undergo some |
| 3793 | * postprocessing step, like decryption or authenticity verification. |
| 3794 | */ |
| 3795 | static inline bool f2fs_post_read_required(struct inode *inode) |
Jaegeuk Kim | cde4de1 | 2015-04-20 13:57:51 -0700 | [diff] [blame] | 3796 | { |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3797 | return f2fs_encrypted_file(inode) || fsverity_active(inode) || |
| 3798 | f2fs_compressed_file(inode); |
| 3799 | } |
| 3800 | |
| 3801 | /* |
| 3802 | * compress.c |
| 3803 | */ |
| 3804 | #ifdef CONFIG_F2FS_FS_COMPRESSION |
| 3805 | bool f2fs_is_compressed_page(struct page *page); |
| 3806 | struct page *f2fs_compress_control_page(struct page *page); |
| 3807 | int f2fs_prepare_compress_overwrite(struct inode *inode, |
| 3808 | struct page **pagep, pgoff_t index, void **fsdata); |
| 3809 | bool f2fs_compress_write_end(struct inode *inode, void *fsdata, |
| 3810 | pgoff_t index, unsigned copied); |
| 3811 | void f2fs_compress_write_end_io(struct bio *bio, struct page *page); |
| 3812 | bool f2fs_is_compress_backend_ready(struct inode *inode); |
| 3813 | void f2fs_decompress_pages(struct bio *bio, struct page *page, bool verity); |
| 3814 | bool f2fs_cluster_is_empty(struct compress_ctx *cc); |
| 3815 | bool f2fs_cluster_can_merge_page(struct compress_ctx *cc, pgoff_t index); |
| 3816 | void f2fs_compress_ctx_add_page(struct compress_ctx *cc, struct page *page); |
| 3817 | int f2fs_write_multi_pages(struct compress_ctx *cc, |
| 3818 | int *submitted, |
| 3819 | struct writeback_control *wbc, |
| 3820 | enum iostat_type io_type); |
| 3821 | int f2fs_is_compressed_cluster(struct inode *inode, pgoff_t index); |
| 3822 | int f2fs_read_multi_pages(struct compress_ctx *cc, struct bio **bio_ret, |
| 3823 | unsigned nr_pages, sector_t *last_block_in_bio, |
Chao Yu | 0683728 | 2020-02-18 18:21:35 +0800 | [diff] [blame] | 3824 | bool is_readahead, bool for_write); |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3825 | struct decompress_io_ctx *f2fs_alloc_dic(struct compress_ctx *cc); |
| 3826 | void f2fs_free_dic(struct decompress_io_ctx *dic); |
| 3827 | void f2fs_decompress_end_io(struct page **rpages, |
| 3828 | unsigned int cluster_size, bool err, bool verity); |
| 3829 | int f2fs_init_compress_ctx(struct compress_ctx *cc); |
| 3830 | void f2fs_destroy_compress_ctx(struct compress_ctx *cc); |
| 3831 | void f2fs_init_compress_info(struct f2fs_sb_info *sbi); |
| 3832 | #else |
| 3833 | static inline bool f2fs_is_compressed_page(struct page *page) { return false; } |
| 3834 | static inline bool f2fs_is_compress_backend_ready(struct inode *inode) |
| 3835 | { |
| 3836 | if (!f2fs_compressed_file(inode)) |
| 3837 | return true; |
| 3838 | /* not support compression */ |
| 3839 | return false; |
| 3840 | } |
| 3841 | static inline struct page *f2fs_compress_control_page(struct page *page) |
| 3842 | { |
| 3843 | WARN_ON_ONCE(1); |
| 3844 | return ERR_PTR(-EINVAL); |
| 3845 | } |
| 3846 | #endif |
| 3847 | |
| 3848 | static inline void set_compress_context(struct inode *inode) |
| 3849 | { |
| 3850 | struct f2fs_sb_info *sbi = F2FS_I_SB(inode); |
| 3851 | |
| 3852 | F2FS_I(inode)->i_compress_algorithm = |
| 3853 | F2FS_OPTION(sbi).compress_algorithm; |
| 3854 | F2FS_I(inode)->i_log_cluster_size = |
| 3855 | F2FS_OPTION(sbi).compress_log_size; |
| 3856 | F2FS_I(inode)->i_cluster_size = |
| 3857 | 1 << F2FS_I(inode)->i_log_cluster_size; |
| 3858 | F2FS_I(inode)->i_flags |= F2FS_COMPR_FL; |
| 3859 | set_inode_flag(inode, FI_COMPRESSED_FILE); |
| 3860 | stat_inc_compr_inode(inode); |
Chao Yu | 530e070 | 2020-03-18 19:40:45 +0800 | [diff] [blame] | 3861 | f2fs_mark_inode_dirty_sync(inode, true); |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3862 | } |
| 3863 | |
| 3864 | static inline u64 f2fs_disable_compressed_file(struct inode *inode) |
| 3865 | { |
| 3866 | struct f2fs_inode_info *fi = F2FS_I(inode); |
| 3867 | |
| 3868 | if (!f2fs_compressed_file(inode)) |
| 3869 | return 0; |
Chao Yu | aa57697 | 2020-03-27 18:29:51 +0800 | [diff] [blame] | 3870 | if (S_ISREG(inode->i_mode)) { |
| 3871 | if (get_dirty_pages(inode)) |
| 3872 | return 1; |
| 3873 | if (fi->i_compr_blocks) |
| 3874 | return fi->i_compr_blocks; |
| 3875 | } |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3876 | |
| 3877 | fi->i_flags &= ~F2FS_COMPR_FL; |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3878 | stat_dec_compr_inode(inode); |
Chao Yu | 96f5b4f | 2020-03-10 20:50:07 +0800 | [diff] [blame] | 3879 | clear_inode_flag(inode, FI_COMPRESSED_FILE); |
Chao Yu | 530e070 | 2020-03-18 19:40:45 +0800 | [diff] [blame] | 3880 | f2fs_mark_inode_dirty_sync(inode, true); |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3881 | return 0; |
Jaegeuk Kim | cde4de1 | 2015-04-20 13:57:51 -0700 | [diff] [blame] | 3882 | } |
| 3883 | |
Sheng Yong | ccd31cb | 2018-02-06 12:31:17 +0800 | [diff] [blame] | 3884 | #define F2FS_FEATURE_FUNCS(name, flagname) \ |
Chao Yu | 7beb01f | 2018-10-24 18:34:26 +0800 | [diff] [blame] | 3885 | static inline int f2fs_sb_has_##name(struct f2fs_sb_info *sbi) \ |
Sheng Yong | ccd31cb | 2018-02-06 12:31:17 +0800 | [diff] [blame] | 3886 | { \ |
Chao Yu | 7beb01f | 2018-10-24 18:34:26 +0800 | [diff] [blame] | 3887 | return F2FS_HAS_FEATURE(sbi, F2FS_FEATURE_##flagname); \ |
Jaegeuk Kim | cde4de1 | 2015-04-20 13:57:51 -0700 | [diff] [blame] | 3888 | } |
Jaegeuk Kim | f424f66 | 2015-04-20 15:19:06 -0700 | [diff] [blame] | 3889 | |
Sheng Yong | ccd31cb | 2018-02-06 12:31:17 +0800 | [diff] [blame] | 3890 | F2FS_FEATURE_FUNCS(encrypt, ENCRYPT); |
| 3891 | F2FS_FEATURE_FUNCS(blkzoned, BLKZONED); |
| 3892 | F2FS_FEATURE_FUNCS(extra_attr, EXTRA_ATTR); |
| 3893 | F2FS_FEATURE_FUNCS(project_quota, PRJQUOTA); |
| 3894 | F2FS_FEATURE_FUNCS(inode_chksum, INODE_CHKSUM); |
| 3895 | F2FS_FEATURE_FUNCS(flexible_inline_xattr, FLEXIBLE_INLINE_XATTR); |
| 3896 | F2FS_FEATURE_FUNCS(quota_ino, QUOTA_INO); |
| 3897 | F2FS_FEATURE_FUNCS(inode_crtime, INODE_CRTIME); |
Sheng Yong | b7c409d | 2018-03-15 18:51:41 +0800 | [diff] [blame] | 3898 | F2FS_FEATURE_FUNCS(lost_found, LOST_FOUND); |
Eric Biggers | 95ae251 | 2019-07-22 09:26:24 -0700 | [diff] [blame] | 3899 | F2FS_FEATURE_FUNCS(verity, VERITY); |
Junling Zheng | d440c52 | 2018-09-28 20:25:56 +0800 | [diff] [blame] | 3900 | F2FS_FEATURE_FUNCS(sb_chksum, SB_CHKSUM); |
Daniel Rosenberg | 5aba543 | 2019-07-23 16:05:28 -0700 | [diff] [blame] | 3901 | F2FS_FEATURE_FUNCS(casefold, CASEFOLD); |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3902 | F2FS_FEATURE_FUNCS(compression, COMPRESSION); |
Chao Yu | 1c1d35d | 2018-01-25 14:54:42 +0800 | [diff] [blame] | 3903 | |
Damien Le Moal | 178053e | 2016-10-28 17:45:05 +0900 | [diff] [blame] | 3904 | #ifdef CONFIG_BLK_DEV_ZONED |
Damien Le Moal | 95175da | 2019-03-16 09:13:07 +0900 | [diff] [blame] | 3905 | static inline bool f2fs_blkz_is_seq(struct f2fs_sb_info *sbi, int devi, |
| 3906 | block_t blkaddr) |
Damien Le Moal | 178053e | 2016-10-28 17:45:05 +0900 | [diff] [blame] | 3907 | { |
| 3908 | unsigned int zno = blkaddr >> sbi->log_blocks_per_blkz; |
| 3909 | |
Damien Le Moal | 95175da | 2019-03-16 09:13:07 +0900 | [diff] [blame] | 3910 | return test_bit(zno, FDEV(devi).blkz_seq); |
Damien Le Moal | 178053e | 2016-10-28 17:45:05 +0900 | [diff] [blame] | 3911 | } |
| 3912 | #endif |
| 3913 | |
Chao Yu | 7d20c8a | 2018-09-04 03:52:17 +0800 | [diff] [blame] | 3914 | static inline bool f2fs_hw_should_discard(struct f2fs_sb_info *sbi) |
Damien Le Moal | 96ba2de | 2016-10-28 17:45:03 +0900 | [diff] [blame] | 3915 | { |
Chao Yu | 7beb01f | 2018-10-24 18:34:26 +0800 | [diff] [blame] | 3916 | return f2fs_sb_has_blkzoned(sbi); |
Chao Yu | 7d20c8a | 2018-09-04 03:52:17 +0800 | [diff] [blame] | 3917 | } |
Damien Le Moal | 96ba2de | 2016-10-28 17:45:03 +0900 | [diff] [blame] | 3918 | |
Damien Le Moal | 7f3d771 | 2019-03-16 09:13:08 +0900 | [diff] [blame] | 3919 | static inline bool f2fs_bdev_support_discard(struct block_device *bdev) |
| 3920 | { |
| 3921 | return blk_queue_discard(bdev_get_queue(bdev)) || |
| 3922 | bdev_is_zoned(bdev); |
| 3923 | } |
| 3924 | |
Chao Yu | 7d20c8a | 2018-09-04 03:52:17 +0800 | [diff] [blame] | 3925 | static inline bool f2fs_hw_support_discard(struct f2fs_sb_info *sbi) |
| 3926 | { |
Damien Le Moal | 7f3d771 | 2019-03-16 09:13:08 +0900 | [diff] [blame] | 3927 | int i; |
| 3928 | |
| 3929 | if (!f2fs_is_multi_device(sbi)) |
| 3930 | return f2fs_bdev_support_discard(sbi->sb->s_bdev); |
| 3931 | |
| 3932 | for (i = 0; i < sbi->s_ndevs; i++) |
| 3933 | if (f2fs_bdev_support_discard(FDEV(i).bdev)) |
| 3934 | return true; |
| 3935 | return false; |
Chao Yu | 7d20c8a | 2018-09-04 03:52:17 +0800 | [diff] [blame] | 3936 | } |
| 3937 | |
| 3938 | static inline bool f2fs_realtime_discard_enable(struct f2fs_sb_info *sbi) |
| 3939 | { |
| 3940 | return (test_opt(sbi, DISCARD) && f2fs_hw_support_discard(sbi)) || |
| 3941 | f2fs_hw_should_discard(sbi); |
Jaegeuk Kim | 52763a4 | 2016-06-13 09:47:48 -0700 | [diff] [blame] | 3942 | } |
| 3943 | |
Chao Yu | f824deb | 2019-04-22 20:22:36 +0800 | [diff] [blame] | 3944 | static inline bool f2fs_hw_is_readonly(struct f2fs_sb_info *sbi) |
| 3945 | { |
| 3946 | int i; |
| 3947 | |
| 3948 | if (!f2fs_is_multi_device(sbi)) |
| 3949 | return bdev_read_only(sbi->sb->s_bdev); |
| 3950 | |
| 3951 | for (i = 0; i < sbi->s_ndevs; i++) |
| 3952 | if (bdev_read_only(FDEV(i).bdev)) |
| 3953 | return true; |
| 3954 | return false; |
| 3955 | } |
| 3956 | |
Chao Yu | b0332a0 | 2020-02-14 17:44:12 +0800 | [diff] [blame] | 3957 | static inline bool f2fs_lfs_mode(struct f2fs_sb_info *sbi) |
Jaegeuk Kim | 52763a4 | 2016-06-13 09:47:48 -0700 | [diff] [blame] | 3958 | { |
Chao Yu | b0332a0 | 2020-02-14 17:44:12 +0800 | [diff] [blame] | 3959 | return F2FS_OPTION(sbi).fs_mode == FS_MODE_LFS; |
Jaegeuk Kim | 52763a4 | 2016-06-13 09:47:48 -0700 | [diff] [blame] | 3960 | } |
| 3961 | |
Chao Yu | 8c7d4b5 | 2020-03-21 20:19:33 +0800 | [diff] [blame] | 3962 | static inline bool f2fs_may_encrypt(struct inode *dir, struct inode *inode) |
Jaegeuk Kim | fcc85a4 | 2015-04-21 20:39:58 -0700 | [diff] [blame] | 3963 | { |
Chandan Rajendra | 643fa96 | 2018-12-12 15:20:12 +0530 | [diff] [blame] | 3964 | #ifdef CONFIG_FS_ENCRYPTION |
Chao Yu | 8c7d4b5 | 2020-03-21 20:19:33 +0800 | [diff] [blame] | 3965 | struct f2fs_sb_info *sbi = F2FS_I_SB(dir); |
Al Viro | 886f56f | 2015-12-05 03:56:06 -0500 | [diff] [blame] | 3966 | umode_t mode = inode->i_mode; |
Jaegeuk Kim | fcc85a4 | 2015-04-21 20:39:58 -0700 | [diff] [blame] | 3967 | |
Chao Yu | 8c7d4b5 | 2020-03-21 20:19:33 +0800 | [diff] [blame] | 3968 | /* |
| 3969 | * If the directory encrypted or dummy encryption enabled, |
| 3970 | * then we should encrypt the inode. |
| 3971 | */ |
| 3972 | if (IS_ENCRYPTED(dir) || DUMMY_ENCRYPTION_ENABLED(sbi)) |
| 3973 | return (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)); |
Jaegeuk Kim | fcc85a4 | 2015-04-21 20:39:58 -0700 | [diff] [blame] | 3974 | #endif |
Chao Yu | 8c7d4b5 | 2020-03-21 20:19:33 +0800 | [diff] [blame] | 3975 | return false; |
Jaegeuk Kim | fcc85a4 | 2015-04-21 20:39:58 -0700 | [diff] [blame] | 3976 | } |
| 3977 | |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 3978 | static inline bool f2fs_may_compress(struct inode *inode) |
| 3979 | { |
| 3980 | if (IS_SWAPFILE(inode) || f2fs_is_pinned_file(inode) || |
| 3981 | f2fs_is_atomic_file(inode) || |
| 3982 | f2fs_is_volatile_file(inode)) |
| 3983 | return false; |
| 3984 | return S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode); |
| 3985 | } |
| 3986 | |
| 3987 | static inline void f2fs_i_compr_blocks_update(struct inode *inode, |
| 3988 | u64 blocks, bool add) |
| 3989 | { |
| 3990 | int diff = F2FS_I(inode)->i_cluster_size - blocks; |
| 3991 | |
| 3992 | if (add) { |
| 3993 | F2FS_I(inode)->i_compr_blocks += diff; |
| 3994 | stat_add_compr_blocks(inode, diff); |
| 3995 | } else { |
| 3996 | F2FS_I(inode)->i_compr_blocks -= diff; |
| 3997 | stat_sub_compr_blocks(inode, diff); |
| 3998 | } |
| 3999 | f2fs_mark_inode_dirty_sync(inode, true); |
| 4000 | } |
| 4001 | |
Chao Yu | f847c69 | 2018-09-27 18:34:52 +0800 | [diff] [blame] | 4002 | static inline int block_unaligned_IO(struct inode *inode, |
| 4003 | struct kiocb *iocb, struct iov_iter *iter) |
Hyunchul Lee | b91050a | 2018-03-08 19:34:38 +0900 | [diff] [blame] | 4004 | { |
Chao Yu | f847c69 | 2018-09-27 18:34:52 +0800 | [diff] [blame] | 4005 | unsigned int i_blkbits = READ_ONCE(inode->i_blkbits); |
| 4006 | unsigned int blocksize_mask = (1 << i_blkbits) - 1; |
| 4007 | loff_t offset = iocb->ki_pos; |
| 4008 | unsigned long align = offset | iov_iter_alignment(iter); |
| 4009 | |
| 4010 | return align & blocksize_mask; |
| 4011 | } |
| 4012 | |
| 4013 | static inline int allow_outplace_dio(struct inode *inode, |
| 4014 | struct kiocb *iocb, struct iov_iter *iter) |
| 4015 | { |
| 4016 | struct f2fs_sb_info *sbi = F2FS_I_SB(inode); |
| 4017 | int rw = iov_iter_rw(iter); |
| 4018 | |
Chao Yu | b0332a0 | 2020-02-14 17:44:12 +0800 | [diff] [blame] | 4019 | return (f2fs_lfs_mode(sbi) && (rw == WRITE) && |
Chao Yu | f847c69 | 2018-09-27 18:34:52 +0800 | [diff] [blame] | 4020 | !block_unaligned_IO(inode, iocb, iter)); |
| 4021 | } |
| 4022 | |
| 4023 | static inline bool f2fs_force_buffered_io(struct inode *inode, |
| 4024 | struct kiocb *iocb, struct iov_iter *iter) |
| 4025 | { |
| 4026 | struct f2fs_sb_info *sbi = F2FS_I_SB(inode); |
| 4027 | int rw = iov_iter_rw(iter); |
| 4028 | |
| 4029 | if (f2fs_post_read_required(inode)) |
| 4030 | return true; |
Damien Le Moal | 0916878 | 2019-03-16 09:13:06 +0900 | [diff] [blame] | 4031 | if (f2fs_is_multi_device(sbi)) |
Chao Yu | f847c69 | 2018-09-27 18:34:52 +0800 | [diff] [blame] | 4032 | return true; |
Chao Yu | 4c8ff70 | 2019-11-01 18:07:14 +0800 | [diff] [blame] | 4033 | if (f2fs_compressed_file(inode)) |
| 4034 | return true; |
Chao Yu | f847c69 | 2018-09-27 18:34:52 +0800 | [diff] [blame] | 4035 | /* |
| 4036 | * for blkzoned device, fallback direct IO to buffered IO, so |
| 4037 | * all IOs can be serialized by log-structured write. |
| 4038 | */ |
Chao Yu | 7beb01f | 2018-10-24 18:34:26 +0800 | [diff] [blame] | 4039 | if (f2fs_sb_has_blkzoned(sbi)) |
Chao Yu | f847c69 | 2018-09-27 18:34:52 +0800 | [diff] [blame] | 4040 | return true; |
Chao Yu | b0332a0 | 2020-02-14 17:44:12 +0800 | [diff] [blame] | 4041 | if (f2fs_lfs_mode(sbi) && (rw == WRITE)) { |
Chao Yu | 9720ee8 | 2019-08-28 17:33:37 +0800 | [diff] [blame] | 4042 | if (block_unaligned_IO(inode, iocb, iter)) |
| 4043 | return true; |
| 4044 | if (F2FS_IO_ALIGNED(sbi)) |
| 4045 | return true; |
| 4046 | } |
Jaegeuk Kim | 4969c06 | 2019-07-01 19:15:29 -0700 | [diff] [blame] | 4047 | if (is_sbi_flag_set(F2FS_I_SB(inode), SBI_CP_DISABLED) && |
Chao Yu | 3ee0c5d | 2019-08-15 19:45:34 +0800 | [diff] [blame] | 4048 | !IS_SWAPFILE(inode)) |
Daniel Rosenberg | 4354994 | 2018-08-20 19:21:43 -0700 | [diff] [blame] | 4049 | return true; |
| 4050 | |
Chao Yu | f847c69 | 2018-09-27 18:34:52 +0800 | [diff] [blame] | 4051 | return false; |
Hyunchul Lee | b91050a | 2018-03-08 19:34:38 +0900 | [diff] [blame] | 4052 | } |
| 4053 | |
Jaegeuk Kim | 83a3bfd | 2018-06-21 13:46:23 -0700 | [diff] [blame] | 4054 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
Chao Yu | d494500 | 2018-08-08 17:36:41 +0800 | [diff] [blame] | 4055 | extern void f2fs_build_fault_attr(struct f2fs_sb_info *sbi, unsigned int rate, |
| 4056 | unsigned int type); |
Jaegeuk Kim | 83a3bfd | 2018-06-21 13:46:23 -0700 | [diff] [blame] | 4057 | #else |
Chao Yu | d494500 | 2018-08-08 17:36:41 +0800 | [diff] [blame] | 4058 | #define f2fs_build_fault_attr(sbi, rate, type) do { } while (0) |
Jaegeuk Kim | 83a3bfd | 2018-06-21 13:46:23 -0700 | [diff] [blame] | 4059 | #endif |
| 4060 | |
Chao Yu | af033b2 | 2018-09-20 20:05:00 +0800 | [diff] [blame] | 4061 | static inline bool is_journalled_quota(struct f2fs_sb_info *sbi) |
| 4062 | { |
| 4063 | #ifdef CONFIG_QUOTA |
Chao Yu | 7beb01f | 2018-10-24 18:34:26 +0800 | [diff] [blame] | 4064 | if (f2fs_sb_has_quota_ino(sbi)) |
Chao Yu | af033b2 | 2018-09-20 20:05:00 +0800 | [diff] [blame] | 4065 | return true; |
| 4066 | if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA] || |
| 4067 | F2FS_OPTION(sbi).s_qf_names[GRPQUOTA] || |
| 4068 | F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]) |
| 4069 | return true; |
| 4070 | #endif |
| 4071 | return false; |
| 4072 | } |
Jaegeuk Kim | 0af725f | 2019-02-15 19:04:38 -0800 | [diff] [blame] | 4073 | |
Chao Yu | 10f966b | 2019-06-20 11:36:14 +0800 | [diff] [blame] | 4074 | #define EFSBADCRC EBADMSG /* Bad CRC detected */ |
| 4075 | #define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */ |
| 4076 | |
Chao Yu | e1074d4 | 2019-04-02 18:52:20 +0800 | [diff] [blame] | 4077 | #endif /* _LINUX_F2FS_H */ |