Jaegeuk Kim | 0a8165d | 2012-11-29 13:28:09 +0900 | [diff] [blame] | 1 | /* |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 2 | * fs/f2fs/f2fs.h |
| 3 | * |
| 4 | * Copyright (c) 2012 Samsung Electronics Co., Ltd. |
| 5 | * http://www.samsung.com/ |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | #ifndef _LINUX_F2FS_H |
| 12 | #define _LINUX_F2FS_H |
| 13 | |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/page-flags.h> |
| 16 | #include <linux/buffer_head.h> |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
| 18 | #include <linux/crc32.h> |
| 19 | #include <linux/magic.h> |
Jaegeuk Kim | c2d715d | 2013-08-08 15:56:49 +0900 | [diff] [blame] | 20 | #include <linux/kobject.h> |
Gu Zheng | 7bd5938 | 2013-10-22 14:52:26 +0800 | [diff] [blame] | 21 | #include <linux/sched.h> |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 22 | |
Jaegeuk Kim | 5d56b67 | 2013-10-29 15:14:54 +0900 | [diff] [blame] | 23 | #ifdef CONFIG_F2FS_CHECK_FS |
| 24 | #define f2fs_bug_on(condition) BUG_ON(condition) |
Jaegeuk Kim | 0daaad9 | 2013-11-24 13:50:35 +0900 | [diff] [blame] | 25 | #define f2fs_down_write(x, y) down_write_nest_lock(x, y) |
Jaegeuk Kim | 5d56b67 | 2013-10-29 15:14:54 +0900 | [diff] [blame] | 26 | #else |
| 27 | #define f2fs_bug_on(condition) |
Jaegeuk Kim | 0daaad9 | 2013-11-24 13:50:35 +0900 | [diff] [blame] | 28 | #define f2fs_down_write(x, y) down_write(x) |
Jaegeuk Kim | 5d56b67 | 2013-10-29 15:14:54 +0900 | [diff] [blame] | 29 | #endif |
| 30 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 31 | /* |
| 32 | * For mount options |
| 33 | */ |
| 34 | #define F2FS_MOUNT_BG_GC 0x00000001 |
| 35 | #define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002 |
| 36 | #define F2FS_MOUNT_DISCARD 0x00000004 |
| 37 | #define F2FS_MOUNT_NOHEAP 0x00000008 |
| 38 | #define F2FS_MOUNT_XATTR_USER 0x00000010 |
| 39 | #define F2FS_MOUNT_POSIX_ACL 0x00000020 |
| 40 | #define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040 |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 41 | #define F2FS_MOUNT_INLINE_XATTR 0x00000080 |
Huajun Li | 1001b34 | 2013-11-10 23:13:16 +0800 | [diff] [blame^] | 42 | #define F2FS_MOUNT_INLINE_DATA 0x00000100 |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 43 | |
| 44 | #define clear_opt(sbi, option) (sbi->mount_opt.opt &= ~F2FS_MOUNT_##option) |
| 45 | #define set_opt(sbi, option) (sbi->mount_opt.opt |= F2FS_MOUNT_##option) |
| 46 | #define test_opt(sbi, option) (sbi->mount_opt.opt & F2FS_MOUNT_##option) |
| 47 | |
| 48 | #define ver_after(a, b) (typecheck(unsigned long long, a) && \ |
| 49 | typecheck(unsigned long long, b) && \ |
| 50 | ((long long)((a) - (b)) > 0)) |
| 51 | |
Jaegeuk Kim | a9841c4 | 2013-05-24 12:41:04 +0900 | [diff] [blame] | 52 | typedef u32 block_t; /* |
| 53 | * should not change u32, since it is the on-disk block |
| 54 | * address format, __le32. |
| 55 | */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 56 | typedef u32 nid_t; |
| 57 | |
| 58 | struct f2fs_mount_info { |
| 59 | unsigned int opt; |
| 60 | }; |
| 61 | |
Jaegeuk Kim | 7e586fa | 2013-06-19 20:47:19 +0900 | [diff] [blame] | 62 | #define CRCPOLY_LE 0xedb88320 |
| 63 | |
| 64 | static inline __u32 f2fs_crc32(void *buf, size_t len) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 65 | { |
Jaegeuk Kim | 7e586fa | 2013-06-19 20:47:19 +0900 | [diff] [blame] | 66 | unsigned char *p = (unsigned char *)buf; |
| 67 | __u32 crc = F2FS_SUPER_MAGIC; |
| 68 | int i; |
| 69 | |
| 70 | while (len--) { |
| 71 | crc ^= *p++; |
| 72 | for (i = 0; i < 8; i++) |
| 73 | crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0); |
| 74 | } |
| 75 | return crc; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 76 | } |
| 77 | |
Jaegeuk Kim | 7e586fa | 2013-06-19 20:47:19 +0900 | [diff] [blame] | 78 | static inline bool f2fs_crc_valid(__u32 blk_crc, void *buf, size_t buf_size) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 79 | { |
Jaegeuk Kim | 7e586fa | 2013-06-19 20:47:19 +0900 | [diff] [blame] | 80 | return f2fs_crc32(buf, buf_size) == blk_crc; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | /* |
| 84 | * For checkpoint manager |
| 85 | */ |
| 86 | enum { |
| 87 | NAT_BITMAP, |
| 88 | SIT_BITMAP |
| 89 | }; |
| 90 | |
| 91 | /* for the list of orphan inodes */ |
| 92 | struct orphan_inode_entry { |
| 93 | struct list_head list; /* list head */ |
| 94 | nid_t ino; /* inode number */ |
| 95 | }; |
| 96 | |
| 97 | /* for the list of directory inodes */ |
| 98 | struct dir_inode_entry { |
| 99 | struct list_head list; /* list head */ |
| 100 | struct inode *inode; /* vfs inode pointer */ |
| 101 | }; |
| 102 | |
Jaegeuk Kim | 7fd9e54 | 2013-11-15 13:55:58 +0900 | [diff] [blame] | 103 | /* for the list of blockaddresses to be discarded */ |
| 104 | struct discard_entry { |
| 105 | struct list_head list; /* list head */ |
| 106 | block_t blkaddr; /* block address to be discarded */ |
| 107 | int len; /* # of consecutive blocks of the discard */ |
| 108 | }; |
| 109 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 110 | /* for the list of fsync inodes, used only during recovery */ |
| 111 | struct fsync_inode_entry { |
| 112 | struct list_head list; /* list head */ |
| 113 | struct inode *inode; /* vfs inode pointer */ |
| 114 | block_t blkaddr; /* block address locating the last inode */ |
| 115 | }; |
| 116 | |
| 117 | #define nats_in_cursum(sum) (le16_to_cpu(sum->n_nats)) |
| 118 | #define sits_in_cursum(sum) (le16_to_cpu(sum->n_sits)) |
| 119 | |
| 120 | #define nat_in_journal(sum, i) (sum->nat_j.entries[i].ne) |
| 121 | #define nid_in_journal(sum, i) (sum->nat_j.entries[i].nid) |
| 122 | #define sit_in_journal(sum, i) (sum->sit_j.entries[i].se) |
| 123 | #define segno_in_journal(sum, i) (sum->sit_j.entries[i].segno) |
| 124 | |
| 125 | static inline int update_nats_in_cursum(struct f2fs_summary_block *rs, int i) |
| 126 | { |
| 127 | int before = nats_in_cursum(rs); |
| 128 | rs->n_nats = cpu_to_le16(before + i); |
| 129 | return before; |
| 130 | } |
| 131 | |
| 132 | static inline int update_sits_in_cursum(struct f2fs_summary_block *rs, int i) |
| 133 | { |
| 134 | int before = sits_in_cursum(rs); |
| 135 | rs->n_sits = cpu_to_le16(before + i); |
| 136 | return before; |
| 137 | } |
| 138 | |
| 139 | /* |
Namjae Jeon | e975082 | 2013-02-04 23:41:41 +0900 | [diff] [blame] | 140 | * ioctl commands |
| 141 | */ |
| 142 | #define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS |
| 143 | #define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS |
| 144 | |
| 145 | #if defined(__KERNEL__) && defined(CONFIG_COMPAT) |
| 146 | /* |
| 147 | * ioctl commands in 32 bit emulation |
| 148 | */ |
| 149 | #define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS |
| 150 | #define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS |
| 151 | #endif |
| 152 | |
| 153 | /* |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 154 | * For INODE and NODE manager |
| 155 | */ |
Jaegeuk Kim | dbe6a5f | 2013-08-09 08:14:06 +0900 | [diff] [blame] | 156 | /* |
| 157 | * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1 |
| 158 | * as its node offset to distinguish from index node blocks. |
| 159 | * But some bits are used to mark the node block. |
| 160 | */ |
| 161 | #define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \ |
| 162 | >> OFFSET_BIT_SHIFT) |
Jaegeuk Kim | 266e97a | 2013-02-26 13:10:46 +0900 | [diff] [blame] | 163 | enum { |
| 164 | ALLOC_NODE, /* allocate a new node page if needed */ |
| 165 | LOOKUP_NODE, /* look up a node without readahead */ |
| 166 | LOOKUP_NODE_RA, /* |
| 167 | * look up a node with readahead called |
| 168 | * by get_datablock_ro. |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 169 | */ |
Jaegeuk Kim | 266e97a | 2013-02-26 13:10:46 +0900 | [diff] [blame] | 170 | }; |
| 171 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 172 | #define F2FS_LINK_MAX 32000 /* maximum link count per file */ |
| 173 | |
| 174 | /* for in-memory extent cache entry */ |
Jaegeuk Kim | c11abd1 | 2013-11-19 10:41:54 +0900 | [diff] [blame] | 175 | #define F2FS_MIN_EXTENT_LEN 16 /* minimum extent length */ |
| 176 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 177 | struct extent_info { |
| 178 | rwlock_t ext_lock; /* rwlock for consistency */ |
| 179 | unsigned int fofs; /* start offset in a file */ |
| 180 | u32 blk_addr; /* start block address of the extent */ |
Masanari Iida | 111d249 | 2013-03-19 08:03:35 +0900 | [diff] [blame] | 181 | unsigned int len; /* length of the extent */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 182 | }; |
| 183 | |
| 184 | /* |
| 185 | * i_advise uses FADVISE_XXX_BIT. We can add additional hints later. |
| 186 | */ |
| 187 | #define FADVISE_COLD_BIT 0x01 |
Jaegeuk Kim | 354a339 | 2013-06-14 08:52:35 +0900 | [diff] [blame] | 188 | #define FADVISE_LOST_PINO_BIT 0x02 |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 189 | |
| 190 | struct f2fs_inode_info { |
| 191 | struct inode vfs_inode; /* serve a vfs inode */ |
| 192 | unsigned long i_flags; /* keep an inode flags for ioctl */ |
| 193 | unsigned char i_advise; /* use to give file attribute hints */ |
| 194 | unsigned int i_current_depth; /* use only in directory structure */ |
Jaegeuk Kim | 6666e6a | 2012-12-10 17:52:48 +0900 | [diff] [blame] | 195 | unsigned int i_pino; /* parent inode number */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 196 | umode_t i_acl_mode; /* keep file acl mode temporarily */ |
| 197 | |
| 198 | /* Use below internally in f2fs*/ |
| 199 | unsigned long flags; /* use to pass per-file flags */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 200 | atomic_t dirty_dents; /* # of dirty dentry pages */ |
| 201 | f2fs_hash_t chash; /* hash value of given file name */ |
| 202 | unsigned int clevel; /* maximum level of given file name */ |
| 203 | nid_t i_xattr_nid; /* node id that contains xattrs */ |
Jaegeuk Kim | e518ff8 | 2013-08-09 14:46:15 +0900 | [diff] [blame] | 204 | unsigned long long xattr_ver; /* cp version of xattr modification */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 205 | struct extent_info ext; /* in-memory extent cache entry */ |
| 206 | }; |
| 207 | |
| 208 | static inline void get_extent_info(struct extent_info *ext, |
| 209 | struct f2fs_extent i_ext) |
| 210 | { |
| 211 | write_lock(&ext->ext_lock); |
| 212 | ext->fofs = le32_to_cpu(i_ext.fofs); |
| 213 | ext->blk_addr = le32_to_cpu(i_ext.blk_addr); |
| 214 | ext->len = le32_to_cpu(i_ext.len); |
| 215 | write_unlock(&ext->ext_lock); |
| 216 | } |
| 217 | |
| 218 | static inline void set_raw_extent(struct extent_info *ext, |
| 219 | struct f2fs_extent *i_ext) |
| 220 | { |
| 221 | read_lock(&ext->ext_lock); |
| 222 | i_ext->fofs = cpu_to_le32(ext->fofs); |
| 223 | i_ext->blk_addr = cpu_to_le32(ext->blk_addr); |
| 224 | i_ext->len = cpu_to_le32(ext->len); |
| 225 | read_unlock(&ext->ext_lock); |
| 226 | } |
| 227 | |
| 228 | struct f2fs_nm_info { |
| 229 | block_t nat_blkaddr; /* base disk address of NAT */ |
| 230 | nid_t max_nid; /* maximum possible node ids */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 231 | nid_t next_scan_nid; /* the next nid to be scanned */ |
| 232 | |
| 233 | /* NAT cache management */ |
| 234 | struct radix_tree_root nat_root;/* root of the nat entry cache */ |
| 235 | rwlock_t nat_tree_lock; /* protect nat_tree_lock */ |
| 236 | unsigned int nat_cnt; /* the # of cached nat entries */ |
| 237 | struct list_head nat_entries; /* cached nat entry list (clean) */ |
| 238 | struct list_head dirty_nat_entries; /* cached nat entry list (dirty) */ |
| 239 | |
| 240 | /* free node ids management */ |
| 241 | struct list_head free_nid_list; /* a list for free nids */ |
| 242 | spinlock_t free_nid_list_lock; /* protect free nid list */ |
| 243 | unsigned int fcnt; /* the number of free node id */ |
| 244 | struct mutex build_lock; /* lock for build free nids */ |
| 245 | |
| 246 | /* for checkpoint */ |
| 247 | char *nat_bitmap; /* NAT bitmap pointer */ |
| 248 | int bitmap_size; /* bitmap size */ |
| 249 | }; |
| 250 | |
| 251 | /* |
| 252 | * this structure is used as one of function parameters. |
| 253 | * all the information are dedicated to a given direct node block determined |
| 254 | * by the data offset in a file. |
| 255 | */ |
| 256 | struct dnode_of_data { |
| 257 | struct inode *inode; /* vfs inode pointer */ |
| 258 | struct page *inode_page; /* its inode page, NULL is possible */ |
| 259 | struct page *node_page; /* cached direct node page */ |
| 260 | nid_t nid; /* node id of the direct node block */ |
| 261 | unsigned int ofs_in_node; /* data offset in the node page */ |
| 262 | bool inode_page_locked; /* inode page is locked or not */ |
| 263 | block_t data_blkaddr; /* block address of the node block */ |
| 264 | }; |
| 265 | |
| 266 | static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode, |
| 267 | struct page *ipage, struct page *npage, nid_t nid) |
| 268 | { |
Jaegeuk Kim | d66d1f7 | 2013-01-03 08:57:21 +0900 | [diff] [blame] | 269 | memset(dn, 0, sizeof(*dn)); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 270 | dn->inode = inode; |
| 271 | dn->inode_page = ipage; |
| 272 | dn->node_page = npage; |
| 273 | dn->nid = nid; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | /* |
| 277 | * For SIT manager |
| 278 | * |
| 279 | * By default, there are 6 active log areas across the whole main area. |
| 280 | * When considering hot and cold data separation to reduce cleaning overhead, |
| 281 | * we split 3 for data logs and 3 for node logs as hot, warm, and cold types, |
| 282 | * respectively. |
| 283 | * In the current design, you should not change the numbers intentionally. |
| 284 | * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6 |
| 285 | * logs individually according to the underlying devices. (default: 6) |
| 286 | * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for |
| 287 | * data and 8 for node logs. |
| 288 | */ |
| 289 | #define NR_CURSEG_DATA_TYPE (3) |
| 290 | #define NR_CURSEG_NODE_TYPE (3) |
| 291 | #define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE) |
| 292 | |
| 293 | enum { |
| 294 | CURSEG_HOT_DATA = 0, /* directory entry blocks */ |
| 295 | CURSEG_WARM_DATA, /* data blocks */ |
| 296 | CURSEG_COLD_DATA, /* multimedia or GCed data blocks */ |
| 297 | CURSEG_HOT_NODE, /* direct node blocks of directory files */ |
| 298 | CURSEG_WARM_NODE, /* direct node blocks of normal files */ |
| 299 | CURSEG_COLD_NODE, /* indirect node blocks */ |
| 300 | NO_CHECK_TYPE |
| 301 | }; |
| 302 | |
| 303 | struct f2fs_sm_info { |
| 304 | struct sit_info *sit_info; /* whole segment information */ |
| 305 | struct free_segmap_info *free_info; /* free segment information */ |
| 306 | struct dirty_seglist_info *dirty_info; /* dirty segment information */ |
| 307 | struct curseg_info *curseg_array; /* active segment information */ |
| 308 | |
| 309 | struct list_head wblist_head; /* list of under-writeback pages */ |
| 310 | spinlock_t wblist_lock; /* lock for checkpoint */ |
| 311 | |
| 312 | block_t seg0_blkaddr; /* block address of 0'th segment */ |
| 313 | block_t main_blkaddr; /* start block address of main area */ |
| 314 | block_t ssa_blkaddr; /* start block address of SSA area */ |
| 315 | |
| 316 | unsigned int segment_count; /* total # of segments */ |
| 317 | unsigned int main_segments; /* # of segments in main area */ |
| 318 | unsigned int reserved_segments; /* # of reserved segments */ |
| 319 | unsigned int ovp_segments; /* # of overprovision segments */ |
Jaegeuk Kim | 81eb8d6 | 2013-10-24 13:31:34 +0900 | [diff] [blame] | 320 | |
| 321 | /* a threshold to reclaim prefree segments */ |
| 322 | unsigned int rec_prefree_segments; |
Jaegeuk Kim | 7fd9e54 | 2013-11-15 13:55:58 +0900 | [diff] [blame] | 323 | |
| 324 | /* for small discard management */ |
| 325 | struct list_head discard_list; /* 4KB discard list */ |
| 326 | int nr_discards; /* # of discards in the list */ |
| 327 | int max_discards; /* max. discards to be issued */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 328 | }; |
| 329 | |
| 330 | /* |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 331 | * For superblock |
| 332 | */ |
| 333 | /* |
| 334 | * COUNT_TYPE for monitoring |
| 335 | * |
| 336 | * f2fs monitors the number of several block types such as on-writeback, |
| 337 | * dirty dentry blocks, dirty node blocks, and dirty meta blocks. |
| 338 | */ |
| 339 | enum count_type { |
| 340 | F2FS_WRITEBACK, |
| 341 | F2FS_DIRTY_DENTS, |
| 342 | F2FS_DIRTY_NODES, |
| 343 | F2FS_DIRTY_META, |
| 344 | NR_COUNT_TYPE, |
| 345 | }; |
| 346 | |
| 347 | /* |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 348 | * The below are the page types of bios used in submti_bio(). |
| 349 | * The available types are: |
| 350 | * DATA User data pages. It operates as async mode. |
| 351 | * NODE Node pages. It operates as async mode. |
| 352 | * META FS metadata pages such as SIT, NAT, CP. |
| 353 | * NR_PAGE_TYPE The number of page types. |
| 354 | * META_FLUSH Make sure the previous pages are written |
| 355 | * with waiting the bio's completion |
| 356 | * ... Only can be used with META. |
| 357 | */ |
Jaegeuk Kim | 7d5e510 | 2013-11-18 17:13:35 +0900 | [diff] [blame] | 358 | #define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type)) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 359 | enum page_type { |
| 360 | DATA, |
| 361 | NODE, |
| 362 | META, |
| 363 | NR_PAGE_TYPE, |
| 364 | META_FLUSH, |
| 365 | }; |
| 366 | |
Jaegeuk Kim | 1ff7bd3 | 2013-11-19 12:47:22 +0900 | [diff] [blame] | 367 | struct f2fs_bio_info { |
| 368 | struct bio *bio; /* bios to merge */ |
| 369 | sector_t last_block_in_bio; /* last block number */ |
| 370 | struct mutex io_mutex; /* mutex for bio */ |
| 371 | }; |
| 372 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 373 | struct f2fs_sb_info { |
| 374 | struct super_block *sb; /* pointer to VFS super block */ |
Jaegeuk Kim | 5e176d5 | 2013-06-28 12:47:01 +0900 | [diff] [blame] | 375 | struct proc_dir_entry *s_proc; /* proc entry */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 376 | struct buffer_head *raw_super_buf; /* buffer head of raw sb */ |
| 377 | struct f2fs_super_block *raw_super; /* raw super block pointer */ |
| 378 | int s_dirty; /* dirty flag for checkpoint */ |
| 379 | |
| 380 | /* for node-related operations */ |
| 381 | struct f2fs_nm_info *nm_info; /* node manager */ |
| 382 | struct inode *node_inode; /* cache node blocks */ |
| 383 | |
| 384 | /* for segment-related operations */ |
| 385 | struct f2fs_sm_info *sm_info; /* segment manager */ |
Jaegeuk Kim | 1ff7bd3 | 2013-11-19 12:47:22 +0900 | [diff] [blame] | 386 | |
| 387 | /* for bio operations */ |
Chao Yu | 924b720 | 2013-11-20 14:46:39 +0800 | [diff] [blame] | 388 | struct f2fs_bio_info read_io; /* for read bios */ |
Jaegeuk Kim | 1ff7bd3 | 2013-11-19 12:47:22 +0900 | [diff] [blame] | 389 | struct f2fs_bio_info write_io[NR_PAGE_TYPE]; /* for write bios */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 390 | |
| 391 | /* for checkpoint */ |
| 392 | struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */ |
| 393 | struct inode *meta_inode; /* cache meta blocks */ |
Jaegeuk Kim | 3993683 | 2012-11-22 16:21:29 +0900 | [diff] [blame] | 394 | struct mutex cp_mutex; /* checkpoint procedure lock */ |
Gu Zheng | e479556 | 2013-09-27 18:08:30 +0800 | [diff] [blame] | 395 | struct rw_semaphore cp_rwsem; /* blocking FS operations */ |
Jaegeuk Kim | 3993683 | 2012-11-22 16:21:29 +0900 | [diff] [blame] | 396 | struct mutex node_write; /* locking node writes */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 397 | struct mutex writepages; /* mutex for writepages() */ |
Haicheng Li | aabe513 | 2013-10-23 12:39:32 +0800 | [diff] [blame] | 398 | bool por_doing; /* recovery is doing or not */ |
| 399 | bool on_build_free_nids; /* build_free_nids is doing */ |
Changman Lee | fb51b5e | 2013-11-07 12:48:25 +0900 | [diff] [blame] | 400 | wait_queue_head_t cp_wait; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 401 | |
| 402 | /* for orphan inode management */ |
| 403 | struct list_head orphan_inode_list; /* orphan inode list */ |
| 404 | struct mutex orphan_inode_mutex; /* for orphan inode list */ |
| 405 | unsigned int n_orphans; /* # of orphan inodes */ |
| 406 | |
| 407 | /* for directory inode management */ |
| 408 | struct list_head dir_inode_list; /* dir inode list */ |
| 409 | spinlock_t dir_inode_lock; /* for dir inode list lock */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 410 | |
| 411 | /* basic file system units */ |
| 412 | unsigned int log_sectors_per_block; /* log2 sectors per block */ |
| 413 | unsigned int log_blocksize; /* log2 block size */ |
| 414 | unsigned int blocksize; /* block size */ |
| 415 | unsigned int root_ino_num; /* root inode number*/ |
| 416 | unsigned int node_ino_num; /* node inode number*/ |
| 417 | unsigned int meta_ino_num; /* meta inode number*/ |
| 418 | unsigned int log_blocks_per_seg; /* log2 blocks per segment */ |
| 419 | unsigned int blocks_per_seg; /* blocks per segment */ |
| 420 | unsigned int segs_per_sec; /* segments per section */ |
| 421 | unsigned int secs_per_zone; /* sections per zone */ |
| 422 | unsigned int total_sections; /* total section count */ |
| 423 | unsigned int total_node_count; /* total node block count */ |
| 424 | unsigned int total_valid_node_count; /* valid node block count */ |
| 425 | unsigned int total_valid_inode_count; /* valid inode count */ |
| 426 | int active_logs; /* # of active logs */ |
| 427 | |
| 428 | block_t user_block_count; /* # of user blocks */ |
| 429 | block_t total_valid_block_count; /* # of valid blocks */ |
| 430 | block_t alloc_valid_block_count; /* # of allocated blocks */ |
| 431 | block_t last_valid_block_count; /* for recovery */ |
| 432 | u32 s_next_generation; /* for NFS support */ |
| 433 | atomic_t nr_pages[NR_COUNT_TYPE]; /* # of pages, see count_type */ |
| 434 | |
| 435 | struct f2fs_mount_info mount_opt; /* mount options */ |
| 436 | |
| 437 | /* for cleaning operations */ |
| 438 | struct mutex gc_mutex; /* mutex for GC */ |
| 439 | struct f2fs_gc_kthread *gc_thread; /* GC thread */ |
Jaegeuk Kim | 5ec4e49 | 2013-03-31 13:26:03 +0900 | [diff] [blame] | 440 | unsigned int cur_victim_sec; /* current victim section num */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 441 | |
| 442 | /* |
| 443 | * for stat information. |
| 444 | * one is for the LFS mode, and the other is for the SSR mode. |
| 445 | */ |
Namjae Jeon | 35b09d8 | 2013-05-23 22:57:53 +0900 | [diff] [blame] | 446 | #ifdef CONFIG_F2FS_STAT_FS |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 447 | struct f2fs_stat_info *stat_info; /* FS status information */ |
| 448 | unsigned int segment_count[2]; /* # of allocated segments */ |
| 449 | unsigned int block_count[2]; /* # of allocated blocks */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 450 | int total_hit_ext, read_hit_ext; /* extent cache hit ratio */ |
| 451 | int bg_gc; /* background gc calls */ |
Namjae Jeon | 35b09d8 | 2013-05-23 22:57:53 +0900 | [diff] [blame] | 452 | unsigned int n_dirty_dirs; /* # of dir inodes */ |
| 453 | #endif |
| 454 | unsigned int last_victim[2]; /* last victim segment # */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 455 | spinlock_t stat_lock; /* lock for stat operations */ |
Namjae Jeon | b59d0ba | 2013-08-04 23:09:40 +0900 | [diff] [blame] | 456 | |
| 457 | /* For sysfs suppport */ |
| 458 | struct kobject s_kobj; |
| 459 | struct completion s_kobj_unregister; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 460 | }; |
| 461 | |
| 462 | /* |
| 463 | * Inline functions |
| 464 | */ |
| 465 | static inline struct f2fs_inode_info *F2FS_I(struct inode *inode) |
| 466 | { |
| 467 | return container_of(inode, struct f2fs_inode_info, vfs_inode); |
| 468 | } |
| 469 | |
| 470 | static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb) |
| 471 | { |
| 472 | return sb->s_fs_info; |
| 473 | } |
| 474 | |
| 475 | static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi) |
| 476 | { |
| 477 | return (struct f2fs_super_block *)(sbi->raw_super); |
| 478 | } |
| 479 | |
| 480 | static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi) |
| 481 | { |
| 482 | return (struct f2fs_checkpoint *)(sbi->ckpt); |
| 483 | } |
| 484 | |
Gu Zheng | 4559071 | 2013-07-15 17:57:38 +0800 | [diff] [blame] | 485 | static inline struct f2fs_node *F2FS_NODE(struct page *page) |
| 486 | { |
| 487 | return (struct f2fs_node *)page_address(page); |
| 488 | } |
| 489 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 490 | static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi) |
| 491 | { |
| 492 | return (struct f2fs_nm_info *)(sbi->nm_info); |
| 493 | } |
| 494 | |
| 495 | static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi) |
| 496 | { |
| 497 | return (struct f2fs_sm_info *)(sbi->sm_info); |
| 498 | } |
| 499 | |
| 500 | static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi) |
| 501 | { |
| 502 | return (struct sit_info *)(SM_I(sbi)->sit_info); |
| 503 | } |
| 504 | |
| 505 | static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi) |
| 506 | { |
| 507 | return (struct free_segmap_info *)(SM_I(sbi)->free_info); |
| 508 | } |
| 509 | |
| 510 | static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi) |
| 511 | { |
| 512 | return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info); |
| 513 | } |
| 514 | |
| 515 | static inline void F2FS_SET_SB_DIRT(struct f2fs_sb_info *sbi) |
| 516 | { |
| 517 | sbi->s_dirty = 1; |
| 518 | } |
| 519 | |
| 520 | static inline void F2FS_RESET_SB_DIRT(struct f2fs_sb_info *sbi) |
| 521 | { |
| 522 | sbi->s_dirty = 0; |
| 523 | } |
| 524 | |
Jaegeuk Kim | d71b556 | 2013-08-09 15:03:21 +0900 | [diff] [blame] | 525 | static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp) |
| 526 | { |
| 527 | return le64_to_cpu(cp->checkpoint_ver); |
| 528 | } |
| 529 | |
Jaegeuk Kim | 25ca923 | 2012-11-28 16:12:41 +0900 | [diff] [blame] | 530 | static inline bool is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f) |
| 531 | { |
| 532 | unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags); |
| 533 | return ckpt_flags & f; |
| 534 | } |
| 535 | |
| 536 | static inline void set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f) |
| 537 | { |
| 538 | unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags); |
| 539 | ckpt_flags |= f; |
| 540 | cp->ckpt_flags = cpu_to_le32(ckpt_flags); |
| 541 | } |
| 542 | |
| 543 | static inline void clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f) |
| 544 | { |
| 545 | unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags); |
| 546 | ckpt_flags &= (~f); |
| 547 | cp->ckpt_flags = cpu_to_le32(ckpt_flags); |
| 548 | } |
| 549 | |
Gu Zheng | e479556 | 2013-09-27 18:08:30 +0800 | [diff] [blame] | 550 | static inline void f2fs_lock_op(struct f2fs_sb_info *sbi) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 551 | { |
Gu Zheng | e479556 | 2013-09-27 18:08:30 +0800 | [diff] [blame] | 552 | down_read(&sbi->cp_rwsem); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 553 | } |
| 554 | |
Gu Zheng | e479556 | 2013-09-27 18:08:30 +0800 | [diff] [blame] | 555 | static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 556 | { |
Gu Zheng | e479556 | 2013-09-27 18:08:30 +0800 | [diff] [blame] | 557 | up_read(&sbi->cp_rwsem); |
Jaegeuk Kim | 3993683 | 2012-11-22 16:21:29 +0900 | [diff] [blame] | 558 | } |
| 559 | |
Gu Zheng | e479556 | 2013-09-27 18:08:30 +0800 | [diff] [blame] | 560 | static inline void f2fs_lock_all(struct f2fs_sb_info *sbi) |
Jaegeuk Kim | 3993683 | 2012-11-22 16:21:29 +0900 | [diff] [blame] | 561 | { |
Jaegeuk Kim | 0daaad9 | 2013-11-24 13:50:35 +0900 | [diff] [blame] | 562 | f2fs_down_write(&sbi->cp_rwsem, &sbi->cp_mutex); |
Jaegeuk Kim | 3993683 | 2012-11-22 16:21:29 +0900 | [diff] [blame] | 563 | } |
| 564 | |
Gu Zheng | e479556 | 2013-09-27 18:08:30 +0800 | [diff] [blame] | 565 | static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi) |
Jaegeuk Kim | 3993683 | 2012-11-22 16:21:29 +0900 | [diff] [blame] | 566 | { |
Gu Zheng | e479556 | 2013-09-27 18:08:30 +0800 | [diff] [blame] | 567 | up_write(&sbi->cp_rwsem); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | /* |
| 571 | * Check whether the given nid is within node id range. |
| 572 | */ |
Namjae Jeon | 064e082 | 2013-03-17 17:27:20 +0900 | [diff] [blame] | 573 | static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 574 | { |
Namjae Jeon | 064e082 | 2013-03-17 17:27:20 +0900 | [diff] [blame] | 575 | WARN_ON((nid >= NM_I(sbi)->max_nid)); |
| 576 | if (nid >= NM_I(sbi)->max_nid) |
| 577 | return -EINVAL; |
| 578 | return 0; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 579 | } |
| 580 | |
| 581 | #define F2FS_DEFAULT_ALLOCATED_BLOCKS 1 |
| 582 | |
| 583 | /* |
| 584 | * Check whether the inode has blocks or not |
| 585 | */ |
| 586 | static inline int F2FS_HAS_BLOCKS(struct inode *inode) |
| 587 | { |
| 588 | if (F2FS_I(inode)->i_xattr_nid) |
| 589 | return (inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1); |
| 590 | else |
| 591 | return (inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS); |
| 592 | } |
| 593 | |
| 594 | static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi, |
| 595 | struct inode *inode, blkcnt_t count) |
| 596 | { |
| 597 | block_t valid_block_count; |
| 598 | |
| 599 | spin_lock(&sbi->stat_lock); |
| 600 | valid_block_count = |
| 601 | sbi->total_valid_block_count + (block_t)count; |
| 602 | if (valid_block_count > sbi->user_block_count) { |
| 603 | spin_unlock(&sbi->stat_lock); |
| 604 | return false; |
| 605 | } |
| 606 | inode->i_blocks += count; |
| 607 | sbi->total_valid_block_count = valid_block_count; |
| 608 | sbi->alloc_valid_block_count += (block_t)count; |
| 609 | spin_unlock(&sbi->stat_lock); |
| 610 | return true; |
| 611 | } |
| 612 | |
Gu Zheng | da19b0d | 2013-11-19 18:03:27 +0800 | [diff] [blame] | 613 | static inline void dec_valid_block_count(struct f2fs_sb_info *sbi, |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 614 | struct inode *inode, |
| 615 | blkcnt_t count) |
| 616 | { |
| 617 | spin_lock(&sbi->stat_lock); |
Jaegeuk Kim | 5d56b67 | 2013-10-29 15:14:54 +0900 | [diff] [blame] | 618 | f2fs_bug_on(sbi->total_valid_block_count < (block_t) count); |
| 619 | f2fs_bug_on(inode->i_blocks < count); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 620 | inode->i_blocks -= count; |
| 621 | sbi->total_valid_block_count -= (block_t)count; |
| 622 | spin_unlock(&sbi->stat_lock); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type) |
| 626 | { |
| 627 | atomic_inc(&sbi->nr_pages[count_type]); |
| 628 | F2FS_SET_SB_DIRT(sbi); |
| 629 | } |
| 630 | |
| 631 | static inline void inode_inc_dirty_dents(struct inode *inode) |
| 632 | { |
| 633 | atomic_inc(&F2FS_I(inode)->dirty_dents); |
| 634 | } |
| 635 | |
| 636 | static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type) |
| 637 | { |
| 638 | atomic_dec(&sbi->nr_pages[count_type]); |
| 639 | } |
| 640 | |
| 641 | static inline void inode_dec_dirty_dents(struct inode *inode) |
| 642 | { |
| 643 | atomic_dec(&F2FS_I(inode)->dirty_dents); |
| 644 | } |
| 645 | |
| 646 | static inline int get_pages(struct f2fs_sb_info *sbi, int count_type) |
| 647 | { |
| 648 | return atomic_read(&sbi->nr_pages[count_type]); |
| 649 | } |
| 650 | |
Namjae Jeon | 5ac206c | 2013-02-02 23:52:59 +0900 | [diff] [blame] | 651 | static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type) |
| 652 | { |
| 653 | unsigned int pages_per_sec = sbi->segs_per_sec * |
| 654 | (1 << sbi->log_blocks_per_seg); |
| 655 | return ((get_pages(sbi, block_type) + pages_per_sec - 1) |
| 656 | >> sbi->log_blocks_per_seg) / sbi->segs_per_sec; |
| 657 | } |
| 658 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 659 | static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi) |
| 660 | { |
| 661 | block_t ret; |
| 662 | spin_lock(&sbi->stat_lock); |
| 663 | ret = sbi->total_valid_block_count; |
| 664 | spin_unlock(&sbi->stat_lock); |
| 665 | return ret; |
| 666 | } |
| 667 | |
| 668 | static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag) |
| 669 | { |
| 670 | struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); |
| 671 | |
| 672 | /* return NAT or SIT bitmap */ |
| 673 | if (flag == NAT_BITMAP) |
| 674 | return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize); |
| 675 | else if (flag == SIT_BITMAP) |
| 676 | return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize); |
| 677 | |
| 678 | return 0; |
| 679 | } |
| 680 | |
| 681 | static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag) |
| 682 | { |
| 683 | struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); |
Jaegeuk Kim | 25ca923 | 2012-11-28 16:12:41 +0900 | [diff] [blame] | 684 | int offset = (flag == NAT_BITMAP) ? |
| 685 | le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 686 | return &ckpt->sit_nat_version_bitmap + offset; |
| 687 | } |
| 688 | |
| 689 | static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi) |
| 690 | { |
| 691 | block_t start_addr; |
| 692 | struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); |
Jaegeuk Kim | d71b556 | 2013-08-09 15:03:21 +0900 | [diff] [blame] | 693 | unsigned long long ckpt_version = cur_cp_version(ckpt); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 694 | |
Jaegeuk Kim | 25ca923 | 2012-11-28 16:12:41 +0900 | [diff] [blame] | 695 | start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 696 | |
| 697 | /* |
| 698 | * odd numbered checkpoint should at cp segment 0 |
| 699 | * and even segent must be at cp segment 1 |
| 700 | */ |
| 701 | if (!(ckpt_version & 1)) |
| 702 | start_addr += sbi->blocks_per_seg; |
| 703 | |
| 704 | return start_addr; |
| 705 | } |
| 706 | |
| 707 | static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi) |
| 708 | { |
| 709 | return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum); |
| 710 | } |
| 711 | |
| 712 | static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi, |
Gu Zheng | ef86d70 | 2013-11-19 18:03:38 +0800 | [diff] [blame] | 713 | struct inode *inode) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 714 | { |
| 715 | block_t valid_block_count; |
| 716 | unsigned int valid_node_count; |
| 717 | |
| 718 | spin_lock(&sbi->stat_lock); |
| 719 | |
Gu Zheng | ef86d70 | 2013-11-19 18:03:38 +0800 | [diff] [blame] | 720 | valid_block_count = sbi->total_valid_block_count + 1; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 721 | if (valid_block_count > sbi->user_block_count) { |
| 722 | spin_unlock(&sbi->stat_lock); |
| 723 | return false; |
| 724 | } |
| 725 | |
Gu Zheng | ef86d70 | 2013-11-19 18:03:38 +0800 | [diff] [blame] | 726 | valid_node_count = sbi->total_valid_node_count + 1; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 727 | if (valid_node_count > sbi->total_node_count) { |
| 728 | spin_unlock(&sbi->stat_lock); |
| 729 | return false; |
| 730 | } |
| 731 | |
| 732 | if (inode) |
Gu Zheng | ef86d70 | 2013-11-19 18:03:38 +0800 | [diff] [blame] | 733 | inode->i_blocks++; |
| 734 | |
| 735 | sbi->alloc_valid_block_count++; |
| 736 | sbi->total_valid_node_count++; |
| 737 | sbi->total_valid_block_count++; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 738 | spin_unlock(&sbi->stat_lock); |
| 739 | |
| 740 | return true; |
| 741 | } |
| 742 | |
| 743 | static inline void dec_valid_node_count(struct f2fs_sb_info *sbi, |
Gu Zheng | ef86d70 | 2013-11-19 18:03:38 +0800 | [diff] [blame] | 744 | struct inode *inode) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 745 | { |
| 746 | spin_lock(&sbi->stat_lock); |
| 747 | |
Gu Zheng | ef86d70 | 2013-11-19 18:03:38 +0800 | [diff] [blame] | 748 | f2fs_bug_on(!sbi->total_valid_block_count); |
| 749 | f2fs_bug_on(!sbi->total_valid_node_count); |
| 750 | f2fs_bug_on(!inode->i_blocks); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 751 | |
Gu Zheng | ef86d70 | 2013-11-19 18:03:38 +0800 | [diff] [blame] | 752 | inode->i_blocks--; |
| 753 | sbi->total_valid_node_count--; |
| 754 | sbi->total_valid_block_count--; |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 755 | |
| 756 | spin_unlock(&sbi->stat_lock); |
| 757 | } |
| 758 | |
| 759 | static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi) |
| 760 | { |
| 761 | unsigned int ret; |
| 762 | spin_lock(&sbi->stat_lock); |
| 763 | ret = sbi->total_valid_node_count; |
| 764 | spin_unlock(&sbi->stat_lock); |
| 765 | return ret; |
| 766 | } |
| 767 | |
| 768 | static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi) |
| 769 | { |
| 770 | spin_lock(&sbi->stat_lock); |
Jaegeuk Kim | 5d56b67 | 2013-10-29 15:14:54 +0900 | [diff] [blame] | 771 | f2fs_bug_on(sbi->total_valid_inode_count == sbi->total_node_count); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 772 | sbi->total_valid_inode_count++; |
| 773 | spin_unlock(&sbi->stat_lock); |
| 774 | } |
| 775 | |
| 776 | static inline int dec_valid_inode_count(struct f2fs_sb_info *sbi) |
| 777 | { |
| 778 | spin_lock(&sbi->stat_lock); |
Jaegeuk Kim | 5d56b67 | 2013-10-29 15:14:54 +0900 | [diff] [blame] | 779 | f2fs_bug_on(!sbi->total_valid_inode_count); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 780 | sbi->total_valid_inode_count--; |
| 781 | spin_unlock(&sbi->stat_lock); |
| 782 | return 0; |
| 783 | } |
| 784 | |
| 785 | static inline unsigned int valid_inode_count(struct f2fs_sb_info *sbi) |
| 786 | { |
| 787 | unsigned int ret; |
| 788 | spin_lock(&sbi->stat_lock); |
| 789 | ret = sbi->total_valid_inode_count; |
| 790 | spin_unlock(&sbi->stat_lock); |
| 791 | return ret; |
| 792 | } |
| 793 | |
| 794 | static inline void f2fs_put_page(struct page *page, int unlock) |
| 795 | { |
| 796 | if (!page || IS_ERR(page)) |
| 797 | return; |
| 798 | |
| 799 | if (unlock) { |
Jaegeuk Kim | 5d56b67 | 2013-10-29 15:14:54 +0900 | [diff] [blame] | 800 | f2fs_bug_on(!PageLocked(page)); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 801 | unlock_page(page); |
| 802 | } |
| 803 | page_cache_release(page); |
| 804 | } |
| 805 | |
| 806 | static inline void f2fs_put_dnode(struct dnode_of_data *dn) |
| 807 | { |
| 808 | if (dn->node_page) |
| 809 | f2fs_put_page(dn->node_page, 1); |
| 810 | if (dn->inode_page && dn->node_page != dn->inode_page) |
| 811 | f2fs_put_page(dn->inode_page, 0); |
| 812 | dn->node_page = NULL; |
| 813 | dn->inode_page = NULL; |
| 814 | } |
| 815 | |
| 816 | static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name, |
| 817 | size_t size, void (*ctor)(void *)) |
| 818 | { |
| 819 | return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, ctor); |
| 820 | } |
| 821 | |
Gu Zheng | 7bd5938 | 2013-10-22 14:52:26 +0800 | [diff] [blame] | 822 | static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep, |
| 823 | gfp_t flags) |
| 824 | { |
| 825 | void *entry; |
| 826 | retry: |
| 827 | entry = kmem_cache_alloc(cachep, flags); |
| 828 | if (!entry) { |
| 829 | cond_resched(); |
| 830 | goto retry; |
| 831 | } |
| 832 | |
| 833 | return entry; |
| 834 | } |
| 835 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 836 | #define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino) |
| 837 | |
| 838 | static inline bool IS_INODE(struct page *page) |
| 839 | { |
Gu Zheng | 4559071 | 2013-07-15 17:57:38 +0800 | [diff] [blame] | 840 | struct f2fs_node *p = F2FS_NODE(page); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 841 | return RAW_IS_INODE(p); |
| 842 | } |
| 843 | |
| 844 | static inline __le32 *blkaddr_in_node(struct f2fs_node *node) |
| 845 | { |
| 846 | return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr; |
| 847 | } |
| 848 | |
| 849 | static inline block_t datablock_addr(struct page *node_page, |
| 850 | unsigned int offset) |
| 851 | { |
| 852 | struct f2fs_node *raw_node; |
| 853 | __le32 *addr_array; |
Gu Zheng | 4559071 | 2013-07-15 17:57:38 +0800 | [diff] [blame] | 854 | raw_node = F2FS_NODE(node_page); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 855 | addr_array = blkaddr_in_node(raw_node); |
| 856 | return le32_to_cpu(addr_array[offset]); |
| 857 | } |
| 858 | |
| 859 | static inline int f2fs_test_bit(unsigned int nr, char *addr) |
| 860 | { |
| 861 | int mask; |
| 862 | |
| 863 | addr += (nr >> 3); |
| 864 | mask = 1 << (7 - (nr & 0x07)); |
| 865 | return mask & *addr; |
| 866 | } |
| 867 | |
| 868 | static inline int f2fs_set_bit(unsigned int nr, char *addr) |
| 869 | { |
| 870 | int mask; |
| 871 | int ret; |
| 872 | |
| 873 | addr += (nr >> 3); |
| 874 | mask = 1 << (7 - (nr & 0x07)); |
| 875 | ret = mask & *addr; |
| 876 | *addr |= mask; |
| 877 | return ret; |
| 878 | } |
| 879 | |
| 880 | static inline int f2fs_clear_bit(unsigned int nr, char *addr) |
| 881 | { |
| 882 | int mask; |
| 883 | int ret; |
| 884 | |
| 885 | addr += (nr >> 3); |
| 886 | mask = 1 << (7 - (nr & 0x07)); |
| 887 | ret = mask & *addr; |
| 888 | *addr &= ~mask; |
| 889 | return ret; |
| 890 | } |
| 891 | |
| 892 | /* used for f2fs_inode_info->flags */ |
| 893 | enum { |
| 894 | FI_NEW_INODE, /* indicate newly allocated inode */ |
Jaegeuk Kim | b378387 | 2013-06-10 09:17:01 +0900 | [diff] [blame] | 895 | FI_DIRTY_INODE, /* indicate inode is dirty or not */ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 896 | FI_INC_LINK, /* need to increment i_nlink */ |
| 897 | FI_ACL_MODE, /* indicate acl mode */ |
| 898 | FI_NO_ALLOC, /* should not allocate any blocks */ |
Jaegeuk Kim | 699489b | 2013-06-07 22:08:23 +0900 | [diff] [blame] | 899 | FI_UPDATE_DIR, /* should update inode block for consistency */ |
Jaegeuk Kim | 74d0b91 | 2013-05-15 16:40:02 +0900 | [diff] [blame] | 900 | FI_DELAY_IPUT, /* used for the recovery */ |
Jaegeuk Kim | c11abd1 | 2013-11-19 10:41:54 +0900 | [diff] [blame] | 901 | FI_NO_EXTENT, /* not to use the extent cache */ |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 902 | FI_INLINE_XATTR, /* used for inline xattr */ |
Huajun Li | 1001b34 | 2013-11-10 23:13:16 +0800 | [diff] [blame^] | 903 | FI_INLINE_DATA, /* used for inline data*/ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 904 | }; |
| 905 | |
| 906 | static inline void set_inode_flag(struct f2fs_inode_info *fi, int flag) |
| 907 | { |
| 908 | set_bit(flag, &fi->flags); |
| 909 | } |
| 910 | |
| 911 | static inline int is_inode_flag_set(struct f2fs_inode_info *fi, int flag) |
| 912 | { |
| 913 | return test_bit(flag, &fi->flags); |
| 914 | } |
| 915 | |
| 916 | static inline void clear_inode_flag(struct f2fs_inode_info *fi, int flag) |
| 917 | { |
| 918 | clear_bit(flag, &fi->flags); |
| 919 | } |
| 920 | |
| 921 | static inline void set_acl_inode(struct f2fs_inode_info *fi, umode_t mode) |
| 922 | { |
| 923 | fi->i_acl_mode = mode; |
| 924 | set_inode_flag(fi, FI_ACL_MODE); |
| 925 | } |
| 926 | |
| 927 | static inline int cond_clear_inode_flag(struct f2fs_inode_info *fi, int flag) |
| 928 | { |
| 929 | if (is_inode_flag_set(fi, FI_ACL_MODE)) { |
| 930 | clear_inode_flag(fi, FI_ACL_MODE); |
| 931 | return 1; |
| 932 | } |
| 933 | return 0; |
| 934 | } |
| 935 | |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 936 | static inline void get_inline_info(struct f2fs_inode_info *fi, |
| 937 | struct f2fs_inode *ri) |
| 938 | { |
| 939 | if (ri->i_inline & F2FS_INLINE_XATTR) |
| 940 | set_inode_flag(fi, FI_INLINE_XATTR); |
Huajun Li | 1001b34 | 2013-11-10 23:13:16 +0800 | [diff] [blame^] | 941 | if (ri->i_inline & F2FS_INLINE_DATA) |
| 942 | set_inode_flag(fi, FI_INLINE_DATA); |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 943 | } |
| 944 | |
| 945 | static inline void set_raw_inline(struct f2fs_inode_info *fi, |
| 946 | struct f2fs_inode *ri) |
| 947 | { |
| 948 | ri->i_inline = 0; |
| 949 | |
| 950 | if (is_inode_flag_set(fi, FI_INLINE_XATTR)) |
| 951 | ri->i_inline |= F2FS_INLINE_XATTR; |
Huajun Li | 1001b34 | 2013-11-10 23:13:16 +0800 | [diff] [blame^] | 952 | if (is_inode_flag_set(fi, FI_INLINE_DATA)) |
| 953 | ri->i_inline |= F2FS_INLINE_DATA; |
Jaegeuk Kim | 444c580 | 2013-08-08 15:16:22 +0900 | [diff] [blame] | 954 | } |
| 955 | |
Jaegeuk Kim | de93653 | 2013-08-12 21:08:03 +0900 | [diff] [blame] | 956 | static inline unsigned int addrs_per_inode(struct f2fs_inode_info *fi) |
| 957 | { |
| 958 | if (is_inode_flag_set(fi, FI_INLINE_XATTR)) |
| 959 | return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS; |
| 960 | return DEF_ADDRS_PER_INODE; |
| 961 | } |
| 962 | |
Jaegeuk Kim | 65985d9 | 2013-08-14 21:57:27 +0900 | [diff] [blame] | 963 | static inline void *inline_xattr_addr(struct page *page) |
| 964 | { |
| 965 | struct f2fs_inode *ri; |
| 966 | ri = (struct f2fs_inode *)page_address(page); |
| 967 | return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE - |
| 968 | F2FS_INLINE_XATTR_ADDRS]); |
| 969 | } |
| 970 | |
| 971 | static inline int inline_xattr_size(struct inode *inode) |
| 972 | { |
| 973 | if (is_inode_flag_set(F2FS_I(inode), FI_INLINE_XATTR)) |
| 974 | return F2FS_INLINE_XATTR_ADDRS << 2; |
| 975 | else |
| 976 | return 0; |
| 977 | } |
| 978 | |
Huajun Li | 1001b34 | 2013-11-10 23:13:16 +0800 | [diff] [blame^] | 979 | static inline void *inline_data_addr(struct page *page) |
| 980 | { |
| 981 | struct f2fs_inode *ri; |
| 982 | ri = (struct f2fs_inode *)page_address(page); |
| 983 | return (void *)&(ri->i_addr[1]); |
| 984 | } |
| 985 | |
Jaegeuk Kim | 77888c1 | 2013-05-20 20:28:47 +0900 | [diff] [blame] | 986 | static inline int f2fs_readonly(struct super_block *sb) |
| 987 | { |
| 988 | return sb->s_flags & MS_RDONLY; |
| 989 | } |
| 990 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 991 | /* |
| 992 | * file.c |
| 993 | */ |
| 994 | int f2fs_sync_file(struct file *, loff_t, loff_t, int); |
| 995 | void truncate_data_blocks(struct dnode_of_data *); |
| 996 | void f2fs_truncate(struct inode *); |
Jaegeuk Kim | 2d4d9fb5 | 2013-06-07 16:33:07 +0900 | [diff] [blame] | 997 | int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 998 | int f2fs_setattr(struct dentry *, struct iattr *); |
| 999 | int truncate_hole(struct inode *, pgoff_t, pgoff_t); |
Jaegeuk Kim | b292dcab | 2013-05-22 08:02:02 +0900 | [diff] [blame] | 1000 | int truncate_data_blocks_range(struct dnode_of_data *, int); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1001 | long f2fs_ioctl(struct file *, unsigned int, unsigned long); |
Namjae Jeon | e975082 | 2013-02-04 23:41:41 +0900 | [diff] [blame] | 1002 | long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1003 | |
| 1004 | /* |
| 1005 | * inode.c |
| 1006 | */ |
| 1007 | void f2fs_set_inode_flags(struct inode *); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1008 | struct inode *f2fs_iget(struct super_block *, unsigned long); |
Jaegeuk Kim | 4660f9c | 2013-10-24 14:19:18 +0900 | [diff] [blame] | 1009 | int try_to_free_nats(struct f2fs_sb_info *, int); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1010 | void update_inode(struct inode *, struct page *); |
Jaegeuk Kim | 3993683 | 2012-11-22 16:21:29 +0900 | [diff] [blame] | 1011 | int update_inode_page(struct inode *); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1012 | int f2fs_write_inode(struct inode *, struct writeback_control *); |
| 1013 | void f2fs_evict_inode(struct inode *); |
| 1014 | |
| 1015 | /* |
| 1016 | * namei.c |
| 1017 | */ |
| 1018 | struct dentry *f2fs_get_parent(struct dentry *child); |
| 1019 | |
| 1020 | /* |
| 1021 | * dir.c |
| 1022 | */ |
| 1023 | struct f2fs_dir_entry *f2fs_find_entry(struct inode *, struct qstr *, |
| 1024 | struct page **); |
| 1025 | struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **); |
| 1026 | ino_t f2fs_inode_by_name(struct inode *, struct qstr *); |
| 1027 | void f2fs_set_link(struct inode *, struct f2fs_dir_entry *, |
| 1028 | struct page *, struct inode *); |
Jaegeuk Kim | 1cd14ca | 2013-07-18 18:02:31 +0900 | [diff] [blame] | 1029 | int update_dent_inode(struct inode *, const struct qstr *); |
Al Viro | b7f7a5e | 2013-01-25 16:15:43 -0500 | [diff] [blame] | 1030 | int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1031 | void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *); |
| 1032 | int f2fs_make_empty(struct inode *, struct inode *); |
| 1033 | bool f2fs_empty_dir(struct inode *); |
| 1034 | |
Al Viro | b7f7a5e | 2013-01-25 16:15:43 -0500 | [diff] [blame] | 1035 | static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode) |
| 1036 | { |
| 1037 | return __f2fs_add_link(dentry->d_parent->d_inode, &dentry->d_name, |
| 1038 | inode); |
| 1039 | } |
| 1040 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1041 | /* |
| 1042 | * super.c |
| 1043 | */ |
| 1044 | int f2fs_sync_fs(struct super_block *, int); |
Namjae Jeon | a07ef78 | 2012-12-30 14:52:05 +0900 | [diff] [blame] | 1045 | extern __printf(3, 4) |
| 1046 | void f2fs_msg(struct super_block *, const char *, const char *, ...); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1047 | |
| 1048 | /* |
| 1049 | * hash.c |
| 1050 | */ |
Leon Romanovsky | 9836b8b | 2012-12-27 19:55:46 +0200 | [diff] [blame] | 1051 | f2fs_hash_t f2fs_dentry_hash(const char *, size_t); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1052 | |
| 1053 | /* |
| 1054 | * node.c |
| 1055 | */ |
| 1056 | struct dnode_of_data; |
| 1057 | struct node_info; |
| 1058 | |
| 1059 | int is_checkpointed_node(struct f2fs_sb_info *, nid_t); |
| 1060 | void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *); |
| 1061 | int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int); |
| 1062 | int truncate_inode_blocks(struct inode *, pgoff_t); |
Jaegeuk Kim | 4f16fb0 | 2013-08-14 20:40:06 +0900 | [diff] [blame] | 1063 | int truncate_xattr_node(struct inode *, struct page *); |
Jaegeuk Kim | cfe58f9 | 2013-10-31 14:57:01 +0900 | [diff] [blame] | 1064 | int wait_on_node_pages_writeback(struct f2fs_sb_info *, nid_t); |
Gu Zheng | 58e674d | 2013-11-19 18:03:18 +0800 | [diff] [blame] | 1065 | void remove_inode_page(struct inode *); |
Jaegeuk Kim | 44a83ff | 2013-05-20 10:10:29 +0900 | [diff] [blame] | 1066 | struct page *new_inode_page(struct inode *, const struct qstr *); |
Jaegeuk Kim | 8ae8f16 | 2013-06-03 19:46:19 +0900 | [diff] [blame] | 1067 | struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1068 | void ra_node_page(struct f2fs_sb_info *, nid_t); |
| 1069 | struct page *get_node_page(struct f2fs_sb_info *, pgoff_t); |
| 1070 | struct page *get_node_page_ra(struct page *, int); |
| 1071 | void sync_inode_page(struct dnode_of_data *); |
| 1072 | int sync_node_pages(struct f2fs_sb_info *, nid_t, struct writeback_control *); |
| 1073 | bool alloc_nid(struct f2fs_sb_info *, nid_t *); |
| 1074 | void alloc_nid_done(struct f2fs_sb_info *, nid_t); |
| 1075 | void alloc_nid_failed(struct f2fs_sb_info *, nid_t); |
| 1076 | void recover_node_page(struct f2fs_sb_info *, struct page *, |
| 1077 | struct f2fs_summary *, struct node_info *, block_t); |
| 1078 | int recover_inode_page(struct f2fs_sb_info *, struct page *); |
| 1079 | int restore_node_summary(struct f2fs_sb_info *, unsigned int, |
| 1080 | struct f2fs_summary_block *); |
| 1081 | void flush_nat_entries(struct f2fs_sb_info *); |
| 1082 | int build_node_manager(struct f2fs_sb_info *); |
| 1083 | void destroy_node_manager(struct f2fs_sb_info *); |
Namjae Jeon | 6e6093a | 2013-01-17 00:08:30 +0900 | [diff] [blame] | 1084 | int __init create_node_manager_caches(void); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1085 | void destroy_node_manager_caches(void); |
| 1086 | |
| 1087 | /* |
| 1088 | * segment.c |
| 1089 | */ |
| 1090 | void f2fs_balance_fs(struct f2fs_sb_info *); |
Jaegeuk Kim | 4660f9c | 2013-10-24 14:19:18 +0900 | [diff] [blame] | 1091 | void f2fs_balance_fs_bg(struct f2fs_sb_info *); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1092 | void invalidate_blocks(struct f2fs_sb_info *, block_t); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1093 | void clear_prefree_segments(struct f2fs_sb_info *); |
| 1094 | int npages_for_summary_flush(struct f2fs_sb_info *); |
| 1095 | void allocate_new_segments(struct f2fs_sb_info *); |
| 1096 | struct page *get_sum_page(struct f2fs_sb_info *, unsigned int); |
Jaegeuk Kim | 3cd8a23 | 2012-12-10 09:26:05 +0900 | [diff] [blame] | 1097 | struct bio *f2fs_bio_alloc(struct block_device *, int); |
Jin Xu | a569469 | 2013-08-05 20:02:04 +0800 | [diff] [blame] | 1098 | void f2fs_submit_bio(struct f2fs_sb_info *, enum page_type, bool); |
| 1099 | void f2fs_wait_on_page_writeback(struct page *, enum page_type, bool); |
Jaegeuk Kim | 577e349 | 2013-01-24 19:56:11 +0900 | [diff] [blame] | 1100 | void write_meta_page(struct f2fs_sb_info *, struct page *); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1101 | void write_node_page(struct f2fs_sb_info *, struct page *, unsigned int, |
| 1102 | block_t, block_t *); |
| 1103 | void write_data_page(struct inode *, struct page *, struct dnode_of_data*, |
| 1104 | block_t, block_t *); |
| 1105 | void rewrite_data_page(struct f2fs_sb_info *, struct page *, block_t); |
| 1106 | void recover_data_page(struct f2fs_sb_info *, struct page *, |
| 1107 | struct f2fs_summary *, block_t, block_t); |
| 1108 | void rewrite_node_page(struct f2fs_sb_info *, struct page *, |
| 1109 | struct f2fs_summary *, block_t, block_t); |
| 1110 | void write_data_summaries(struct f2fs_sb_info *, block_t); |
| 1111 | void write_node_summaries(struct f2fs_sb_info *, block_t); |
| 1112 | int lookup_journal_in_cursum(struct f2fs_summary_block *, |
| 1113 | int, unsigned int, int); |
| 1114 | void flush_sit_entries(struct f2fs_sb_info *); |
| 1115 | int build_segment_manager(struct f2fs_sb_info *); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1116 | void destroy_segment_manager(struct f2fs_sb_info *); |
Jaegeuk Kim | 7fd9e54 | 2013-11-15 13:55:58 +0900 | [diff] [blame] | 1117 | int __init create_segment_manager_caches(void); |
| 1118 | void destroy_segment_manager_caches(void); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1119 | |
| 1120 | /* |
| 1121 | * checkpoint.c |
| 1122 | */ |
| 1123 | struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t); |
| 1124 | struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t); |
| 1125 | long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long); |
Jaegeuk Kim | cbd56e7 | 2013-07-30 11:36:53 +0900 | [diff] [blame] | 1126 | int acquire_orphan_inode(struct f2fs_sb_info *); |
| 1127 | void release_orphan_inode(struct f2fs_sb_info *); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1128 | void add_orphan_inode(struct f2fs_sb_info *, nid_t); |
| 1129 | void remove_orphan_inode(struct f2fs_sb_info *, nid_t); |
| 1130 | int recover_orphan_inodes(struct f2fs_sb_info *); |
| 1131 | int get_valid_checkpoint(struct f2fs_sb_info *); |
| 1132 | void set_dirty_dir_page(struct inode *, struct page *); |
Jaegeuk Kim | 5deb826 | 2013-06-05 17:42:45 +0900 | [diff] [blame] | 1133 | void add_dirty_dir_inode(struct inode *); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1134 | void remove_dirty_dir_inode(struct inode *); |
Jaegeuk Kim | 74d0b91 | 2013-05-15 16:40:02 +0900 | [diff] [blame] | 1135 | struct inode *check_dirty_dir_inode(struct f2fs_sb_info *, nid_t); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1136 | void sync_dirty_dir_inodes(struct f2fs_sb_info *); |
Jaegeuk Kim | 4372752 | 2013-02-04 15:11:17 +0900 | [diff] [blame] | 1137 | void write_checkpoint(struct f2fs_sb_info *, bool); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1138 | void init_orphan_info(struct f2fs_sb_info *); |
Namjae Jeon | 6e6093a | 2013-01-17 00:08:30 +0900 | [diff] [blame] | 1139 | int __init create_checkpoint_caches(void); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1140 | void destroy_checkpoint_caches(void); |
| 1141 | |
| 1142 | /* |
| 1143 | * data.c |
| 1144 | */ |
| 1145 | int reserve_new_block(struct dnode_of_data *); |
Huajun Li | b600965 | 2013-11-10 23:13:18 +0800 | [diff] [blame] | 1146 | int f2fs_reserve_block(struct dnode_of_data *, pgoff_t); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1147 | void update_extent_cache(block_t, struct dnode_of_data *); |
Jaegeuk Kim | c718379b | 2013-04-24 13:19:56 +0900 | [diff] [blame] | 1148 | struct page *find_data_page(struct inode *, pgoff_t, bool); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1149 | struct page *get_lock_data_page(struct inode *, pgoff_t); |
Jaegeuk Kim | 64aa7ed | 2013-05-20 09:55:50 +0900 | [diff] [blame] | 1150 | struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1151 | int f2fs_readpage(struct f2fs_sb_info *, struct page *, block_t, int); |
Chao Yu | 924b720 | 2013-11-20 14:46:39 +0800 | [diff] [blame] | 1152 | void f2fs_submit_read_bio(struct f2fs_sb_info *, int); |
| 1153 | void submit_read_page(struct f2fs_sb_info *, struct page *, block_t, int); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1154 | int do_write_data_page(struct page *); |
| 1155 | |
| 1156 | /* |
| 1157 | * gc.c |
| 1158 | */ |
| 1159 | int start_gc_thread(struct f2fs_sb_info *); |
| 1160 | void stop_gc_thread(struct f2fs_sb_info *); |
Jaegeuk Kim | de93653 | 2013-08-12 21:08:03 +0900 | [diff] [blame] | 1161 | block_t start_bidx_of_node(unsigned int, struct f2fs_inode_info *); |
Jaegeuk Kim | 408e937 | 2013-01-03 17:55:52 +0900 | [diff] [blame] | 1162 | int f2fs_gc(struct f2fs_sb_info *); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1163 | void build_gc_manager(struct f2fs_sb_info *); |
Namjae Jeon | 6e6093a | 2013-01-17 00:08:30 +0900 | [diff] [blame] | 1164 | int __init create_gc_caches(void); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1165 | void destroy_gc_caches(void); |
| 1166 | |
| 1167 | /* |
| 1168 | * recovery.c |
| 1169 | */ |
Jaegeuk Kim | 6ead114 | 2013-03-20 19:01:06 +0900 | [diff] [blame] | 1170 | int recover_fsync_data(struct f2fs_sb_info *); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1171 | bool space_for_roll_forward(struct f2fs_sb_info *); |
| 1172 | |
| 1173 | /* |
| 1174 | * debug.c |
| 1175 | */ |
| 1176 | #ifdef CONFIG_F2FS_STAT_FS |
| 1177 | struct f2fs_stat_info { |
| 1178 | struct list_head stat_list; |
| 1179 | struct f2fs_sb_info *sbi; |
| 1180 | struct mutex stat_lock; |
| 1181 | int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs; |
| 1182 | int main_area_segs, main_area_sections, main_area_zones; |
| 1183 | int hit_ext, total_ext; |
| 1184 | int ndirty_node, ndirty_dent, ndirty_dirs, ndirty_meta; |
| 1185 | int nats, sits, fnids; |
| 1186 | int total_count, utilization; |
| 1187 | int bg_gc; |
| 1188 | unsigned int valid_count, valid_node_count, valid_inode_count; |
| 1189 | unsigned int bimodal, avg_vblocks; |
| 1190 | int util_free, util_valid, util_invalid; |
| 1191 | int rsvd_segs, overp_segs; |
| 1192 | int dirty_count, node_pages, meta_pages; |
| 1193 | int prefree_count, call_count; |
| 1194 | int tot_segs, node_segs, data_segs, free_segs, free_secs; |
| 1195 | int tot_blks, data_blks, node_blks; |
| 1196 | int curseg[NR_CURSEG_TYPE]; |
| 1197 | int cursec[NR_CURSEG_TYPE]; |
| 1198 | int curzone[NR_CURSEG_TYPE]; |
| 1199 | |
| 1200 | unsigned int segment_count[2]; |
| 1201 | unsigned int block_count[2]; |
| 1202 | unsigned base_mem, cache_mem; |
| 1203 | }; |
| 1204 | |
Gu Zheng | 963d4f7 | 2013-07-12 14:47:11 +0800 | [diff] [blame] | 1205 | static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi) |
| 1206 | { |
| 1207 | return (struct f2fs_stat_info*)sbi->stat_info; |
| 1208 | } |
| 1209 | |
Jaegeuk Kim | dcdfff6 | 2013-10-22 20:56:10 +0900 | [diff] [blame] | 1210 | #define stat_inc_call_count(si) ((si)->call_count++) |
| 1211 | #define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++) |
| 1212 | #define stat_inc_dirty_dir(sbi) ((sbi)->n_dirty_dirs++) |
| 1213 | #define stat_dec_dirty_dir(sbi) ((sbi)->n_dirty_dirs--) |
| 1214 | #define stat_inc_total_hit(sb) ((F2FS_SB(sb))->total_hit_ext++) |
| 1215 | #define stat_inc_read_hit(sb) ((F2FS_SB(sb))->read_hit_ext++) |
| 1216 | #define stat_inc_seg_type(sbi, curseg) \ |
| 1217 | ((sbi)->segment_count[(curseg)->alloc_type]++) |
| 1218 | #define stat_inc_block_count(sbi, curseg) \ |
| 1219 | ((sbi)->block_count[(curseg)->alloc_type]++) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1220 | |
| 1221 | #define stat_inc_seg_count(sbi, type) \ |
| 1222 | do { \ |
Gu Zheng | 963d4f7 | 2013-07-12 14:47:11 +0800 | [diff] [blame] | 1223 | struct f2fs_stat_info *si = F2FS_STAT(sbi); \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1224 | (si)->tot_segs++; \ |
| 1225 | if (type == SUM_TYPE_DATA) \ |
| 1226 | si->data_segs++; \ |
| 1227 | else \ |
| 1228 | si->node_segs++; \ |
| 1229 | } while (0) |
| 1230 | |
| 1231 | #define stat_inc_tot_blk_count(si, blks) \ |
| 1232 | (si->tot_blks += (blks)) |
| 1233 | |
| 1234 | #define stat_inc_data_blk_count(sbi, blks) \ |
| 1235 | do { \ |
Gu Zheng | 963d4f7 | 2013-07-12 14:47:11 +0800 | [diff] [blame] | 1236 | struct f2fs_stat_info *si = F2FS_STAT(sbi); \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1237 | stat_inc_tot_blk_count(si, blks); \ |
| 1238 | si->data_blks += (blks); \ |
| 1239 | } while (0) |
| 1240 | |
| 1241 | #define stat_inc_node_blk_count(sbi, blks) \ |
| 1242 | do { \ |
Gu Zheng | 963d4f7 | 2013-07-12 14:47:11 +0800 | [diff] [blame] | 1243 | struct f2fs_stat_info *si = F2FS_STAT(sbi); \ |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1244 | stat_inc_tot_blk_count(si, blks); \ |
| 1245 | si->node_blks += (blks); \ |
| 1246 | } while (0) |
| 1247 | |
| 1248 | int f2fs_build_stats(struct f2fs_sb_info *); |
| 1249 | void f2fs_destroy_stats(struct f2fs_sb_info *); |
Namjae Jeon | 6e6093a | 2013-01-17 00:08:30 +0900 | [diff] [blame] | 1250 | void __init f2fs_create_root_stats(void); |
Namjae Jeon | 4589d25 | 2013-01-15 19:58:47 +0900 | [diff] [blame] | 1251 | void f2fs_destroy_root_stats(void); |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1252 | #else |
| 1253 | #define stat_inc_call_count(si) |
Jaegeuk Kim | dcdfff6 | 2013-10-22 20:56:10 +0900 | [diff] [blame] | 1254 | #define stat_inc_bggc_count(si) |
| 1255 | #define stat_inc_dirty_dir(sbi) |
| 1256 | #define stat_dec_dirty_dir(sbi) |
| 1257 | #define stat_inc_total_hit(sb) |
| 1258 | #define stat_inc_read_hit(sb) |
| 1259 | #define stat_inc_seg_type(sbi, curseg) |
| 1260 | #define stat_inc_block_count(sbi, curseg) |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1261 | #define stat_inc_seg_count(si, type) |
| 1262 | #define stat_inc_tot_blk_count(si, blks) |
| 1263 | #define stat_inc_data_blk_count(si, blks) |
| 1264 | #define stat_inc_node_blk_count(sbi, blks) |
| 1265 | |
| 1266 | static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; } |
| 1267 | static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { } |
Namjae Jeon | 6e6093a | 2013-01-17 00:08:30 +0900 | [diff] [blame] | 1268 | static inline void __init f2fs_create_root_stats(void) { } |
Namjae Jeon | 4589d25 | 2013-01-15 19:58:47 +0900 | [diff] [blame] | 1269 | static inline void f2fs_destroy_root_stats(void) { } |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1270 | #endif |
| 1271 | |
| 1272 | extern const struct file_operations f2fs_dir_operations; |
| 1273 | extern const struct file_operations f2fs_file_operations; |
| 1274 | extern const struct inode_operations f2fs_file_inode_operations; |
| 1275 | extern const struct address_space_operations f2fs_dblock_aops; |
| 1276 | extern const struct address_space_operations f2fs_node_aops; |
| 1277 | extern const struct address_space_operations f2fs_meta_aops; |
| 1278 | extern const struct inode_operations f2fs_dir_inode_operations; |
| 1279 | extern const struct inode_operations f2fs_symlink_inode_operations; |
| 1280 | extern const struct inode_operations f2fs_special_inode_operations; |
Huajun Li | 1001b34 | 2013-11-10 23:13:16 +0800 | [diff] [blame^] | 1281 | |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 1282 | #endif |