blob: fa30c117b4ccd4cbf46ef4b6aa90f46d6752c546 [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;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -080029static struct kmem_cache *discard_cmd_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
210 if (recover) {
211 struct dnode_of_data dn;
212 struct node_info ni;
213
214 trace_f2fs_commit_inmem_page(page, INMEM_REVOKE);
215
216 set_new_dnode(&dn, inode, NULL, NULL, 0);
217 if (get_dnode_of_data(&dn, page->index, LOOKUP_NODE)) {
218 err = -EAGAIN;
219 goto next;
220 }
221 get_node_info(sbi, dn.nid, &ni);
222 f2fs_replace_block(sbi, &dn, dn.data_blkaddr,
223 cur->old_addr, ni.version, true, true);
224 f2fs_put_dnode(&dn);
225 }
226next:
Jaegeuk Kim63c52d72016-04-12 14:11:03 -0700227 /* we don't need to invalidate this in the sccessful status */
228 if (drop || recover)
229 ClearPageUptodate(page);
Chao Yu28bc1062016-02-06 14:40:34 +0800230 set_page_private(page, 0);
Chao Yuc81ced02016-04-29 20:13:36 +0800231 ClearPagePrivate(page);
Chao Yu28bc1062016-02-06 14:40:34 +0800232 f2fs_put_page(page, 1);
Chao Yudecd36b2015-08-07 18:42:09 +0800233
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700234 list_del(&cur->list);
235 kmem_cache_free(inmem_entry_slab, cur);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800236 dec_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700237 }
Chao Yu28bc1062016-02-06 14:40:34 +0800238 return err;
Chao Yu29b96b52016-02-06 14:38:29 +0800239}
240
241void drop_inmem_pages(struct inode *inode)
242{
243 struct f2fs_inode_info *fi = F2FS_I(inode);
244
245 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800246 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
Chao Yu29b96b52016-02-06 14:38:29 +0800247 mutex_unlock(&fi->inmem_lock);
Chao Yu5fe45742017-01-07 18:50:26 +0800248
249 clear_inode_flag(inode, FI_ATOMIC_FILE);
250 stat_dec_atomic_write(inode);
Chao Yu29b96b52016-02-06 14:38:29 +0800251}
252
Chao Yu28bc1062016-02-06 14:40:34 +0800253static int __commit_inmem_pages(struct inode *inode,
254 struct list_head *revoke_list)
Chao Yu29b96b52016-02-06 14:38:29 +0800255{
256 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
257 struct f2fs_inode_info *fi = F2FS_I(inode);
258 struct inmem_pages *cur, *tmp;
259 struct f2fs_io_info fio = {
260 .sbi = sbi,
261 .type = DATA,
Mike Christie04d328d2016-06-05 14:31:55 -0500262 .op = REQ_OP_WRITE,
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600263 .op_flags = REQ_SYNC | REQ_PRIO,
Chao Yu29b96b52016-02-06 14:38:29 +0800264 .encrypted_page = NULL,
265 };
266 bool submit_bio = false;
267 int err = 0;
268
269 list_for_each_entry_safe(cur, tmp, &fi->inmem_pages, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800270 struct page *page = cur->page;
271
272 lock_page(page);
273 if (page->mapping == inode->i_mapping) {
274 trace_f2fs_commit_inmem_page(page, INMEM);
275
276 set_page_dirty(page);
277 f2fs_wait_on_page_writeback(page, DATA, true);
Chao Yu933439c2016-10-11 22:57:01 +0800278 if (clear_page_dirty_for_io(page)) {
Chao Yu29b96b52016-02-06 14:38:29 +0800279 inode_dec_dirty_pages(inode);
Chao Yu933439c2016-10-11 22:57:01 +0800280 remove_dirty_inode(inode);
281 }
Chao Yu28bc1062016-02-06 14:40:34 +0800282
283 fio.page = page;
Chao Yu29b96b52016-02-06 14:38:29 +0800284 err = do_write_data_page(&fio);
285 if (err) {
Chao Yu28bc1062016-02-06 14:40:34 +0800286 unlock_page(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800287 break;
288 }
Chao Yu28bc1062016-02-06 14:40:34 +0800289
290 /* record old blkaddr for revoking */
291 cur->old_addr = fio.old_blkaddr;
292
Chao Yu29b96b52016-02-06 14:38:29 +0800293 submit_bio = true;
294 }
Chao Yu28bc1062016-02-06 14:40:34 +0800295 unlock_page(page);
296 list_move_tail(&cur->list, revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800297 }
298
299 if (submit_bio)
300 f2fs_submit_merged_bio_cond(sbi, inode, NULL, 0, DATA, WRITE);
Chao Yu28bc1062016-02-06 14:40:34 +0800301
302 if (!err)
303 __revoke_inmem_pages(inode, revoke_list, false, false);
304
Chao Yu29b96b52016-02-06 14:38:29 +0800305 return err;
306}
307
308int commit_inmem_pages(struct inode *inode)
309{
310 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
311 struct f2fs_inode_info *fi = F2FS_I(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800312 struct list_head revoke_list;
313 int err;
Chao Yu29b96b52016-02-06 14:38:29 +0800314
Chao Yu28bc1062016-02-06 14:40:34 +0800315 INIT_LIST_HEAD(&revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800316 f2fs_balance_fs(sbi, true);
317 f2fs_lock_op(sbi);
318
Chao Yu5fe45742017-01-07 18:50:26 +0800319 set_inode_flag(inode, FI_ATOMIC_COMMIT);
320
Chao Yu29b96b52016-02-06 14:38:29 +0800321 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 Yu5fe45742017-01-07 18:50:26 +0800342 clear_inode_flag(inode, FI_ATOMIC_COMMIT);
343
Chao Yu29b96b52016-02-06 14:38:29 +0800344 f2fs_unlock_op(sbi);
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700345 return err;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700346}
347
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900348/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900349 * This function balances dirty node and dentry pages.
350 * In addition, it controls garbage collection.
351 */
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800352void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900353{
Chao Yu0f348022016-09-26 19:45:55 +0800354#ifdef CONFIG_F2FS_FAULT_INJECTION
355 if (time_to_inject(sbi, FAULT_CHECKPOINT))
356 f2fs_stop_checkpoint(sbi, false);
357#endif
358
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800359 if (!need)
360 return;
Jaegeuk Kime589c2c2016-06-02 15:24:24 -0700361
362 /* balance_fs_bg is able to be pending */
363 if (excess_cached_nats(sbi))
364 f2fs_balance_fs_bg(sbi);
365
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900366 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900367 * We should do GC or end up with checkpoint, if there are so many dirty
368 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900369 */
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700370 if (has_not_enough_free_secs(sbi, 0, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900371 mutex_lock(&sbi->gc_mutex);
Jaegeuk Kim7702bdb2016-11-14 17:38:35 -0800372 f2fs_gc(sbi, false, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900373 }
374}
375
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900376void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
377{
Chao Yu1dcc3362015-02-05 17:57:31 +0800378 /* try to shrink extent cache when there is no enough memory */
Jaegeuk Kim554df792015-06-19 13:41:23 -0700379 if (!available_free_memory(sbi, EXTENT_CACHE))
380 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800381
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700382 /* check the # of cached NAT entries */
383 if (!available_free_memory(sbi, NAT_ENTRIES))
384 try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
385
Chao Yu31696582015-07-28 18:33:46 +0800386 if (!available_free_memory(sbi, FREE_NIDS))
Jaegeuk Kimad4edb82016-06-16 16:41:49 -0700387 try_to_free_nids(sbi, MAX_FREE_NIDS);
388 else
Chao Yu3a2ad562016-10-11 22:31:35 +0800389 build_free_nids(sbi, false);
Chao Yu31696582015-07-28 18:33:46 +0800390
Jaegeuk Kimf455c8a2016-12-05 11:37:14 -0800391 if (!is_idle(sbi))
392 return;
Jaegeuk Kime5e7ea32014-11-06 15:24:46 -0800393
Jaegeuk Kim88a70a62014-12-10 15:20:48 -0800394 /* checkpoint is the only way to shrink partial cached entries */
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900395 if (!available_free_memory(sbi, NAT_ENTRIES) ||
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700396 !available_free_memory(sbi, INO_ENTRIES) ||
Chao Yu7d768d22016-01-18 18:31:18 +0800397 excess_prefree_segs(sbi) ||
398 excess_dirty_nats(sbi) ||
Jaegeuk Kimf455c8a2016-12-05 11:37:14 -0800399 f2fs_time_over(sbi, CP_TIME)) {
Chao Yue9f5b8b2016-02-14 18:54:33 +0800400 if (test_opt(sbi, DATA_FLUSH)) {
401 struct blk_plug plug;
402
403 blk_start_plug(&plug);
Chao Yu36b35a02015-12-17 17:13:28 +0800404 sync_dirty_inodes(sbi, FILE_INODE);
Chao Yue9f5b8b2016-02-14 18:54:33 +0800405 blk_finish_plug(&plug);
406 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900407 f2fs_sync_fs(sbi->sb, true);
Jaegeuk Kim42190d22016-01-09 13:45:17 -0800408 stat_inc_bg_cp_count(sbi->stat_info);
Chao Yu36b35a02015-12-17 17:13:28 +0800409 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900410}
411
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700412static int __submit_flush_wait(struct block_device *bdev)
413{
414 struct bio *bio = f2fs_bio_alloc(0);
415 int ret;
416
Linus Torvalds09cb6462016-12-14 09:07:36 -0800417 bio->bi_opf = REQ_OP_WRITE | REQ_PREFLUSH;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700418 bio->bi_bdev = bdev;
419 ret = submit_bio_wait(bio);
420 bio_put(bio);
421 return ret;
422}
423
424static int submit_flush_wait(struct f2fs_sb_info *sbi)
425{
426 int ret = __submit_flush_wait(sbi->sb->s_bdev);
427 int i;
428
429 if (sbi->s_ndevs && !ret) {
430 for (i = 1; i < sbi->s_ndevs; i++) {
431 ret = __submit_flush_wait(FDEV(i).bdev);
432 if (ret)
433 break;
434 }
435 }
436 return ret;
437}
438
Gu Zheng2163d192014-04-27 14:21:33 +0800439static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900440{
441 struct f2fs_sb_info *sbi = data;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800442 struct flush_cmd_control *fcc = SM_I(sbi)->fcc_info;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800443 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900444repeat:
445 if (kthread_should_stop())
446 return 0;
447
Gu Zheng721bd4d2014-09-05 18:31:00 +0800448 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900449 struct flush_cmd *cmd, *next;
450 int ret;
451
Gu Zheng721bd4d2014-09-05 18:31:00 +0800452 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
453 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
454
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700455 ret = submit_flush_wait(sbi);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800456 llist_for_each_entry_safe(cmd, next,
457 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900458 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900459 complete(&cmd->wait);
460 }
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800461 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900462 }
463
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800464 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800465 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900466 goto repeat;
467}
468
469int f2fs_issue_flush(struct f2fs_sb_info *sbi)
470{
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800471 struct flush_cmd_control *fcc = SM_I(sbi)->fcc_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800472 struct flush_cmd cmd;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900473
Jaegeuk Kim24a9ee02014-07-25 17:46:10 -0700474 trace_f2fs_issue_flush(sbi->sb, test_opt(sbi, NOBARRIER),
475 test_opt(sbi, FLUSH_MERGE));
476
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700477 if (test_opt(sbi, NOBARRIER))
478 return 0;
479
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700480 if (!test_opt(sbi, FLUSH_MERGE) || !atomic_read(&fcc->submit_flush)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700481 int ret;
482
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700483 atomic_inc(&fcc->submit_flush);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700484 ret = submit_flush_wait(sbi);
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700485 atomic_dec(&fcc->submit_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700486 return ret;
487 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900488
Chao Yuadf8d902014-05-08 17:00:35 +0800489 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900490
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700491 atomic_inc(&fcc->submit_flush);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800492 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900493
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800494 if (!fcc->dispatch_list)
495 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900496
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800497 if (fcc->f2fs_issue_flush) {
498 wait_for_completion(&cmd.wait);
499 atomic_dec(&fcc->submit_flush);
500 } else {
501 llist_del_all(&fcc->issue_list);
502 atomic_set(&fcc->submit_flush, 0);
503 }
Chao Yuadf8d902014-05-08 17:00:35 +0800504
505 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900506}
507
Gu Zheng2163d192014-04-27 14:21:33 +0800508int create_flush_cmd_control(struct f2fs_sb_info *sbi)
509{
510 dev_t dev = sbi->sb->s_bdev->bd_dev;
511 struct flush_cmd_control *fcc;
512 int err = 0;
513
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800514 if (SM_I(sbi)->fcc_info) {
515 fcc = SM_I(sbi)->fcc_info;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800516 goto init_thread;
517 }
518
Gu Zheng2163d192014-04-27 14:21:33 +0800519 fcc = kzalloc(sizeof(struct flush_cmd_control), GFP_KERNEL);
520 if (!fcc)
521 return -ENOMEM;
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700522 atomic_set(&fcc->submit_flush, 0);
Gu Zheng2163d192014-04-27 14:21:33 +0800523 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800524 init_llist_head(&fcc->issue_list);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800525 SM_I(sbi)->fcc_info = fcc;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800526init_thread:
Gu Zheng2163d192014-04-27 14:21:33 +0800527 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
528 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
529 if (IS_ERR(fcc->f2fs_issue_flush)) {
530 err = PTR_ERR(fcc->f2fs_issue_flush);
531 kfree(fcc);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800532 SM_I(sbi)->fcc_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800533 return err;
534 }
Gu Zheng2163d192014-04-27 14:21:33 +0800535
536 return err;
537}
538
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800539void destroy_flush_cmd_control(struct f2fs_sb_info *sbi, bool free)
Gu Zheng2163d192014-04-27 14:21:33 +0800540{
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800541 struct flush_cmd_control *fcc = SM_I(sbi)->fcc_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800542
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800543 if (fcc && fcc->f2fs_issue_flush) {
544 struct task_struct *flush_thread = fcc->f2fs_issue_flush;
545
546 fcc->f2fs_issue_flush = NULL;
547 kthread_stop(flush_thread);
548 }
549 if (free) {
550 kfree(fcc);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800551 SM_I(sbi)->fcc_info = NULL;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800552 }
Gu Zheng2163d192014-04-27 14:21:33 +0800553}
554
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900555static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
556 enum dirty_type dirty_type)
557{
558 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
559
560 /* need not be added */
561 if (IS_CURSEG(sbi, segno))
562 return;
563
564 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
565 dirty_i->nr_dirty[dirty_type]++;
566
567 if (dirty_type == DIRTY) {
568 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900569 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900570
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700571 if (unlikely(t >= DIRTY)) {
572 f2fs_bug_on(sbi, 1);
573 return;
574 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900575 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
576 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900577 }
578}
579
580static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
581 enum dirty_type dirty_type)
582{
583 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
584
585 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
586 dirty_i->nr_dirty[dirty_type]--;
587
588 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900589 struct seg_entry *sentry = get_seg_entry(sbi, segno);
590 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900591
Changman Lee4625d6a2013-10-25 17:31:57 +0900592 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
593 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900594
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900595 if (get_valid_blocks(sbi, segno, sbi->segs_per_sec) == 0)
596 clear_bit(GET_SECNO(sbi, segno),
597 dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900598 }
599}
600
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900601/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900602 * Should not occur error such as -ENOMEM.
603 * Adding dirty entry into seglist is not critical operation.
604 * If a given segment is one of current working segments, it won't be added.
605 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800606static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900607{
608 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
609 unsigned short valid_blocks;
610
611 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
612 return;
613
614 mutex_lock(&dirty_i->seglist_lock);
615
616 valid_blocks = get_valid_blocks(sbi, segno, 0);
617
618 if (valid_blocks == 0) {
619 __locate_dirty_segment(sbi, segno, PRE);
620 __remove_dirty_segment(sbi, segno, DIRTY);
621 } else if (valid_blocks < sbi->blocks_per_seg) {
622 __locate_dirty_segment(sbi, segno, DIRTY);
623 } else {
624 /* Recovery routine with SSR needs this */
625 __remove_dirty_segment(sbi, segno, DIRTY);
626 }
627
628 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900629}
630
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800631static struct discard_cmd *__add_discard_cmd(struct f2fs_sb_info *sbi,
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -0800632 struct bio *bio, block_t lstart, block_t len)
Chao Yu275b66b2016-08-29 23:58:34 +0800633{
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800634 struct list_head *wait_list = &(SM_I(sbi)->discard_cmd_list);
635 struct discard_cmd *dc;
Chao Yu275b66b2016-08-29 23:58:34 +0800636
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800637 dc = f2fs_kmem_cache_alloc(discard_cmd_slab, GFP_NOFS);
638 INIT_LIST_HEAD(&dc->list);
639 dc->bio = bio;
640 dc->lstart = lstart;
641 dc->len = len;
642 init_completion(&dc->wait);
643 list_add_tail(&dc->list, wait_list);
Chao Yu275b66b2016-08-29 23:58:34 +0800644
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800645 return dc;
Chao Yu275b66b2016-08-29 23:58:34 +0800646}
647
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -0800648/* This should be covered by global mutex, &sit_i->sentry_lock */
649void f2fs_wait_discard_bio(struct f2fs_sb_info *sbi, block_t blkaddr)
Chao Yu275b66b2016-08-29 23:58:34 +0800650{
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800651 struct list_head *wait_list = &(SM_I(sbi)->discard_cmd_list);
652 struct discard_cmd *dc, *tmp;
Chao Yu275b66b2016-08-29 23:58:34 +0800653
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800654 list_for_each_entry_safe(dc, tmp, wait_list, list) {
655 struct bio *bio = dc->bio;
Chao Yu275b66b2016-08-29 23:58:34 +0800656 int err;
657
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800658 if (!completion_done(&dc->wait)) {
659 if ((dc->lstart <= blkaddr &&
660 blkaddr < dc->lstart + dc->len) ||
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -0800661 blkaddr == NULL_ADDR)
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800662 wait_for_completion_io(&dc->wait);
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -0800663 else
664 continue;
665 }
666
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800667 err = bio->bi_error;
Chao Yu275b66b2016-08-29 23:58:34 +0800668 if (err == -EOPNOTSUPP)
669 err = 0;
670
671 if (err)
672 f2fs_msg(sbi->sb, KERN_INFO,
673 "Issue discard failed, ret: %d", err);
674
675 bio_put(bio);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800676 list_del(&dc->list);
677 kmem_cache_free(discard_cmd_slab, dc);
Chao Yu275b66b2016-08-29 23:58:34 +0800678 }
679}
680
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800681static void f2fs_submit_discard_endio(struct bio *bio)
Chao Yu275b66b2016-08-29 23:58:34 +0800682{
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800683 struct discard_cmd *dc = (struct discard_cmd *)bio->bi_private;
Chao Yu275b66b2016-08-29 23:58:34 +0800684
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800685 complete(&dc->wait);
Chao Yu275b66b2016-08-29 23:58:34 +0800686}
687
688/* this function is copied from blkdev_issue_discard from block/blk-lib.c */
Damien Le Moalf46e88092016-10-28 17:45:06 +0900689static int __f2fs_issue_discard_async(struct f2fs_sb_info *sbi,
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700690 struct block_device *bdev, block_t blkstart, block_t blklen)
Chao Yu275b66b2016-08-29 23:58:34 +0800691{
Chao Yu275b66b2016-08-29 23:58:34 +0800692 struct bio *bio = NULL;
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -0800693 block_t lblkstart = blkstart;
Chao Yu275b66b2016-08-29 23:58:34 +0800694 int err;
695
Damien Le Moalf46e88092016-10-28 17:45:06 +0900696 trace_f2fs_issue_discard(sbi->sb, blkstart, blklen);
697
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700698 if (sbi->s_ndevs) {
699 int devi = f2fs_target_device_index(sbi, blkstart);
700
701 blkstart -= FDEV(devi).start_blk;
702 }
Damien Le Moalf46e88092016-10-28 17:45:06 +0900703 err = __blkdev_issue_discard(bdev,
704 SECTOR_FROM_BLOCK(blkstart),
705 SECTOR_FROM_BLOCK(blklen),
706 GFP_NOFS, 0, &bio);
Chao Yu275b66b2016-08-29 23:58:34 +0800707 if (!err && bio) {
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800708 struct discard_cmd *dc = __add_discard_cmd(sbi, bio,
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -0800709 lblkstart, blklen);
Chao Yu275b66b2016-08-29 23:58:34 +0800710
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800711 bio->bi_private = dc;
712 bio->bi_end_io = f2fs_submit_discard_endio;
Chao Yu275b66b2016-08-29 23:58:34 +0800713 bio->bi_opf |= REQ_SYNC;
714 submit_bio(bio);
715 }
Chao Yu275b66b2016-08-29 23:58:34 +0800716 return err;
717}
718
Damien Le Moalf46e88092016-10-28 17:45:06 +0900719#ifdef CONFIG_BLK_DEV_ZONED
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700720static int __f2fs_issue_discard_zone(struct f2fs_sb_info *sbi,
721 struct block_device *bdev, block_t blkstart, block_t blklen)
Damien Le Moalf46e88092016-10-28 17:45:06 +0900722{
Damien Le Moalf46e88092016-10-28 17:45:06 +0900723 sector_t nr_sects = SECTOR_FROM_BLOCK(blklen);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700724 sector_t sector;
725 int devi = 0;
Damien Le Moalf46e88092016-10-28 17:45:06 +0900726
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700727 if (sbi->s_ndevs) {
728 devi = f2fs_target_device_index(sbi, blkstart);
729 blkstart -= FDEV(devi).start_blk;
730 }
731 sector = SECTOR_FROM_BLOCK(blkstart);
732
Damien Le Moalf99e8642017-01-12 07:58:32 -0700733 if (sector & (bdev_zone_sectors(bdev) - 1) ||
734 nr_sects != bdev_zone_sectors(bdev)) {
Damien Le Moalf46e88092016-10-28 17:45:06 +0900735 f2fs_msg(sbi->sb, KERN_INFO,
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700736 "(%d) %s: Unaligned discard attempted (block %x + %x)",
737 devi, sbi->s_ndevs ? FDEV(devi).path: "",
738 blkstart, blklen);
Damien Le Moalf46e88092016-10-28 17:45:06 +0900739 return -EIO;
740 }
741
742 /*
743 * We need to know the type of the zone: for conventional zones,
744 * use regular discard if the drive supports it. For sequential
745 * zones, reset the zone write pointer.
746 */
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700747 switch (get_blkz_type(sbi, bdev, blkstart)) {
Damien Le Moalf46e88092016-10-28 17:45:06 +0900748
749 case BLK_ZONE_TYPE_CONVENTIONAL:
750 if (!blk_queue_discard(bdev_get_queue(bdev)))
751 return 0;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700752 return __f2fs_issue_discard_async(sbi, bdev, blkstart, blklen);
Damien Le Moalf46e88092016-10-28 17:45:06 +0900753 case BLK_ZONE_TYPE_SEQWRITE_REQ:
754 case BLK_ZONE_TYPE_SEQWRITE_PREF:
Damien Le Moal126606c2016-10-28 17:45:07 +0900755 trace_f2fs_issue_reset_zone(sbi->sb, blkstart);
Damien Le Moalf46e88092016-10-28 17:45:06 +0900756 return blkdev_reset_zones(bdev, sector,
757 nr_sects, GFP_NOFS);
758 default:
759 /* Unknown zone type: broken device ? */
760 return -EIO;
761 }
762}
763#endif
764
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700765static int __issue_discard_async(struct f2fs_sb_info *sbi,
766 struct block_device *bdev, block_t blkstart, block_t blklen)
767{
768#ifdef CONFIG_BLK_DEV_ZONED
769 if (f2fs_sb_mounted_blkzoned(sbi->sb) &&
770 bdev_zoned_model(bdev) != BLK_ZONED_NONE)
771 return __f2fs_issue_discard_zone(sbi, bdev, blkstart, blklen);
772#endif
773 return __f2fs_issue_discard_async(sbi, bdev, blkstart, blklen);
774}
775
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900776static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +0900777 block_t blkstart, block_t blklen)
778{
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700779 sector_t start = blkstart, len = 0;
780 struct block_device *bdev;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700781 struct seg_entry *se;
782 unsigned int offset;
783 block_t i;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700784 int err = 0;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700785
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700786 bdev = f2fs_target_device(sbi, blkstart, NULL);
787
788 for (i = blkstart; i < blkstart + blklen; i++, len++) {
789 if (i != start) {
790 struct block_device *bdev2 =
791 f2fs_target_device(sbi, i, NULL);
792
793 if (bdev2 != bdev) {
794 err = __issue_discard_async(sbi, bdev,
795 start, len);
796 if (err)
797 return err;
798 bdev = bdev2;
799 start = i;
800 len = 0;
801 }
802 }
803
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700804 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
805 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
806
807 if (!f2fs_test_and_set_bit(offset, se->discard_map))
808 sbi->discard_blks--;
809 }
Damien Le Moalf46e88092016-10-28 17:45:06 +0900810
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700811 if (len)
812 err = __issue_discard_async(sbi, bdev, start, len);
813 return err;
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900814}
815
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700816static void __add_discard_entry(struct f2fs_sb_info *sbi,
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700817 struct cp_control *cpc, struct seg_entry *se,
818 unsigned int start, unsigned int end)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900819{
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800820 struct list_head *head = &SM_I(sbi)->discard_entry_list;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700821 struct discard_entry *new, *last;
822
823 if (!list_empty(head)) {
824 last = list_last_entry(head, struct discard_entry, list);
825 if (START_BLOCK(sbi, cpc->trim_start) + start ==
826 last->blkaddr + last->len) {
827 last->len += end - start;
828 goto done;
829 }
830 }
831
832 new = f2fs_kmem_cache_alloc(discard_entry_slab, GFP_NOFS);
833 INIT_LIST_HEAD(&new->list);
834 new->blkaddr = START_BLOCK(sbi, cpc->trim_start) + start;
835 new->len = end - start;
836 list_add_tail(&new->list, head);
837done:
838 SM_I(sbi)->nr_discards += end - start;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700839}
840
Jaegeuk Kim25290fa2016-12-29 22:06:15 -0800841static bool add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc,
842 bool check_only)
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700843{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900844 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
845 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700846 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900847 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
848 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700849 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800850 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900851 unsigned int start = 0, end = -1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700852 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900853 int i;
854
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700855 if (se->valid_blocks == max_blocks || !f2fs_discard_en(sbi))
Jaegeuk Kim25290fa2016-12-29 22:06:15 -0800856 return false;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900857
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700858 if (!force) {
859 if (!test_opt(sbi, DISCARD) || !se->valid_blocks ||
Dan Carpenter912a83b2015-05-14 11:52:28 +0300860 SM_I(sbi)->nr_discards >= SM_I(sbi)->max_discards)
Jaegeuk Kim25290fa2016-12-29 22:06:15 -0800861 return false;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700862 }
863
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900864 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
865 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700866 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -0800867 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900868
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700869 while (force || SM_I(sbi)->nr_discards <= SM_I(sbi)->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900870 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
871 if (start >= max_blocks)
872 break;
873
874 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Yunlei Hec7b41e12016-07-07 12:13:33 +0800875 if (force && start && end != max_blocks
876 && (end - start) < cpc->trim_minlen)
877 continue;
878
Jaegeuk Kim25290fa2016-12-29 22:06:15 -0800879 if (check_only)
880 return true;
881
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700882 __add_discard_entry(sbi, cpc, se, start, end);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900883 }
Jaegeuk Kim25290fa2016-12-29 22:06:15 -0800884 return false;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900885}
886
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700887void release_discard_addrs(struct f2fs_sb_info *sbi)
888{
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800889 struct list_head *head = &(SM_I(sbi)->discard_entry_list);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700890 struct discard_entry *entry, *this;
891
892 /* drop caches */
893 list_for_each_entry_safe(entry, this, head, list) {
894 list_del(&entry->list);
895 kmem_cache_free(discard_entry_slab, entry);
896 }
897}
898
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900899/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900900 * Should call clear_prefree_segments after checkpoint is done.
901 */
902static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
903{
904 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +0800905 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900906
907 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700908 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900909 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900910 mutex_unlock(&dirty_i->seglist_lock);
911}
912
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700913void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900914{
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800915 struct list_head *head = &(SM_I(sbi)->discard_entry_list);
Chao Yu2d7b8222014-03-29 11:33:17 +0800916 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900917 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yu275b66b2016-08-29 23:58:34 +0800918 struct blk_plug plug;
Changman Lee29e59c12013-11-11 09:24:37 +0900919 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +0900920 unsigned int start = 0, end = -1;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700921 unsigned int secno, start_segno;
Chao Yuc24a0fd2016-07-07 22:46:55 +0800922 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900923
Chao Yu275b66b2016-08-29 23:58:34 +0800924 blk_start_plug(&plug);
925
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900926 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900927
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900928 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900929 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700930 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
931 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900932 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700933 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
934 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900935
Changman Lee29e59c12013-11-11 09:24:37 +0900936 for (i = start; i < end; i++)
937 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900938
Changman Lee29e59c12013-11-11 09:24:37 +0900939 dirty_i->nr_dirty[PRE] -= end - start;
940
Yunlei He650d3c42016-12-22 11:46:24 +0800941 if (!test_opt(sbi, DISCARD))
Changman Lee29e59c12013-11-11 09:24:37 +0900942 continue;
943
Yunlei He650d3c42016-12-22 11:46:24 +0800944 if (force && start >= cpc->trim_start &&
945 (end - 1) <= cpc->trim_end)
946 continue;
947
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700948 if (!test_opt(sbi, LFS) || sbi->segs_per_sec == 1) {
949 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
Jaegeuk Kim37208872013-11-12 16:55:17 +0900950 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700951 continue;
952 }
953next:
954 secno = GET_SECNO(sbi, start);
955 start_segno = secno * sbi->segs_per_sec;
956 if (!IS_CURSEC(sbi, secno) &&
957 !get_valid_blocks(sbi, start, sbi->segs_per_sec))
958 f2fs_issue_discard(sbi, START_BLOCK(sbi, start_segno),
959 sbi->segs_per_sec << sbi->log_blocks_per_seg);
960
961 start = start_segno + sbi->segs_per_sec;
962 if (start < end)
963 goto next;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900964 }
965 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900966
967 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800968 list_for_each_entry_safe(entry, this, head, list) {
Chao Yuc24a0fd2016-07-07 22:46:55 +0800969 if (force && entry->len < cpc->trim_minlen)
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700970 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900971 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700972 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700973skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900974 list_del(&entry->list);
975 SM_I(sbi)->nr_discards -= entry->len;
976 kmem_cache_free(discard_entry_slab, entry);
977 }
Chao Yu275b66b2016-08-29 23:58:34 +0800978
979 blk_finish_plug(&plug);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900980}
981
Chao Yu184a5cd2014-09-04 18:13:01 +0800982static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900983{
984 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800985
986 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900987 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800988 return false;
989 }
990
991 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900992}
993
994static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
995 unsigned int segno, int modified)
996{
997 struct seg_entry *se = get_seg_entry(sbi, segno);
998 se->type = type;
999 if (modified)
1000 __mark_sit_entry_dirty(sbi, segno);
1001}
1002
1003static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
1004{
1005 struct seg_entry *se;
1006 unsigned int segno, offset;
1007 long int new_vblocks;
1008
1009 segno = GET_SEGNO(sbi, blkaddr);
1010
1011 se = get_seg_entry(sbi, segno);
1012 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001013 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001014
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001015 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001016 (new_vblocks > sbi->blocks_per_seg)));
1017
1018 se->valid_blocks = new_vblocks;
1019 se->mtime = get_mtime(sbi);
1020 SIT_I(sbi)->max_mtime = se->mtime;
1021
1022 /* Update valid block bitmap */
1023 if (del > 0) {
Chao Yu355e7892017-01-07 18:51:01 +08001024 if (f2fs_test_and_set_bit(offset, se->cur_valid_map)) {
1025#ifdef CONFIG_F2FS_CHECK_FS
1026 if (f2fs_test_and_set_bit(offset,
1027 se->cur_valid_map_mir))
1028 f2fs_bug_on(sbi, 1);
1029 else
1030 WARN_ON(1);
1031#else
Jaegeuk Kim05796762014-09-02 16:05:00 -07001032 f2fs_bug_on(sbi, 1);
Chao Yu355e7892017-01-07 18:51:01 +08001033#endif
1034 }
Jaegeuk Kim3e025742016-08-02 10:56:40 -07001035 if (f2fs_discard_en(sbi) &&
1036 !f2fs_test_and_set_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001037 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001038 } else {
Chao Yu355e7892017-01-07 18:51:01 +08001039 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map)) {
1040#ifdef CONFIG_F2FS_CHECK_FS
1041 if (!f2fs_test_and_clear_bit(offset,
1042 se->cur_valid_map_mir))
1043 f2fs_bug_on(sbi, 1);
1044 else
1045 WARN_ON(1);
1046#else
Jaegeuk Kim05796762014-09-02 16:05:00 -07001047 f2fs_bug_on(sbi, 1);
Chao Yu355e7892017-01-07 18:51:01 +08001048#endif
1049 }
Jaegeuk Kim3e025742016-08-02 10:56:40 -07001050 if (f2fs_discard_en(sbi) &&
1051 f2fs_test_and_clear_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001052 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001053 }
1054 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
1055 se->ckpt_valid_blocks += del;
1056
1057 __mark_sit_entry_dirty(sbi, segno);
1058
1059 /* update total number of valid blocks to be written in ckpt area */
1060 SIT_I(sbi)->written_valid_blocks += del;
1061
1062 if (sbi->segs_per_sec > 1)
1063 get_sec_entry(sbi, segno)->valid_blocks += del;
1064}
1065
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001066void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001067{
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001068 update_sit_entry(sbi, new, 1);
1069 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
1070 update_sit_entry(sbi, old, -1);
1071
1072 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
1073 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001074}
1075
1076void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
1077{
1078 unsigned int segno = GET_SEGNO(sbi, addr);
1079 struct sit_info *sit_i = SIT_I(sbi);
1080
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001081 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001082 if (addr == NEW_ADDR)
1083 return;
1084
1085 /* add it into sit main buffer */
1086 mutex_lock(&sit_i->sentry_lock);
1087
1088 update_sit_entry(sbi, addr, -1);
1089
1090 /* add it into dirty seglist */
1091 locate_dirty_segment(sbi, segno);
1092
1093 mutex_unlock(&sit_i->sentry_lock);
1094}
1095
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001096bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
1097{
1098 struct sit_info *sit_i = SIT_I(sbi);
1099 unsigned int segno, offset;
1100 struct seg_entry *se;
1101 bool is_cp = false;
1102
1103 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
1104 return true;
1105
1106 mutex_lock(&sit_i->sentry_lock);
1107
1108 segno = GET_SEGNO(sbi, blkaddr);
1109 se = get_seg_entry(sbi, segno);
1110 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
1111
1112 if (f2fs_test_bit(offset, se->ckpt_valid_map))
1113 is_cp = true;
1114
1115 mutex_unlock(&sit_i->sentry_lock);
1116
1117 return is_cp;
1118}
1119
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001120/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001121 * This function should be resided under the curseg_mutex lock
1122 */
1123static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +08001124 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001125{
1126 struct curseg_info *curseg = CURSEG_I(sbi, type);
1127 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +08001128 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001129 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001130}
1131
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001132/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001133 * Calculate the number of current summary pages for writing
1134 */
Chao Yu3fa06d72014-12-09 14:21:46 +08001135int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001136{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001137 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +08001138 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001139
1140 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1141 if (sbi->ckpt->alloc_type[i] == SSR)
1142 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +08001143 else {
1144 if (for_ra)
1145 valid_sum_count += le16_to_cpu(
1146 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
1147 else
1148 valid_sum_count += curseg_blkoff(sbi, i);
1149 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001150 }
1151
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001152 sum_in_page = (PAGE_SIZE - 2 * SUM_JOURNAL_SIZE -
Fan Li9a479382013-10-29 16:21:47 +08001153 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
1154 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001155 return 1;
Fan Li9a479382013-10-29 16:21:47 +08001156 else if ((valid_sum_count - sum_in_page) <=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001157 (PAGE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001158 return 2;
1159 return 3;
1160}
1161
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001162/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001163 * Caller should put this summary page
1164 */
1165struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
1166{
1167 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
1168}
1169
Chao Yu381722d2015-05-19 17:40:04 +08001170void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
1171{
1172 struct page *page = grab_meta_page(sbi, blk_addr);
1173 void *dst = page_address(page);
1174
1175 if (src)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001176 memcpy(dst, src, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +08001177 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001178 memset(dst, 0, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +08001179 set_page_dirty(page);
1180 f2fs_put_page(page, 1);
1181}
1182
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001183static void write_sum_page(struct f2fs_sb_info *sbi,
1184 struct f2fs_summary_block *sum_blk, block_t blk_addr)
1185{
Chao Yu381722d2015-05-19 17:40:04 +08001186 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001187}
1188
Chao Yub7ad7512016-02-19 18:08:46 +08001189static void write_current_sum_page(struct f2fs_sb_info *sbi,
1190 int type, block_t blk_addr)
1191{
1192 struct curseg_info *curseg = CURSEG_I(sbi, type);
1193 struct page *page = grab_meta_page(sbi, blk_addr);
1194 struct f2fs_summary_block *src = curseg->sum_blk;
1195 struct f2fs_summary_block *dst;
1196
1197 dst = (struct f2fs_summary_block *)page_address(page);
1198
1199 mutex_lock(&curseg->curseg_mutex);
1200
1201 down_read(&curseg->journal_rwsem);
1202 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE);
1203 up_read(&curseg->journal_rwsem);
1204
1205 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE);
1206 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE);
1207
1208 mutex_unlock(&curseg->curseg_mutex);
1209
1210 set_page_dirty(page);
1211 f2fs_put_page(page, 1);
1212}
1213
Jaegeuk Kim60374682013-03-31 13:58:51 +09001214static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
1215{
1216 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +08001217 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +09001218 struct free_segmap_info *free_i = FREE_I(sbi);
1219
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001220 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +08001221 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001222 return 0;
1223}
1224
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001225/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001226 * Find a new segment from the free segments bitmap to right order
1227 * This function should be returned with success, otherwise BUG
1228 */
1229static void get_new_segment(struct f2fs_sb_info *sbi,
1230 unsigned int *newseg, bool new_sec, int dir)
1231{
1232 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001233 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001234 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001235 unsigned int hint = *newseg / sbi->segs_per_sec;
1236 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
1237 unsigned int left_start = hint;
1238 bool init = true;
1239 int go_left = 0;
1240 int i;
1241
Chao Yu1a118cc2015-02-11 18:20:38 +08001242 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001243
1244 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
1245 segno = find_next_zero_bit(free_i->free_segmap,
Chao Yu0ab14352016-01-22 17:42:06 +08001246 (hint + 1) * sbi->segs_per_sec, *newseg + 1);
1247 if (segno < (hint + 1) * sbi->segs_per_sec)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001248 goto got_it;
1249 }
1250find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001251 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
1252 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001253 if (dir == ALLOC_RIGHT) {
1254 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001255 MAIN_SECS(sbi), 0);
1256 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001257 } else {
1258 go_left = 1;
1259 left_start = hint - 1;
1260 }
1261 }
1262 if (go_left == 0)
1263 goto skip_left;
1264
1265 while (test_bit(left_start, free_i->free_secmap)) {
1266 if (left_start > 0) {
1267 left_start--;
1268 continue;
1269 }
1270 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001271 MAIN_SECS(sbi), 0);
1272 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001273 break;
1274 }
1275 secno = left_start;
1276skip_left:
1277 hint = secno;
1278 segno = secno * sbi->segs_per_sec;
1279 zoneno = secno / sbi->secs_per_zone;
1280
1281 /* give up on finding another zone */
1282 if (!init)
1283 goto got_it;
1284 if (sbi->secs_per_zone == 1)
1285 goto got_it;
1286 if (zoneno == old_zoneno)
1287 goto got_it;
1288 if (dir == ALLOC_LEFT) {
1289 if (!go_left && zoneno + 1 >= total_zones)
1290 goto got_it;
1291 if (go_left && zoneno == 0)
1292 goto got_it;
1293 }
1294 for (i = 0; i < NR_CURSEG_TYPE; i++)
1295 if (CURSEG_I(sbi, i)->zone == zoneno)
1296 break;
1297
1298 if (i < NR_CURSEG_TYPE) {
1299 /* zone is in user, try another */
1300 if (go_left)
1301 hint = zoneno * sbi->secs_per_zone - 1;
1302 else if (zoneno + 1 >= total_zones)
1303 hint = 0;
1304 else
1305 hint = (zoneno + 1) * sbi->secs_per_zone;
1306 init = false;
1307 goto find_other_zone;
1308 }
1309got_it:
1310 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001311 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001312 __set_inuse(sbi, segno);
1313 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08001314 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001315}
1316
1317static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
1318{
1319 struct curseg_info *curseg = CURSEG_I(sbi, type);
1320 struct summary_footer *sum_footer;
1321
1322 curseg->segno = curseg->next_segno;
1323 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
1324 curseg->next_blkoff = 0;
1325 curseg->next_segno = NULL_SEGNO;
1326
1327 sum_footer = &(curseg->sum_blk->footer);
1328 memset(sum_footer, 0, sizeof(struct summary_footer));
1329 if (IS_DATASEG(type))
1330 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
1331 if (IS_NODESEG(type))
1332 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
1333 __set_sit_entry_type(sbi, type, curseg->segno, modified);
1334}
1335
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001336/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001337 * Allocate a current working segment.
1338 * This function always allocates a free segment in LFS manner.
1339 */
1340static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
1341{
1342 struct curseg_info *curseg = CURSEG_I(sbi, type);
1343 unsigned int segno = curseg->segno;
1344 int dir = ALLOC_LEFT;
1345
1346 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08001347 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001348 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
1349 dir = ALLOC_RIGHT;
1350
1351 if (test_opt(sbi, NOHEAP))
1352 dir = ALLOC_RIGHT;
1353
1354 get_new_segment(sbi, &segno, new_sec, dir);
1355 curseg->next_segno = segno;
1356 reset_curseg(sbi, type, 1);
1357 curseg->alloc_type = LFS;
1358}
1359
1360static void __next_free_blkoff(struct f2fs_sb_info *sbi,
1361 struct curseg_info *seg, block_t start)
1362{
1363 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09001364 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001365 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09001366 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
1367 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1368 int i, pos;
1369
1370 for (i = 0; i < entries; i++)
1371 target_map[i] = ckpt_map[i] | cur_map[i];
1372
1373 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1374
1375 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001376}
1377
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001378/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001379 * If a segment is written by LFS manner, next block offset is just obtained
1380 * by increasing the current block offset. However, if a segment is written by
1381 * SSR manner, next block offset obtained by calling __next_free_blkoff
1382 */
1383static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1384 struct curseg_info *seg)
1385{
1386 if (seg->alloc_type == SSR)
1387 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1388 else
1389 seg->next_blkoff++;
1390}
1391
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001392/*
arter97e1c42042014-08-06 23:22:50 +09001393 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001394 * manner, so it should recover the existing segment information of valid blocks
1395 */
1396static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1397{
1398 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1399 struct curseg_info *curseg = CURSEG_I(sbi, type);
1400 unsigned int new_segno = curseg->next_segno;
1401 struct f2fs_summary_block *sum_node;
1402 struct page *sum_page;
1403
1404 write_sum_page(sbi, curseg->sum_blk,
1405 GET_SUM_BLOCK(sbi, curseg->segno));
1406 __set_test_and_inuse(sbi, new_segno);
1407
1408 mutex_lock(&dirty_i->seglist_lock);
1409 __remove_dirty_segment(sbi, new_segno, PRE);
1410 __remove_dirty_segment(sbi, new_segno, DIRTY);
1411 mutex_unlock(&dirty_i->seglist_lock);
1412
1413 reset_curseg(sbi, type, 1);
1414 curseg->alloc_type = SSR;
1415 __next_free_blkoff(sbi, curseg, 0);
1416
1417 if (reuse) {
1418 sum_page = get_sum_page(sbi, new_segno);
1419 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1420 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1421 f2fs_put_page(sum_page, 1);
1422 }
1423}
1424
Jaegeuk Kim43727522013-02-04 15:11:17 +09001425static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1426{
1427 struct curseg_info *curseg = CURSEG_I(sbi, type);
1428 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1429
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -07001430 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0, 0))
Jaegeuk Kim43727522013-02-04 15:11:17 +09001431 return v_ops->get_victim(sbi,
1432 &(curseg)->next_segno, BG_GC, type, SSR);
1433
1434 /* For data segments, let's do SSR more intensively */
1435 for (; type >= CURSEG_HOT_DATA; type--)
1436 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1437 BG_GC, type, SSR))
1438 return 1;
1439 return 0;
1440}
1441
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001442/*
1443 * flush out current segment and replace it with new segment
1444 * This function should be returned with success, otherwise BUG
1445 */
1446static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1447 int type, bool force)
1448{
1449 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001450
Gu Zheng7b405272013-08-19 09:41:15 +08001451 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001452 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001453 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001454 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001455 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1456 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001457 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1458 change_curseg(sbi, type, true);
1459 else
1460 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001461
1462 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001463}
1464
1465void allocate_new_segments(struct f2fs_sb_info *sbi)
1466{
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08001467 struct curseg_info *curseg;
1468 unsigned int old_segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001469 int i;
1470
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08001471 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1472 curseg = CURSEG_I(sbi, i);
1473 old_segno = curseg->segno;
1474 SIT_I(sbi)->s_ops->allocate_segment(sbi, i, true);
1475 locate_dirty_segment(sbi, old_segno);
1476 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001477}
1478
1479static const struct segment_allocation default_salloc_ops = {
1480 .allocate_segment = allocate_segment_by_default,
1481};
1482
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08001483bool exist_trim_candidates(struct f2fs_sb_info *sbi, struct cp_control *cpc)
1484{
1485 __u64 trim_start = cpc->trim_start;
1486 bool has_candidate = false;
1487
1488 mutex_lock(&SIT_I(sbi)->sentry_lock);
1489 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++) {
1490 if (add_discard_addrs(sbi, cpc, true)) {
1491 has_candidate = true;
1492 break;
1493 }
1494 }
1495 mutex_unlock(&SIT_I(sbi)->sentry_lock);
1496
1497 cpc->trim_start = trim_start;
1498 return has_candidate;
1499}
1500
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001501int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1502{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001503 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1504 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001505 unsigned int start_segno, end_segno;
1506 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001507 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001508
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001509 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001510 return -EINVAL;
1511
Jan Kara9bd27ae2014-10-21 14:07:33 +02001512 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001513 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001514 goto out;
1515
Yunlei Heed214a12016-09-01 10:14:39 +08001516 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
1517 f2fs_msg(sbi->sb, KERN_WARNING,
1518 "Found FS corruption, run fsck to fix.");
1519 goto out;
1520 }
1521
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001522 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001523 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1524 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1525 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001526 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001527 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001528
1529 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001530 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1531 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001532
1533 if (sbi->discard_blks == 0)
1534 break;
1535 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1536 cpc.trim_end = end_segno;
1537 else
1538 cpc.trim_end = min_t(unsigned int,
1539 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001540 BATCHED_TRIM_SEGMENTS(sbi),
1541 sbi->segs_per_sec) - 1, end_segno);
1542
1543 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001544 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001545 mutex_unlock(&sbi->gc_mutex);
Chao Yue9328352016-08-21 23:21:29 +08001546 if (err)
1547 break;
Chao Yu74fa5f32016-08-21 23:21:30 +08001548
1549 schedule();
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001550 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001551out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001552 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001553 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001554}
1555
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001556static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1557{
1558 struct curseg_info *curseg = CURSEG_I(sbi, type);
1559 if (curseg->next_blkoff < sbi->blocks_per_seg)
1560 return true;
1561 return false;
1562}
1563
1564static int __get_segment_type_2(struct page *page, enum page_type p_type)
1565{
1566 if (p_type == DATA)
1567 return CURSEG_HOT_DATA;
1568 else
1569 return CURSEG_HOT_NODE;
1570}
1571
1572static int __get_segment_type_4(struct page *page, enum page_type p_type)
1573{
1574 if (p_type == DATA) {
1575 struct inode *inode = page->mapping->host;
1576
1577 if (S_ISDIR(inode->i_mode))
1578 return CURSEG_HOT_DATA;
1579 else
1580 return CURSEG_COLD_DATA;
1581 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001582 if (IS_DNODE(page) && is_cold_node(page))
1583 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001584 else
1585 return CURSEG_COLD_NODE;
1586 }
1587}
1588
1589static int __get_segment_type_6(struct page *page, enum page_type p_type)
1590{
1591 if (p_type == DATA) {
1592 struct inode *inode = page->mapping->host;
1593
1594 if (S_ISDIR(inode->i_mode))
1595 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001596 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001597 return CURSEG_COLD_DATA;
1598 else
1599 return CURSEG_WARM_DATA;
1600 } else {
1601 if (IS_DNODE(page))
1602 return is_cold_node(page) ? CURSEG_WARM_NODE :
1603 CURSEG_HOT_NODE;
1604 else
1605 return CURSEG_COLD_NODE;
1606 }
1607}
1608
1609static int __get_segment_type(struct page *page, enum page_type p_type)
1610{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001611 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001612 case 2:
1613 return __get_segment_type_2(page, p_type);
1614 case 4:
1615 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001616 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001617 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001618 f2fs_bug_on(F2FS_P_SB(page),
1619 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001620 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001621}
1622
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001623void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1624 block_t old_blkaddr, block_t *new_blkaddr,
1625 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001626{
1627 struct sit_info *sit_i = SIT_I(sbi);
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08001628 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001629
1630 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001631 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001632
1633 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001634
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001635 f2fs_wait_discard_bio(sbi, *new_blkaddr);
1636
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001637 /*
1638 * __add_sum_entry should be resided under the curseg_mutex
1639 * because, this function updates a summary entry in the
1640 * current summary block.
1641 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001642 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001643
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001644 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001645
1646 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001647
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001648 if (!__has_curseg_space(sbi, type))
1649 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001650 /*
1651 * SIT information should be updated before segment allocation,
1652 * since SSR needs latest valid block information.
1653 */
1654 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001655
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001656 mutex_unlock(&sit_i->sentry_lock);
1657
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001658 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001659 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1660
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001661 mutex_unlock(&curseg->curseg_mutex);
1662}
1663
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001664static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001665{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001666 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08001667 int err;
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001668
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001669 if (fio->type == NODE || fio->type == DATA)
1670 mutex_lock(&fio->sbi->wio_mutex[fio->type]);
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08001671reallocate:
Chao Yu7a9d7542016-02-22 18:36:38 +08001672 allocate_data_block(fio->sbi, fio->page, fio->old_blkaddr,
1673 &fio->new_blkaddr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001674
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001675 /* writeout dirty page into bdev */
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08001676 err = f2fs_submit_page_mbio(fio);
1677 if (err == -EAGAIN) {
1678 fio->old_blkaddr = fio->new_blkaddr;
1679 goto reallocate;
1680 }
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001681
1682 if (fio->type == NODE || fio->type == DATA)
1683 mutex_unlock(&fio->sbi->wio_mutex[fio->type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001684}
1685
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001686void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001687{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001688 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001689 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001690 .type = META,
Mike Christie04d328d2016-06-05 14:31:55 -05001691 .op = REQ_OP_WRITE,
Christoph Hellwig70fd7612016-11-01 07:40:10 -06001692 .op_flags = REQ_SYNC | REQ_META | REQ_PRIO,
Chao Yu7a9d7542016-02-22 18:36:38 +08001693 .old_blkaddr = page->index,
1694 .new_blkaddr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001695 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001696 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001697 };
1698
Chao Yu2b947002015-10-12 17:04:21 +08001699 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
Mike Christie04d328d2016-06-05 14:31:55 -05001700 fio.op_flags &= ~REQ_META;
Chao Yu2b947002015-10-12 17:04:21 +08001701
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001702 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001703 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001704}
1705
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001706void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001707{
1708 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001709
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001710 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001711 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001712}
1713
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001714void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001715{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001716 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001717 struct f2fs_summary sum;
1718 struct node_info ni;
1719
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001720 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001721 get_node_info(sbi, dn->nid, &ni);
1722 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001723 do_write_page(&sum, fio);
Chao Yuf28b3432016-02-24 17:16:47 +08001724 f2fs_update_data_blkaddr(dn, fio->new_blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001725}
1726
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001727void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001728{
Chao Yu7a9d7542016-02-22 18:36:38 +08001729 fio->new_blkaddr = fio->old_blkaddr;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001730 stat_inc_inplace_blocks(fio->sbi);
1731 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001732}
1733
Chao Yu4356e482016-02-23 17:52:43 +08001734void __f2fs_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001735 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08001736 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001737{
1738 struct sit_info *sit_i = SIT_I(sbi);
1739 struct curseg_info *curseg;
1740 unsigned int segno, old_cursegno;
1741 struct seg_entry *se;
1742 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001743 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001744
1745 segno = GET_SEGNO(sbi, new_blkaddr);
1746 se = get_seg_entry(sbi, segno);
1747 type = se->type;
1748
Chao Yu19f106b2015-05-06 13:08:06 +08001749 if (!recover_curseg) {
1750 /* for recovery flow */
1751 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1752 if (old_blkaddr == NULL_ADDR)
1753 type = CURSEG_COLD_DATA;
1754 else
1755 type = CURSEG_WARM_DATA;
1756 }
1757 } else {
1758 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001759 type = CURSEG_WARM_DATA;
1760 }
Chao Yu19f106b2015-05-06 13:08:06 +08001761
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001762 curseg = CURSEG_I(sbi, type);
1763
1764 mutex_lock(&curseg->curseg_mutex);
1765 mutex_lock(&sit_i->sentry_lock);
1766
1767 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001768 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001769
1770 /* change the current segment */
1771 if (segno != curseg->segno) {
1772 curseg->next_segno = segno;
1773 change_curseg(sbi, type, true);
1774 }
1775
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001776 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001777 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001778
Chao Yu28bc1062016-02-06 14:40:34 +08001779 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001780 update_sit_entry(sbi, new_blkaddr, 1);
1781 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1782 update_sit_entry(sbi, old_blkaddr, -1);
1783
1784 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1785 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1786
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001787 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001788
Chao Yu19f106b2015-05-06 13:08:06 +08001789 if (recover_curseg) {
1790 if (old_cursegno != curseg->segno) {
1791 curseg->next_segno = old_cursegno;
1792 change_curseg(sbi, type, true);
1793 }
1794 curseg->next_blkoff = old_blkoff;
1795 }
1796
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001797 mutex_unlock(&sit_i->sentry_lock);
1798 mutex_unlock(&curseg->curseg_mutex);
1799}
1800
Chao Yu528e3452015-05-28 19:15:35 +08001801void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1802 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08001803 unsigned char version, bool recover_curseg,
1804 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08001805{
1806 struct f2fs_summary sum;
1807
1808 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1809
Chao Yu28bc1062016-02-06 14:40:34 +08001810 __f2fs_replace_block(sbi, &sum, old_addr, new_addr,
1811 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08001812
Chao Yuf28b3432016-02-24 17:16:47 +08001813 f2fs_update_data_blkaddr(dn, new_addr);
Chao Yu528e3452015-05-28 19:15:35 +08001814}
1815
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001816void f2fs_wait_on_page_writeback(struct page *page,
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001817 enum page_type type, bool ordered)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001818{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001819 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001820 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1821
Chao Yu0c3a5792016-01-18 18:28:11 +08001822 f2fs_submit_merged_bio_cond(sbi, NULL, page, 0, type, WRITE);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001823 if (ordered)
1824 wait_on_page_writeback(page);
1825 else
1826 wait_for_stable_page(page);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001827 }
1828}
1829
Chao Yu08b39fb2015-10-08 13:27:34 +08001830void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1831 block_t blkaddr)
1832{
1833 struct page *cpage;
1834
Yunlei He5d4c0af2016-09-18 08:16:56 +08001835 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
Chao Yu08b39fb2015-10-08 13:27:34 +08001836 return;
1837
Chao Yu08b39fb2015-10-08 13:27:34 +08001838 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1839 if (cpage) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001840 f2fs_wait_on_page_writeback(cpage, DATA, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08001841 f2fs_put_page(cpage, 1);
1842 }
1843}
1844
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001845static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1846{
1847 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1848 struct curseg_info *seg_i;
1849 unsigned char *kaddr;
1850 struct page *page;
1851 block_t start;
1852 int i, j, offset;
1853
1854 start = start_sum_block(sbi);
1855
1856 page = get_meta_page(sbi, start++);
1857 kaddr = (unsigned char *)page_address(page);
1858
1859 /* Step 1: restore nat cache */
1860 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001861 memcpy(seg_i->journal, kaddr, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001862
1863 /* Step 2: restore sit cache */
1864 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001865 memcpy(seg_i->journal, kaddr + SUM_JOURNAL_SIZE, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001866 offset = 2 * SUM_JOURNAL_SIZE;
1867
1868 /* Step 3: restore summary entries */
1869 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1870 unsigned short blk_off;
1871 unsigned int segno;
1872
1873 seg_i = CURSEG_I(sbi, i);
1874 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1875 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1876 seg_i->next_segno = segno;
1877 reset_curseg(sbi, i, 0);
1878 seg_i->alloc_type = ckpt->alloc_type[i];
1879 seg_i->next_blkoff = blk_off;
1880
1881 if (seg_i->alloc_type == SSR)
1882 blk_off = sbi->blocks_per_seg;
1883
1884 for (j = 0; j < blk_off; j++) {
1885 struct f2fs_summary *s;
1886 s = (struct f2fs_summary *)(kaddr + offset);
1887 seg_i->sum_blk->entries[j] = *s;
1888 offset += SUMMARY_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001889 if (offset + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001890 SUM_FOOTER_SIZE)
1891 continue;
1892
1893 f2fs_put_page(page, 1);
1894 page = NULL;
1895
1896 page = get_meta_page(sbi, start++);
1897 kaddr = (unsigned char *)page_address(page);
1898 offset = 0;
1899 }
1900 }
1901 f2fs_put_page(page, 1);
1902 return 0;
1903}
1904
1905static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1906{
1907 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1908 struct f2fs_summary_block *sum;
1909 struct curseg_info *curseg;
1910 struct page *new;
1911 unsigned short blk_off;
1912 unsigned int segno = 0;
1913 block_t blk_addr = 0;
1914
1915 /* get segment number and block addr */
1916 if (IS_DATASEG(type)) {
1917 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1918 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1919 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001920 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001921 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1922 else
1923 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1924 } else {
1925 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1926 CURSEG_HOT_NODE]);
1927 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1928 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001929 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001930 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1931 type - CURSEG_HOT_NODE);
1932 else
1933 blk_addr = GET_SUM_BLOCK(sbi, segno);
1934 }
1935
1936 new = get_meta_page(sbi, blk_addr);
1937 sum = (struct f2fs_summary_block *)page_address(new);
1938
1939 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001940 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001941 struct f2fs_summary *ns = &sum->entries[0];
1942 int i;
1943 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1944 ns->version = 0;
1945 ns->ofs_in_node = 0;
1946 }
1947 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001948 int err;
1949
1950 err = restore_node_summary(sbi, segno, sum);
1951 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001952 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001953 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001954 }
1955 }
1956 }
1957
1958 /* set uncompleted segment to curseg */
1959 curseg = CURSEG_I(sbi, type);
1960 mutex_lock(&curseg->curseg_mutex);
Chao Yub7ad7512016-02-19 18:08:46 +08001961
1962 /* update journal info */
1963 down_write(&curseg->journal_rwsem);
1964 memcpy(curseg->journal, &sum->journal, SUM_JOURNAL_SIZE);
1965 up_write(&curseg->journal_rwsem);
1966
1967 memcpy(curseg->sum_blk->entries, sum->entries, SUM_ENTRY_SIZE);
1968 memcpy(&curseg->sum_blk->footer, &sum->footer, SUM_FOOTER_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001969 curseg->next_segno = segno;
1970 reset_curseg(sbi, type, 0);
1971 curseg->alloc_type = ckpt->alloc_type[type];
1972 curseg->next_blkoff = blk_off;
1973 mutex_unlock(&curseg->curseg_mutex);
1974 f2fs_put_page(new, 1);
1975 return 0;
1976}
1977
1978static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1979{
1980 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001981 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001982
Chao Yuaaec2b12016-09-20 11:04:18 +08001983 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001984 int npages = npages_for_summary_flush(sbi, true);
1985
1986 if (npages >= 2)
1987 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001988 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001989
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001990 /* restore for compacted data summary */
1991 if (read_compacted_summaries(sbi))
1992 return -EINVAL;
1993 type = CURSEG_HOT_NODE;
1994 }
1995
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001996 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001997 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001998 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001999
Chao Yue4fc5fb2014-03-17 16:36:24 +08002000 for (; type <= CURSEG_COLD_NODE; type++) {
2001 err = read_normal_summaries(sbi, type);
2002 if (err)
2003 return err;
2004 }
2005
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002006 return 0;
2007}
2008
2009static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
2010{
2011 struct page *page;
2012 unsigned char *kaddr;
2013 struct f2fs_summary *summary;
2014 struct curseg_info *seg_i;
2015 int written_size = 0;
2016 int i, j;
2017
2018 page = grab_meta_page(sbi, blkaddr++);
2019 kaddr = (unsigned char *)page_address(page);
2020
2021 /* Step 1: write nat cache */
2022 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002023 memcpy(kaddr, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002024 written_size += SUM_JOURNAL_SIZE;
2025
2026 /* Step 2: write sit cache */
2027 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002028 memcpy(kaddr + written_size, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002029 written_size += SUM_JOURNAL_SIZE;
2030
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002031 /* Step 3: write summary entries */
2032 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
2033 unsigned short blkoff;
2034 seg_i = CURSEG_I(sbi, i);
2035 if (sbi->ckpt->alloc_type[i] == SSR)
2036 blkoff = sbi->blocks_per_seg;
2037 else
2038 blkoff = curseg_blkoff(sbi, i);
2039
2040 for (j = 0; j < blkoff; j++) {
2041 if (!page) {
2042 page = grab_meta_page(sbi, blkaddr++);
2043 kaddr = (unsigned char *)page_address(page);
2044 written_size = 0;
2045 }
2046 summary = (struct f2fs_summary *)(kaddr + written_size);
2047 *summary = seg_i->sum_blk->entries[j];
2048 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002049
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002050 if (written_size + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002051 SUM_FOOTER_SIZE)
2052 continue;
2053
Chao Yue8d61a72013-10-24 15:08:28 +08002054 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002055 f2fs_put_page(page, 1);
2056 page = NULL;
2057 }
2058 }
Chao Yue8d61a72013-10-24 15:08:28 +08002059 if (page) {
2060 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002061 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08002062 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002063}
2064
2065static void write_normal_summaries(struct f2fs_sb_info *sbi,
2066 block_t blkaddr, int type)
2067{
2068 int i, end;
2069 if (IS_DATASEG(type))
2070 end = type + NR_CURSEG_DATA_TYPE;
2071 else
2072 end = type + NR_CURSEG_NODE_TYPE;
2073
Chao Yub7ad7512016-02-19 18:08:46 +08002074 for (i = type; i < end; i++)
2075 write_current_sum_page(sbi, i, blkaddr + (i - type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002076}
2077
2078void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
2079{
Chao Yuaaec2b12016-09-20 11:04:18 +08002080 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002081 write_compacted_summaries(sbi, start_blk);
2082 else
2083 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
2084}
2085
2086void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
2087{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08002088 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002089}
2090
Chao Yudfc08a12016-02-14 18:50:40 +08002091int lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002092 unsigned int val, int alloc)
2093{
2094 int i;
2095
2096 if (type == NAT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08002097 for (i = 0; i < nats_in_cursum(journal); i++) {
2098 if (le32_to_cpu(nid_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002099 return i;
2100 }
Chao Yudfc08a12016-02-14 18:50:40 +08002101 if (alloc && __has_cursum_space(journal, 1, NAT_JOURNAL))
2102 return update_nats_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002103 } else if (type == SIT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08002104 for (i = 0; i < sits_in_cursum(journal); i++)
2105 if (le32_to_cpu(segno_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002106 return i;
Chao Yudfc08a12016-02-14 18:50:40 +08002107 if (alloc && __has_cursum_space(journal, 1, SIT_JOURNAL))
2108 return update_sits_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002109 }
2110 return -1;
2111}
2112
2113static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
2114 unsigned int segno)
2115{
Gu Zheng2cc22182014-10-20 17:45:49 +08002116 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002117}
2118
2119static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
2120 unsigned int start)
2121{
2122 struct sit_info *sit_i = SIT_I(sbi);
2123 struct page *src_page, *dst_page;
2124 pgoff_t src_off, dst_off;
2125 void *src_addr, *dst_addr;
2126
2127 src_off = current_sit_addr(sbi, start);
2128 dst_off = next_sit_addr(sbi, src_off);
2129
2130 /* get current sit block page without lock */
2131 src_page = get_meta_page(sbi, src_off);
2132 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07002133 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002134
2135 src_addr = page_address(src_page);
2136 dst_addr = page_address(dst_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002137 memcpy(dst_addr, src_addr, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002138
2139 set_page_dirty(dst_page);
2140 f2fs_put_page(src_page, 1);
2141
2142 set_to_next_sit(sit_i, start);
2143
2144 return dst_page;
2145}
2146
Chao Yu184a5cd2014-09-04 18:13:01 +08002147static struct sit_entry_set *grab_sit_entry_set(void)
2148{
2149 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07002150 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08002151
2152 ses->entry_cnt = 0;
2153 INIT_LIST_HEAD(&ses->set_list);
2154 return ses;
2155}
2156
2157static void release_sit_entry_set(struct sit_entry_set *ses)
2158{
2159 list_del(&ses->set_list);
2160 kmem_cache_free(sit_entry_set_slab, ses);
2161}
2162
2163static void adjust_sit_entry_set(struct sit_entry_set *ses,
2164 struct list_head *head)
2165{
2166 struct sit_entry_set *next = ses;
2167
2168 if (list_is_last(&ses->set_list, head))
2169 return;
2170
2171 list_for_each_entry_continue(next, head, set_list)
2172 if (ses->entry_cnt <= next->entry_cnt)
2173 break;
2174
2175 list_move_tail(&ses->set_list, &next->set_list);
2176}
2177
2178static void add_sit_entry(unsigned int segno, struct list_head *head)
2179{
2180 struct sit_entry_set *ses;
2181 unsigned int start_segno = START_SEGNO(segno);
2182
2183 list_for_each_entry(ses, head, set_list) {
2184 if (ses->start_segno == start_segno) {
2185 ses->entry_cnt++;
2186 adjust_sit_entry_set(ses, head);
2187 return;
2188 }
2189 }
2190
2191 ses = grab_sit_entry_set();
2192
2193 ses->start_segno = start_segno;
2194 ses->entry_cnt++;
2195 list_add(&ses->set_list, head);
2196}
2197
2198static void add_sits_in_set(struct f2fs_sb_info *sbi)
2199{
2200 struct f2fs_sm_info *sm_info = SM_I(sbi);
2201 struct list_head *set_list = &sm_info->sit_entry_set;
2202 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08002203 unsigned int segno;
2204
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002205 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08002206 add_sit_entry(segno, set_list);
2207}
2208
2209static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002210{
2211 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002212 struct f2fs_journal *journal = curseg->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002213 int i;
2214
Chao Yub7ad7512016-02-19 18:08:46 +08002215 down_write(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08002216 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yu184a5cd2014-09-04 18:13:01 +08002217 unsigned int segno;
2218 bool dirtied;
2219
Chao Yudfc08a12016-02-14 18:50:40 +08002220 segno = le32_to_cpu(segno_in_journal(journal, i));
Chao Yu184a5cd2014-09-04 18:13:01 +08002221 dirtied = __mark_sit_entry_dirty(sbi, segno);
2222
2223 if (!dirtied)
2224 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002225 }
Chao Yudfc08a12016-02-14 18:50:40 +08002226 update_sits_in_cursum(journal, -i);
Chao Yub7ad7512016-02-19 18:08:46 +08002227 up_write(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002228}
2229
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002230/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002231 * CP calls this function, which flushes SIT entries including sit_journal,
2232 * and moves prefree segs to free segs.
2233 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002234void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002235{
2236 struct sit_info *sit_i = SIT_I(sbi);
2237 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
2238 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002239 struct f2fs_journal *journal = curseg->journal;
Chao Yu184a5cd2014-09-04 18:13:01 +08002240 struct sit_entry_set *ses, *tmp;
2241 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08002242 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002243 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002244
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002245 mutex_lock(&sit_i->sentry_lock);
2246
Wanpeng Li2b11a742015-02-27 16:52:50 +08002247 if (!sit_i->dirty_sentries)
2248 goto out;
2249
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002250 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08002251 * add and account sit entries of dirty bitmap in sit entry
2252 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002253 */
Chao Yu184a5cd2014-09-04 18:13:01 +08002254 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002255
Chao Yu184a5cd2014-09-04 18:13:01 +08002256 /*
2257 * if there are no enough space in journal to store dirty sit
2258 * entries, remove all entries from journal and add and account
2259 * them in sit entry set.
2260 */
Chao Yudfc08a12016-02-14 18:50:40 +08002261 if (!__has_cursum_space(journal, sit_i->dirty_sentries, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002262 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002263
Chao Yu184a5cd2014-09-04 18:13:01 +08002264 /*
2265 * there are two steps to flush sit entries:
2266 * #1, flush sit entries to journal in current cold data summary block.
2267 * #2, flush sit entries to sit page.
2268 */
2269 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07002270 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08002271 struct f2fs_sit_block *raw_sit = NULL;
2272 unsigned int start_segno = ses->start_segno;
2273 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002274 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08002275 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09002276
Chao Yu184a5cd2014-09-04 18:13:01 +08002277 if (to_journal &&
Chao Yudfc08a12016-02-14 18:50:40 +08002278 !__has_cursum_space(journal, ses->entry_cnt, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002279 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002280
Chao Yub7ad7512016-02-19 18:08:46 +08002281 if (to_journal) {
2282 down_write(&curseg->journal_rwsem);
2283 } else {
Chao Yu184a5cd2014-09-04 18:13:01 +08002284 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002285 raw_sit = page_address(page);
2286 }
2287
Chao Yu184a5cd2014-09-04 18:13:01 +08002288 /* flush dirty sit entries in region of current sit set */
2289 for_each_set_bit_from(segno, bitmap, end) {
2290 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002291
2292 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08002293
2294 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08002295 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002296 cpc->trim_start = segno;
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08002297 add_discard_addrs(sbi, cpc, false);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002298 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002299
2300 if (to_journal) {
Chao Yudfc08a12016-02-14 18:50:40 +08002301 offset = lookup_journal_in_cursum(journal,
Chao Yu184a5cd2014-09-04 18:13:01 +08002302 SIT_JOURNAL, segno, 1);
2303 f2fs_bug_on(sbi, offset < 0);
Chao Yudfc08a12016-02-14 18:50:40 +08002304 segno_in_journal(journal, offset) =
Chao Yu184a5cd2014-09-04 18:13:01 +08002305 cpu_to_le32(segno);
2306 seg_info_to_raw_sit(se,
Chao Yudfc08a12016-02-14 18:50:40 +08002307 &sit_in_journal(journal, offset));
Chao Yu184a5cd2014-09-04 18:13:01 +08002308 } else {
2309 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
2310 seg_info_to_raw_sit(se,
2311 &raw_sit->entries[sit_offset]);
2312 }
2313
2314 __clear_bit(segno, bitmap);
2315 sit_i->dirty_sentries--;
2316 ses->entry_cnt--;
2317 }
2318
Chao Yub7ad7512016-02-19 18:08:46 +08002319 if (to_journal)
2320 up_write(&curseg->journal_rwsem);
2321 else
Chao Yu184a5cd2014-09-04 18:13:01 +08002322 f2fs_put_page(page, 1);
2323
2324 f2fs_bug_on(sbi, ses->entry_cnt);
2325 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002326 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002327
2328 f2fs_bug_on(sbi, !list_empty(head));
2329 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08002330out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002331 if (cpc->reason == CP_DISCARD) {
Yunlei He650d3c42016-12-22 11:46:24 +08002332 __u64 trim_start = cpc->trim_start;
2333
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002334 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08002335 add_discard_addrs(sbi, cpc, false);
Yunlei He650d3c42016-12-22 11:46:24 +08002336
2337 cpc->trim_start = trim_start;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002338 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002339 mutex_unlock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002340
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002341 set_prefree_as_free_segments(sbi);
2342}
2343
2344static int build_sit_info(struct f2fs_sb_info *sbi)
2345{
2346 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002347 struct sit_info *sit_i;
2348 unsigned int sit_segs, start;
Chao Yuae27d622017-01-07 18:52:34 +08002349 char *src_bitmap;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002350 unsigned int bitmap_size;
2351
2352 /* allocate memory for SIT information */
2353 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
2354 if (!sit_i)
2355 return -ENOMEM;
2356
2357 SM_I(sbi)->sit_info = sit_i;
2358
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002359 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
2360 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002361 if (!sit_i->sentries)
2362 return -ENOMEM;
2363
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002364 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002365 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002366 if (!sit_i->dirty_sentries_bitmap)
2367 return -ENOMEM;
2368
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002369 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002370 sit_i->sentries[start].cur_valid_map
2371 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2372 sit_i->sentries[start].ckpt_valid_map
2373 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002374 if (!sit_i->sentries[start].cur_valid_map ||
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002375 !sit_i->sentries[start].ckpt_valid_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002376 return -ENOMEM;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002377
Chao Yu355e7892017-01-07 18:51:01 +08002378#ifdef CONFIG_F2FS_CHECK_FS
2379 sit_i->sentries[start].cur_valid_map_mir
2380 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2381 if (!sit_i->sentries[start].cur_valid_map_mir)
2382 return -ENOMEM;
2383#endif
2384
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002385 if (f2fs_discard_en(sbi)) {
2386 sit_i->sentries[start].discard_map
2387 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2388 if (!sit_i->sentries[start].discard_map)
2389 return -ENOMEM;
2390 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002391 }
2392
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002393 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2394 if (!sit_i->tmp_map)
2395 return -ENOMEM;
2396
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002397 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002398 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
2399 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002400 if (!sit_i->sec_entries)
2401 return -ENOMEM;
2402 }
2403
2404 /* get information related with SIT */
2405 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
2406
2407 /* setup SIT bitmap from ckeckpoint pack */
2408 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
2409 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
2410
Chao Yuae27d622017-01-07 18:52:34 +08002411 sit_i->sit_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
2412 if (!sit_i->sit_bitmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002413 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002414
Chao Yuae27d622017-01-07 18:52:34 +08002415#ifdef CONFIG_F2FS_CHECK_FS
2416 sit_i->sit_bitmap_mir = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
2417 if (!sit_i->sit_bitmap_mir)
2418 return -ENOMEM;
2419#endif
2420
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002421 /* init SIT information */
2422 sit_i->s_ops = &default_salloc_ops;
2423
2424 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2425 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
Jaegeuk Kimc79b7ff2016-11-14 18:20:10 -08002426 sit_i->written_valid_blocks = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002427 sit_i->bitmap_size = bitmap_size;
2428 sit_i->dirty_sentries = 0;
2429 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2430 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2431 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2432 mutex_init(&sit_i->sentry_lock);
2433 return 0;
2434}
2435
2436static int build_free_segmap(struct f2fs_sb_info *sbi)
2437{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002438 struct free_segmap_info *free_i;
2439 unsigned int bitmap_size, sec_bitmap_size;
2440
2441 /* allocate memory for free segmap information */
2442 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2443 if (!free_i)
2444 return -ENOMEM;
2445
2446 SM_I(sbi)->free_info = free_i;
2447
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002448 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002449 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002450 if (!free_i->free_segmap)
2451 return -ENOMEM;
2452
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002453 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002454 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002455 if (!free_i->free_secmap)
2456 return -ENOMEM;
2457
2458 /* set all segments as dirty temporarily */
2459 memset(free_i->free_segmap, 0xff, bitmap_size);
2460 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2461
2462 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002463 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002464 free_i->free_segments = 0;
2465 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002466 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002467 return 0;
2468}
2469
2470static int build_curseg(struct f2fs_sb_info *sbi)
2471{
Namjae Jeon1042d602012-12-01 10:56:13 +09002472 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002473 int i;
2474
Fabian Frederickb434bab2014-06-23 18:39:15 +02002475 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002476 if (!array)
2477 return -ENOMEM;
2478
2479 SM_I(sbi)->curseg_array = array;
2480
2481 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2482 mutex_init(&array[i].curseg_mutex);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002483 array[i].sum_blk = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002484 if (!array[i].sum_blk)
2485 return -ENOMEM;
Chao Yub7ad7512016-02-19 18:08:46 +08002486 init_rwsem(&array[i].journal_rwsem);
2487 array[i].journal = kzalloc(sizeof(struct f2fs_journal),
2488 GFP_KERNEL);
2489 if (!array[i].journal)
2490 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002491 array[i].segno = NULL_SEGNO;
2492 array[i].next_blkoff = 0;
2493 }
2494 return restore_curseg_summaries(sbi);
2495}
2496
2497static void build_sit_entries(struct f2fs_sb_info *sbi)
2498{
2499 struct sit_info *sit_i = SIT_I(sbi);
2500 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002501 struct f2fs_journal *journal = curseg->journal;
Yunlei He9c094042016-09-24 12:29:18 +08002502 struct seg_entry *se;
2503 struct f2fs_sit_entry sit;
Chao Yu74de5932013-11-22 09:09:59 +08002504 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2505 unsigned int i, start, end;
2506 unsigned int readed, start_blk = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002507
Chao Yu74de5932013-11-22 09:09:59 +08002508 do {
Jaegeuk Kim664ba972016-10-18 11:07:45 -07002509 readed = ra_meta_pages(sbi, start_blk, BIO_MAX_PAGES,
2510 META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002511
Chao Yu74de5932013-11-22 09:09:59 +08002512 start = start_blk * sit_i->sents_per_block;
2513 end = (start_blk + readed) * sit_i->sents_per_block;
2514
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002515 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002516 struct f2fs_sit_block *sit_blk;
Chao Yu74de5932013-11-22 09:09:59 +08002517 struct page *page;
2518
Yunlei He9c094042016-09-24 12:29:18 +08002519 se = &sit_i->sentries[start];
Chao Yu74de5932013-11-22 09:09:59 +08002520 page = get_current_sit_page(sbi, start);
2521 sit_blk = (struct f2fs_sit_block *)page_address(page);
2522 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2523 f2fs_put_page(page, 1);
Chao Yud600af232016-08-19 23:13:47 +08002524
Chao Yu74de5932013-11-22 09:09:59 +08002525 check_block_count(sbi, start, &sit);
2526 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002527
2528 /* build discard map only one time */
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002529 if (f2fs_discard_en(sbi)) {
2530 memcpy(se->discard_map, se->cur_valid_map,
2531 SIT_VBLOCK_MAP_SIZE);
2532 sbi->discard_blks += sbi->blocks_per_seg -
2533 se->valid_blocks;
2534 }
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002535
Chao Yud600af232016-08-19 23:13:47 +08002536 if (sbi->segs_per_sec > 1)
2537 get_sec_entry(sbi, start)->valid_blocks +=
2538 se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002539 }
Chao Yu74de5932013-11-22 09:09:59 +08002540 start_blk += readed;
2541 } while (start_blk < sit_blk_cnt);
Chao Yud600af232016-08-19 23:13:47 +08002542
2543 down_read(&curseg->journal_rwsem);
2544 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yud600af232016-08-19 23:13:47 +08002545 unsigned int old_valid_blocks;
2546
2547 start = le32_to_cpu(segno_in_journal(journal, i));
2548 se = &sit_i->sentries[start];
2549 sit = sit_in_journal(journal, i);
2550
2551 old_valid_blocks = se->valid_blocks;
2552
2553 check_block_count(sbi, start, &sit);
2554 seg_info_from_raw_sit(se, &sit);
2555
2556 if (f2fs_discard_en(sbi)) {
2557 memcpy(se->discard_map, se->cur_valid_map,
2558 SIT_VBLOCK_MAP_SIZE);
2559 sbi->discard_blks += old_valid_blocks -
2560 se->valid_blocks;
2561 }
2562
2563 if (sbi->segs_per_sec > 1)
2564 get_sec_entry(sbi, start)->valid_blocks +=
2565 se->valid_blocks - old_valid_blocks;
2566 }
2567 up_read(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002568}
2569
2570static void init_free_segmap(struct f2fs_sb_info *sbi)
2571{
2572 unsigned int start;
2573 int type;
2574
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002575 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002576 struct seg_entry *sentry = get_seg_entry(sbi, start);
2577 if (!sentry->valid_blocks)
2578 __set_free(sbi, start);
Jaegeuk Kimc79b7ff2016-11-14 18:20:10 -08002579 else
2580 SIT_I(sbi)->written_valid_blocks +=
2581 sentry->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002582 }
2583
2584 /* set use the current segments */
2585 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2586 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2587 __set_test_and_inuse(sbi, curseg_t->segno);
2588 }
2589}
2590
2591static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2592{
2593 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2594 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002595 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002596 unsigned short valid_blocks;
2597
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002598 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002599 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002600 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2601 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002602 break;
2603 offset = segno + 1;
2604 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002605 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002606 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002607 if (valid_blocks > sbi->blocks_per_seg) {
2608 f2fs_bug_on(sbi, 1);
2609 continue;
2610 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002611 mutex_lock(&dirty_i->seglist_lock);
2612 __locate_dirty_segment(sbi, segno, DIRTY);
2613 mutex_unlock(&dirty_i->seglist_lock);
2614 }
2615}
2616
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002617static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002618{
2619 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002620 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002621
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002622 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002623 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002624 return -ENOMEM;
2625 return 0;
2626}
2627
2628static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2629{
2630 struct dirty_seglist_info *dirty_i;
2631 unsigned int bitmap_size, i;
2632
2633 /* allocate memory for dirty segments list information */
2634 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2635 if (!dirty_i)
2636 return -ENOMEM;
2637
2638 SM_I(sbi)->dirty_info = dirty_i;
2639 mutex_init(&dirty_i->seglist_lock);
2640
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002641 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002642
2643 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002644 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002645 if (!dirty_i->dirty_segmap[i])
2646 return -ENOMEM;
2647 }
2648
2649 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002650 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002651}
2652
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002653/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002654 * Update min, max modified time for cost-benefit GC algorithm
2655 */
2656static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2657{
2658 struct sit_info *sit_i = SIT_I(sbi);
2659 unsigned int segno;
2660
2661 mutex_lock(&sit_i->sentry_lock);
2662
2663 sit_i->min_mtime = LLONG_MAX;
2664
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002665 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002666 unsigned int i;
2667 unsigned long long mtime = 0;
2668
2669 for (i = 0; i < sbi->segs_per_sec; i++)
2670 mtime += get_seg_entry(sbi, segno + i)->mtime;
2671
2672 mtime = div_u64(mtime, sbi->segs_per_sec);
2673
2674 if (sit_i->min_mtime > mtime)
2675 sit_i->min_mtime = mtime;
2676 }
2677 sit_i->max_mtime = get_mtime(sbi);
2678 mutex_unlock(&sit_i->sentry_lock);
2679}
2680
2681int build_segment_manager(struct f2fs_sb_info *sbi)
2682{
2683 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2684 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002685 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002686 int err;
2687
2688 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2689 if (!sm_info)
2690 return -ENOMEM;
2691
2692 /* init sm info */
2693 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002694 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2695 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2696 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2697 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2698 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2699 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2700 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002701 sm_info->rec_prefree_segments = sm_info->main_segments *
2702 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim44a83492016-07-13 18:23:35 -07002703 if (sm_info->rec_prefree_segments > DEF_MAX_RECLAIM_PREFREE_SEGMENTS)
2704 sm_info->rec_prefree_segments = DEF_MAX_RECLAIM_PREFREE_SEGMENTS;
2705
Jaegeuk Kim52763a42016-06-13 09:47:48 -07002706 if (!test_opt(sbi, LFS))
2707 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002708 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002709 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002710
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08002711 INIT_LIST_HEAD(&sm_info->discard_entry_list);
2712 INIT_LIST_HEAD(&sm_info->discard_cmd_list);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002713 sm_info->nr_discards = 0;
2714 sm_info->max_discards = 0;
2715
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002716 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2717
Chao Yu184a5cd2014-09-04 18:13:01 +08002718 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2719
Gu Zhengb270ad62014-04-11 17:49:55 +08002720 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002721 err = create_flush_cmd_control(sbi);
2722 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002723 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002724 }
2725
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002726 err = build_sit_info(sbi);
2727 if (err)
2728 return err;
2729 err = build_free_segmap(sbi);
2730 if (err)
2731 return err;
2732 err = build_curseg(sbi);
2733 if (err)
2734 return err;
2735
2736 /* reinit free segmap based on SIT */
2737 build_sit_entries(sbi);
2738
2739 init_free_segmap(sbi);
2740 err = build_dirty_segmap(sbi);
2741 if (err)
2742 return err;
2743
2744 init_min_max_mtime(sbi);
2745 return 0;
2746}
2747
2748static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2749 enum dirty_type dirty_type)
2750{
2751 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2752
2753 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002754 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002755 dirty_i->nr_dirty[dirty_type] = 0;
2756 mutex_unlock(&dirty_i->seglist_lock);
2757}
2758
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002759static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002760{
2761 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002762 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002763}
2764
2765static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2766{
2767 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2768 int i;
2769
2770 if (!dirty_i)
2771 return;
2772
2773 /* discard pre-free/dirty segments list */
2774 for (i = 0; i < NR_DIRTY_TYPE; i++)
2775 discard_dirty_segmap(sbi, i);
2776
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002777 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002778 SM_I(sbi)->dirty_info = NULL;
2779 kfree(dirty_i);
2780}
2781
2782static void destroy_curseg(struct f2fs_sb_info *sbi)
2783{
2784 struct curseg_info *array = SM_I(sbi)->curseg_array;
2785 int i;
2786
2787 if (!array)
2788 return;
2789 SM_I(sbi)->curseg_array = NULL;
Chao Yub7ad7512016-02-19 18:08:46 +08002790 for (i = 0; i < NR_CURSEG_TYPE; i++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002791 kfree(array[i].sum_blk);
Chao Yub7ad7512016-02-19 18:08:46 +08002792 kfree(array[i].journal);
2793 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002794 kfree(array);
2795}
2796
2797static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2798{
2799 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2800 if (!free_i)
2801 return;
2802 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002803 kvfree(free_i->free_segmap);
2804 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002805 kfree(free_i);
2806}
2807
2808static void destroy_sit_info(struct f2fs_sb_info *sbi)
2809{
2810 struct sit_info *sit_i = SIT_I(sbi);
2811 unsigned int start;
2812
2813 if (!sit_i)
2814 return;
2815
2816 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002817 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002818 kfree(sit_i->sentries[start].cur_valid_map);
Chao Yu355e7892017-01-07 18:51:01 +08002819#ifdef CONFIG_F2FS_CHECK_FS
2820 kfree(sit_i->sentries[start].cur_valid_map_mir);
2821#endif
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002822 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002823 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002824 }
2825 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002826 kfree(sit_i->tmp_map);
2827
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002828 kvfree(sit_i->sentries);
2829 kvfree(sit_i->sec_entries);
2830 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002831
2832 SM_I(sbi)->sit_info = NULL;
2833 kfree(sit_i->sit_bitmap);
Chao Yuae27d622017-01-07 18:52:34 +08002834#ifdef CONFIG_F2FS_CHECK_FS
2835 kfree(sit_i->sit_bitmap_mir);
2836#endif
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002837 kfree(sit_i);
2838}
2839
2840void destroy_segment_manager(struct f2fs_sb_info *sbi)
2841{
2842 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002843
Chao Yu3b03f722013-11-06 09:12:04 +08002844 if (!sm_info)
2845 return;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -08002846 destroy_flush_cmd_control(sbi, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002847 destroy_dirty_segmap(sbi);
2848 destroy_curseg(sbi);
2849 destroy_free_segmap(sbi);
2850 destroy_sit_info(sbi);
2851 sbi->sm_info = NULL;
2852 kfree(sm_info);
2853}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002854
2855int __init create_segment_manager_caches(void)
2856{
2857 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002858 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002859 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002860 goto fail;
2861
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08002862 discard_cmd_slab = f2fs_kmem_cache_create("discard_cmd",
2863 sizeof(struct discard_cmd));
2864 if (!discard_cmd_slab)
Chao Yu6ab2a302016-09-05 12:28:26 +08002865 goto destroy_discard_entry;
Chao Yu275b66b2016-08-29 23:58:34 +08002866
Chao Yu184a5cd2014-09-04 18:13:01 +08002867 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002868 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002869 if (!sit_entry_set_slab)
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08002870 goto destroy_discard_cmd;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002871
2872 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2873 sizeof(struct inmem_pages));
2874 if (!inmem_entry_slab)
2875 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002876 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002877
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002878destroy_sit_entry_set:
2879 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08002880destroy_discard_cmd:
2881 kmem_cache_destroy(discard_cmd_slab);
Chao Yu6ab2a302016-09-05 12:28:26 +08002882destroy_discard_entry:
Chao Yu184a5cd2014-09-04 18:13:01 +08002883 kmem_cache_destroy(discard_entry_slab);
2884fail:
2885 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002886}
2887
2888void destroy_segment_manager_caches(void)
2889{
Chao Yu184a5cd2014-09-04 18:13:01 +08002890 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08002891 kmem_cache_destroy(discard_cmd_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002892 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002893 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002894}