blob: c4c84af1ec17a0640c80f0137fb0ac0d34b9b669 [file] [log] [blame]
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002 * fs/f2fs/segment.c
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#include <linux/fs.h>
12#include <linux/f2fs_fs.h>
13#include <linux/bio.h>
14#include <linux/blkdev.h>
Geert Uytterhoeven690e4a32012-12-19 22:19:30 +010015#include <linux/prefetch.h>
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +090016#include <linux/kthread.h>
Chao Yu74de5932013-11-22 09:09:59 +080017#include <linux/swap.h>
Jaegeuk Kim60b99b42015-10-05 14:49:57 -070018#include <linux/timer.h>
Jaegeuk Kim351df4b2012-11-02 17:09:16 +090019
20#include "f2fs.h"
21#include "segment.h"
22#include "node.h"
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -080023#include "trace.h"
Namjae Jeon6ec178d2013-04-23 17:51:43 +090024#include <trace/events/f2fs.h>
Jaegeuk Kim351df4b2012-11-02 17:09:16 +090025
Changman Lee9a7f1432013-11-15 10:42:51 +090026#define __reverse_ffz(x) __reverse_ffs(~(x))
27
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090028static struct kmem_cache *discard_entry_slab;
Chao Yu275b66b2016-08-29 23:58:34 +080029static struct kmem_cache *bio_entry_slab;
Chao Yu184a5cd2014-09-04 18:13:01 +080030static struct kmem_cache *sit_entry_set_slab;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -070031static struct kmem_cache *inmem_entry_slab;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090032
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070033static unsigned long __reverse_ulong(unsigned char *str)
34{
35 unsigned long tmp = 0;
36 int shift = 24, idx = 0;
37
38#if BITS_PER_LONG == 64
39 shift = 56;
40#endif
41 while (shift >= 0) {
42 tmp |= (unsigned long)str[idx++] << shift;
43 shift -= BITS_PER_BYTE;
44 }
45 return tmp;
46}
47
Changman Lee9a7f1432013-11-15 10:42:51 +090048/*
49 * __reverse_ffs is copied from include/asm-generic/bitops/__ffs.h since
50 * MSB and LSB are reversed in a byte by f2fs_set_bit.
51 */
52static inline unsigned long __reverse_ffs(unsigned long word)
53{
54 int num = 0;
55
56#if BITS_PER_LONG == 64
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070057 if ((word & 0xffffffff00000000UL) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090058 num += 32;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070059 else
Changman Lee9a7f1432013-11-15 10:42:51 +090060 word >>= 32;
Changman Lee9a7f1432013-11-15 10:42:51 +090061#endif
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070062 if ((word & 0xffff0000) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090063 num += 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070064 else
Changman Lee9a7f1432013-11-15 10:42:51 +090065 word >>= 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070066
67 if ((word & 0xff00) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090068 num += 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070069 else
Changman Lee9a7f1432013-11-15 10:42:51 +090070 word >>= 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070071
Changman Lee9a7f1432013-11-15 10:42:51 +090072 if ((word & 0xf0) == 0)
73 num += 4;
74 else
75 word >>= 4;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070076
Changman Lee9a7f1432013-11-15 10:42:51 +090077 if ((word & 0xc) == 0)
78 num += 2;
79 else
80 word >>= 2;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070081
Changman Lee9a7f1432013-11-15 10:42:51 +090082 if ((word & 0x2) == 0)
83 num += 1;
84 return num;
85}
86
87/*
arter97e1c42042014-08-06 23:22:50 +090088 * __find_rev_next(_zero)_bit is copied from lib/find_next_bit.c because
Changman Lee9a7f1432013-11-15 10:42:51 +090089 * f2fs_set_bit makes MSB and LSB reversed in a byte.
Fan Li692223d2015-11-12 08:43:04 +080090 * @size must be integral times of unsigned long.
Changman Lee9a7f1432013-11-15 10:42:51 +090091 * Example:
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070092 * MSB <--> LSB
93 * f2fs_set_bit(0, bitmap) => 1000 0000
94 * f2fs_set_bit(7, bitmap) => 0000 0001
Changman Lee9a7f1432013-11-15 10:42:51 +090095 */
96static unsigned long __find_rev_next_bit(const unsigned long *addr,
97 unsigned long size, unsigned long offset)
98{
99 const unsigned long *p = addr + BIT_WORD(offset);
Fan Li692223d2015-11-12 08:43:04 +0800100 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900101 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900102
103 if (offset >= size)
104 return size;
105
Fan Li692223d2015-11-12 08:43:04 +0800106 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900107 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900108
Fan Li692223d2015-11-12 08:43:04 +0800109 while (1) {
110 if (*p == 0)
111 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700112
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700113 tmp = __reverse_ulong((unsigned char *)p);
Fan Li692223d2015-11-12 08:43:04 +0800114
115 tmp &= ~0UL >> offset;
116 if (size < BITS_PER_LONG)
117 tmp &= (~0UL << (BITS_PER_LONG - size));
Changman Lee9a7f1432013-11-15 10:42:51 +0900118 if (tmp)
Fan Li692223d2015-11-12 08:43:04 +0800119 goto found;
120pass:
121 if (size <= BITS_PER_LONG)
122 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900123 size -= BITS_PER_LONG;
Fan Li692223d2015-11-12 08:43:04 +0800124 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700125 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900126 }
Fan Li692223d2015-11-12 08:43:04 +0800127 return result;
128found:
129 return result - size + __reverse_ffs(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900130}
131
132static unsigned long __find_rev_next_zero_bit(const unsigned long *addr,
133 unsigned long size, unsigned long offset)
134{
135 const unsigned long *p = addr + BIT_WORD(offset);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800136 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900137 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900138
139 if (offset >= size)
140 return size;
141
Jaegeuk Kim80609442015-12-04 16:51:13 -0800142 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900143 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900144
Jaegeuk Kim80609442015-12-04 16:51:13 -0800145 while (1) {
146 if (*p == ~0UL)
147 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700148
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700149 tmp = __reverse_ulong((unsigned char *)p);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800150
151 if (offset)
152 tmp |= ~0UL << (BITS_PER_LONG - offset);
153 if (size < BITS_PER_LONG)
154 tmp |= ~0UL >> size;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700155 if (tmp != ~0UL)
Jaegeuk Kim80609442015-12-04 16:51:13 -0800156 goto found;
157pass:
158 if (size <= BITS_PER_LONG)
159 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900160 size -= BITS_PER_LONG;
Jaegeuk Kim80609442015-12-04 16:51:13 -0800161 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700162 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900163 }
Jaegeuk Kim80609442015-12-04 16:51:13 -0800164 return result;
165found:
166 return result - size + __reverse_ffz(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900167}
168
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700169void register_inmem_page(struct inode *inode, struct page *page)
170{
171 struct f2fs_inode_info *fi = F2FS_I(inode);
172 struct inmem_pages *new;
Jaegeuk Kim9be32d72014-12-05 10:39:49 -0800173
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -0800174 f2fs_trace_pid(page);
Jaegeuk Kim0722b102014-12-05 11:58:02 -0800175
Chao Yudecd36b2015-08-07 18:42:09 +0800176 set_page_private(page, (unsigned long)ATOMIC_WRITTEN_PAGE);
177 SetPagePrivate(page);
178
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700179 new = f2fs_kmem_cache_alloc(inmem_entry_slab, GFP_NOFS);
180
181 /* add atomic page indices to the list */
182 new->page = page;
183 INIT_LIST_HEAD(&new->list);
Chao Yudecd36b2015-08-07 18:42:09 +0800184
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700185 /* increase reference count with clean state */
186 mutex_lock(&fi->inmem_lock);
187 get_page(page);
188 list_add_tail(&new->list, &fi->inmem_pages);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800189 inc_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700190 mutex_unlock(&fi->inmem_lock);
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700191
192 trace_f2fs_register_inmem_page(page, INMEM);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700193}
194
Chao Yu28bc1062016-02-06 14:40:34 +0800195static int __revoke_inmem_pages(struct inode *inode,
196 struct list_head *head, bool drop, bool recover)
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700197{
Chao Yu28bc1062016-02-06 14:40:34 +0800198 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700199 struct inmem_pages *cur, *tmp;
Chao Yu28bc1062016-02-06 14:40:34 +0800200 int err = 0;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700201
Chao Yu29b96b52016-02-06 14:38:29 +0800202 list_for_each_entry_safe(cur, tmp, head, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800203 struct page *page = cur->page;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700204
Chao Yu28bc1062016-02-06 14:40:34 +0800205 if (drop)
206 trace_f2fs_commit_inmem_page(page, INMEM_DROP);
207
208 lock_page(page);
209
Chao Yu570f12a2018-04-23 10:36:13 +0800210 f2fs_wait_on_page_writeback(page, DATA, true);
211
Chao Yu28bc1062016-02-06 14:40:34 +0800212 if (recover) {
213 struct dnode_of_data dn;
214 struct node_info ni;
215
216 trace_f2fs_commit_inmem_page(page, INMEM_REVOKE);
217
218 set_new_dnode(&dn, inode, NULL, NULL, 0);
219 if (get_dnode_of_data(&dn, page->index, LOOKUP_NODE)) {
220 err = -EAGAIN;
221 goto next;
222 }
223 get_node_info(sbi, dn.nid, &ni);
224 f2fs_replace_block(sbi, &dn, dn.data_blkaddr,
225 cur->old_addr, ni.version, true, true);
226 f2fs_put_dnode(&dn);
227 }
228next:
Jaegeuk Kim63c52d72016-04-12 14:11:03 -0700229 /* we don't need to invalidate this in the sccessful status */
Chao Yu02fe0b22018-07-27 18:15:16 +0800230 if (drop || recover) {
Jaegeuk Kim63c52d72016-04-12 14:11:03 -0700231 ClearPageUptodate(page);
Chao Yu02fe0b22018-07-27 18:15:16 +0800232 clear_cold_data(page);
233 }
Chao Yu28bc1062016-02-06 14:40:34 +0800234 set_page_private(page, 0);
Chao Yuc81ced02016-04-29 20:13:36 +0800235 ClearPagePrivate(page);
Chao Yu28bc1062016-02-06 14:40:34 +0800236 f2fs_put_page(page, 1);
Chao Yudecd36b2015-08-07 18:42:09 +0800237
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700238 list_del(&cur->list);
239 kmem_cache_free(inmem_entry_slab, cur);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800240 dec_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700241 }
Chao Yu28bc1062016-02-06 14:40:34 +0800242 return err;
Chao Yu29b96b52016-02-06 14:38:29 +0800243}
244
245void drop_inmem_pages(struct inode *inode)
246{
247 struct f2fs_inode_info *fi = F2FS_I(inode);
248
Jaegeuk Kim91942322016-05-20 10:13:22 -0700249 clear_inode_flag(inode, FI_ATOMIC_FILE);
Jaegeuk Kim26dc3d42016-04-11 13:15:10 -0700250
Chao Yu29b96b52016-02-06 14:38:29 +0800251 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800252 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
Chao Yu29b96b52016-02-06 14:38:29 +0800253 mutex_unlock(&fi->inmem_lock);
254}
255
Chao Yu28bc1062016-02-06 14:40:34 +0800256static int __commit_inmem_pages(struct inode *inode,
257 struct list_head *revoke_list)
Chao Yu29b96b52016-02-06 14:38:29 +0800258{
259 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
260 struct f2fs_inode_info *fi = F2FS_I(inode);
261 struct inmem_pages *cur, *tmp;
262 struct f2fs_io_info fio = {
263 .sbi = sbi,
264 .type = DATA,
Mike Christie04d328d2016-06-05 14:31:55 -0500265 .op = REQ_OP_WRITE,
266 .op_flags = WRITE_SYNC | REQ_PRIO,
Chao Yu29b96b52016-02-06 14:38:29 +0800267 .encrypted_page = NULL,
268 };
269 bool submit_bio = false;
270 int err = 0;
271
272 list_for_each_entry_safe(cur, tmp, &fi->inmem_pages, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800273 struct page *page = cur->page;
274
275 lock_page(page);
276 if (page->mapping == inode->i_mapping) {
277 trace_f2fs_commit_inmem_page(page, INMEM);
278
279 set_page_dirty(page);
280 f2fs_wait_on_page_writeback(page, DATA, true);
281 if (clear_page_dirty_for_io(page))
Chao Yu29b96b52016-02-06 14:38:29 +0800282 inode_dec_dirty_pages(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800283
284 fio.page = page;
Chao Yu29b96b52016-02-06 14:38:29 +0800285 err = do_write_data_page(&fio);
286 if (err) {
Chao Yu28bc1062016-02-06 14:40:34 +0800287 unlock_page(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800288 break;
289 }
Chao Yu28bc1062016-02-06 14:40:34 +0800290
291 /* record old blkaddr for revoking */
292 cur->old_addr = fio.old_blkaddr;
293
294 clear_cold_data(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800295 submit_bio = true;
296 }
Chao Yu28bc1062016-02-06 14:40:34 +0800297 unlock_page(page);
298 list_move_tail(&cur->list, revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800299 }
300
301 if (submit_bio)
302 f2fs_submit_merged_bio_cond(sbi, inode, NULL, 0, DATA, WRITE);
Chao Yu28bc1062016-02-06 14:40:34 +0800303
304 if (!err)
305 __revoke_inmem_pages(inode, revoke_list, false, false);
306
Chao Yu29b96b52016-02-06 14:38:29 +0800307 return err;
308}
309
310int commit_inmem_pages(struct inode *inode)
311{
312 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
313 struct f2fs_inode_info *fi = F2FS_I(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800314 struct list_head revoke_list;
315 int err;
Chao Yu29b96b52016-02-06 14:38:29 +0800316
Chao Yu28bc1062016-02-06 14:40:34 +0800317 INIT_LIST_HEAD(&revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800318 f2fs_balance_fs(sbi, true);
319 f2fs_lock_op(sbi);
320
321 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800322 err = __commit_inmem_pages(inode, &revoke_list);
323 if (err) {
324 int ret;
325 /*
326 * try to revoke all committed pages, but still we could fail
327 * due to no memory or other reason, if that happened, EAGAIN
328 * will be returned, which means in such case, transaction is
329 * already not integrity, caller should use journal to do the
330 * recovery or rewrite & commit last transaction. For other
331 * error number, revoking was done by filesystem itself.
332 */
333 ret = __revoke_inmem_pages(inode, &revoke_list, false, true);
334 if (ret)
335 err = ret;
336
337 /* drop all uncommitted pages */
338 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
339 }
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700340 mutex_unlock(&fi->inmem_lock);
341
Chao Yu29b96b52016-02-06 14:38:29 +0800342 f2fs_unlock_op(sbi);
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700343 return err;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700344}
345
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900346/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900347 * This function balances dirty node and dentry pages.
348 * In addition, it controls garbage collection.
349 */
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800350void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900351{
Chao Yu0f348022016-09-26 19:45:55 +0800352#ifdef CONFIG_F2FS_FAULT_INJECTION
353 if (time_to_inject(sbi, FAULT_CHECKPOINT))
354 f2fs_stop_checkpoint(sbi, false);
355#endif
356
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800357 if (!need)
358 return;
Jaegeuk Kime589c2c2016-06-02 15:24:24 -0700359
360 /* balance_fs_bg is able to be pending */
361 if (excess_cached_nats(sbi))
362 f2fs_balance_fs_bg(sbi);
363
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900364 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900365 * We should do GC or end up with checkpoint, if there are so many dirty
366 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900367 */
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700368 if (has_not_enough_free_secs(sbi, 0, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900369 mutex_lock(&sbi->gc_mutex);
Chao Yud530d4d2015-10-05 22:22:44 +0800370 f2fs_gc(sbi, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900371 }
372}
373
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900374void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
375{
Chao Yub7ea2b82018-05-26 18:03:34 +0800376 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
377 return;
378
Chao Yu1dcc3362015-02-05 17:57:31 +0800379 /* try to shrink extent cache when there is no enough memory */
Jaegeuk Kim554df792015-06-19 13:41:23 -0700380 if (!available_free_memory(sbi, EXTENT_CACHE))
381 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800382
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700383 /* check the # of cached NAT entries */
384 if (!available_free_memory(sbi, NAT_ENTRIES))
385 try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
386
Chao Yu31696582015-07-28 18:33:46 +0800387 if (!available_free_memory(sbi, FREE_NIDS))
Jaegeuk Kimad4edb82016-06-16 16:41:49 -0700388 try_to_free_nids(sbi, MAX_FREE_NIDS);
389 else
390 build_free_nids(sbi);
Chao Yu31696582015-07-28 18:33:46 +0800391
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700392 /* checkpoint is the only way to shrink partial cached entries */
393 if (!available_free_memory(sbi, NAT_ENTRIES) ||
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700394 !available_free_memory(sbi, INO_ENTRIES) ||
Chao Yu7d768d22016-01-18 18:31:18 +0800395 excess_prefree_segs(sbi) ||
396 excess_dirty_nats(sbi) ||
Jaegeuk Kimd0239e12016-01-08 16:57:48 -0800397 (is_idle(sbi) && f2fs_time_over(sbi, CP_TIME))) {
Chao Yue9f5b8b2016-02-14 18:54:33 +0800398 if (test_opt(sbi, DATA_FLUSH)) {
399 struct blk_plug plug;
400
401 blk_start_plug(&plug);
Chao Yu36b35a02015-12-17 17:13:28 +0800402 sync_dirty_inodes(sbi, FILE_INODE);
Chao Yue9f5b8b2016-02-14 18:54:33 +0800403 blk_finish_plug(&plug);
404 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900405 f2fs_sync_fs(sbi->sb, true);
Jaegeuk Kim42190d22016-01-09 13:45:17 -0800406 stat_inc_bg_cp_count(sbi->stat_info);
Chao Yu36b35a02015-12-17 17:13:28 +0800407 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900408}
409
Gu Zheng2163d192014-04-27 14:21:33 +0800410static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900411{
412 struct f2fs_sb_info *sbi = data;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800413 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
414 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900415repeat:
416 if (kthread_should_stop())
417 return 0;
418
Gu Zheng721bd4d2014-09-05 18:31:00 +0800419 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700420 struct bio *bio;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900421 struct flush_cmd *cmd, *next;
422 int ret;
423
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700424 bio = f2fs_bio_alloc(0);
425
Gu Zheng721bd4d2014-09-05 18:31:00 +0800426 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
427 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
428
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900429 bio->bi_bdev = sbi->sb->s_bdev;
Mike Christie04d328d2016-06-05 14:31:55 -0500430 bio_set_op_attrs(bio, REQ_OP_WRITE, WRITE_FLUSH);
Mike Christie4e49ea42016-06-05 14:31:41 -0500431 ret = submit_bio_wait(bio);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900432
Gu Zheng721bd4d2014-09-05 18:31:00 +0800433 llist_for_each_entry_safe(cmd, next,
434 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900435 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900436 complete(&cmd->wait);
437 }
Gu Zhenga4ed23f2014-04-11 17:49:35 +0800438 bio_put(bio);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800439 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900440 }
441
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800442 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800443 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900444 goto repeat;
445}
446
447int f2fs_issue_flush(struct f2fs_sb_info *sbi)
448{
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800449 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800450 struct flush_cmd cmd;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900451
Jaegeuk Kim24a9ee02014-07-25 17:46:10 -0700452 trace_f2fs_issue_flush(sbi->sb, test_opt(sbi, NOBARRIER),
453 test_opt(sbi, FLUSH_MERGE));
454
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700455 if (test_opt(sbi, NOBARRIER))
456 return 0;
457
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700458 if (!test_opt(sbi, FLUSH_MERGE) || !atomic_read(&fcc->submit_flush)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700459 struct bio *bio = f2fs_bio_alloc(0);
460 int ret;
461
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700462 atomic_inc(&fcc->submit_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700463 bio->bi_bdev = sbi->sb->s_bdev;
Mike Christie04d328d2016-06-05 14:31:55 -0500464 bio_set_op_attrs(bio, REQ_OP_WRITE, WRITE_FLUSH);
Mike Christie4e49ea42016-06-05 14:31:41 -0500465 ret = submit_bio_wait(bio);
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700466 atomic_dec(&fcc->submit_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700467 bio_put(bio);
468 return ret;
469 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900470
Chao Yuadf8d902014-05-08 17:00:35 +0800471 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900472
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700473 atomic_inc(&fcc->submit_flush);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800474 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900475
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800476 if (!fcc->dispatch_list)
477 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900478
Chao Yuadf8d902014-05-08 17:00:35 +0800479 wait_for_completion(&cmd.wait);
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700480 atomic_dec(&fcc->submit_flush);
Chao Yuadf8d902014-05-08 17:00:35 +0800481
482 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900483}
484
Gu Zheng2163d192014-04-27 14:21:33 +0800485int create_flush_cmd_control(struct f2fs_sb_info *sbi)
486{
487 dev_t dev = sbi->sb->s_bdev->bd_dev;
488 struct flush_cmd_control *fcc;
489 int err = 0;
490
491 fcc = kzalloc(sizeof(struct flush_cmd_control), GFP_KERNEL);
492 if (!fcc)
493 return -ENOMEM;
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700494 atomic_set(&fcc->submit_flush, 0);
Gu Zheng2163d192014-04-27 14:21:33 +0800495 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800496 init_llist_head(&fcc->issue_list);
Chao Yu6b2920a2014-07-07 11:21:59 +0800497 SM_I(sbi)->cmd_control_info = fcc;
Yunlei He3b19f962017-06-01 16:43:51 +0800498 if (!test_opt(sbi, FLUSH_MERGE))
499 return err;
500
Gu Zheng2163d192014-04-27 14:21:33 +0800501 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
502 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
503 if (IS_ERR(fcc->f2fs_issue_flush)) {
504 err = PTR_ERR(fcc->f2fs_issue_flush);
505 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800506 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800507 return err;
508 }
Gu Zheng2163d192014-04-27 14:21:33 +0800509
510 return err;
511}
512
513void destroy_flush_cmd_control(struct f2fs_sb_info *sbi)
514{
Chao Yu6b2920a2014-07-07 11:21:59 +0800515 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800516
517 if (fcc && fcc->f2fs_issue_flush)
518 kthread_stop(fcc->f2fs_issue_flush);
519 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800520 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800521}
522
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900523static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
524 enum dirty_type dirty_type)
525{
526 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
527
528 /* need not be added */
529 if (IS_CURSEG(sbi, segno))
530 return;
531
532 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
533 dirty_i->nr_dirty[dirty_type]++;
534
535 if (dirty_type == DIRTY) {
536 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900537 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900538
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700539 if (unlikely(t >= DIRTY)) {
540 f2fs_bug_on(sbi, 1);
541 return;
542 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900543 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
544 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900545 }
546}
547
548static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
549 enum dirty_type dirty_type)
550{
551 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
552
553 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
554 dirty_i->nr_dirty[dirty_type]--;
555
556 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900557 struct seg_entry *sentry = get_seg_entry(sbi, segno);
558 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900559
Changman Lee4625d6a2013-10-25 17:31:57 +0900560 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
561 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900562
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900563 if (get_valid_blocks(sbi, segno, sbi->segs_per_sec) == 0)
564 clear_bit(GET_SECNO(sbi, segno),
565 dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900566 }
567}
568
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900569/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900570 * Should not occur error such as -ENOMEM.
571 * Adding dirty entry into seglist is not critical operation.
572 * If a given segment is one of current working segments, it won't be added.
573 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800574static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900575{
576 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
577 unsigned short valid_blocks;
578
579 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
580 return;
581
582 mutex_lock(&dirty_i->seglist_lock);
583
584 valid_blocks = get_valid_blocks(sbi, segno, 0);
585
586 if (valid_blocks == 0) {
587 __locate_dirty_segment(sbi, segno, PRE);
588 __remove_dirty_segment(sbi, segno, DIRTY);
589 } else if (valid_blocks < sbi->blocks_per_seg) {
590 __locate_dirty_segment(sbi, segno, DIRTY);
591 } else {
592 /* Recovery routine with SSR needs this */
593 __remove_dirty_segment(sbi, segno, DIRTY);
594 }
595
596 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900597}
598
Chao Yu275b66b2016-08-29 23:58:34 +0800599static struct bio_entry *__add_bio_entry(struct f2fs_sb_info *sbi,
600 struct bio *bio)
601{
602 struct list_head *wait_list = &(SM_I(sbi)->wait_list);
603 struct bio_entry *be = f2fs_kmem_cache_alloc(bio_entry_slab, GFP_NOFS);
604
605 INIT_LIST_HEAD(&be->list);
606 be->bio = bio;
607 init_completion(&be->event);
608 list_add_tail(&be->list, wait_list);
609
610 return be;
611}
612
613void f2fs_wait_all_discard_bio(struct f2fs_sb_info *sbi)
614{
615 struct list_head *wait_list = &(SM_I(sbi)->wait_list);
616 struct bio_entry *be, *tmp;
617
618 list_for_each_entry_safe(be, tmp, wait_list, list) {
619 struct bio *bio = be->bio;
620 int err;
621
622 wait_for_completion_io(&be->event);
623 err = be->error;
624 if (err == -EOPNOTSUPP)
625 err = 0;
626
627 if (err)
628 f2fs_msg(sbi->sb, KERN_INFO,
629 "Issue discard failed, ret: %d", err);
630
631 bio_put(bio);
632 list_del(&be->list);
633 kmem_cache_free(bio_entry_slab, be);
634 }
635}
636
637static void f2fs_submit_bio_wait_endio(struct bio *bio)
638{
639 struct bio_entry *be = (struct bio_entry *)bio->bi_private;
640
641 be->error = bio->bi_error;
642 complete(&be->event);
643}
644
645/* this function is copied from blkdev_issue_discard from block/blk-lib.c */
646int __f2fs_issue_discard_async(struct f2fs_sb_info *sbi, sector_t sector,
647 sector_t nr_sects, gfp_t gfp_mask, unsigned long flags)
648{
649 struct block_device *bdev = sbi->sb->s_bdev;
650 struct bio *bio = NULL;
651 int err;
652
653 err = __blkdev_issue_discard(bdev, sector, nr_sects, gfp_mask, flags,
654 &bio);
655 if (!err && bio) {
656 struct bio_entry *be = __add_bio_entry(sbi, bio);
657
658 bio->bi_private = be;
659 bio->bi_end_io = f2fs_submit_bio_wait_endio;
660 bio->bi_opf |= REQ_SYNC;
661 submit_bio(bio);
662 }
663
664 return err;
665}
666
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900667static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +0900668 block_t blkstart, block_t blklen)
669{
Chao Yu55cf9cb2014-09-15 18:01:10 +0800670 sector_t start = SECTOR_FROM_BLOCK(blkstart);
671 sector_t len = SECTOR_FROM_BLOCK(blklen);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700672 struct seg_entry *se;
673 unsigned int offset;
674 block_t i;
675
676 for (i = blkstart; i < blkstart + blklen; i++) {
677 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
678 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
679
680 if (!f2fs_test_and_set_bit(offset, se->discard_map))
681 sbi->discard_blks--;
682 }
Jaegeuk Kim1661d072013-11-12 17:01:00 +0900683 trace_f2fs_issue_discard(sbi->sb, blkstart, blklen);
Chao Yu275b66b2016-08-29 23:58:34 +0800684 return __f2fs_issue_discard_async(sbi, start, len, GFP_NOFS, 0);
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900685}
686
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700687static void __add_discard_entry(struct f2fs_sb_info *sbi,
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700688 struct cp_control *cpc, struct seg_entry *se,
689 unsigned int start, unsigned int end)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900690{
691 struct list_head *head = &SM_I(sbi)->discard_list;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700692 struct discard_entry *new, *last;
693
694 if (!list_empty(head)) {
695 last = list_last_entry(head, struct discard_entry, list);
696 if (START_BLOCK(sbi, cpc->trim_start) + start ==
697 last->blkaddr + last->len) {
698 last->len += end - start;
699 goto done;
700 }
701 }
702
703 new = f2fs_kmem_cache_alloc(discard_entry_slab, GFP_NOFS);
704 INIT_LIST_HEAD(&new->list);
705 new->blkaddr = START_BLOCK(sbi, cpc->trim_start) + start;
706 new->len = end - start;
707 list_add_tail(&new->list, head);
708done:
709 SM_I(sbi)->nr_discards += end - start;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700710}
711
712static void add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc)
713{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900714 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
715 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700716 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900717 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
718 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700719 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800720 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900721 unsigned int start = 0, end = -1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700722 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900723 int i;
724
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700725 if (se->valid_blocks == max_blocks || !f2fs_discard_en(sbi))
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900726 return;
727
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700728 if (!force) {
729 if (!test_opt(sbi, DISCARD) || !se->valid_blocks ||
Dan Carpenter912a83b2015-05-14 11:52:28 +0300730 SM_I(sbi)->nr_discards >= SM_I(sbi)->max_discards)
731 return;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700732 }
733
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900734 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
735 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700736 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -0800737 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900738
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700739 while (force || SM_I(sbi)->nr_discards <= SM_I(sbi)->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900740 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
741 if (start >= max_blocks)
742 break;
743
744 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Yunlei Hec7b41e12016-07-07 12:13:33 +0800745 if (force && start && end != max_blocks
746 && (end - start) < cpc->trim_minlen)
747 continue;
748
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700749 __add_discard_entry(sbi, cpc, se, start, end);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900750 }
751}
752
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700753void release_discard_addrs(struct f2fs_sb_info *sbi)
754{
755 struct list_head *head = &(SM_I(sbi)->discard_list);
756 struct discard_entry *entry, *this;
757
758 /* drop caches */
759 list_for_each_entry_safe(entry, this, head, list) {
760 list_del(&entry->list);
761 kmem_cache_free(discard_entry_slab, entry);
762 }
763}
764
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900765/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900766 * Should call clear_prefree_segments after checkpoint is done.
767 */
768static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
769{
770 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +0800771 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900772
773 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700774 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900775 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900776 mutex_unlock(&dirty_i->seglist_lock);
777}
778
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700779void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900780{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900781 struct list_head *head = &(SM_I(sbi)->discard_list);
Chao Yu2d7b8222014-03-29 11:33:17 +0800782 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900783 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yu275b66b2016-08-29 23:58:34 +0800784 struct blk_plug plug;
Changman Lee29e59c12013-11-11 09:24:37 +0900785 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +0900786 unsigned int start = 0, end = -1;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700787 unsigned int secno, start_segno;
Chao Yuc24a0fd2016-07-07 22:46:55 +0800788 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900789
Chao Yu275b66b2016-08-29 23:58:34 +0800790 blk_start_plug(&plug);
791
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900792 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900793
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900794 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900795 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700796 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
797 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900798 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700799 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
800 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900801
Changman Lee29e59c12013-11-11 09:24:37 +0900802 for (i = start; i < end; i++)
803 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900804
Changman Lee29e59c12013-11-11 09:24:37 +0900805 dirty_i->nr_dirty[PRE] -= end - start;
806
Chao Yuc24a0fd2016-07-07 22:46:55 +0800807 if (force || !test_opt(sbi, DISCARD))
Changman Lee29e59c12013-11-11 09:24:37 +0900808 continue;
809
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700810 if (!test_opt(sbi, LFS) || sbi->segs_per_sec == 1) {
811 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
Jaegeuk Kim37208872013-11-12 16:55:17 +0900812 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700813 continue;
814 }
815next:
816 secno = GET_SECNO(sbi, start);
817 start_segno = secno * sbi->segs_per_sec;
818 if (!IS_CURSEC(sbi, secno) &&
819 !get_valid_blocks(sbi, start, sbi->segs_per_sec))
820 f2fs_issue_discard(sbi, START_BLOCK(sbi, start_segno),
821 sbi->segs_per_sec << sbi->log_blocks_per_seg);
822
823 start = start_segno + sbi->segs_per_sec;
824 if (start < end)
825 goto next;
Jaegeuk Kim8c53efc32017-02-27 11:57:11 -0800826 else
827 end = start - 1;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900828 }
829 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900830
831 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800832 list_for_each_entry_safe(entry, this, head, list) {
Chao Yuc24a0fd2016-07-07 22:46:55 +0800833 if (force && entry->len < cpc->trim_minlen)
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700834 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900835 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700836 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700837skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900838 list_del(&entry->list);
839 SM_I(sbi)->nr_discards -= entry->len;
840 kmem_cache_free(discard_entry_slab, entry);
841 }
Chao Yu275b66b2016-08-29 23:58:34 +0800842
843 blk_finish_plug(&plug);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900844}
845
Chao Yu184a5cd2014-09-04 18:13:01 +0800846static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900847{
848 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800849
850 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900851 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800852 return false;
853 }
854
855 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900856}
857
858static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
859 unsigned int segno, int modified)
860{
861 struct seg_entry *se = get_seg_entry(sbi, segno);
862 se->type = type;
863 if (modified)
864 __mark_sit_entry_dirty(sbi, segno);
865}
866
867static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
868{
869 struct seg_entry *se;
870 unsigned int segno, offset;
871 long int new_vblocks;
872
873 segno = GET_SEGNO(sbi, blkaddr);
874
875 se = get_seg_entry(sbi, segno);
876 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +0900877 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900878
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700879 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900880 (new_vblocks > sbi->blocks_per_seg)));
881
882 se->valid_blocks = new_vblocks;
883 se->mtime = get_mtime(sbi);
884 SIT_I(sbi)->max_mtime = se->mtime;
885
886 /* Update valid block bitmap */
887 if (del > 0) {
Gu Zheng52aca072014-10-20 17:45:51 +0800888 if (f2fs_test_and_set_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700889 f2fs_bug_on(sbi, 1);
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700890 if (f2fs_discard_en(sbi) &&
891 !f2fs_test_and_set_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700892 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900893 } else {
Gu Zheng52aca072014-10-20 17:45:51 +0800894 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700895 f2fs_bug_on(sbi, 1);
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700896 if (f2fs_discard_en(sbi) &&
897 f2fs_test_and_clear_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700898 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900899 }
900 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
901 se->ckpt_valid_blocks += del;
902
903 __mark_sit_entry_dirty(sbi, segno);
904
905 /* update total number of valid blocks to be written in ckpt area */
906 SIT_I(sbi)->written_valid_blocks += del;
907
908 if (sbi->segs_per_sec > 1)
909 get_sec_entry(sbi, segno)->valid_blocks += del;
910}
911
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900912void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900913{
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900914 update_sit_entry(sbi, new, 1);
915 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
916 update_sit_entry(sbi, old, -1);
917
918 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
919 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900920}
921
922void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
923{
924 unsigned int segno = GET_SEGNO(sbi, addr);
925 struct sit_info *sit_i = SIT_I(sbi);
926
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700927 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900928 if (addr == NEW_ADDR)
929 return;
930
931 /* add it into sit main buffer */
932 mutex_lock(&sit_i->sentry_lock);
933
934 update_sit_entry(sbi, addr, -1);
935
936 /* add it into dirty seglist */
937 locate_dirty_segment(sbi, segno);
938
939 mutex_unlock(&sit_i->sentry_lock);
940}
941
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -0700942bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
943{
944 struct sit_info *sit_i = SIT_I(sbi);
945 unsigned int segno, offset;
946 struct seg_entry *se;
947 bool is_cp = false;
948
Chao Yud4511882018-06-05 17:44:11 +0800949 if (!is_valid_data_blkaddr(sbi, blkaddr))
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -0700950 return true;
951
952 mutex_lock(&sit_i->sentry_lock);
953
954 segno = GET_SEGNO(sbi, blkaddr);
955 se = get_seg_entry(sbi, segno);
956 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
957
958 if (f2fs_test_bit(offset, se->ckpt_valid_map))
959 is_cp = true;
960
961 mutex_unlock(&sit_i->sentry_lock);
962
963 return is_cp;
964}
965
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900966/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900967 * This function should be resided under the curseg_mutex lock
968 */
969static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +0800970 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900971{
972 struct curseg_info *curseg = CURSEG_I(sbi, type);
973 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +0800974 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900975 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900976}
977
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900978/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900979 * Calculate the number of current summary pages for writing
980 */
Chao Yu3fa06d72014-12-09 14:21:46 +0800981int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900982{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900983 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +0800984 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900985
986 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
987 if (sbi->ckpt->alloc_type[i] == SSR)
988 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +0800989 else {
990 if (for_ra)
991 valid_sum_count += le16_to_cpu(
992 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
993 else
994 valid_sum_count += curseg_blkoff(sbi, i);
995 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900996 }
997
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300998 sum_in_page = (PAGE_SIZE - 2 * SUM_JOURNAL_SIZE -
Fan Li9a479382013-10-29 16:21:47 +0800999 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
1000 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001001 return 1;
Fan Li9a479382013-10-29 16:21:47 +08001002 else if ((valid_sum_count - sum_in_page) <=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001003 (PAGE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001004 return 2;
1005 return 3;
1006}
1007
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001008/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001009 * Caller should put this summary page
1010 */
1011struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
1012{
1013 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
1014}
1015
Chao Yu381722d2015-05-19 17:40:04 +08001016void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
1017{
1018 struct page *page = grab_meta_page(sbi, blk_addr);
1019 void *dst = page_address(page);
1020
1021 if (src)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001022 memcpy(dst, src, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +08001023 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001024 memset(dst, 0, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +08001025 set_page_dirty(page);
1026 f2fs_put_page(page, 1);
1027}
1028
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001029static void write_sum_page(struct f2fs_sb_info *sbi,
1030 struct f2fs_summary_block *sum_blk, block_t blk_addr)
1031{
Chao Yu381722d2015-05-19 17:40:04 +08001032 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001033}
1034
Chao Yub7ad7512016-02-19 18:08:46 +08001035static void write_current_sum_page(struct f2fs_sb_info *sbi,
1036 int type, block_t blk_addr)
1037{
1038 struct curseg_info *curseg = CURSEG_I(sbi, type);
1039 struct page *page = grab_meta_page(sbi, blk_addr);
1040 struct f2fs_summary_block *src = curseg->sum_blk;
1041 struct f2fs_summary_block *dst;
1042
1043 dst = (struct f2fs_summary_block *)page_address(page);
1044
1045 mutex_lock(&curseg->curseg_mutex);
1046
1047 down_read(&curseg->journal_rwsem);
1048 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE);
1049 up_read(&curseg->journal_rwsem);
1050
1051 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE);
1052 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE);
1053
1054 mutex_unlock(&curseg->curseg_mutex);
1055
1056 set_page_dirty(page);
1057 f2fs_put_page(page, 1);
1058}
1059
Jaegeuk Kim60374682013-03-31 13:58:51 +09001060static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
1061{
1062 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +08001063 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +09001064 struct free_segmap_info *free_i = FREE_I(sbi);
1065
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001066 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +08001067 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001068 return 0;
1069}
1070
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001071/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001072 * Find a new segment from the free segments bitmap to right order
1073 * This function should be returned with success, otherwise BUG
1074 */
1075static void get_new_segment(struct f2fs_sb_info *sbi,
1076 unsigned int *newseg, bool new_sec, int dir)
1077{
1078 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001079 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001080 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001081 unsigned int hint = *newseg / sbi->segs_per_sec;
1082 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
1083 unsigned int left_start = hint;
1084 bool init = true;
1085 int go_left = 0;
1086 int i;
1087
Chao Yu1a118cc2015-02-11 18:20:38 +08001088 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001089
1090 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
1091 segno = find_next_zero_bit(free_i->free_segmap,
Chao Yu0ab14352016-01-22 17:42:06 +08001092 (hint + 1) * sbi->segs_per_sec, *newseg + 1);
1093 if (segno < (hint + 1) * sbi->segs_per_sec)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001094 goto got_it;
1095 }
1096find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001097 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
1098 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001099 if (dir == ALLOC_RIGHT) {
1100 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001101 MAIN_SECS(sbi), 0);
1102 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001103 } else {
1104 go_left = 1;
1105 left_start = hint - 1;
1106 }
1107 }
1108 if (go_left == 0)
1109 goto skip_left;
1110
1111 while (test_bit(left_start, free_i->free_secmap)) {
1112 if (left_start > 0) {
1113 left_start--;
1114 continue;
1115 }
1116 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001117 MAIN_SECS(sbi), 0);
1118 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001119 break;
1120 }
1121 secno = left_start;
1122skip_left:
1123 hint = secno;
1124 segno = secno * sbi->segs_per_sec;
1125 zoneno = secno / sbi->secs_per_zone;
1126
1127 /* give up on finding another zone */
1128 if (!init)
1129 goto got_it;
1130 if (sbi->secs_per_zone == 1)
1131 goto got_it;
1132 if (zoneno == old_zoneno)
1133 goto got_it;
1134 if (dir == ALLOC_LEFT) {
1135 if (!go_left && zoneno + 1 >= total_zones)
1136 goto got_it;
1137 if (go_left && zoneno == 0)
1138 goto got_it;
1139 }
1140 for (i = 0; i < NR_CURSEG_TYPE; i++)
1141 if (CURSEG_I(sbi, i)->zone == zoneno)
1142 break;
1143
1144 if (i < NR_CURSEG_TYPE) {
1145 /* zone is in user, try another */
1146 if (go_left)
1147 hint = zoneno * sbi->secs_per_zone - 1;
1148 else if (zoneno + 1 >= total_zones)
1149 hint = 0;
1150 else
1151 hint = (zoneno + 1) * sbi->secs_per_zone;
1152 init = false;
1153 goto find_other_zone;
1154 }
1155got_it:
1156 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001157 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001158 __set_inuse(sbi, segno);
1159 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08001160 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001161}
1162
1163static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
1164{
1165 struct curseg_info *curseg = CURSEG_I(sbi, type);
1166 struct summary_footer *sum_footer;
1167
1168 curseg->segno = curseg->next_segno;
1169 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
1170 curseg->next_blkoff = 0;
1171 curseg->next_segno = NULL_SEGNO;
1172
1173 sum_footer = &(curseg->sum_blk->footer);
1174 memset(sum_footer, 0, sizeof(struct summary_footer));
1175 if (IS_DATASEG(type))
1176 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
1177 if (IS_NODESEG(type))
1178 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
1179 __set_sit_entry_type(sbi, type, curseg->segno, modified);
1180}
1181
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001182/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001183 * Allocate a current working segment.
1184 * This function always allocates a free segment in LFS manner.
1185 */
1186static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
1187{
1188 struct curseg_info *curseg = CURSEG_I(sbi, type);
1189 unsigned int segno = curseg->segno;
1190 int dir = ALLOC_LEFT;
1191
1192 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08001193 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001194 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
1195 dir = ALLOC_RIGHT;
1196
1197 if (test_opt(sbi, NOHEAP))
1198 dir = ALLOC_RIGHT;
1199
1200 get_new_segment(sbi, &segno, new_sec, dir);
1201 curseg->next_segno = segno;
1202 reset_curseg(sbi, type, 1);
1203 curseg->alloc_type = LFS;
1204}
1205
1206static void __next_free_blkoff(struct f2fs_sb_info *sbi,
1207 struct curseg_info *seg, block_t start)
1208{
1209 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09001210 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001211 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09001212 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
1213 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1214 int i, pos;
1215
1216 for (i = 0; i < entries; i++)
1217 target_map[i] = ckpt_map[i] | cur_map[i];
1218
1219 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1220
1221 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001222}
1223
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001224/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001225 * If a segment is written by LFS manner, next block offset is just obtained
1226 * by increasing the current block offset. However, if a segment is written by
1227 * SSR manner, next block offset obtained by calling __next_free_blkoff
1228 */
1229static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1230 struct curseg_info *seg)
1231{
1232 if (seg->alloc_type == SSR)
1233 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1234 else
1235 seg->next_blkoff++;
1236}
1237
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001238/*
arter97e1c42042014-08-06 23:22:50 +09001239 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001240 * manner, so it should recover the existing segment information of valid blocks
1241 */
1242static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1243{
1244 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1245 struct curseg_info *curseg = CURSEG_I(sbi, type);
1246 unsigned int new_segno = curseg->next_segno;
1247 struct f2fs_summary_block *sum_node;
1248 struct page *sum_page;
1249
1250 write_sum_page(sbi, curseg->sum_blk,
1251 GET_SUM_BLOCK(sbi, curseg->segno));
1252 __set_test_and_inuse(sbi, new_segno);
1253
1254 mutex_lock(&dirty_i->seglist_lock);
1255 __remove_dirty_segment(sbi, new_segno, PRE);
1256 __remove_dirty_segment(sbi, new_segno, DIRTY);
1257 mutex_unlock(&dirty_i->seglist_lock);
1258
1259 reset_curseg(sbi, type, 1);
1260 curseg->alloc_type = SSR;
1261 __next_free_blkoff(sbi, curseg, 0);
1262
1263 if (reuse) {
1264 sum_page = get_sum_page(sbi, new_segno);
1265 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1266 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1267 f2fs_put_page(sum_page, 1);
1268 }
1269}
1270
Jaegeuk Kim43727522013-02-04 15:11:17 +09001271static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1272{
1273 struct curseg_info *curseg = CURSEG_I(sbi, type);
1274 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1275
Yunlong Songe5226e92017-02-22 20:50:49 +08001276 if (IS_NODESEG(type))
Jaegeuk Kim43727522013-02-04 15:11:17 +09001277 return v_ops->get_victim(sbi,
1278 &(curseg)->next_segno, BG_GC, type, SSR);
1279
1280 /* For data segments, let's do SSR more intensively */
1281 for (; type >= CURSEG_HOT_DATA; type--)
1282 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1283 BG_GC, type, SSR))
1284 return 1;
1285 return 0;
1286}
1287
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001288/*
1289 * flush out current segment and replace it with new segment
1290 * This function should be returned with success, otherwise BUG
1291 */
1292static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1293 int type, bool force)
1294{
1295 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001296
Gu Zheng7b405272013-08-19 09:41:15 +08001297 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001298 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001299 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001300 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001301 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1302 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001303 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1304 change_curseg(sbi, type, true);
1305 else
1306 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001307
1308 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001309}
1310
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001311static void __allocate_new_segments(struct f2fs_sb_info *sbi, int type)
1312{
1313 struct curseg_info *curseg = CURSEG_I(sbi, type);
1314 unsigned int old_segno;
1315
1316 old_segno = curseg->segno;
1317 SIT_I(sbi)->s_ops->allocate_segment(sbi, type, true);
1318 locate_dirty_segment(sbi, old_segno);
1319}
1320
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001321void allocate_new_segments(struct f2fs_sb_info *sbi)
1322{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001323 int i;
1324
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001325 if (test_opt(sbi, LFS))
1326 return;
1327
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001328 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++)
1329 __allocate_new_segments(sbi, i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001330}
1331
1332static const struct segment_allocation default_salloc_ops = {
1333 .allocate_segment = allocate_segment_by_default,
1334};
1335
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001336int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1337{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001338 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1339 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001340 unsigned int start_segno, end_segno;
1341 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001342 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001343
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001344 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001345 return -EINVAL;
1346
Jan Kara9bd27ae2014-10-21 14:07:33 +02001347 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001348 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001349 goto out;
1350
Yunlei Heed214a12016-09-01 10:14:39 +08001351 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
1352 f2fs_msg(sbi->sb, KERN_WARNING,
1353 "Found FS corruption, run fsck to fix.");
1354 goto out;
1355 }
1356
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001357 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001358 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1359 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1360 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001361 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001362 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001363
1364 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001365 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1366 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001367
1368 if (sbi->discard_blks == 0)
1369 break;
1370 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1371 cpc.trim_end = end_segno;
1372 else
1373 cpc.trim_end = min_t(unsigned int,
1374 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001375 BATCHED_TRIM_SEGMENTS(sbi),
1376 sbi->segs_per_sec) - 1, end_segno);
1377
1378 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001379 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001380 mutex_unlock(&sbi->gc_mutex);
Chao Yue9328352016-08-21 23:21:29 +08001381 if (err)
1382 break;
Chao Yu74fa5f32016-08-21 23:21:30 +08001383
1384 schedule();
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001385 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001386out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001387 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001388 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001389}
1390
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001391static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1392{
1393 struct curseg_info *curseg = CURSEG_I(sbi, type);
1394 if (curseg->next_blkoff < sbi->blocks_per_seg)
1395 return true;
1396 return false;
1397}
1398
1399static int __get_segment_type_2(struct page *page, enum page_type p_type)
1400{
1401 if (p_type == DATA)
1402 return CURSEG_HOT_DATA;
1403 else
1404 return CURSEG_HOT_NODE;
1405}
1406
1407static int __get_segment_type_4(struct page *page, enum page_type p_type)
1408{
1409 if (p_type == DATA) {
1410 struct inode *inode = page->mapping->host;
1411
1412 if (S_ISDIR(inode->i_mode))
1413 return CURSEG_HOT_DATA;
1414 else
1415 return CURSEG_COLD_DATA;
1416 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001417 if (IS_DNODE(page) && is_cold_node(page))
1418 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001419 else
1420 return CURSEG_COLD_NODE;
1421 }
1422}
1423
1424static int __get_segment_type_6(struct page *page, enum page_type p_type)
1425{
1426 if (p_type == DATA) {
1427 struct inode *inode = page->mapping->host;
1428
1429 if (S_ISDIR(inode->i_mode))
1430 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001431 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001432 return CURSEG_COLD_DATA;
1433 else
1434 return CURSEG_WARM_DATA;
1435 } else {
1436 if (IS_DNODE(page))
1437 return is_cold_node(page) ? CURSEG_WARM_NODE :
1438 CURSEG_HOT_NODE;
1439 else
1440 return CURSEG_COLD_NODE;
1441 }
1442}
1443
1444static int __get_segment_type(struct page *page, enum page_type p_type)
1445{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001446 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001447 case 2:
1448 return __get_segment_type_2(page, p_type);
1449 case 4:
1450 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001451 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001452 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001453 f2fs_bug_on(F2FS_P_SB(page),
1454 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001455 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001456}
1457
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001458void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1459 block_t old_blkaddr, block_t *new_blkaddr,
1460 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001461{
1462 struct sit_info *sit_i = SIT_I(sbi);
1463 struct curseg_info *curseg;
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001464 bool direct_io = (type == CURSEG_DIRECT_IO);
1465
1466 type = direct_io ? CURSEG_WARM_DATA : type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001467
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001468 curseg = CURSEG_I(sbi, type);
1469
1470 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001471 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001472
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001473 /* direct_io'ed data is aligned to the segment for better performance */
Jaegeuk Kim47e70ca2015-08-11 10:17:27 -07001474 if (direct_io && curseg->next_blkoff &&
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -07001475 !has_not_enough_free_secs(sbi, 0, 0))
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001476 __allocate_new_segments(sbi, type);
1477
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001478 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001479
1480 /*
1481 * __add_sum_entry should be resided under the curseg_mutex
1482 * because, this function updates a summary entry in the
1483 * current summary block.
1484 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001485 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001486
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001487 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001488
1489 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001490
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001491 if (!__has_curseg_space(sbi, type))
1492 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001493 /*
1494 * SIT information should be updated before segment allocation,
1495 * since SSR needs latest valid block information.
1496 */
1497 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001498
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001499 mutex_unlock(&sit_i->sentry_lock);
1500
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001501 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001502 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1503
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001504 mutex_unlock(&curseg->curseg_mutex);
1505}
1506
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001507static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001508{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001509 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001510
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001511 if (fio->type == NODE || fio->type == DATA)
1512 mutex_lock(&fio->sbi->wio_mutex[fio->type]);
1513
Chao Yu7a9d7542016-02-22 18:36:38 +08001514 allocate_data_block(fio->sbi, fio->page, fio->old_blkaddr,
1515 &fio->new_blkaddr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001516
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001517 /* writeout dirty page into bdev */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001518 f2fs_submit_page_mbio(fio);
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001519
1520 if (fio->type == NODE || fio->type == DATA)
1521 mutex_unlock(&fio->sbi->wio_mutex[fio->type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001522}
1523
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001524void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001525{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001526 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001527 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001528 .type = META,
Mike Christie04d328d2016-06-05 14:31:55 -05001529 .op = REQ_OP_WRITE,
1530 .op_flags = WRITE_SYNC | REQ_META | REQ_PRIO,
Chao Yu7a9d7542016-02-22 18:36:38 +08001531 .old_blkaddr = page->index,
1532 .new_blkaddr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001533 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001534 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001535 };
1536
Chao Yu2b947002015-10-12 17:04:21 +08001537 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
Mike Christie04d328d2016-06-05 14:31:55 -05001538 fio.op_flags &= ~REQ_META;
Chao Yu2b947002015-10-12 17:04:21 +08001539
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001540 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001541 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001542}
1543
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001544void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001545{
1546 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001547
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001548 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001549 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001550}
1551
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001552void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001553{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001554 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001555 struct f2fs_summary sum;
1556 struct node_info ni;
1557
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001558 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001559 get_node_info(sbi, dn->nid, &ni);
1560 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001561 do_write_page(&sum, fio);
Chao Yuf28b3432016-02-24 17:16:47 +08001562 f2fs_update_data_blkaddr(dn, fio->new_blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001563}
1564
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001565void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001566{
Chao Yu7a9d7542016-02-22 18:36:38 +08001567 fio->new_blkaddr = fio->old_blkaddr;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001568 stat_inc_inplace_blocks(fio->sbi);
1569 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001570}
1571
Chao Yu4356e482016-02-23 17:52:43 +08001572void __f2fs_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001573 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08001574 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001575{
1576 struct sit_info *sit_i = SIT_I(sbi);
1577 struct curseg_info *curseg;
1578 unsigned int segno, old_cursegno;
1579 struct seg_entry *se;
1580 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001581 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001582
1583 segno = GET_SEGNO(sbi, new_blkaddr);
1584 se = get_seg_entry(sbi, segno);
1585 type = se->type;
1586
Chao Yu19f106b2015-05-06 13:08:06 +08001587 if (!recover_curseg) {
1588 /* for recovery flow */
1589 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1590 if (old_blkaddr == NULL_ADDR)
1591 type = CURSEG_COLD_DATA;
1592 else
1593 type = CURSEG_WARM_DATA;
1594 }
1595 } else {
1596 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001597 type = CURSEG_WARM_DATA;
1598 }
Chao Yu19f106b2015-05-06 13:08:06 +08001599
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001600 curseg = CURSEG_I(sbi, type);
1601
1602 mutex_lock(&curseg->curseg_mutex);
1603 mutex_lock(&sit_i->sentry_lock);
1604
1605 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001606 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001607
1608 /* change the current segment */
1609 if (segno != curseg->segno) {
1610 curseg->next_segno = segno;
1611 change_curseg(sbi, type, true);
1612 }
1613
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001614 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001615 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001616
Chao Yu28bc1062016-02-06 14:40:34 +08001617 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001618 update_sit_entry(sbi, new_blkaddr, 1);
1619 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1620 update_sit_entry(sbi, old_blkaddr, -1);
1621
1622 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1623 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1624
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001625 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001626
Chao Yu19f106b2015-05-06 13:08:06 +08001627 if (recover_curseg) {
1628 if (old_cursegno != curseg->segno) {
1629 curseg->next_segno = old_cursegno;
1630 change_curseg(sbi, type, true);
1631 }
1632 curseg->next_blkoff = old_blkoff;
1633 }
1634
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001635 mutex_unlock(&sit_i->sentry_lock);
1636 mutex_unlock(&curseg->curseg_mutex);
1637}
1638
Chao Yu528e3452015-05-28 19:15:35 +08001639void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1640 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08001641 unsigned char version, bool recover_curseg,
1642 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08001643{
1644 struct f2fs_summary sum;
1645
1646 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1647
Chao Yu28bc1062016-02-06 14:40:34 +08001648 __f2fs_replace_block(sbi, &sum, old_addr, new_addr,
1649 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08001650
Chao Yuf28b3432016-02-24 17:16:47 +08001651 f2fs_update_data_blkaddr(dn, new_addr);
Chao Yu528e3452015-05-28 19:15:35 +08001652}
1653
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001654void f2fs_wait_on_page_writeback(struct page *page,
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001655 enum page_type type, bool ordered)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001656{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001657 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001658 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1659
Chao Yu0c3a5792016-01-18 18:28:11 +08001660 f2fs_submit_merged_bio_cond(sbi, NULL, page, 0, type, WRITE);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001661 if (ordered)
1662 wait_on_page_writeback(page);
1663 else
1664 wait_for_stable_page(page);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001665 }
1666}
1667
Chao Yu08b39fb2015-10-08 13:27:34 +08001668void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1669 block_t blkaddr)
1670{
1671 struct page *cpage;
1672
Chao Yud4511882018-06-05 17:44:11 +08001673 if (!is_valid_data_blkaddr(sbi, blkaddr))
Chao Yu08b39fb2015-10-08 13:27:34 +08001674 return;
1675
Chao Yu08b39fb2015-10-08 13:27:34 +08001676 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1677 if (cpage) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001678 f2fs_wait_on_page_writeback(cpage, DATA, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08001679 f2fs_put_page(cpage, 1);
1680 }
1681}
1682
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001683static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1684{
1685 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1686 struct curseg_info *seg_i;
1687 unsigned char *kaddr;
1688 struct page *page;
1689 block_t start;
1690 int i, j, offset;
1691
1692 start = start_sum_block(sbi);
1693
1694 page = get_meta_page(sbi, start++);
1695 kaddr = (unsigned char *)page_address(page);
1696
1697 /* Step 1: restore nat cache */
1698 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001699 memcpy(seg_i->journal, kaddr, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001700
1701 /* Step 2: restore sit cache */
1702 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001703 memcpy(seg_i->journal, kaddr + SUM_JOURNAL_SIZE, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001704 offset = 2 * SUM_JOURNAL_SIZE;
1705
1706 /* Step 3: restore summary entries */
1707 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1708 unsigned short blk_off;
1709 unsigned int segno;
1710
1711 seg_i = CURSEG_I(sbi, i);
1712 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1713 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1714 seg_i->next_segno = segno;
1715 reset_curseg(sbi, i, 0);
1716 seg_i->alloc_type = ckpt->alloc_type[i];
1717 seg_i->next_blkoff = blk_off;
1718
1719 if (seg_i->alloc_type == SSR)
1720 blk_off = sbi->blocks_per_seg;
1721
1722 for (j = 0; j < blk_off; j++) {
1723 struct f2fs_summary *s;
1724 s = (struct f2fs_summary *)(kaddr + offset);
1725 seg_i->sum_blk->entries[j] = *s;
1726 offset += SUMMARY_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001727 if (offset + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001728 SUM_FOOTER_SIZE)
1729 continue;
1730
1731 f2fs_put_page(page, 1);
1732 page = NULL;
1733
1734 page = get_meta_page(sbi, start++);
1735 kaddr = (unsigned char *)page_address(page);
1736 offset = 0;
1737 }
1738 }
1739 f2fs_put_page(page, 1);
1740 return 0;
1741}
1742
1743static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1744{
1745 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1746 struct f2fs_summary_block *sum;
1747 struct curseg_info *curseg;
1748 struct page *new;
1749 unsigned short blk_off;
1750 unsigned int segno = 0;
1751 block_t blk_addr = 0;
1752
1753 /* get segment number and block addr */
1754 if (IS_DATASEG(type)) {
1755 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1756 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1757 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001758 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001759 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1760 else
1761 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1762 } else {
1763 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1764 CURSEG_HOT_NODE]);
1765 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1766 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001767 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001768 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1769 type - CURSEG_HOT_NODE);
1770 else
1771 blk_addr = GET_SUM_BLOCK(sbi, segno);
1772 }
1773
1774 new = get_meta_page(sbi, blk_addr);
1775 sum = (struct f2fs_summary_block *)page_address(new);
1776
1777 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001778 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001779 struct f2fs_summary *ns = &sum->entries[0];
1780 int i;
1781 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1782 ns->version = 0;
1783 ns->ofs_in_node = 0;
1784 }
1785 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001786 int err;
1787
1788 err = restore_node_summary(sbi, segno, sum);
1789 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001790 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001791 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001792 }
1793 }
1794 }
1795
1796 /* set uncompleted segment to curseg */
1797 curseg = CURSEG_I(sbi, type);
1798 mutex_lock(&curseg->curseg_mutex);
Chao Yub7ad7512016-02-19 18:08:46 +08001799
1800 /* update journal info */
1801 down_write(&curseg->journal_rwsem);
1802 memcpy(curseg->journal, &sum->journal, SUM_JOURNAL_SIZE);
1803 up_write(&curseg->journal_rwsem);
1804
1805 memcpy(curseg->sum_blk->entries, sum->entries, SUM_ENTRY_SIZE);
1806 memcpy(&curseg->sum_blk->footer, &sum->footer, SUM_FOOTER_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001807 curseg->next_segno = segno;
1808 reset_curseg(sbi, type, 0);
1809 curseg->alloc_type = ckpt->alloc_type[type];
1810 curseg->next_blkoff = blk_off;
1811 mutex_unlock(&curseg->curseg_mutex);
1812 f2fs_put_page(new, 1);
1813 return 0;
1814}
1815
1816static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1817{
Jin Qian19e117a2017-06-01 11:18:30 -07001818 struct f2fs_journal *sit_j = CURSEG_I(sbi, CURSEG_COLD_DATA)->journal;
1819 struct f2fs_journal *nat_j = CURSEG_I(sbi, CURSEG_HOT_DATA)->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001820 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001821 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001822
Chao Yuaaec2b12016-09-20 11:04:18 +08001823 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001824 int npages = npages_for_summary_flush(sbi, true);
1825
1826 if (npages >= 2)
1827 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001828 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001829
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001830 /* restore for compacted data summary */
1831 if (read_compacted_summaries(sbi))
1832 return -EINVAL;
1833 type = CURSEG_HOT_NODE;
1834 }
1835
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001836 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001837 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001838 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001839
Chao Yue4fc5fb2014-03-17 16:36:24 +08001840 for (; type <= CURSEG_COLD_NODE; type++) {
1841 err = read_normal_summaries(sbi, type);
1842 if (err)
1843 return err;
1844 }
1845
Jin Qian19e117a2017-06-01 11:18:30 -07001846 /* sanity check for summary blocks */
1847 if (nats_in_cursum(nat_j) > NAT_JOURNAL_ENTRIES ||
1848 sits_in_cursum(sit_j) > SIT_JOURNAL_ENTRIES)
1849 return -EINVAL;
1850
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001851 return 0;
1852}
1853
1854static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1855{
1856 struct page *page;
1857 unsigned char *kaddr;
1858 struct f2fs_summary *summary;
1859 struct curseg_info *seg_i;
1860 int written_size = 0;
1861 int i, j;
1862
1863 page = grab_meta_page(sbi, blkaddr++);
1864 kaddr = (unsigned char *)page_address(page);
1865
1866 /* Step 1: write nat cache */
1867 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001868 memcpy(kaddr, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001869 written_size += SUM_JOURNAL_SIZE;
1870
1871 /* Step 2: write sit cache */
1872 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001873 memcpy(kaddr + written_size, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001874 written_size += SUM_JOURNAL_SIZE;
1875
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001876 /* Step 3: write summary entries */
1877 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1878 unsigned short blkoff;
1879 seg_i = CURSEG_I(sbi, i);
1880 if (sbi->ckpt->alloc_type[i] == SSR)
1881 blkoff = sbi->blocks_per_seg;
1882 else
1883 blkoff = curseg_blkoff(sbi, i);
1884
1885 for (j = 0; j < blkoff; j++) {
1886 if (!page) {
1887 page = grab_meta_page(sbi, blkaddr++);
1888 kaddr = (unsigned char *)page_address(page);
1889 written_size = 0;
1890 }
1891 summary = (struct f2fs_summary *)(kaddr + written_size);
1892 *summary = seg_i->sum_blk->entries[j];
1893 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001894
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001895 if (written_size + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001896 SUM_FOOTER_SIZE)
1897 continue;
1898
Chao Yue8d61a72013-10-24 15:08:28 +08001899 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001900 f2fs_put_page(page, 1);
1901 page = NULL;
1902 }
1903 }
Chao Yue8d61a72013-10-24 15:08:28 +08001904 if (page) {
1905 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001906 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08001907 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001908}
1909
1910static void write_normal_summaries(struct f2fs_sb_info *sbi,
1911 block_t blkaddr, int type)
1912{
1913 int i, end;
1914 if (IS_DATASEG(type))
1915 end = type + NR_CURSEG_DATA_TYPE;
1916 else
1917 end = type + NR_CURSEG_NODE_TYPE;
1918
Chao Yub7ad7512016-02-19 18:08:46 +08001919 for (i = type; i < end; i++)
1920 write_current_sum_page(sbi, i, blkaddr + (i - type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001921}
1922
1923void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1924{
Chao Yuaaec2b12016-09-20 11:04:18 +08001925 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001926 write_compacted_summaries(sbi, start_blk);
1927 else
1928 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1929}
1930
1931void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1932{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001933 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001934}
1935
Chao Yudfc08a12016-02-14 18:50:40 +08001936int lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001937 unsigned int val, int alloc)
1938{
1939 int i;
1940
1941 if (type == NAT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001942 for (i = 0; i < nats_in_cursum(journal); i++) {
1943 if (le32_to_cpu(nid_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001944 return i;
1945 }
Chao Yudfc08a12016-02-14 18:50:40 +08001946 if (alloc && __has_cursum_space(journal, 1, NAT_JOURNAL))
1947 return update_nats_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001948 } else if (type == SIT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001949 for (i = 0; i < sits_in_cursum(journal); i++)
1950 if (le32_to_cpu(segno_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001951 return i;
Chao Yudfc08a12016-02-14 18:50:40 +08001952 if (alloc && __has_cursum_space(journal, 1, SIT_JOURNAL))
1953 return update_sits_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001954 }
1955 return -1;
1956}
1957
1958static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
1959 unsigned int segno)
1960{
Gu Zheng2cc22182014-10-20 17:45:49 +08001961 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001962}
1963
1964static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
1965 unsigned int start)
1966{
1967 struct sit_info *sit_i = SIT_I(sbi);
1968 struct page *src_page, *dst_page;
1969 pgoff_t src_off, dst_off;
1970 void *src_addr, *dst_addr;
1971
1972 src_off = current_sit_addr(sbi, start);
1973 dst_off = next_sit_addr(sbi, src_off);
1974
1975 /* get current sit block page without lock */
1976 src_page = get_meta_page(sbi, src_off);
1977 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001978 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001979
1980 src_addr = page_address(src_page);
1981 dst_addr = page_address(dst_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001982 memcpy(dst_addr, src_addr, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001983
1984 set_page_dirty(dst_page);
1985 f2fs_put_page(src_page, 1);
1986
1987 set_to_next_sit(sit_i, start);
1988
1989 return dst_page;
1990}
1991
Chao Yu184a5cd2014-09-04 18:13:01 +08001992static struct sit_entry_set *grab_sit_entry_set(void)
1993{
1994 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001995 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08001996
1997 ses->entry_cnt = 0;
1998 INIT_LIST_HEAD(&ses->set_list);
1999 return ses;
2000}
2001
2002static void release_sit_entry_set(struct sit_entry_set *ses)
2003{
2004 list_del(&ses->set_list);
2005 kmem_cache_free(sit_entry_set_slab, ses);
2006}
2007
2008static void adjust_sit_entry_set(struct sit_entry_set *ses,
2009 struct list_head *head)
2010{
2011 struct sit_entry_set *next = ses;
2012
2013 if (list_is_last(&ses->set_list, head))
2014 return;
2015
2016 list_for_each_entry_continue(next, head, set_list)
2017 if (ses->entry_cnt <= next->entry_cnt)
2018 break;
2019
2020 list_move_tail(&ses->set_list, &next->set_list);
2021}
2022
2023static void add_sit_entry(unsigned int segno, struct list_head *head)
2024{
2025 struct sit_entry_set *ses;
2026 unsigned int start_segno = START_SEGNO(segno);
2027
2028 list_for_each_entry(ses, head, set_list) {
2029 if (ses->start_segno == start_segno) {
2030 ses->entry_cnt++;
2031 adjust_sit_entry_set(ses, head);
2032 return;
2033 }
2034 }
2035
2036 ses = grab_sit_entry_set();
2037
2038 ses->start_segno = start_segno;
2039 ses->entry_cnt++;
2040 list_add(&ses->set_list, head);
2041}
2042
2043static void add_sits_in_set(struct f2fs_sb_info *sbi)
2044{
2045 struct f2fs_sm_info *sm_info = SM_I(sbi);
2046 struct list_head *set_list = &sm_info->sit_entry_set;
2047 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08002048 unsigned int segno;
2049
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002050 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08002051 add_sit_entry(segno, set_list);
2052}
2053
2054static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002055{
2056 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002057 struct f2fs_journal *journal = curseg->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002058 int i;
2059
Chao Yub7ad7512016-02-19 18:08:46 +08002060 down_write(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08002061 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yu184a5cd2014-09-04 18:13:01 +08002062 unsigned int segno;
2063 bool dirtied;
2064
Chao Yudfc08a12016-02-14 18:50:40 +08002065 segno = le32_to_cpu(segno_in_journal(journal, i));
Chao Yu184a5cd2014-09-04 18:13:01 +08002066 dirtied = __mark_sit_entry_dirty(sbi, segno);
2067
2068 if (!dirtied)
2069 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002070 }
Chao Yudfc08a12016-02-14 18:50:40 +08002071 update_sits_in_cursum(journal, -i);
Chao Yub7ad7512016-02-19 18:08:46 +08002072 up_write(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002073}
2074
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002075/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002076 * CP calls this function, which flushes SIT entries including sit_journal,
2077 * and moves prefree segs to free segs.
2078 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002079void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002080{
2081 struct sit_info *sit_i = SIT_I(sbi);
2082 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
2083 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002084 struct f2fs_journal *journal = curseg->journal;
Chao Yu184a5cd2014-09-04 18:13:01 +08002085 struct sit_entry_set *ses, *tmp;
2086 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08002087 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002088 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002089
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002090 mutex_lock(&sit_i->sentry_lock);
2091
Wanpeng Li2b11a742015-02-27 16:52:50 +08002092 if (!sit_i->dirty_sentries)
2093 goto out;
2094
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002095 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08002096 * add and account sit entries of dirty bitmap in sit entry
2097 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002098 */
Chao Yu184a5cd2014-09-04 18:13:01 +08002099 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002100
Chao Yu184a5cd2014-09-04 18:13:01 +08002101 /*
2102 * if there are no enough space in journal to store dirty sit
2103 * entries, remove all entries from journal and add and account
2104 * them in sit entry set.
2105 */
Chao Yudfc08a12016-02-14 18:50:40 +08002106 if (!__has_cursum_space(journal, sit_i->dirty_sentries, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002107 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002108
Chao Yu184a5cd2014-09-04 18:13:01 +08002109 /*
2110 * there are two steps to flush sit entries:
2111 * #1, flush sit entries to journal in current cold data summary block.
2112 * #2, flush sit entries to sit page.
2113 */
2114 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07002115 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08002116 struct f2fs_sit_block *raw_sit = NULL;
2117 unsigned int start_segno = ses->start_segno;
2118 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002119 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08002120 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09002121
Chao Yu184a5cd2014-09-04 18:13:01 +08002122 if (to_journal &&
Chao Yudfc08a12016-02-14 18:50:40 +08002123 !__has_cursum_space(journal, ses->entry_cnt, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002124 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002125
Chao Yub7ad7512016-02-19 18:08:46 +08002126 if (to_journal) {
2127 down_write(&curseg->journal_rwsem);
2128 } else {
Chao Yu184a5cd2014-09-04 18:13:01 +08002129 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002130 raw_sit = page_address(page);
2131 }
2132
Chao Yu184a5cd2014-09-04 18:13:01 +08002133 /* flush dirty sit entries in region of current sit set */
2134 for_each_set_bit_from(segno, bitmap, end) {
2135 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002136
2137 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08002138
2139 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08002140 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002141 cpc->trim_start = segno;
2142 add_discard_addrs(sbi, cpc);
2143 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002144
2145 if (to_journal) {
Chao Yudfc08a12016-02-14 18:50:40 +08002146 offset = lookup_journal_in_cursum(journal,
Chao Yu184a5cd2014-09-04 18:13:01 +08002147 SIT_JOURNAL, segno, 1);
2148 f2fs_bug_on(sbi, offset < 0);
Chao Yudfc08a12016-02-14 18:50:40 +08002149 segno_in_journal(journal, offset) =
Chao Yu184a5cd2014-09-04 18:13:01 +08002150 cpu_to_le32(segno);
2151 seg_info_to_raw_sit(se,
Chao Yudfc08a12016-02-14 18:50:40 +08002152 &sit_in_journal(journal, offset));
Chao Yu184a5cd2014-09-04 18:13:01 +08002153 } else {
2154 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
2155 seg_info_to_raw_sit(se,
2156 &raw_sit->entries[sit_offset]);
2157 }
2158
2159 __clear_bit(segno, bitmap);
2160 sit_i->dirty_sentries--;
2161 ses->entry_cnt--;
2162 }
2163
Chao Yub7ad7512016-02-19 18:08:46 +08002164 if (to_journal)
2165 up_write(&curseg->journal_rwsem);
2166 else
Chao Yu184a5cd2014-09-04 18:13:01 +08002167 f2fs_put_page(page, 1);
2168
2169 f2fs_bug_on(sbi, ses->entry_cnt);
2170 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002171 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002172
2173 f2fs_bug_on(sbi, !list_empty(head));
2174 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08002175out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002176 if (cpc->reason == CP_DISCARD) {
2177 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
2178 add_discard_addrs(sbi, cpc);
2179 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002180 mutex_unlock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002181
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002182 set_prefree_as_free_segments(sbi);
2183}
2184
2185static int build_sit_info(struct f2fs_sb_info *sbi)
2186{
2187 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2188 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
2189 struct sit_info *sit_i;
2190 unsigned int sit_segs, start;
2191 char *src_bitmap, *dst_bitmap;
2192 unsigned int bitmap_size;
2193
2194 /* allocate memory for SIT information */
2195 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
2196 if (!sit_i)
2197 return -ENOMEM;
2198
2199 SM_I(sbi)->sit_info = sit_i;
2200
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002201 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
2202 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002203 if (!sit_i->sentries)
2204 return -ENOMEM;
2205
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002206 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002207 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002208 if (!sit_i->dirty_sentries_bitmap)
2209 return -ENOMEM;
2210
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002211 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002212 sit_i->sentries[start].cur_valid_map
2213 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2214 sit_i->sentries[start].ckpt_valid_map
2215 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002216 if (!sit_i->sentries[start].cur_valid_map ||
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002217 !sit_i->sentries[start].ckpt_valid_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002218 return -ENOMEM;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002219
2220 if (f2fs_discard_en(sbi)) {
2221 sit_i->sentries[start].discard_map
2222 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2223 if (!sit_i->sentries[start].discard_map)
2224 return -ENOMEM;
2225 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002226 }
2227
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002228 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2229 if (!sit_i->tmp_map)
2230 return -ENOMEM;
2231
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002232 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002233 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
2234 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002235 if (!sit_i->sec_entries)
2236 return -ENOMEM;
2237 }
2238
2239 /* get information related with SIT */
2240 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
2241
2242 /* setup SIT bitmap from ckeckpoint pack */
2243 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
2244 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
2245
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02002246 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002247 if (!dst_bitmap)
2248 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002249
2250 /* init SIT information */
2251 sit_i->s_ops = &default_salloc_ops;
2252
2253 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2254 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
2255 sit_i->written_valid_blocks = le64_to_cpu(ckpt->valid_block_count);
2256 sit_i->sit_bitmap = dst_bitmap;
2257 sit_i->bitmap_size = bitmap_size;
2258 sit_i->dirty_sentries = 0;
2259 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2260 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2261 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2262 mutex_init(&sit_i->sentry_lock);
2263 return 0;
2264}
2265
2266static int build_free_segmap(struct f2fs_sb_info *sbi)
2267{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002268 struct free_segmap_info *free_i;
2269 unsigned int bitmap_size, sec_bitmap_size;
2270
2271 /* allocate memory for free segmap information */
2272 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2273 if (!free_i)
2274 return -ENOMEM;
2275
2276 SM_I(sbi)->free_info = free_i;
2277
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002278 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002279 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002280 if (!free_i->free_segmap)
2281 return -ENOMEM;
2282
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002283 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002284 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002285 if (!free_i->free_secmap)
2286 return -ENOMEM;
2287
2288 /* set all segments as dirty temporarily */
2289 memset(free_i->free_segmap, 0xff, bitmap_size);
2290 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2291
2292 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002293 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002294 free_i->free_segments = 0;
2295 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002296 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002297 return 0;
2298}
2299
2300static int build_curseg(struct f2fs_sb_info *sbi)
2301{
Namjae Jeon1042d602012-12-01 10:56:13 +09002302 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002303 int i;
2304
Fabian Frederickb434bab2014-06-23 18:39:15 +02002305 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002306 if (!array)
2307 return -ENOMEM;
2308
2309 SM_I(sbi)->curseg_array = array;
2310
2311 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2312 mutex_init(&array[i].curseg_mutex);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002313 array[i].sum_blk = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002314 if (!array[i].sum_blk)
2315 return -ENOMEM;
Chao Yub7ad7512016-02-19 18:08:46 +08002316 init_rwsem(&array[i].journal_rwsem);
2317 array[i].journal = kzalloc(sizeof(struct f2fs_journal),
2318 GFP_KERNEL);
2319 if (!array[i].journal)
2320 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002321 array[i].segno = NULL_SEGNO;
2322 array[i].next_blkoff = 0;
2323 }
2324 return restore_curseg_summaries(sbi);
2325}
2326
Jaegeuk Kim3fd96202017-12-19 19:16:34 -08002327static int build_sit_entries(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002328{
2329 struct sit_info *sit_i = SIT_I(sbi);
2330 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002331 struct f2fs_journal *journal = curseg->journal;
Yunlei He9c094042016-09-24 12:29:18 +08002332 struct seg_entry *se;
2333 struct f2fs_sit_entry sit;
Chao Yu74de5932013-11-22 09:09:59 +08002334 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2335 unsigned int i, start, end;
2336 unsigned int readed, start_blk = 0;
Chao Yue9f5b8b2016-02-14 18:54:33 +08002337 int nrpages = MAX_BIO_BLOCKS(sbi) * 8;
Jaegeuk Kim3fd96202017-12-19 19:16:34 -08002338 int err = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002339
Chao Yu74de5932013-11-22 09:09:59 +08002340 do {
Chao Yu26879fb2015-10-12 17:05:59 +08002341 readed = ra_meta_pages(sbi, start_blk, nrpages, META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002342
Chao Yu74de5932013-11-22 09:09:59 +08002343 start = start_blk * sit_i->sents_per_block;
2344 end = (start_blk + readed) * sit_i->sents_per_block;
2345
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002346 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002347 struct f2fs_sit_block *sit_blk;
Chao Yu74de5932013-11-22 09:09:59 +08002348 struct page *page;
2349
Yunlei He9c094042016-09-24 12:29:18 +08002350 se = &sit_i->sentries[start];
Chao Yu74de5932013-11-22 09:09:59 +08002351 page = get_current_sit_page(sbi, start);
2352 sit_blk = (struct f2fs_sit_block *)page_address(page);
2353 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2354 f2fs_put_page(page, 1);
Chao Yud600af232016-08-19 23:13:47 +08002355
Jaegeuk Kim3fd96202017-12-19 19:16:34 -08002356 err = check_block_count(sbi, start, &sit);
2357 if (err)
2358 return err;
Chao Yu74de5932013-11-22 09:09:59 +08002359 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002360
2361 /* build discard map only one time */
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002362 if (f2fs_discard_en(sbi)) {
2363 memcpy(se->discard_map, se->cur_valid_map,
2364 SIT_VBLOCK_MAP_SIZE);
2365 sbi->discard_blks += sbi->blocks_per_seg -
2366 se->valid_blocks;
2367 }
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002368
Chao Yud600af232016-08-19 23:13:47 +08002369 if (sbi->segs_per_sec > 1)
2370 get_sec_entry(sbi, start)->valid_blocks +=
2371 se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002372 }
Chao Yu74de5932013-11-22 09:09:59 +08002373 start_blk += readed;
2374 } while (start_blk < sit_blk_cnt);
Chao Yud600af232016-08-19 23:13:47 +08002375
2376 down_read(&curseg->journal_rwsem);
2377 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yud600af232016-08-19 23:13:47 +08002378 unsigned int old_valid_blocks;
2379
2380 start = le32_to_cpu(segno_in_journal(journal, i));
Jaegeuk Kim6e182e92018-04-24 15:44:16 -06002381 if (start >= MAIN_SEGS(sbi)) {
2382 f2fs_msg(sbi->sb, KERN_ERR,
2383 "Wrong journal entry on segno %u",
2384 start);
2385 set_sbi_flag(sbi, SBI_NEED_FSCK);
2386 err = -EINVAL;
2387 break;
2388 }
2389
Chao Yud600af232016-08-19 23:13:47 +08002390 se = &sit_i->sentries[start];
2391 sit = sit_in_journal(journal, i);
2392
2393 old_valid_blocks = se->valid_blocks;
2394
Jaegeuk Kim3fd96202017-12-19 19:16:34 -08002395 err = check_block_count(sbi, start, &sit);
2396 if (err)
2397 break;
Chao Yud600af232016-08-19 23:13:47 +08002398 seg_info_from_raw_sit(se, &sit);
2399
2400 if (f2fs_discard_en(sbi)) {
2401 memcpy(se->discard_map, se->cur_valid_map,
2402 SIT_VBLOCK_MAP_SIZE);
2403 sbi->discard_blks += old_valid_blocks -
2404 se->valid_blocks;
2405 }
2406
2407 if (sbi->segs_per_sec > 1)
2408 get_sec_entry(sbi, start)->valid_blocks +=
2409 se->valid_blocks - old_valid_blocks;
2410 }
2411 up_read(&curseg->journal_rwsem);
Jaegeuk Kim3fd96202017-12-19 19:16:34 -08002412 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002413}
2414
2415static void init_free_segmap(struct f2fs_sb_info *sbi)
2416{
2417 unsigned int start;
2418 int type;
2419
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002420 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002421 struct seg_entry *sentry = get_seg_entry(sbi, start);
2422 if (!sentry->valid_blocks)
2423 __set_free(sbi, start);
2424 }
2425
2426 /* set use the current segments */
2427 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2428 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2429 __set_test_and_inuse(sbi, curseg_t->segno);
2430 }
2431}
2432
2433static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2434{
2435 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2436 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002437 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002438 unsigned short valid_blocks;
2439
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002440 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002441 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002442 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2443 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002444 break;
2445 offset = segno + 1;
2446 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002447 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002448 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002449 if (valid_blocks > sbi->blocks_per_seg) {
2450 f2fs_bug_on(sbi, 1);
2451 continue;
2452 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002453 mutex_lock(&dirty_i->seglist_lock);
2454 __locate_dirty_segment(sbi, segno, DIRTY);
2455 mutex_unlock(&dirty_i->seglist_lock);
2456 }
2457}
2458
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002459static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002460{
2461 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002462 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002463
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002464 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002465 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002466 return -ENOMEM;
2467 return 0;
2468}
2469
2470static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2471{
2472 struct dirty_seglist_info *dirty_i;
2473 unsigned int bitmap_size, i;
2474
2475 /* allocate memory for dirty segments list information */
2476 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2477 if (!dirty_i)
2478 return -ENOMEM;
2479
2480 SM_I(sbi)->dirty_info = dirty_i;
2481 mutex_init(&dirty_i->seglist_lock);
2482
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002483 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002484
2485 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002486 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002487 if (!dirty_i->dirty_segmap[i])
2488 return -ENOMEM;
2489 }
2490
2491 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002492 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002493}
2494
Chao Yuf3537bd2019-05-25 23:07:25 +08002495static int sanity_check_curseg(struct f2fs_sb_info *sbi)
2496{
2497 int i;
2498
2499 /*
2500 * In LFS/SSR curseg, .next_blkoff should point to an unused blkaddr;
2501 * In LFS curseg, all blkaddr after .next_blkoff should be unused.
2502 */
2503 for (i = 0; i < NO_CHECK_TYPE; i++) {
2504 struct curseg_info *curseg = CURSEG_I(sbi, i);
2505 struct seg_entry *se = get_seg_entry(sbi, curseg->segno);
2506 unsigned int blkofs = curseg->next_blkoff;
2507
2508 if (f2fs_test_bit(blkofs, se->cur_valid_map))
2509 goto out;
2510
2511 if (curseg->alloc_type == SSR)
2512 continue;
2513
2514 for (blkofs += 1; blkofs < sbi->blocks_per_seg; blkofs++) {
2515 if (!f2fs_test_bit(blkofs, se->cur_valid_map))
2516 continue;
2517out:
2518 f2fs_msg(sbi->sb, KERN_ERR,
2519 "Current segment's next free block offset is "
2520 "inconsistent with bitmap, logtype:%u, "
2521 "segno:%u, type:%u, next_blkoff:%u, blkofs:%u",
2522 i, curseg->segno, curseg->alloc_type,
2523 curseg->next_blkoff, blkofs);
2524 return -EINVAL;
2525 }
2526 }
2527 return 0;
2528}
2529
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002530/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002531 * Update min, max modified time for cost-benefit GC algorithm
2532 */
2533static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2534{
2535 struct sit_info *sit_i = SIT_I(sbi);
2536 unsigned int segno;
2537
2538 mutex_lock(&sit_i->sentry_lock);
2539
2540 sit_i->min_mtime = LLONG_MAX;
2541
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002542 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002543 unsigned int i;
2544 unsigned long long mtime = 0;
2545
2546 for (i = 0; i < sbi->segs_per_sec; i++)
2547 mtime += get_seg_entry(sbi, segno + i)->mtime;
2548
2549 mtime = div_u64(mtime, sbi->segs_per_sec);
2550
2551 if (sit_i->min_mtime > mtime)
2552 sit_i->min_mtime = mtime;
2553 }
2554 sit_i->max_mtime = get_mtime(sbi);
2555 mutex_unlock(&sit_i->sentry_lock);
2556}
2557
2558int build_segment_manager(struct f2fs_sb_info *sbi)
2559{
2560 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2561 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002562 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002563 int err;
2564
2565 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2566 if (!sm_info)
2567 return -ENOMEM;
2568
2569 /* init sm info */
2570 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002571 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2572 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2573 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2574 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2575 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2576 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2577 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002578 sm_info->rec_prefree_segments = sm_info->main_segments *
2579 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim44a83492016-07-13 18:23:35 -07002580 if (sm_info->rec_prefree_segments > DEF_MAX_RECLAIM_PREFREE_SEGMENTS)
2581 sm_info->rec_prefree_segments = DEF_MAX_RECLAIM_PREFREE_SEGMENTS;
2582
Jaegeuk Kim52763a42016-06-13 09:47:48 -07002583 if (!test_opt(sbi, LFS))
2584 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002585 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002586 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002587
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002588 INIT_LIST_HEAD(&sm_info->discard_list);
Chao Yu275b66b2016-08-29 23:58:34 +08002589 INIT_LIST_HEAD(&sm_info->wait_list);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002590 sm_info->nr_discards = 0;
2591 sm_info->max_discards = 0;
2592
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002593 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2594
Chao Yu184a5cd2014-09-04 18:13:01 +08002595 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2596
Yunlei He3b19f962017-06-01 16:43:51 +08002597 if (!f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002598 err = create_flush_cmd_control(sbi);
2599 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002600 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002601 }
2602
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002603 err = build_sit_info(sbi);
2604 if (err)
2605 return err;
2606 err = build_free_segmap(sbi);
2607 if (err)
2608 return err;
2609 err = build_curseg(sbi);
2610 if (err)
2611 return err;
2612
2613 /* reinit free segmap based on SIT */
Jaegeuk Kim3fd96202017-12-19 19:16:34 -08002614 err = build_sit_entries(sbi);
2615 if (err)
2616 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002617
2618 init_free_segmap(sbi);
2619 err = build_dirty_segmap(sbi);
2620 if (err)
2621 return err;
2622
Chao Yuf3537bd2019-05-25 23:07:25 +08002623 err = sanity_check_curseg(sbi);
2624 if (err)
2625 return err;
2626
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002627 init_min_max_mtime(sbi);
2628 return 0;
2629}
2630
2631static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2632 enum dirty_type dirty_type)
2633{
2634 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2635
2636 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002637 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002638 dirty_i->nr_dirty[dirty_type] = 0;
2639 mutex_unlock(&dirty_i->seglist_lock);
2640}
2641
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002642static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002643{
2644 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002645 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002646}
2647
2648static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2649{
2650 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2651 int i;
2652
2653 if (!dirty_i)
2654 return;
2655
2656 /* discard pre-free/dirty segments list */
2657 for (i = 0; i < NR_DIRTY_TYPE; i++)
2658 discard_dirty_segmap(sbi, i);
2659
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002660 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002661 SM_I(sbi)->dirty_info = NULL;
2662 kfree(dirty_i);
2663}
2664
2665static void destroy_curseg(struct f2fs_sb_info *sbi)
2666{
2667 struct curseg_info *array = SM_I(sbi)->curseg_array;
2668 int i;
2669
2670 if (!array)
2671 return;
2672 SM_I(sbi)->curseg_array = NULL;
Chao Yub7ad7512016-02-19 18:08:46 +08002673 for (i = 0; i < NR_CURSEG_TYPE; i++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002674 kfree(array[i].sum_blk);
Chao Yub7ad7512016-02-19 18:08:46 +08002675 kfree(array[i].journal);
2676 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002677 kfree(array);
2678}
2679
2680static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2681{
2682 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2683 if (!free_i)
2684 return;
2685 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002686 kvfree(free_i->free_segmap);
2687 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002688 kfree(free_i);
2689}
2690
2691static void destroy_sit_info(struct f2fs_sb_info *sbi)
2692{
2693 struct sit_info *sit_i = SIT_I(sbi);
2694 unsigned int start;
2695
2696 if (!sit_i)
2697 return;
2698
2699 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002700 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002701 kfree(sit_i->sentries[start].cur_valid_map);
2702 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002703 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002704 }
2705 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002706 kfree(sit_i->tmp_map);
2707
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002708 kvfree(sit_i->sentries);
2709 kvfree(sit_i->sec_entries);
2710 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002711
2712 SM_I(sbi)->sit_info = NULL;
2713 kfree(sit_i->sit_bitmap);
2714 kfree(sit_i);
2715}
2716
2717void destroy_segment_manager(struct f2fs_sb_info *sbi)
2718{
2719 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002720
Chao Yu3b03f722013-11-06 09:12:04 +08002721 if (!sm_info)
2722 return;
Gu Zheng2163d192014-04-27 14:21:33 +08002723 destroy_flush_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002724 destroy_dirty_segmap(sbi);
2725 destroy_curseg(sbi);
2726 destroy_free_segmap(sbi);
2727 destroy_sit_info(sbi);
2728 sbi->sm_info = NULL;
2729 kfree(sm_info);
2730}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002731
2732int __init create_segment_manager_caches(void)
2733{
2734 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002735 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002736 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002737 goto fail;
2738
Chao Yu275b66b2016-08-29 23:58:34 +08002739 bio_entry_slab = f2fs_kmem_cache_create("bio_entry",
2740 sizeof(struct bio_entry));
2741 if (!bio_entry_slab)
Chao Yu6ab2a302016-09-05 12:28:26 +08002742 goto destroy_discard_entry;
Chao Yu275b66b2016-08-29 23:58:34 +08002743
Chao Yu184a5cd2014-09-04 18:13:01 +08002744 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002745 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002746 if (!sit_entry_set_slab)
Chao Yu275b66b2016-08-29 23:58:34 +08002747 goto destroy_bio_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002748
2749 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2750 sizeof(struct inmem_pages));
2751 if (!inmem_entry_slab)
2752 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002753 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002754
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002755destroy_sit_entry_set:
2756 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu275b66b2016-08-29 23:58:34 +08002757destroy_bio_entry:
2758 kmem_cache_destroy(bio_entry_slab);
Chao Yu6ab2a302016-09-05 12:28:26 +08002759destroy_discard_entry:
Chao Yu184a5cd2014-09-04 18:13:01 +08002760 kmem_cache_destroy(discard_entry_slab);
2761fail:
2762 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002763}
2764
2765void destroy_segment_manager_caches(void)
2766{
Chao Yu184a5cd2014-09-04 18:13:01 +08002767 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu275b66b2016-08-29 23:58:34 +08002768 kmem_cache_destroy(bio_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002769 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002770 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002771}