blob: 2e8d12e9cae9f56df67a587fde28e46099589b99 [file] [log] [blame]
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002 * fs/f2fs/segment.c
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/fs.h>
12#include <linux/f2fs_fs.h>
13#include <linux/bio.h>
14#include <linux/blkdev.h>
Geert Uytterhoeven690e4a32012-12-19 22:19:30 +010015#include <linux/prefetch.h>
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +090016#include <linux/kthread.h>
Chao Yu74de5932013-11-22 09:09:59 +080017#include <linux/swap.h>
Jaegeuk Kim60b99b42015-10-05 14:49:57 -070018#include <linux/timer.h>
Jaegeuk Kim351df4b2012-11-02 17:09:16 +090019
20#include "f2fs.h"
21#include "segment.h"
22#include "node.h"
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -080023#include "trace.h"
Namjae Jeon6ec178d2013-04-23 17:51:43 +090024#include <trace/events/f2fs.h>
Jaegeuk Kim351df4b2012-11-02 17:09:16 +090025
Changman Lee9a7f1432013-11-15 10:42:51 +090026#define __reverse_ffz(x) __reverse_ffs(~(x))
27
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090028static struct kmem_cache *discard_entry_slab;
Chao Yu275b66b2016-08-29 23:58:34 +080029static struct kmem_cache *bio_entry_slab;
Chao Yu184a5cd2014-09-04 18:13:01 +080030static struct kmem_cache *sit_entry_set_slab;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -070031static struct kmem_cache *inmem_entry_slab;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090032
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070033static unsigned long __reverse_ulong(unsigned char *str)
34{
35 unsigned long tmp = 0;
36 int shift = 24, idx = 0;
37
38#if BITS_PER_LONG == 64
39 shift = 56;
40#endif
41 while (shift >= 0) {
42 tmp |= (unsigned long)str[idx++] << shift;
43 shift -= BITS_PER_BYTE;
44 }
45 return tmp;
46}
47
Changman Lee9a7f1432013-11-15 10:42:51 +090048/*
49 * __reverse_ffs is copied from include/asm-generic/bitops/__ffs.h since
50 * MSB and LSB are reversed in a byte by f2fs_set_bit.
51 */
52static inline unsigned long __reverse_ffs(unsigned long word)
53{
54 int num = 0;
55
56#if BITS_PER_LONG == 64
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070057 if ((word & 0xffffffff00000000UL) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090058 num += 32;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070059 else
Changman Lee9a7f1432013-11-15 10:42:51 +090060 word >>= 32;
Changman Lee9a7f1432013-11-15 10:42:51 +090061#endif
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070062 if ((word & 0xffff0000) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090063 num += 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070064 else
Changman Lee9a7f1432013-11-15 10:42:51 +090065 word >>= 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070066
67 if ((word & 0xff00) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090068 num += 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070069 else
Changman Lee9a7f1432013-11-15 10:42:51 +090070 word >>= 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070071
Changman Lee9a7f1432013-11-15 10:42:51 +090072 if ((word & 0xf0) == 0)
73 num += 4;
74 else
75 word >>= 4;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070076
Changman Lee9a7f1432013-11-15 10:42:51 +090077 if ((word & 0xc) == 0)
78 num += 2;
79 else
80 word >>= 2;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070081
Changman Lee9a7f1432013-11-15 10:42:51 +090082 if ((word & 0x2) == 0)
83 num += 1;
84 return num;
85}
86
87/*
arter97e1c42042014-08-06 23:22:50 +090088 * __find_rev_next(_zero)_bit is copied from lib/find_next_bit.c because
Changman Lee9a7f1432013-11-15 10:42:51 +090089 * f2fs_set_bit makes MSB and LSB reversed in a byte.
Fan Li692223d2015-11-12 08:43:04 +080090 * @size must be integral times of unsigned long.
Changman Lee9a7f1432013-11-15 10:42:51 +090091 * Example:
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070092 * MSB <--> LSB
93 * f2fs_set_bit(0, bitmap) => 1000 0000
94 * f2fs_set_bit(7, bitmap) => 0000 0001
Changman Lee9a7f1432013-11-15 10:42:51 +090095 */
96static unsigned long __find_rev_next_bit(const unsigned long *addr,
97 unsigned long size, unsigned long offset)
98{
99 const unsigned long *p = addr + BIT_WORD(offset);
Fan Li692223d2015-11-12 08:43:04 +0800100 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900101 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900102
103 if (offset >= size)
104 return size;
105
Fan Li692223d2015-11-12 08:43:04 +0800106 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900107 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900108
Fan Li692223d2015-11-12 08:43:04 +0800109 while (1) {
110 if (*p == 0)
111 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700112
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700113 tmp = __reverse_ulong((unsigned char *)p);
Fan Li692223d2015-11-12 08:43:04 +0800114
115 tmp &= ~0UL >> offset;
116 if (size < BITS_PER_LONG)
117 tmp &= (~0UL << (BITS_PER_LONG - size));
Changman Lee9a7f1432013-11-15 10:42:51 +0900118 if (tmp)
Fan Li692223d2015-11-12 08:43:04 +0800119 goto found;
120pass:
121 if (size <= BITS_PER_LONG)
122 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900123 size -= BITS_PER_LONG;
Fan Li692223d2015-11-12 08:43:04 +0800124 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700125 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900126 }
Fan Li692223d2015-11-12 08:43:04 +0800127 return result;
128found:
129 return result - size + __reverse_ffs(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900130}
131
132static unsigned long __find_rev_next_zero_bit(const unsigned long *addr,
133 unsigned long size, unsigned long offset)
134{
135 const unsigned long *p = addr + BIT_WORD(offset);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800136 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900137 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900138
139 if (offset >= size)
140 return size;
141
Jaegeuk Kim80609442015-12-04 16:51:13 -0800142 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900143 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900144
Jaegeuk Kim80609442015-12-04 16:51:13 -0800145 while (1) {
146 if (*p == ~0UL)
147 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700148
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700149 tmp = __reverse_ulong((unsigned char *)p);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800150
151 if (offset)
152 tmp |= ~0UL << (BITS_PER_LONG - offset);
153 if (size < BITS_PER_LONG)
154 tmp |= ~0UL >> size;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700155 if (tmp != ~0UL)
Jaegeuk Kim80609442015-12-04 16:51:13 -0800156 goto found;
157pass:
158 if (size <= BITS_PER_LONG)
159 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900160 size -= BITS_PER_LONG;
Jaegeuk Kim80609442015-12-04 16:51:13 -0800161 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700162 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900163 }
Jaegeuk Kim80609442015-12-04 16:51:13 -0800164 return result;
165found:
166 return result - size + __reverse_ffz(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900167}
168
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700169void register_inmem_page(struct inode *inode, struct page *page)
170{
171 struct f2fs_inode_info *fi = F2FS_I(inode);
172 struct inmem_pages *new;
Jaegeuk Kim9be32d72014-12-05 10:39:49 -0800173
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -0800174 f2fs_trace_pid(page);
Jaegeuk Kim0722b102014-12-05 11:58:02 -0800175
Chao Yudecd36b2015-08-07 18:42:09 +0800176 set_page_private(page, (unsigned long)ATOMIC_WRITTEN_PAGE);
177 SetPagePrivate(page);
178
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700179 new = f2fs_kmem_cache_alloc(inmem_entry_slab, GFP_NOFS);
180
181 /* add atomic page indices to the list */
182 new->page = page;
183 INIT_LIST_HEAD(&new->list);
Chao Yudecd36b2015-08-07 18:42:09 +0800184
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700185 /* increase reference count with clean state */
186 mutex_lock(&fi->inmem_lock);
187 get_page(page);
188 list_add_tail(&new->list, &fi->inmem_pages);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800189 inc_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700190 mutex_unlock(&fi->inmem_lock);
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700191
192 trace_f2fs_register_inmem_page(page, INMEM);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700193}
194
Chao Yu28bc1062016-02-06 14:40:34 +0800195static int __revoke_inmem_pages(struct inode *inode,
196 struct list_head *head, bool drop, bool recover)
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700197{
Chao Yu28bc1062016-02-06 14:40:34 +0800198 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700199 struct inmem_pages *cur, *tmp;
Chao Yu28bc1062016-02-06 14:40:34 +0800200 int err = 0;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700201
Chao Yu29b96b52016-02-06 14:38:29 +0800202 list_for_each_entry_safe(cur, tmp, head, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800203 struct page *page = cur->page;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700204
Chao Yu28bc1062016-02-06 14:40:34 +0800205 if (drop)
206 trace_f2fs_commit_inmem_page(page, INMEM_DROP);
207
208 lock_page(page);
209
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
Jaegeuk Kim91942322016-05-20 10:13:22 -0700245 clear_inode_flag(inode, FI_ATOMIC_FILE);
Jaegeuk Kim26dc3d42016-04-11 13:15:10 -0700246
Chao Yu29b96b52016-02-06 14:38:29 +0800247 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800248 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
Chao Yu29b96b52016-02-06 14:38:29 +0800249 mutex_unlock(&fi->inmem_lock);
250}
251
Chao Yu28bc1062016-02-06 14:40:34 +0800252static int __commit_inmem_pages(struct inode *inode,
253 struct list_head *revoke_list)
Chao Yu29b96b52016-02-06 14:38:29 +0800254{
255 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
256 struct f2fs_inode_info *fi = F2FS_I(inode);
257 struct inmem_pages *cur, *tmp;
258 struct f2fs_io_info fio = {
259 .sbi = sbi,
260 .type = DATA,
Mike Christie04d328d2016-06-05 14:31:55 -0500261 .op = REQ_OP_WRITE,
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600262 .op_flags = REQ_SYNC | REQ_PRIO,
Chao Yu29b96b52016-02-06 14:38:29 +0800263 .encrypted_page = NULL,
264 };
265 bool submit_bio = false;
266 int err = 0;
267
268 list_for_each_entry_safe(cur, tmp, &fi->inmem_pages, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800269 struct page *page = cur->page;
270
271 lock_page(page);
272 if (page->mapping == inode->i_mapping) {
273 trace_f2fs_commit_inmem_page(page, INMEM);
274
275 set_page_dirty(page);
276 f2fs_wait_on_page_writeback(page, DATA, true);
Chao Yu933439c2016-10-11 22:57:01 +0800277 if (clear_page_dirty_for_io(page)) {
Chao Yu29b96b52016-02-06 14:38:29 +0800278 inode_dec_dirty_pages(inode);
Chao Yu933439c2016-10-11 22:57:01 +0800279 remove_dirty_inode(inode);
280 }
Chao Yu28bc1062016-02-06 14:40:34 +0800281
282 fio.page = page;
Chao Yu29b96b52016-02-06 14:38:29 +0800283 err = do_write_data_page(&fio);
284 if (err) {
Chao Yu28bc1062016-02-06 14:40:34 +0800285 unlock_page(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800286 break;
287 }
Chao Yu28bc1062016-02-06 14:40:34 +0800288
289 /* record old blkaddr for revoking */
290 cur->old_addr = fio.old_blkaddr;
291
Chao Yu29b96b52016-02-06 14:38:29 +0800292 submit_bio = true;
293 }
Chao Yu28bc1062016-02-06 14:40:34 +0800294 unlock_page(page);
295 list_move_tail(&cur->list, revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800296 }
297
298 if (submit_bio)
299 f2fs_submit_merged_bio_cond(sbi, inode, NULL, 0, DATA, WRITE);
Chao Yu28bc1062016-02-06 14:40:34 +0800300
301 if (!err)
302 __revoke_inmem_pages(inode, revoke_list, false, false);
303
Chao Yu29b96b52016-02-06 14:38:29 +0800304 return err;
305}
306
307int commit_inmem_pages(struct inode *inode)
308{
309 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
310 struct f2fs_inode_info *fi = F2FS_I(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800311 struct list_head revoke_list;
312 int err;
Chao Yu29b96b52016-02-06 14:38:29 +0800313
Chao Yu28bc1062016-02-06 14:40:34 +0800314 INIT_LIST_HEAD(&revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800315 f2fs_balance_fs(sbi, true);
316 f2fs_lock_op(sbi);
317
318 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800319 err = __commit_inmem_pages(inode, &revoke_list);
320 if (err) {
321 int ret;
322 /*
323 * try to revoke all committed pages, but still we could fail
324 * due to no memory or other reason, if that happened, EAGAIN
325 * will be returned, which means in such case, transaction is
326 * already not integrity, caller should use journal to do the
327 * recovery or rewrite & commit last transaction. For other
328 * error number, revoking was done by filesystem itself.
329 */
330 ret = __revoke_inmem_pages(inode, &revoke_list, false, true);
331 if (ret)
332 err = ret;
333
334 /* drop all uncommitted pages */
335 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
336 }
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700337 mutex_unlock(&fi->inmem_lock);
338
Chao Yu29b96b52016-02-06 14:38:29 +0800339 f2fs_unlock_op(sbi);
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700340 return err;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700341}
342
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900343/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900344 * This function balances dirty node and dentry pages.
345 * In addition, it controls garbage collection.
346 */
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800347void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900348{
Chao Yu0f348022016-09-26 19:45:55 +0800349#ifdef CONFIG_F2FS_FAULT_INJECTION
350 if (time_to_inject(sbi, FAULT_CHECKPOINT))
351 f2fs_stop_checkpoint(sbi, false);
352#endif
353
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800354 if (!need)
355 return;
Jaegeuk Kime589c2c2016-06-02 15:24:24 -0700356
357 /* balance_fs_bg is able to be pending */
358 if (excess_cached_nats(sbi))
359 f2fs_balance_fs_bg(sbi);
360
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900361 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900362 * We should do GC or end up with checkpoint, if there are so many dirty
363 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900364 */
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700365 if (has_not_enough_free_secs(sbi, 0, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900366 mutex_lock(&sbi->gc_mutex);
Jaegeuk Kim7702bdb2016-11-14 17:38:35 -0800367 f2fs_gc(sbi, false, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900368 }
369}
370
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900371void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
372{
Chao Yu1dcc3362015-02-05 17:57:31 +0800373 /* try to shrink extent cache when there is no enough memory */
Jaegeuk Kim554df792015-06-19 13:41:23 -0700374 if (!available_free_memory(sbi, EXTENT_CACHE))
375 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800376
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700377 /* check the # of cached NAT entries */
378 if (!available_free_memory(sbi, NAT_ENTRIES))
379 try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
380
Chao Yu31696582015-07-28 18:33:46 +0800381 if (!available_free_memory(sbi, FREE_NIDS))
Jaegeuk Kimad4edb82016-06-16 16:41:49 -0700382 try_to_free_nids(sbi, MAX_FREE_NIDS);
383 else
Chao Yu3a2ad562016-10-11 22:31:35 +0800384 build_free_nids(sbi, false);
Chao Yu31696582015-07-28 18:33:46 +0800385
Jaegeuk Kimf455c8a2016-12-05 11:37:14 -0800386 if (!is_idle(sbi))
387 return;
Jaegeuk Kime5e7ea32014-11-06 15:24:46 -0800388
Jaegeuk Kim88a70a62014-12-10 15:20:48 -0800389 /* checkpoint is the only way to shrink partial cached entries */
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900390 if (!available_free_memory(sbi, NAT_ENTRIES) ||
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700391 !available_free_memory(sbi, INO_ENTRIES) ||
Chao Yu7d768d22016-01-18 18:31:18 +0800392 excess_prefree_segs(sbi) ||
393 excess_dirty_nats(sbi) ||
Jaegeuk Kimf455c8a2016-12-05 11:37:14 -0800394 f2fs_time_over(sbi, CP_TIME)) {
Chao Yue9f5b8b2016-02-14 18:54:33 +0800395 if (test_opt(sbi, DATA_FLUSH)) {
396 struct blk_plug plug;
397
398 blk_start_plug(&plug);
Chao Yu36b35a02015-12-17 17:13:28 +0800399 sync_dirty_inodes(sbi, FILE_INODE);
Chao Yue9f5b8b2016-02-14 18:54:33 +0800400 blk_finish_plug(&plug);
401 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900402 f2fs_sync_fs(sbi->sb, true);
Jaegeuk Kim42190d22016-01-09 13:45:17 -0800403 stat_inc_bg_cp_count(sbi->stat_info);
Chao Yu36b35a02015-12-17 17:13:28 +0800404 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900405}
406
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700407static int __submit_flush_wait(struct block_device *bdev)
408{
409 struct bio *bio = f2fs_bio_alloc(0);
410 int ret;
411
Linus Torvalds09cb6462016-12-14 09:07:36 -0800412 bio->bi_opf = REQ_OP_WRITE | REQ_PREFLUSH;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700413 bio->bi_bdev = bdev;
414 ret = submit_bio_wait(bio);
415 bio_put(bio);
416 return ret;
417}
418
419static int submit_flush_wait(struct f2fs_sb_info *sbi)
420{
421 int ret = __submit_flush_wait(sbi->sb->s_bdev);
422 int i;
423
424 if (sbi->s_ndevs && !ret) {
425 for (i = 1; i < sbi->s_ndevs; i++) {
426 ret = __submit_flush_wait(FDEV(i).bdev);
427 if (ret)
428 break;
429 }
430 }
431 return ret;
432}
433
Gu Zheng2163d192014-04-27 14:21:33 +0800434static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900435{
436 struct f2fs_sb_info *sbi = data;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800437 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
438 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900439repeat:
440 if (kthread_should_stop())
441 return 0;
442
Gu Zheng721bd4d2014-09-05 18:31:00 +0800443 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900444 struct flush_cmd *cmd, *next;
445 int ret;
446
Gu Zheng721bd4d2014-09-05 18:31:00 +0800447 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
448 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
449
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700450 ret = submit_flush_wait(sbi);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800451 llist_for_each_entry_safe(cmd, next,
452 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900453 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900454 complete(&cmd->wait);
455 }
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800456 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900457 }
458
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800459 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800460 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900461 goto repeat;
462}
463
464int f2fs_issue_flush(struct f2fs_sb_info *sbi)
465{
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800466 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800467 struct flush_cmd cmd;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900468
Jaegeuk Kim24a9ee02014-07-25 17:46:10 -0700469 trace_f2fs_issue_flush(sbi->sb, test_opt(sbi, NOBARRIER),
470 test_opt(sbi, FLUSH_MERGE));
471
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700472 if (test_opt(sbi, NOBARRIER))
473 return 0;
474
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700475 if (!test_opt(sbi, FLUSH_MERGE) || !atomic_read(&fcc->submit_flush)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700476 int ret;
477
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700478 atomic_inc(&fcc->submit_flush);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700479 ret = submit_flush_wait(sbi);
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700480 atomic_dec(&fcc->submit_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700481 return ret;
482 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900483
Chao Yuadf8d902014-05-08 17:00:35 +0800484 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900485
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700486 atomic_inc(&fcc->submit_flush);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800487 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900488
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800489 if (!fcc->dispatch_list)
490 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900491
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800492 if (fcc->f2fs_issue_flush) {
493 wait_for_completion(&cmd.wait);
494 atomic_dec(&fcc->submit_flush);
495 } else {
496 llist_del_all(&fcc->issue_list);
497 atomic_set(&fcc->submit_flush, 0);
498 }
Chao Yuadf8d902014-05-08 17:00:35 +0800499
500 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900501}
502
Gu Zheng2163d192014-04-27 14:21:33 +0800503int create_flush_cmd_control(struct f2fs_sb_info *sbi)
504{
505 dev_t dev = sbi->sb->s_bdev->bd_dev;
506 struct flush_cmd_control *fcc;
507 int err = 0;
508
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800509 if (SM_I(sbi)->cmd_control_info) {
510 fcc = SM_I(sbi)->cmd_control_info;
511 goto init_thread;
512 }
513
Gu Zheng2163d192014-04-27 14:21:33 +0800514 fcc = kzalloc(sizeof(struct flush_cmd_control), GFP_KERNEL);
515 if (!fcc)
516 return -ENOMEM;
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700517 atomic_set(&fcc->submit_flush, 0);
Gu Zheng2163d192014-04-27 14:21:33 +0800518 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800519 init_llist_head(&fcc->issue_list);
Chao Yu6b2920a2014-07-07 11:21:59 +0800520 SM_I(sbi)->cmd_control_info = fcc;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800521init_thread:
Gu Zheng2163d192014-04-27 14:21:33 +0800522 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
523 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
524 if (IS_ERR(fcc->f2fs_issue_flush)) {
525 err = PTR_ERR(fcc->f2fs_issue_flush);
526 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800527 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800528 return err;
529 }
Gu Zheng2163d192014-04-27 14:21:33 +0800530
531 return err;
532}
533
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800534void destroy_flush_cmd_control(struct f2fs_sb_info *sbi, bool free)
Gu Zheng2163d192014-04-27 14:21:33 +0800535{
Chao Yu6b2920a2014-07-07 11:21:59 +0800536 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800537
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800538 if (fcc && fcc->f2fs_issue_flush) {
539 struct task_struct *flush_thread = fcc->f2fs_issue_flush;
540
541 fcc->f2fs_issue_flush = NULL;
542 kthread_stop(flush_thread);
543 }
544 if (free) {
545 kfree(fcc);
546 SM_I(sbi)->cmd_control_info = NULL;
547 }
Gu Zheng2163d192014-04-27 14:21:33 +0800548}
549
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900550static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
551 enum dirty_type dirty_type)
552{
553 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
554
555 /* need not be added */
556 if (IS_CURSEG(sbi, segno))
557 return;
558
559 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
560 dirty_i->nr_dirty[dirty_type]++;
561
562 if (dirty_type == DIRTY) {
563 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900564 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900565
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700566 if (unlikely(t >= DIRTY)) {
567 f2fs_bug_on(sbi, 1);
568 return;
569 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900570 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
571 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900572 }
573}
574
575static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
576 enum dirty_type dirty_type)
577{
578 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
579
580 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
581 dirty_i->nr_dirty[dirty_type]--;
582
583 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900584 struct seg_entry *sentry = get_seg_entry(sbi, segno);
585 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900586
Changman Lee4625d6a2013-10-25 17:31:57 +0900587 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
588 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900589
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900590 if (get_valid_blocks(sbi, segno, sbi->segs_per_sec) == 0)
591 clear_bit(GET_SECNO(sbi, segno),
592 dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900593 }
594}
595
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900596/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900597 * Should not occur error such as -ENOMEM.
598 * Adding dirty entry into seglist is not critical operation.
599 * If a given segment is one of current working segments, it won't be added.
600 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800601static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900602{
603 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
604 unsigned short valid_blocks;
605
606 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
607 return;
608
609 mutex_lock(&dirty_i->seglist_lock);
610
611 valid_blocks = get_valid_blocks(sbi, segno, 0);
612
613 if (valid_blocks == 0) {
614 __locate_dirty_segment(sbi, segno, PRE);
615 __remove_dirty_segment(sbi, segno, DIRTY);
616 } else if (valid_blocks < sbi->blocks_per_seg) {
617 __locate_dirty_segment(sbi, segno, DIRTY);
618 } else {
619 /* Recovery routine with SSR needs this */
620 __remove_dirty_segment(sbi, segno, DIRTY);
621 }
622
623 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900624}
625
Chao Yu275b66b2016-08-29 23:58:34 +0800626static struct bio_entry *__add_bio_entry(struct f2fs_sb_info *sbi,
627 struct bio *bio)
628{
629 struct list_head *wait_list = &(SM_I(sbi)->wait_list);
630 struct bio_entry *be = f2fs_kmem_cache_alloc(bio_entry_slab, GFP_NOFS);
631
632 INIT_LIST_HEAD(&be->list);
633 be->bio = bio;
634 init_completion(&be->event);
635 list_add_tail(&be->list, wait_list);
636
637 return be;
638}
639
640void f2fs_wait_all_discard_bio(struct f2fs_sb_info *sbi)
641{
642 struct list_head *wait_list = &(SM_I(sbi)->wait_list);
643 struct bio_entry *be, *tmp;
644
645 list_for_each_entry_safe(be, tmp, wait_list, list) {
646 struct bio *bio = be->bio;
647 int err;
648
649 wait_for_completion_io(&be->event);
650 err = be->error;
651 if (err == -EOPNOTSUPP)
652 err = 0;
653
654 if (err)
655 f2fs_msg(sbi->sb, KERN_INFO,
656 "Issue discard failed, ret: %d", err);
657
658 bio_put(bio);
659 list_del(&be->list);
660 kmem_cache_free(bio_entry_slab, be);
661 }
662}
663
664static void f2fs_submit_bio_wait_endio(struct bio *bio)
665{
666 struct bio_entry *be = (struct bio_entry *)bio->bi_private;
667
668 be->error = bio->bi_error;
669 complete(&be->event);
670}
671
672/* this function is copied from blkdev_issue_discard from block/blk-lib.c */
Damien Le Moalf46e88092016-10-28 17:45:06 +0900673static int __f2fs_issue_discard_async(struct f2fs_sb_info *sbi,
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700674 struct block_device *bdev, block_t blkstart, block_t blklen)
Chao Yu275b66b2016-08-29 23:58:34 +0800675{
Chao Yu275b66b2016-08-29 23:58:34 +0800676 struct bio *bio = NULL;
677 int err;
678
Damien Le Moalf46e88092016-10-28 17:45:06 +0900679 trace_f2fs_issue_discard(sbi->sb, blkstart, blklen);
680
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700681 if (sbi->s_ndevs) {
682 int devi = f2fs_target_device_index(sbi, blkstart);
683
684 blkstart -= FDEV(devi).start_blk;
685 }
Damien Le Moalf46e88092016-10-28 17:45:06 +0900686 err = __blkdev_issue_discard(bdev,
687 SECTOR_FROM_BLOCK(blkstart),
688 SECTOR_FROM_BLOCK(blklen),
689 GFP_NOFS, 0, &bio);
Chao Yu275b66b2016-08-29 23:58:34 +0800690 if (!err && bio) {
691 struct bio_entry *be = __add_bio_entry(sbi, bio);
692
693 bio->bi_private = be;
694 bio->bi_end_io = f2fs_submit_bio_wait_endio;
695 bio->bi_opf |= REQ_SYNC;
696 submit_bio(bio);
697 }
698
699 return err;
700}
701
Damien Le Moalf46e88092016-10-28 17:45:06 +0900702#ifdef CONFIG_BLK_DEV_ZONED
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700703static int __f2fs_issue_discard_zone(struct f2fs_sb_info *sbi,
704 struct block_device *bdev, block_t blkstart, block_t blklen)
Damien Le Moalf46e88092016-10-28 17:45:06 +0900705{
Damien Le Moalf46e88092016-10-28 17:45:06 +0900706 sector_t nr_sects = SECTOR_FROM_BLOCK(blklen);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700707 sector_t sector;
708 int devi = 0;
Damien Le Moalf46e88092016-10-28 17:45:06 +0900709
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700710 if (sbi->s_ndevs) {
711 devi = f2fs_target_device_index(sbi, blkstart);
712 blkstart -= FDEV(devi).start_blk;
713 }
714 sector = SECTOR_FROM_BLOCK(blkstart);
715
Damien Le Moalf99e8642017-01-12 07:58:32 -0700716 if (sector & (bdev_zone_sectors(bdev) - 1) ||
717 nr_sects != bdev_zone_sectors(bdev)) {
Damien Le Moalf46e88092016-10-28 17:45:06 +0900718 f2fs_msg(sbi->sb, KERN_INFO,
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700719 "(%d) %s: Unaligned discard attempted (block %x + %x)",
720 devi, sbi->s_ndevs ? FDEV(devi).path: "",
721 blkstart, blklen);
Damien Le Moalf46e88092016-10-28 17:45:06 +0900722 return -EIO;
723 }
724
725 /*
726 * We need to know the type of the zone: for conventional zones,
727 * use regular discard if the drive supports it. For sequential
728 * zones, reset the zone write pointer.
729 */
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700730 switch (get_blkz_type(sbi, bdev, blkstart)) {
Damien Le Moalf46e88092016-10-28 17:45:06 +0900731
732 case BLK_ZONE_TYPE_CONVENTIONAL:
733 if (!blk_queue_discard(bdev_get_queue(bdev)))
734 return 0;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700735 return __f2fs_issue_discard_async(sbi, bdev, blkstart, blklen);
Damien Le Moalf46e88092016-10-28 17:45:06 +0900736 case BLK_ZONE_TYPE_SEQWRITE_REQ:
737 case BLK_ZONE_TYPE_SEQWRITE_PREF:
Damien Le Moal126606c2016-10-28 17:45:07 +0900738 trace_f2fs_issue_reset_zone(sbi->sb, blkstart);
Damien Le Moalf46e88092016-10-28 17:45:06 +0900739 return blkdev_reset_zones(bdev, sector,
740 nr_sects, GFP_NOFS);
741 default:
742 /* Unknown zone type: broken device ? */
743 return -EIO;
744 }
745}
746#endif
747
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700748static int __issue_discard_async(struct f2fs_sb_info *sbi,
749 struct block_device *bdev, block_t blkstart, block_t blklen)
750{
751#ifdef CONFIG_BLK_DEV_ZONED
752 if (f2fs_sb_mounted_blkzoned(sbi->sb) &&
753 bdev_zoned_model(bdev) != BLK_ZONED_NONE)
754 return __f2fs_issue_discard_zone(sbi, bdev, blkstart, blklen);
755#endif
756 return __f2fs_issue_discard_async(sbi, bdev, blkstart, blklen);
757}
758
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900759static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +0900760 block_t blkstart, block_t blklen)
761{
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700762 sector_t start = blkstart, len = 0;
763 struct block_device *bdev;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700764 struct seg_entry *se;
765 unsigned int offset;
766 block_t i;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700767 int err = 0;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700768
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700769 bdev = f2fs_target_device(sbi, blkstart, NULL);
770
771 for (i = blkstart; i < blkstart + blklen; i++, len++) {
772 if (i != start) {
773 struct block_device *bdev2 =
774 f2fs_target_device(sbi, i, NULL);
775
776 if (bdev2 != bdev) {
777 err = __issue_discard_async(sbi, bdev,
778 start, len);
779 if (err)
780 return err;
781 bdev = bdev2;
782 start = i;
783 len = 0;
784 }
785 }
786
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700787 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
788 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
789
790 if (!f2fs_test_and_set_bit(offset, se->discard_map))
791 sbi->discard_blks--;
792 }
Damien Le Moalf46e88092016-10-28 17:45:06 +0900793
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700794 if (len)
795 err = __issue_discard_async(sbi, bdev, start, len);
796 return err;
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900797}
798
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700799static void __add_discard_entry(struct f2fs_sb_info *sbi,
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700800 struct cp_control *cpc, struct seg_entry *se,
801 unsigned int start, unsigned int end)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900802{
803 struct list_head *head = &SM_I(sbi)->discard_list;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700804 struct discard_entry *new, *last;
805
806 if (!list_empty(head)) {
807 last = list_last_entry(head, struct discard_entry, list);
808 if (START_BLOCK(sbi, cpc->trim_start) + start ==
809 last->blkaddr + last->len) {
810 last->len += end - start;
811 goto done;
812 }
813 }
814
815 new = f2fs_kmem_cache_alloc(discard_entry_slab, GFP_NOFS);
816 INIT_LIST_HEAD(&new->list);
817 new->blkaddr = START_BLOCK(sbi, cpc->trim_start) + start;
818 new->len = end - start;
819 list_add_tail(&new->list, head);
820done:
821 SM_I(sbi)->nr_discards += end - start;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700822}
823
824static void add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc)
825{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900826 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
827 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700828 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900829 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
830 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700831 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800832 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900833 unsigned int start = 0, end = -1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700834 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900835 int i;
836
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700837 if (se->valid_blocks == max_blocks || !f2fs_discard_en(sbi))
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900838 return;
839
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700840 if (!force) {
841 if (!test_opt(sbi, DISCARD) || !se->valid_blocks ||
Dan Carpenter912a83b2015-05-14 11:52:28 +0300842 SM_I(sbi)->nr_discards >= SM_I(sbi)->max_discards)
843 return;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700844 }
845
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900846 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
847 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700848 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -0800849 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900850
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700851 while (force || SM_I(sbi)->nr_discards <= SM_I(sbi)->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900852 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
853 if (start >= max_blocks)
854 break;
855
856 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Yunlei Hec7b41e12016-07-07 12:13:33 +0800857 if (force && start && end != max_blocks
858 && (end - start) < cpc->trim_minlen)
859 continue;
860
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700861 __add_discard_entry(sbi, cpc, se, start, end);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900862 }
863}
864
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700865void release_discard_addrs(struct f2fs_sb_info *sbi)
866{
867 struct list_head *head = &(SM_I(sbi)->discard_list);
868 struct discard_entry *entry, *this;
869
870 /* drop caches */
871 list_for_each_entry_safe(entry, this, head, list) {
872 list_del(&entry->list);
873 kmem_cache_free(discard_entry_slab, entry);
874 }
875}
876
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900877/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900878 * Should call clear_prefree_segments after checkpoint is done.
879 */
880static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
881{
882 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +0800883 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900884
885 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700886 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900887 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900888 mutex_unlock(&dirty_i->seglist_lock);
889}
890
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700891void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900892{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900893 struct list_head *head = &(SM_I(sbi)->discard_list);
Chao Yu2d7b8222014-03-29 11:33:17 +0800894 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900895 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yu275b66b2016-08-29 23:58:34 +0800896 struct blk_plug plug;
Changman Lee29e59c12013-11-11 09:24:37 +0900897 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +0900898 unsigned int start = 0, end = -1;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700899 unsigned int secno, start_segno;
Chao Yuc24a0fd2016-07-07 22:46:55 +0800900 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900901
Chao Yu275b66b2016-08-29 23:58:34 +0800902 blk_start_plug(&plug);
903
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900904 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900905
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900906 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900907 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700908 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
909 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900910 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700911 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
912 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900913
Changman Lee29e59c12013-11-11 09:24:37 +0900914 for (i = start; i < end; i++)
915 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900916
Changman Lee29e59c12013-11-11 09:24:37 +0900917 dirty_i->nr_dirty[PRE] -= end - start;
918
Yunlei He650d3c42016-12-22 11:46:24 +0800919 if (!test_opt(sbi, DISCARD))
Changman Lee29e59c12013-11-11 09:24:37 +0900920 continue;
921
Yunlei He650d3c42016-12-22 11:46:24 +0800922 if (force && start >= cpc->trim_start &&
923 (end - 1) <= cpc->trim_end)
924 continue;
925
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700926 if (!test_opt(sbi, LFS) || sbi->segs_per_sec == 1) {
927 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
Jaegeuk Kim37208872013-11-12 16:55:17 +0900928 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700929 continue;
930 }
931next:
932 secno = GET_SECNO(sbi, start);
933 start_segno = secno * sbi->segs_per_sec;
934 if (!IS_CURSEC(sbi, secno) &&
935 !get_valid_blocks(sbi, start, sbi->segs_per_sec))
936 f2fs_issue_discard(sbi, START_BLOCK(sbi, start_segno),
937 sbi->segs_per_sec << sbi->log_blocks_per_seg);
938
939 start = start_segno + sbi->segs_per_sec;
940 if (start < end)
941 goto next;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900942 }
943 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900944
945 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800946 list_for_each_entry_safe(entry, this, head, list) {
Chao Yuc24a0fd2016-07-07 22:46:55 +0800947 if (force && entry->len < cpc->trim_minlen)
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700948 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900949 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700950 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700951skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900952 list_del(&entry->list);
953 SM_I(sbi)->nr_discards -= entry->len;
954 kmem_cache_free(discard_entry_slab, entry);
955 }
Chao Yu275b66b2016-08-29 23:58:34 +0800956
957 blk_finish_plug(&plug);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900958}
959
Chao Yu184a5cd2014-09-04 18:13:01 +0800960static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900961{
962 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800963
964 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900965 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800966 return false;
967 }
968
969 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900970}
971
972static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
973 unsigned int segno, int modified)
974{
975 struct seg_entry *se = get_seg_entry(sbi, segno);
976 se->type = type;
977 if (modified)
978 __mark_sit_entry_dirty(sbi, segno);
979}
980
981static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
982{
983 struct seg_entry *se;
984 unsigned int segno, offset;
985 long int new_vblocks;
986
987 segno = GET_SEGNO(sbi, blkaddr);
988
989 se = get_seg_entry(sbi, segno);
990 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +0900991 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900992
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700993 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900994 (new_vblocks > sbi->blocks_per_seg)));
995
996 se->valid_blocks = new_vblocks;
997 se->mtime = get_mtime(sbi);
998 SIT_I(sbi)->max_mtime = se->mtime;
999
1000 /* Update valid block bitmap */
1001 if (del > 0) {
Gu Zheng52aca072014-10-20 17:45:51 +08001002 if (f2fs_test_and_set_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -07001003 f2fs_bug_on(sbi, 1);
Jaegeuk Kim3e025742016-08-02 10:56:40 -07001004 if (f2fs_discard_en(sbi) &&
1005 !f2fs_test_and_set_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001006 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001007 } else {
Gu Zheng52aca072014-10-20 17:45:51 +08001008 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -07001009 f2fs_bug_on(sbi, 1);
Jaegeuk Kim3e025742016-08-02 10:56:40 -07001010 if (f2fs_discard_en(sbi) &&
1011 f2fs_test_and_clear_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001012 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001013 }
1014 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
1015 se->ckpt_valid_blocks += del;
1016
1017 __mark_sit_entry_dirty(sbi, segno);
1018
1019 /* update total number of valid blocks to be written in ckpt area */
1020 SIT_I(sbi)->written_valid_blocks += del;
1021
1022 if (sbi->segs_per_sec > 1)
1023 get_sec_entry(sbi, segno)->valid_blocks += del;
1024}
1025
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001026void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001027{
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001028 update_sit_entry(sbi, new, 1);
1029 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
1030 update_sit_entry(sbi, old, -1);
1031
1032 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
1033 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001034}
1035
1036void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
1037{
1038 unsigned int segno = GET_SEGNO(sbi, addr);
1039 struct sit_info *sit_i = SIT_I(sbi);
1040
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001041 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001042 if (addr == NEW_ADDR)
1043 return;
1044
1045 /* add it into sit main buffer */
1046 mutex_lock(&sit_i->sentry_lock);
1047
1048 update_sit_entry(sbi, addr, -1);
1049
1050 /* add it into dirty seglist */
1051 locate_dirty_segment(sbi, segno);
1052
1053 mutex_unlock(&sit_i->sentry_lock);
1054}
1055
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001056bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
1057{
1058 struct sit_info *sit_i = SIT_I(sbi);
1059 unsigned int segno, offset;
1060 struct seg_entry *se;
1061 bool is_cp = false;
1062
1063 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
1064 return true;
1065
1066 mutex_lock(&sit_i->sentry_lock);
1067
1068 segno = GET_SEGNO(sbi, blkaddr);
1069 se = get_seg_entry(sbi, segno);
1070 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
1071
1072 if (f2fs_test_bit(offset, se->ckpt_valid_map))
1073 is_cp = true;
1074
1075 mutex_unlock(&sit_i->sentry_lock);
1076
1077 return is_cp;
1078}
1079
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001080/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001081 * This function should be resided under the curseg_mutex lock
1082 */
1083static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +08001084 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001085{
1086 struct curseg_info *curseg = CURSEG_I(sbi, type);
1087 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +08001088 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001089 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001090}
1091
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001092/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001093 * Calculate the number of current summary pages for writing
1094 */
Chao Yu3fa06d72014-12-09 14:21:46 +08001095int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001096{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001097 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +08001098 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001099
1100 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1101 if (sbi->ckpt->alloc_type[i] == SSR)
1102 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +08001103 else {
1104 if (for_ra)
1105 valid_sum_count += le16_to_cpu(
1106 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
1107 else
1108 valid_sum_count += curseg_blkoff(sbi, i);
1109 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001110 }
1111
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001112 sum_in_page = (PAGE_SIZE - 2 * SUM_JOURNAL_SIZE -
Fan Li9a479382013-10-29 16:21:47 +08001113 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
1114 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001115 return 1;
Fan Li9a479382013-10-29 16:21:47 +08001116 else if ((valid_sum_count - sum_in_page) <=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001117 (PAGE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001118 return 2;
1119 return 3;
1120}
1121
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001122/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001123 * Caller should put this summary page
1124 */
1125struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
1126{
1127 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
1128}
1129
Chao Yu381722d2015-05-19 17:40:04 +08001130void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
1131{
1132 struct page *page = grab_meta_page(sbi, blk_addr);
1133 void *dst = page_address(page);
1134
1135 if (src)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001136 memcpy(dst, src, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +08001137 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001138 memset(dst, 0, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +08001139 set_page_dirty(page);
1140 f2fs_put_page(page, 1);
1141}
1142
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001143static void write_sum_page(struct f2fs_sb_info *sbi,
1144 struct f2fs_summary_block *sum_blk, block_t blk_addr)
1145{
Chao Yu381722d2015-05-19 17:40:04 +08001146 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001147}
1148
Chao Yub7ad7512016-02-19 18:08:46 +08001149static void write_current_sum_page(struct f2fs_sb_info *sbi,
1150 int type, block_t blk_addr)
1151{
1152 struct curseg_info *curseg = CURSEG_I(sbi, type);
1153 struct page *page = grab_meta_page(sbi, blk_addr);
1154 struct f2fs_summary_block *src = curseg->sum_blk;
1155 struct f2fs_summary_block *dst;
1156
1157 dst = (struct f2fs_summary_block *)page_address(page);
1158
1159 mutex_lock(&curseg->curseg_mutex);
1160
1161 down_read(&curseg->journal_rwsem);
1162 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE);
1163 up_read(&curseg->journal_rwsem);
1164
1165 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE);
1166 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE);
1167
1168 mutex_unlock(&curseg->curseg_mutex);
1169
1170 set_page_dirty(page);
1171 f2fs_put_page(page, 1);
1172}
1173
Jaegeuk Kim60374682013-03-31 13:58:51 +09001174static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
1175{
1176 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +08001177 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +09001178 struct free_segmap_info *free_i = FREE_I(sbi);
1179
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001180 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +08001181 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001182 return 0;
1183}
1184
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001185/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001186 * Find a new segment from the free segments bitmap to right order
1187 * This function should be returned with success, otherwise BUG
1188 */
1189static void get_new_segment(struct f2fs_sb_info *sbi,
1190 unsigned int *newseg, bool new_sec, int dir)
1191{
1192 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001193 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001194 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001195 unsigned int hint = *newseg / sbi->segs_per_sec;
1196 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
1197 unsigned int left_start = hint;
1198 bool init = true;
1199 int go_left = 0;
1200 int i;
1201
Chao Yu1a118cc2015-02-11 18:20:38 +08001202 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001203
1204 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
1205 segno = find_next_zero_bit(free_i->free_segmap,
Chao Yu0ab14352016-01-22 17:42:06 +08001206 (hint + 1) * sbi->segs_per_sec, *newseg + 1);
1207 if (segno < (hint + 1) * sbi->segs_per_sec)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001208 goto got_it;
1209 }
1210find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001211 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
1212 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001213 if (dir == ALLOC_RIGHT) {
1214 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001215 MAIN_SECS(sbi), 0);
1216 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001217 } else {
1218 go_left = 1;
1219 left_start = hint - 1;
1220 }
1221 }
1222 if (go_left == 0)
1223 goto skip_left;
1224
1225 while (test_bit(left_start, free_i->free_secmap)) {
1226 if (left_start > 0) {
1227 left_start--;
1228 continue;
1229 }
1230 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001231 MAIN_SECS(sbi), 0);
1232 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001233 break;
1234 }
1235 secno = left_start;
1236skip_left:
1237 hint = secno;
1238 segno = secno * sbi->segs_per_sec;
1239 zoneno = secno / sbi->secs_per_zone;
1240
1241 /* give up on finding another zone */
1242 if (!init)
1243 goto got_it;
1244 if (sbi->secs_per_zone == 1)
1245 goto got_it;
1246 if (zoneno == old_zoneno)
1247 goto got_it;
1248 if (dir == ALLOC_LEFT) {
1249 if (!go_left && zoneno + 1 >= total_zones)
1250 goto got_it;
1251 if (go_left && zoneno == 0)
1252 goto got_it;
1253 }
1254 for (i = 0; i < NR_CURSEG_TYPE; i++)
1255 if (CURSEG_I(sbi, i)->zone == zoneno)
1256 break;
1257
1258 if (i < NR_CURSEG_TYPE) {
1259 /* zone is in user, try another */
1260 if (go_left)
1261 hint = zoneno * sbi->secs_per_zone - 1;
1262 else if (zoneno + 1 >= total_zones)
1263 hint = 0;
1264 else
1265 hint = (zoneno + 1) * sbi->secs_per_zone;
1266 init = false;
1267 goto find_other_zone;
1268 }
1269got_it:
1270 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001271 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001272 __set_inuse(sbi, segno);
1273 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08001274 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001275}
1276
1277static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
1278{
1279 struct curseg_info *curseg = CURSEG_I(sbi, type);
1280 struct summary_footer *sum_footer;
1281
1282 curseg->segno = curseg->next_segno;
1283 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
1284 curseg->next_blkoff = 0;
1285 curseg->next_segno = NULL_SEGNO;
1286
1287 sum_footer = &(curseg->sum_blk->footer);
1288 memset(sum_footer, 0, sizeof(struct summary_footer));
1289 if (IS_DATASEG(type))
1290 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
1291 if (IS_NODESEG(type))
1292 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
1293 __set_sit_entry_type(sbi, type, curseg->segno, modified);
1294}
1295
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001296/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001297 * Allocate a current working segment.
1298 * This function always allocates a free segment in LFS manner.
1299 */
1300static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
1301{
1302 struct curseg_info *curseg = CURSEG_I(sbi, type);
1303 unsigned int segno = curseg->segno;
1304 int dir = ALLOC_LEFT;
1305
1306 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08001307 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001308 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
1309 dir = ALLOC_RIGHT;
1310
1311 if (test_opt(sbi, NOHEAP))
1312 dir = ALLOC_RIGHT;
1313
1314 get_new_segment(sbi, &segno, new_sec, dir);
1315 curseg->next_segno = segno;
1316 reset_curseg(sbi, type, 1);
1317 curseg->alloc_type = LFS;
1318}
1319
1320static void __next_free_blkoff(struct f2fs_sb_info *sbi,
1321 struct curseg_info *seg, block_t start)
1322{
1323 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09001324 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001325 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09001326 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
1327 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1328 int i, pos;
1329
1330 for (i = 0; i < entries; i++)
1331 target_map[i] = ckpt_map[i] | cur_map[i];
1332
1333 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1334
1335 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001336}
1337
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001338/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001339 * If a segment is written by LFS manner, next block offset is just obtained
1340 * by increasing the current block offset. However, if a segment is written by
1341 * SSR manner, next block offset obtained by calling __next_free_blkoff
1342 */
1343static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1344 struct curseg_info *seg)
1345{
1346 if (seg->alloc_type == SSR)
1347 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1348 else
1349 seg->next_blkoff++;
1350}
1351
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001352/*
arter97e1c42042014-08-06 23:22:50 +09001353 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001354 * manner, so it should recover the existing segment information of valid blocks
1355 */
1356static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1357{
1358 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1359 struct curseg_info *curseg = CURSEG_I(sbi, type);
1360 unsigned int new_segno = curseg->next_segno;
1361 struct f2fs_summary_block *sum_node;
1362 struct page *sum_page;
1363
1364 write_sum_page(sbi, curseg->sum_blk,
1365 GET_SUM_BLOCK(sbi, curseg->segno));
1366 __set_test_and_inuse(sbi, new_segno);
1367
1368 mutex_lock(&dirty_i->seglist_lock);
1369 __remove_dirty_segment(sbi, new_segno, PRE);
1370 __remove_dirty_segment(sbi, new_segno, DIRTY);
1371 mutex_unlock(&dirty_i->seglist_lock);
1372
1373 reset_curseg(sbi, type, 1);
1374 curseg->alloc_type = SSR;
1375 __next_free_blkoff(sbi, curseg, 0);
1376
1377 if (reuse) {
1378 sum_page = get_sum_page(sbi, new_segno);
1379 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1380 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1381 f2fs_put_page(sum_page, 1);
1382 }
1383}
1384
Jaegeuk Kim43727522013-02-04 15:11:17 +09001385static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1386{
1387 struct curseg_info *curseg = CURSEG_I(sbi, type);
1388 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1389
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -07001390 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0, 0))
Jaegeuk Kim43727522013-02-04 15:11:17 +09001391 return v_ops->get_victim(sbi,
1392 &(curseg)->next_segno, BG_GC, type, SSR);
1393
1394 /* For data segments, let's do SSR more intensively */
1395 for (; type >= CURSEG_HOT_DATA; type--)
1396 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1397 BG_GC, type, SSR))
1398 return 1;
1399 return 0;
1400}
1401
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001402/*
1403 * flush out current segment and replace it with new segment
1404 * This function should be returned with success, otherwise BUG
1405 */
1406static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1407 int type, bool force)
1408{
1409 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001410
Gu Zheng7b405272013-08-19 09:41:15 +08001411 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001412 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001413 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001414 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001415 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1416 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001417 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1418 change_curseg(sbi, type, true);
1419 else
1420 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001421
1422 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001423}
1424
1425void allocate_new_segments(struct f2fs_sb_info *sbi)
1426{
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08001427 struct curseg_info *curseg;
1428 unsigned int old_segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001429 int i;
1430
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08001431 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1432 curseg = CURSEG_I(sbi, i);
1433 old_segno = curseg->segno;
1434 SIT_I(sbi)->s_ops->allocate_segment(sbi, i, true);
1435 locate_dirty_segment(sbi, old_segno);
1436 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001437}
1438
1439static const struct segment_allocation default_salloc_ops = {
1440 .allocate_segment = allocate_segment_by_default,
1441};
1442
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001443int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1444{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001445 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1446 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001447 unsigned int start_segno, end_segno;
1448 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001449 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001450
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001451 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001452 return -EINVAL;
1453
Jan Kara9bd27ae2014-10-21 14:07:33 +02001454 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001455 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001456 goto out;
1457
Yunlei Heed214a12016-09-01 10:14:39 +08001458 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
1459 f2fs_msg(sbi->sb, KERN_WARNING,
1460 "Found FS corruption, run fsck to fix.");
1461 goto out;
1462 }
1463
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001464 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001465 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1466 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1467 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001468 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001469 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001470
1471 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001472 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1473 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001474
1475 if (sbi->discard_blks == 0)
1476 break;
1477 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1478 cpc.trim_end = end_segno;
1479 else
1480 cpc.trim_end = min_t(unsigned int,
1481 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001482 BATCHED_TRIM_SEGMENTS(sbi),
1483 sbi->segs_per_sec) - 1, end_segno);
1484
1485 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001486 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001487 mutex_unlock(&sbi->gc_mutex);
Chao Yue9328352016-08-21 23:21:29 +08001488 if (err)
1489 break;
Chao Yu74fa5f32016-08-21 23:21:30 +08001490
1491 schedule();
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001492 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001493out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001494 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001495 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001496}
1497
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001498static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1499{
1500 struct curseg_info *curseg = CURSEG_I(sbi, type);
1501 if (curseg->next_blkoff < sbi->blocks_per_seg)
1502 return true;
1503 return false;
1504}
1505
1506static int __get_segment_type_2(struct page *page, enum page_type p_type)
1507{
1508 if (p_type == DATA)
1509 return CURSEG_HOT_DATA;
1510 else
1511 return CURSEG_HOT_NODE;
1512}
1513
1514static int __get_segment_type_4(struct page *page, enum page_type p_type)
1515{
1516 if (p_type == DATA) {
1517 struct inode *inode = page->mapping->host;
1518
1519 if (S_ISDIR(inode->i_mode))
1520 return CURSEG_HOT_DATA;
1521 else
1522 return CURSEG_COLD_DATA;
1523 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001524 if (IS_DNODE(page) && is_cold_node(page))
1525 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001526 else
1527 return CURSEG_COLD_NODE;
1528 }
1529}
1530
1531static int __get_segment_type_6(struct page *page, enum page_type p_type)
1532{
1533 if (p_type == DATA) {
1534 struct inode *inode = page->mapping->host;
1535
1536 if (S_ISDIR(inode->i_mode))
1537 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001538 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001539 return CURSEG_COLD_DATA;
1540 else
1541 return CURSEG_WARM_DATA;
1542 } else {
1543 if (IS_DNODE(page))
1544 return is_cold_node(page) ? CURSEG_WARM_NODE :
1545 CURSEG_HOT_NODE;
1546 else
1547 return CURSEG_COLD_NODE;
1548 }
1549}
1550
1551static int __get_segment_type(struct page *page, enum page_type p_type)
1552{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001553 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001554 case 2:
1555 return __get_segment_type_2(page, p_type);
1556 case 4:
1557 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001558 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001559 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001560 f2fs_bug_on(F2FS_P_SB(page),
1561 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001562 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001563}
1564
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001565void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1566 block_t old_blkaddr, block_t *new_blkaddr,
1567 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001568{
1569 struct sit_info *sit_i = SIT_I(sbi);
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08001570 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001571
1572 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001573 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001574
1575 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001576
1577 /*
1578 * __add_sum_entry should be resided under the curseg_mutex
1579 * because, this function updates a summary entry in the
1580 * current summary block.
1581 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001582 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001583
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001584 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001585
1586 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001587
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001588 if (!__has_curseg_space(sbi, type))
1589 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001590 /*
1591 * SIT information should be updated before segment allocation,
1592 * since SSR needs latest valid block information.
1593 */
1594 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001595
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001596 mutex_unlock(&sit_i->sentry_lock);
1597
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001598 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001599 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1600
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001601 mutex_unlock(&curseg->curseg_mutex);
1602}
1603
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001604static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001605{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001606 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08001607 int err;
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001608
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001609 if (fio->type == NODE || fio->type == DATA)
1610 mutex_lock(&fio->sbi->wio_mutex[fio->type]);
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08001611reallocate:
Chao Yu7a9d7542016-02-22 18:36:38 +08001612 allocate_data_block(fio->sbi, fio->page, fio->old_blkaddr,
1613 &fio->new_blkaddr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001614
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001615 /* writeout dirty page into bdev */
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08001616 err = f2fs_submit_page_mbio(fio);
1617 if (err == -EAGAIN) {
1618 fio->old_blkaddr = fio->new_blkaddr;
1619 goto reallocate;
1620 }
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001621
1622 if (fio->type == NODE || fio->type == DATA)
1623 mutex_unlock(&fio->sbi->wio_mutex[fio->type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001624}
1625
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001626void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001627{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001628 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001629 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001630 .type = META,
Mike Christie04d328d2016-06-05 14:31:55 -05001631 .op = REQ_OP_WRITE,
Christoph Hellwig70fd7612016-11-01 07:40:10 -06001632 .op_flags = REQ_SYNC | REQ_META | REQ_PRIO,
Chao Yu7a9d7542016-02-22 18:36:38 +08001633 .old_blkaddr = page->index,
1634 .new_blkaddr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001635 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001636 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001637 };
1638
Chao Yu2b947002015-10-12 17:04:21 +08001639 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
Mike Christie04d328d2016-06-05 14:31:55 -05001640 fio.op_flags &= ~REQ_META;
Chao Yu2b947002015-10-12 17:04:21 +08001641
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001642 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001643 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001644}
1645
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001646void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001647{
1648 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001649
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001650 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001651 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001652}
1653
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001654void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001655{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001656 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001657 struct f2fs_summary sum;
1658 struct node_info ni;
1659
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001660 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001661 get_node_info(sbi, dn->nid, &ni);
1662 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001663 do_write_page(&sum, fio);
Chao Yuf28b3432016-02-24 17:16:47 +08001664 f2fs_update_data_blkaddr(dn, fio->new_blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001665}
1666
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001667void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001668{
Chao Yu7a9d7542016-02-22 18:36:38 +08001669 fio->new_blkaddr = fio->old_blkaddr;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001670 stat_inc_inplace_blocks(fio->sbi);
1671 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001672}
1673
Chao Yu4356e482016-02-23 17:52:43 +08001674void __f2fs_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001675 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08001676 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001677{
1678 struct sit_info *sit_i = SIT_I(sbi);
1679 struct curseg_info *curseg;
1680 unsigned int segno, old_cursegno;
1681 struct seg_entry *se;
1682 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001683 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001684
1685 segno = GET_SEGNO(sbi, new_blkaddr);
1686 se = get_seg_entry(sbi, segno);
1687 type = se->type;
1688
Chao Yu19f106b2015-05-06 13:08:06 +08001689 if (!recover_curseg) {
1690 /* for recovery flow */
1691 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1692 if (old_blkaddr == NULL_ADDR)
1693 type = CURSEG_COLD_DATA;
1694 else
1695 type = CURSEG_WARM_DATA;
1696 }
1697 } else {
1698 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001699 type = CURSEG_WARM_DATA;
1700 }
Chao Yu19f106b2015-05-06 13:08:06 +08001701
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001702 curseg = CURSEG_I(sbi, type);
1703
1704 mutex_lock(&curseg->curseg_mutex);
1705 mutex_lock(&sit_i->sentry_lock);
1706
1707 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001708 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001709
1710 /* change the current segment */
1711 if (segno != curseg->segno) {
1712 curseg->next_segno = segno;
1713 change_curseg(sbi, type, true);
1714 }
1715
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001716 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001717 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001718
Chao Yu28bc1062016-02-06 14:40:34 +08001719 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001720 update_sit_entry(sbi, new_blkaddr, 1);
1721 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1722 update_sit_entry(sbi, old_blkaddr, -1);
1723
1724 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1725 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1726
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001727 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001728
Chao Yu19f106b2015-05-06 13:08:06 +08001729 if (recover_curseg) {
1730 if (old_cursegno != curseg->segno) {
1731 curseg->next_segno = old_cursegno;
1732 change_curseg(sbi, type, true);
1733 }
1734 curseg->next_blkoff = old_blkoff;
1735 }
1736
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001737 mutex_unlock(&sit_i->sentry_lock);
1738 mutex_unlock(&curseg->curseg_mutex);
1739}
1740
Chao Yu528e3452015-05-28 19:15:35 +08001741void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1742 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08001743 unsigned char version, bool recover_curseg,
1744 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08001745{
1746 struct f2fs_summary sum;
1747
1748 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1749
Chao Yu28bc1062016-02-06 14:40:34 +08001750 __f2fs_replace_block(sbi, &sum, old_addr, new_addr,
1751 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08001752
Chao Yuf28b3432016-02-24 17:16:47 +08001753 f2fs_update_data_blkaddr(dn, new_addr);
Chao Yu528e3452015-05-28 19:15:35 +08001754}
1755
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001756void f2fs_wait_on_page_writeback(struct page *page,
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001757 enum page_type type, bool ordered)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001758{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001759 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001760 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1761
Chao Yu0c3a5792016-01-18 18:28:11 +08001762 f2fs_submit_merged_bio_cond(sbi, NULL, page, 0, type, WRITE);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001763 if (ordered)
1764 wait_on_page_writeback(page);
1765 else
1766 wait_for_stable_page(page);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001767 }
1768}
1769
Chao Yu08b39fb2015-10-08 13:27:34 +08001770void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1771 block_t blkaddr)
1772{
1773 struct page *cpage;
1774
Yunlei He5d4c0af2016-09-18 08:16:56 +08001775 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
Chao Yu08b39fb2015-10-08 13:27:34 +08001776 return;
1777
Chao Yu08b39fb2015-10-08 13:27:34 +08001778 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1779 if (cpage) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001780 f2fs_wait_on_page_writeback(cpage, DATA, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08001781 f2fs_put_page(cpage, 1);
1782 }
1783}
1784
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001785static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1786{
1787 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1788 struct curseg_info *seg_i;
1789 unsigned char *kaddr;
1790 struct page *page;
1791 block_t start;
1792 int i, j, offset;
1793
1794 start = start_sum_block(sbi);
1795
1796 page = get_meta_page(sbi, start++);
1797 kaddr = (unsigned char *)page_address(page);
1798
1799 /* Step 1: restore nat cache */
1800 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001801 memcpy(seg_i->journal, kaddr, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001802
1803 /* Step 2: restore sit cache */
1804 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001805 memcpy(seg_i->journal, kaddr + SUM_JOURNAL_SIZE, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001806 offset = 2 * SUM_JOURNAL_SIZE;
1807
1808 /* Step 3: restore summary entries */
1809 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1810 unsigned short blk_off;
1811 unsigned int segno;
1812
1813 seg_i = CURSEG_I(sbi, i);
1814 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1815 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1816 seg_i->next_segno = segno;
1817 reset_curseg(sbi, i, 0);
1818 seg_i->alloc_type = ckpt->alloc_type[i];
1819 seg_i->next_blkoff = blk_off;
1820
1821 if (seg_i->alloc_type == SSR)
1822 blk_off = sbi->blocks_per_seg;
1823
1824 for (j = 0; j < blk_off; j++) {
1825 struct f2fs_summary *s;
1826 s = (struct f2fs_summary *)(kaddr + offset);
1827 seg_i->sum_blk->entries[j] = *s;
1828 offset += SUMMARY_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001829 if (offset + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001830 SUM_FOOTER_SIZE)
1831 continue;
1832
1833 f2fs_put_page(page, 1);
1834 page = NULL;
1835
1836 page = get_meta_page(sbi, start++);
1837 kaddr = (unsigned char *)page_address(page);
1838 offset = 0;
1839 }
1840 }
1841 f2fs_put_page(page, 1);
1842 return 0;
1843}
1844
1845static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1846{
1847 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1848 struct f2fs_summary_block *sum;
1849 struct curseg_info *curseg;
1850 struct page *new;
1851 unsigned short blk_off;
1852 unsigned int segno = 0;
1853 block_t blk_addr = 0;
1854
1855 /* get segment number and block addr */
1856 if (IS_DATASEG(type)) {
1857 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1858 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1859 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001860 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001861 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1862 else
1863 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1864 } else {
1865 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1866 CURSEG_HOT_NODE]);
1867 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1868 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001869 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001870 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1871 type - CURSEG_HOT_NODE);
1872 else
1873 blk_addr = GET_SUM_BLOCK(sbi, segno);
1874 }
1875
1876 new = get_meta_page(sbi, blk_addr);
1877 sum = (struct f2fs_summary_block *)page_address(new);
1878
1879 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001880 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001881 struct f2fs_summary *ns = &sum->entries[0];
1882 int i;
1883 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1884 ns->version = 0;
1885 ns->ofs_in_node = 0;
1886 }
1887 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001888 int err;
1889
1890 err = restore_node_summary(sbi, segno, sum);
1891 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001892 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001893 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001894 }
1895 }
1896 }
1897
1898 /* set uncompleted segment to curseg */
1899 curseg = CURSEG_I(sbi, type);
1900 mutex_lock(&curseg->curseg_mutex);
Chao Yub7ad7512016-02-19 18:08:46 +08001901
1902 /* update journal info */
1903 down_write(&curseg->journal_rwsem);
1904 memcpy(curseg->journal, &sum->journal, SUM_JOURNAL_SIZE);
1905 up_write(&curseg->journal_rwsem);
1906
1907 memcpy(curseg->sum_blk->entries, sum->entries, SUM_ENTRY_SIZE);
1908 memcpy(&curseg->sum_blk->footer, &sum->footer, SUM_FOOTER_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001909 curseg->next_segno = segno;
1910 reset_curseg(sbi, type, 0);
1911 curseg->alloc_type = ckpt->alloc_type[type];
1912 curseg->next_blkoff = blk_off;
1913 mutex_unlock(&curseg->curseg_mutex);
1914 f2fs_put_page(new, 1);
1915 return 0;
1916}
1917
1918static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1919{
1920 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001921 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001922
Chao Yuaaec2b12016-09-20 11:04:18 +08001923 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001924 int npages = npages_for_summary_flush(sbi, true);
1925
1926 if (npages >= 2)
1927 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001928 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001929
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001930 /* restore for compacted data summary */
1931 if (read_compacted_summaries(sbi))
1932 return -EINVAL;
1933 type = CURSEG_HOT_NODE;
1934 }
1935
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001936 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001937 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001938 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001939
Chao Yue4fc5fb2014-03-17 16:36:24 +08001940 for (; type <= CURSEG_COLD_NODE; type++) {
1941 err = read_normal_summaries(sbi, type);
1942 if (err)
1943 return err;
1944 }
1945
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001946 return 0;
1947}
1948
1949static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1950{
1951 struct page *page;
1952 unsigned char *kaddr;
1953 struct f2fs_summary *summary;
1954 struct curseg_info *seg_i;
1955 int written_size = 0;
1956 int i, j;
1957
1958 page = grab_meta_page(sbi, blkaddr++);
1959 kaddr = (unsigned char *)page_address(page);
1960
1961 /* Step 1: write nat cache */
1962 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001963 memcpy(kaddr, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001964 written_size += SUM_JOURNAL_SIZE;
1965
1966 /* Step 2: write sit cache */
1967 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001968 memcpy(kaddr + written_size, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001969 written_size += SUM_JOURNAL_SIZE;
1970
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001971 /* Step 3: write summary entries */
1972 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1973 unsigned short blkoff;
1974 seg_i = CURSEG_I(sbi, i);
1975 if (sbi->ckpt->alloc_type[i] == SSR)
1976 blkoff = sbi->blocks_per_seg;
1977 else
1978 blkoff = curseg_blkoff(sbi, i);
1979
1980 for (j = 0; j < blkoff; j++) {
1981 if (!page) {
1982 page = grab_meta_page(sbi, blkaddr++);
1983 kaddr = (unsigned char *)page_address(page);
1984 written_size = 0;
1985 }
1986 summary = (struct f2fs_summary *)(kaddr + written_size);
1987 *summary = seg_i->sum_blk->entries[j];
1988 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001989
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001990 if (written_size + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001991 SUM_FOOTER_SIZE)
1992 continue;
1993
Chao Yue8d61a72013-10-24 15:08:28 +08001994 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001995 f2fs_put_page(page, 1);
1996 page = NULL;
1997 }
1998 }
Chao Yue8d61a72013-10-24 15:08:28 +08001999 if (page) {
2000 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002001 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08002002 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002003}
2004
2005static void write_normal_summaries(struct f2fs_sb_info *sbi,
2006 block_t blkaddr, int type)
2007{
2008 int i, end;
2009 if (IS_DATASEG(type))
2010 end = type + NR_CURSEG_DATA_TYPE;
2011 else
2012 end = type + NR_CURSEG_NODE_TYPE;
2013
Chao Yub7ad7512016-02-19 18:08:46 +08002014 for (i = type; i < end; i++)
2015 write_current_sum_page(sbi, i, blkaddr + (i - type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002016}
2017
2018void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
2019{
Chao Yuaaec2b12016-09-20 11:04:18 +08002020 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002021 write_compacted_summaries(sbi, start_blk);
2022 else
2023 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
2024}
2025
2026void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
2027{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08002028 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002029}
2030
Chao Yudfc08a12016-02-14 18:50:40 +08002031int lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002032 unsigned int val, int alloc)
2033{
2034 int i;
2035
2036 if (type == NAT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08002037 for (i = 0; i < nats_in_cursum(journal); i++) {
2038 if (le32_to_cpu(nid_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002039 return i;
2040 }
Chao Yudfc08a12016-02-14 18:50:40 +08002041 if (alloc && __has_cursum_space(journal, 1, NAT_JOURNAL))
2042 return update_nats_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002043 } else if (type == SIT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08002044 for (i = 0; i < sits_in_cursum(journal); i++)
2045 if (le32_to_cpu(segno_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002046 return i;
Chao Yudfc08a12016-02-14 18:50:40 +08002047 if (alloc && __has_cursum_space(journal, 1, SIT_JOURNAL))
2048 return update_sits_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002049 }
2050 return -1;
2051}
2052
2053static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
2054 unsigned int segno)
2055{
Gu Zheng2cc22182014-10-20 17:45:49 +08002056 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002057}
2058
2059static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
2060 unsigned int start)
2061{
2062 struct sit_info *sit_i = SIT_I(sbi);
2063 struct page *src_page, *dst_page;
2064 pgoff_t src_off, dst_off;
2065 void *src_addr, *dst_addr;
2066
2067 src_off = current_sit_addr(sbi, start);
2068 dst_off = next_sit_addr(sbi, src_off);
2069
2070 /* get current sit block page without lock */
2071 src_page = get_meta_page(sbi, src_off);
2072 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07002073 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002074
2075 src_addr = page_address(src_page);
2076 dst_addr = page_address(dst_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002077 memcpy(dst_addr, src_addr, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002078
2079 set_page_dirty(dst_page);
2080 f2fs_put_page(src_page, 1);
2081
2082 set_to_next_sit(sit_i, start);
2083
2084 return dst_page;
2085}
2086
Chao Yu184a5cd2014-09-04 18:13:01 +08002087static struct sit_entry_set *grab_sit_entry_set(void)
2088{
2089 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07002090 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08002091
2092 ses->entry_cnt = 0;
2093 INIT_LIST_HEAD(&ses->set_list);
2094 return ses;
2095}
2096
2097static void release_sit_entry_set(struct sit_entry_set *ses)
2098{
2099 list_del(&ses->set_list);
2100 kmem_cache_free(sit_entry_set_slab, ses);
2101}
2102
2103static void adjust_sit_entry_set(struct sit_entry_set *ses,
2104 struct list_head *head)
2105{
2106 struct sit_entry_set *next = ses;
2107
2108 if (list_is_last(&ses->set_list, head))
2109 return;
2110
2111 list_for_each_entry_continue(next, head, set_list)
2112 if (ses->entry_cnt <= next->entry_cnt)
2113 break;
2114
2115 list_move_tail(&ses->set_list, &next->set_list);
2116}
2117
2118static void add_sit_entry(unsigned int segno, struct list_head *head)
2119{
2120 struct sit_entry_set *ses;
2121 unsigned int start_segno = START_SEGNO(segno);
2122
2123 list_for_each_entry(ses, head, set_list) {
2124 if (ses->start_segno == start_segno) {
2125 ses->entry_cnt++;
2126 adjust_sit_entry_set(ses, head);
2127 return;
2128 }
2129 }
2130
2131 ses = grab_sit_entry_set();
2132
2133 ses->start_segno = start_segno;
2134 ses->entry_cnt++;
2135 list_add(&ses->set_list, head);
2136}
2137
2138static void add_sits_in_set(struct f2fs_sb_info *sbi)
2139{
2140 struct f2fs_sm_info *sm_info = SM_I(sbi);
2141 struct list_head *set_list = &sm_info->sit_entry_set;
2142 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08002143 unsigned int segno;
2144
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002145 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08002146 add_sit_entry(segno, set_list);
2147}
2148
2149static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002150{
2151 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002152 struct f2fs_journal *journal = curseg->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002153 int i;
2154
Chao Yub7ad7512016-02-19 18:08:46 +08002155 down_write(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08002156 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yu184a5cd2014-09-04 18:13:01 +08002157 unsigned int segno;
2158 bool dirtied;
2159
Chao Yudfc08a12016-02-14 18:50:40 +08002160 segno = le32_to_cpu(segno_in_journal(journal, i));
Chao Yu184a5cd2014-09-04 18:13:01 +08002161 dirtied = __mark_sit_entry_dirty(sbi, segno);
2162
2163 if (!dirtied)
2164 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002165 }
Chao Yudfc08a12016-02-14 18:50:40 +08002166 update_sits_in_cursum(journal, -i);
Chao Yub7ad7512016-02-19 18:08:46 +08002167 up_write(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002168}
2169
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002170/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002171 * CP calls this function, which flushes SIT entries including sit_journal,
2172 * and moves prefree segs to free segs.
2173 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002174void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002175{
2176 struct sit_info *sit_i = SIT_I(sbi);
2177 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
2178 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002179 struct f2fs_journal *journal = curseg->journal;
Chao Yu184a5cd2014-09-04 18:13:01 +08002180 struct sit_entry_set *ses, *tmp;
2181 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08002182 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002183 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002184
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002185 mutex_lock(&sit_i->sentry_lock);
2186
Wanpeng Li2b11a742015-02-27 16:52:50 +08002187 if (!sit_i->dirty_sentries)
2188 goto out;
2189
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002190 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08002191 * add and account sit entries of dirty bitmap in sit entry
2192 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002193 */
Chao Yu184a5cd2014-09-04 18:13:01 +08002194 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002195
Chao Yu184a5cd2014-09-04 18:13:01 +08002196 /*
2197 * if there are no enough space in journal to store dirty sit
2198 * entries, remove all entries from journal and add and account
2199 * them in sit entry set.
2200 */
Chao Yudfc08a12016-02-14 18:50:40 +08002201 if (!__has_cursum_space(journal, sit_i->dirty_sentries, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002202 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002203
Chao Yu184a5cd2014-09-04 18:13:01 +08002204 /*
2205 * there are two steps to flush sit entries:
2206 * #1, flush sit entries to journal in current cold data summary block.
2207 * #2, flush sit entries to sit page.
2208 */
2209 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07002210 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08002211 struct f2fs_sit_block *raw_sit = NULL;
2212 unsigned int start_segno = ses->start_segno;
2213 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002214 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08002215 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09002216
Chao Yu184a5cd2014-09-04 18:13:01 +08002217 if (to_journal &&
Chao Yudfc08a12016-02-14 18:50:40 +08002218 !__has_cursum_space(journal, ses->entry_cnt, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002219 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002220
Chao Yub7ad7512016-02-19 18:08:46 +08002221 if (to_journal) {
2222 down_write(&curseg->journal_rwsem);
2223 } else {
Chao Yu184a5cd2014-09-04 18:13:01 +08002224 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002225 raw_sit = page_address(page);
2226 }
2227
Chao Yu184a5cd2014-09-04 18:13:01 +08002228 /* flush dirty sit entries in region of current sit set */
2229 for_each_set_bit_from(segno, bitmap, end) {
2230 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002231
2232 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08002233
2234 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08002235 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002236 cpc->trim_start = segno;
2237 add_discard_addrs(sbi, cpc);
2238 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002239
2240 if (to_journal) {
Chao Yudfc08a12016-02-14 18:50:40 +08002241 offset = lookup_journal_in_cursum(journal,
Chao Yu184a5cd2014-09-04 18:13:01 +08002242 SIT_JOURNAL, segno, 1);
2243 f2fs_bug_on(sbi, offset < 0);
Chao Yudfc08a12016-02-14 18:50:40 +08002244 segno_in_journal(journal, offset) =
Chao Yu184a5cd2014-09-04 18:13:01 +08002245 cpu_to_le32(segno);
2246 seg_info_to_raw_sit(se,
Chao Yudfc08a12016-02-14 18:50:40 +08002247 &sit_in_journal(journal, offset));
Chao Yu184a5cd2014-09-04 18:13:01 +08002248 } else {
2249 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
2250 seg_info_to_raw_sit(se,
2251 &raw_sit->entries[sit_offset]);
2252 }
2253
2254 __clear_bit(segno, bitmap);
2255 sit_i->dirty_sentries--;
2256 ses->entry_cnt--;
2257 }
2258
Chao Yub7ad7512016-02-19 18:08:46 +08002259 if (to_journal)
2260 up_write(&curseg->journal_rwsem);
2261 else
Chao Yu184a5cd2014-09-04 18:13:01 +08002262 f2fs_put_page(page, 1);
2263
2264 f2fs_bug_on(sbi, ses->entry_cnt);
2265 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002266 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002267
2268 f2fs_bug_on(sbi, !list_empty(head));
2269 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08002270out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002271 if (cpc->reason == CP_DISCARD) {
Yunlei He650d3c42016-12-22 11:46:24 +08002272 __u64 trim_start = cpc->trim_start;
2273
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002274 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
2275 add_discard_addrs(sbi, cpc);
Yunlei He650d3c42016-12-22 11:46:24 +08002276
2277 cpc->trim_start = trim_start;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002278 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002279 mutex_unlock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002280
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002281 set_prefree_as_free_segments(sbi);
2282}
2283
2284static int build_sit_info(struct f2fs_sb_info *sbi)
2285{
2286 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002287 struct sit_info *sit_i;
2288 unsigned int sit_segs, start;
2289 char *src_bitmap, *dst_bitmap;
2290 unsigned int bitmap_size;
2291
2292 /* allocate memory for SIT information */
2293 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
2294 if (!sit_i)
2295 return -ENOMEM;
2296
2297 SM_I(sbi)->sit_info = sit_i;
2298
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002299 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
2300 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002301 if (!sit_i->sentries)
2302 return -ENOMEM;
2303
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002304 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002305 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002306 if (!sit_i->dirty_sentries_bitmap)
2307 return -ENOMEM;
2308
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002309 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002310 sit_i->sentries[start].cur_valid_map
2311 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2312 sit_i->sentries[start].ckpt_valid_map
2313 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002314 if (!sit_i->sentries[start].cur_valid_map ||
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002315 !sit_i->sentries[start].ckpt_valid_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002316 return -ENOMEM;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002317
2318 if (f2fs_discard_en(sbi)) {
2319 sit_i->sentries[start].discard_map
2320 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2321 if (!sit_i->sentries[start].discard_map)
2322 return -ENOMEM;
2323 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002324 }
2325
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002326 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2327 if (!sit_i->tmp_map)
2328 return -ENOMEM;
2329
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002330 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002331 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
2332 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002333 if (!sit_i->sec_entries)
2334 return -ENOMEM;
2335 }
2336
2337 /* get information related with SIT */
2338 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
2339
2340 /* setup SIT bitmap from ckeckpoint pack */
2341 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
2342 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
2343
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02002344 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002345 if (!dst_bitmap)
2346 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002347
2348 /* init SIT information */
2349 sit_i->s_ops = &default_salloc_ops;
2350
2351 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2352 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
Jaegeuk Kimc79b7ff2016-11-14 18:20:10 -08002353 sit_i->written_valid_blocks = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002354 sit_i->sit_bitmap = dst_bitmap;
2355 sit_i->bitmap_size = bitmap_size;
2356 sit_i->dirty_sentries = 0;
2357 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2358 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2359 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2360 mutex_init(&sit_i->sentry_lock);
2361 return 0;
2362}
2363
2364static int build_free_segmap(struct f2fs_sb_info *sbi)
2365{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002366 struct free_segmap_info *free_i;
2367 unsigned int bitmap_size, sec_bitmap_size;
2368
2369 /* allocate memory for free segmap information */
2370 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2371 if (!free_i)
2372 return -ENOMEM;
2373
2374 SM_I(sbi)->free_info = free_i;
2375
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002376 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002377 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002378 if (!free_i->free_segmap)
2379 return -ENOMEM;
2380
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002381 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002382 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002383 if (!free_i->free_secmap)
2384 return -ENOMEM;
2385
2386 /* set all segments as dirty temporarily */
2387 memset(free_i->free_segmap, 0xff, bitmap_size);
2388 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2389
2390 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002391 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002392 free_i->free_segments = 0;
2393 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002394 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002395 return 0;
2396}
2397
2398static int build_curseg(struct f2fs_sb_info *sbi)
2399{
Namjae Jeon1042d602012-12-01 10:56:13 +09002400 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002401 int i;
2402
Fabian Frederickb434bab2014-06-23 18:39:15 +02002403 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002404 if (!array)
2405 return -ENOMEM;
2406
2407 SM_I(sbi)->curseg_array = array;
2408
2409 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2410 mutex_init(&array[i].curseg_mutex);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002411 array[i].sum_blk = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002412 if (!array[i].sum_blk)
2413 return -ENOMEM;
Chao Yub7ad7512016-02-19 18:08:46 +08002414 init_rwsem(&array[i].journal_rwsem);
2415 array[i].journal = kzalloc(sizeof(struct f2fs_journal),
2416 GFP_KERNEL);
2417 if (!array[i].journal)
2418 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002419 array[i].segno = NULL_SEGNO;
2420 array[i].next_blkoff = 0;
2421 }
2422 return restore_curseg_summaries(sbi);
2423}
2424
2425static void build_sit_entries(struct f2fs_sb_info *sbi)
2426{
2427 struct sit_info *sit_i = SIT_I(sbi);
2428 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002429 struct f2fs_journal *journal = curseg->journal;
Yunlei He9c094042016-09-24 12:29:18 +08002430 struct seg_entry *se;
2431 struct f2fs_sit_entry sit;
Chao Yu74de5932013-11-22 09:09:59 +08002432 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2433 unsigned int i, start, end;
2434 unsigned int readed, start_blk = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002435
Chao Yu74de5932013-11-22 09:09:59 +08002436 do {
Jaegeuk Kim664ba972016-10-18 11:07:45 -07002437 readed = ra_meta_pages(sbi, start_blk, BIO_MAX_PAGES,
2438 META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002439
Chao Yu74de5932013-11-22 09:09:59 +08002440 start = start_blk * sit_i->sents_per_block;
2441 end = (start_blk + readed) * sit_i->sents_per_block;
2442
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002443 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002444 struct f2fs_sit_block *sit_blk;
Chao Yu74de5932013-11-22 09:09:59 +08002445 struct page *page;
2446
Yunlei He9c094042016-09-24 12:29:18 +08002447 se = &sit_i->sentries[start];
Chao Yu74de5932013-11-22 09:09:59 +08002448 page = get_current_sit_page(sbi, start);
2449 sit_blk = (struct f2fs_sit_block *)page_address(page);
2450 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2451 f2fs_put_page(page, 1);
Chao Yud600af232016-08-19 23:13:47 +08002452
Chao Yu74de5932013-11-22 09:09:59 +08002453 check_block_count(sbi, start, &sit);
2454 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002455
2456 /* build discard map only one time */
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002457 if (f2fs_discard_en(sbi)) {
2458 memcpy(se->discard_map, se->cur_valid_map,
2459 SIT_VBLOCK_MAP_SIZE);
2460 sbi->discard_blks += sbi->blocks_per_seg -
2461 se->valid_blocks;
2462 }
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002463
Chao Yud600af232016-08-19 23:13:47 +08002464 if (sbi->segs_per_sec > 1)
2465 get_sec_entry(sbi, start)->valid_blocks +=
2466 se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002467 }
Chao Yu74de5932013-11-22 09:09:59 +08002468 start_blk += readed;
2469 } while (start_blk < sit_blk_cnt);
Chao Yud600af232016-08-19 23:13:47 +08002470
2471 down_read(&curseg->journal_rwsem);
2472 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yud600af232016-08-19 23:13:47 +08002473 unsigned int old_valid_blocks;
2474
2475 start = le32_to_cpu(segno_in_journal(journal, i));
2476 se = &sit_i->sentries[start];
2477 sit = sit_in_journal(journal, i);
2478
2479 old_valid_blocks = se->valid_blocks;
2480
2481 check_block_count(sbi, start, &sit);
2482 seg_info_from_raw_sit(se, &sit);
2483
2484 if (f2fs_discard_en(sbi)) {
2485 memcpy(se->discard_map, se->cur_valid_map,
2486 SIT_VBLOCK_MAP_SIZE);
2487 sbi->discard_blks += old_valid_blocks -
2488 se->valid_blocks;
2489 }
2490
2491 if (sbi->segs_per_sec > 1)
2492 get_sec_entry(sbi, start)->valid_blocks +=
2493 se->valid_blocks - old_valid_blocks;
2494 }
2495 up_read(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002496}
2497
2498static void init_free_segmap(struct f2fs_sb_info *sbi)
2499{
2500 unsigned int start;
2501 int type;
2502
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002503 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002504 struct seg_entry *sentry = get_seg_entry(sbi, start);
2505 if (!sentry->valid_blocks)
2506 __set_free(sbi, start);
Jaegeuk Kimc79b7ff2016-11-14 18:20:10 -08002507 else
2508 SIT_I(sbi)->written_valid_blocks +=
2509 sentry->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002510 }
2511
2512 /* set use the current segments */
2513 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2514 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2515 __set_test_and_inuse(sbi, curseg_t->segno);
2516 }
2517}
2518
2519static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2520{
2521 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2522 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002523 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002524 unsigned short valid_blocks;
2525
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002526 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002527 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002528 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2529 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002530 break;
2531 offset = segno + 1;
2532 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002533 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002534 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002535 if (valid_blocks > sbi->blocks_per_seg) {
2536 f2fs_bug_on(sbi, 1);
2537 continue;
2538 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002539 mutex_lock(&dirty_i->seglist_lock);
2540 __locate_dirty_segment(sbi, segno, DIRTY);
2541 mutex_unlock(&dirty_i->seglist_lock);
2542 }
2543}
2544
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002545static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002546{
2547 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002548 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002549
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002550 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002551 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002552 return -ENOMEM;
2553 return 0;
2554}
2555
2556static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2557{
2558 struct dirty_seglist_info *dirty_i;
2559 unsigned int bitmap_size, i;
2560
2561 /* allocate memory for dirty segments list information */
2562 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2563 if (!dirty_i)
2564 return -ENOMEM;
2565
2566 SM_I(sbi)->dirty_info = dirty_i;
2567 mutex_init(&dirty_i->seglist_lock);
2568
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002569 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002570
2571 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002572 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002573 if (!dirty_i->dirty_segmap[i])
2574 return -ENOMEM;
2575 }
2576
2577 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002578 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002579}
2580
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002581/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002582 * Update min, max modified time for cost-benefit GC algorithm
2583 */
2584static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2585{
2586 struct sit_info *sit_i = SIT_I(sbi);
2587 unsigned int segno;
2588
2589 mutex_lock(&sit_i->sentry_lock);
2590
2591 sit_i->min_mtime = LLONG_MAX;
2592
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002593 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002594 unsigned int i;
2595 unsigned long long mtime = 0;
2596
2597 for (i = 0; i < sbi->segs_per_sec; i++)
2598 mtime += get_seg_entry(sbi, segno + i)->mtime;
2599
2600 mtime = div_u64(mtime, sbi->segs_per_sec);
2601
2602 if (sit_i->min_mtime > mtime)
2603 sit_i->min_mtime = mtime;
2604 }
2605 sit_i->max_mtime = get_mtime(sbi);
2606 mutex_unlock(&sit_i->sentry_lock);
2607}
2608
2609int build_segment_manager(struct f2fs_sb_info *sbi)
2610{
2611 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2612 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002613 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002614 int err;
2615
2616 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2617 if (!sm_info)
2618 return -ENOMEM;
2619
2620 /* init sm info */
2621 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002622 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2623 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2624 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2625 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2626 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2627 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2628 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002629 sm_info->rec_prefree_segments = sm_info->main_segments *
2630 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim44a83492016-07-13 18:23:35 -07002631 if (sm_info->rec_prefree_segments > DEF_MAX_RECLAIM_PREFREE_SEGMENTS)
2632 sm_info->rec_prefree_segments = DEF_MAX_RECLAIM_PREFREE_SEGMENTS;
2633
Jaegeuk Kim52763a42016-06-13 09:47:48 -07002634 if (!test_opt(sbi, LFS))
2635 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002636 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002637 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002638
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002639 INIT_LIST_HEAD(&sm_info->discard_list);
Chao Yu275b66b2016-08-29 23:58:34 +08002640 INIT_LIST_HEAD(&sm_info->wait_list);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002641 sm_info->nr_discards = 0;
2642 sm_info->max_discards = 0;
2643
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002644 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2645
Chao Yu184a5cd2014-09-04 18:13:01 +08002646 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2647
Gu Zhengb270ad62014-04-11 17:49:55 +08002648 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002649 err = create_flush_cmd_control(sbi);
2650 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002651 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002652 }
2653
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002654 err = build_sit_info(sbi);
2655 if (err)
2656 return err;
2657 err = build_free_segmap(sbi);
2658 if (err)
2659 return err;
2660 err = build_curseg(sbi);
2661 if (err)
2662 return err;
2663
2664 /* reinit free segmap based on SIT */
2665 build_sit_entries(sbi);
2666
2667 init_free_segmap(sbi);
2668 err = build_dirty_segmap(sbi);
2669 if (err)
2670 return err;
2671
2672 init_min_max_mtime(sbi);
2673 return 0;
2674}
2675
2676static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2677 enum dirty_type dirty_type)
2678{
2679 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2680
2681 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002682 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002683 dirty_i->nr_dirty[dirty_type] = 0;
2684 mutex_unlock(&dirty_i->seglist_lock);
2685}
2686
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002687static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002688{
2689 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002690 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002691}
2692
2693static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2694{
2695 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2696 int i;
2697
2698 if (!dirty_i)
2699 return;
2700
2701 /* discard pre-free/dirty segments list */
2702 for (i = 0; i < NR_DIRTY_TYPE; i++)
2703 discard_dirty_segmap(sbi, i);
2704
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002705 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002706 SM_I(sbi)->dirty_info = NULL;
2707 kfree(dirty_i);
2708}
2709
2710static void destroy_curseg(struct f2fs_sb_info *sbi)
2711{
2712 struct curseg_info *array = SM_I(sbi)->curseg_array;
2713 int i;
2714
2715 if (!array)
2716 return;
2717 SM_I(sbi)->curseg_array = NULL;
Chao Yub7ad7512016-02-19 18:08:46 +08002718 for (i = 0; i < NR_CURSEG_TYPE; i++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002719 kfree(array[i].sum_blk);
Chao Yub7ad7512016-02-19 18:08:46 +08002720 kfree(array[i].journal);
2721 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002722 kfree(array);
2723}
2724
2725static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2726{
2727 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2728 if (!free_i)
2729 return;
2730 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002731 kvfree(free_i->free_segmap);
2732 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002733 kfree(free_i);
2734}
2735
2736static void destroy_sit_info(struct f2fs_sb_info *sbi)
2737{
2738 struct sit_info *sit_i = SIT_I(sbi);
2739 unsigned int start;
2740
2741 if (!sit_i)
2742 return;
2743
2744 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002745 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002746 kfree(sit_i->sentries[start].cur_valid_map);
2747 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002748 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002749 }
2750 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002751 kfree(sit_i->tmp_map);
2752
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002753 kvfree(sit_i->sentries);
2754 kvfree(sit_i->sec_entries);
2755 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002756
2757 SM_I(sbi)->sit_info = NULL;
2758 kfree(sit_i->sit_bitmap);
2759 kfree(sit_i);
2760}
2761
2762void destroy_segment_manager(struct f2fs_sb_info *sbi)
2763{
2764 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002765
Chao Yu3b03f722013-11-06 09:12:04 +08002766 if (!sm_info)
2767 return;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -08002768 destroy_flush_cmd_control(sbi, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002769 destroy_dirty_segmap(sbi);
2770 destroy_curseg(sbi);
2771 destroy_free_segmap(sbi);
2772 destroy_sit_info(sbi);
2773 sbi->sm_info = NULL;
2774 kfree(sm_info);
2775}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002776
2777int __init create_segment_manager_caches(void)
2778{
2779 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002780 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002781 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002782 goto fail;
2783
Chao Yu275b66b2016-08-29 23:58:34 +08002784 bio_entry_slab = f2fs_kmem_cache_create("bio_entry",
2785 sizeof(struct bio_entry));
2786 if (!bio_entry_slab)
Chao Yu6ab2a302016-09-05 12:28:26 +08002787 goto destroy_discard_entry;
Chao Yu275b66b2016-08-29 23:58:34 +08002788
Chao Yu184a5cd2014-09-04 18:13:01 +08002789 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002790 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002791 if (!sit_entry_set_slab)
Chao Yu275b66b2016-08-29 23:58:34 +08002792 goto destroy_bio_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002793
2794 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2795 sizeof(struct inmem_pages));
2796 if (!inmem_entry_slab)
2797 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002798 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002799
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002800destroy_sit_entry_set:
2801 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu275b66b2016-08-29 23:58:34 +08002802destroy_bio_entry:
2803 kmem_cache_destroy(bio_entry_slab);
Chao Yu6ab2a302016-09-05 12:28:26 +08002804destroy_discard_entry:
Chao Yu184a5cd2014-09-04 18:13:01 +08002805 kmem_cache_destroy(discard_entry_slab);
2806fail:
2807 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002808}
2809
2810void destroy_segment_manager_caches(void)
2811{
Chao Yu184a5cd2014-09-04 18:13:01 +08002812 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu275b66b2016-08-29 23:58:34 +08002813 kmem_cache_destroy(bio_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002814 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002815 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002816}