blob: fc886f0084495e84234d49edd10d55422c7cb854 [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,
262 .op_flags = WRITE_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);
277 if (clear_page_dirty_for_io(page))
Chao Yu29b96b52016-02-06 14:38:29 +0800278 inode_dec_dirty_pages(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800279
280 fio.page = page;
Chao Yu29b96b52016-02-06 14:38:29 +0800281 err = do_write_data_page(&fio);
282 if (err) {
Chao Yu28bc1062016-02-06 14:40:34 +0800283 unlock_page(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800284 break;
285 }
Chao Yu28bc1062016-02-06 14:40:34 +0800286
287 /* record old blkaddr for revoking */
288 cur->old_addr = fio.old_blkaddr;
289
290 clear_cold_data(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800291 submit_bio = true;
292 }
Chao Yu28bc1062016-02-06 14:40:34 +0800293 unlock_page(page);
294 list_move_tail(&cur->list, revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800295 }
296
297 if (submit_bio)
298 f2fs_submit_merged_bio_cond(sbi, inode, NULL, 0, DATA, WRITE);
Chao Yu28bc1062016-02-06 14:40:34 +0800299
300 if (!err)
301 __revoke_inmem_pages(inode, revoke_list, false, false);
302
Chao Yu29b96b52016-02-06 14:38:29 +0800303 return err;
304}
305
306int commit_inmem_pages(struct inode *inode)
307{
308 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
309 struct f2fs_inode_info *fi = F2FS_I(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800310 struct list_head revoke_list;
311 int err;
Chao Yu29b96b52016-02-06 14:38:29 +0800312
Chao Yu28bc1062016-02-06 14:40:34 +0800313 INIT_LIST_HEAD(&revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800314 f2fs_balance_fs(sbi, true);
315 f2fs_lock_op(sbi);
316
317 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800318 err = __commit_inmem_pages(inode, &revoke_list);
319 if (err) {
320 int ret;
321 /*
322 * try to revoke all committed pages, but still we could fail
323 * due to no memory or other reason, if that happened, EAGAIN
324 * will be returned, which means in such case, transaction is
325 * already not integrity, caller should use journal to do the
326 * recovery or rewrite & commit last transaction. For other
327 * error number, revoking was done by filesystem itself.
328 */
329 ret = __revoke_inmem_pages(inode, &revoke_list, false, true);
330 if (ret)
331 err = ret;
332
333 /* drop all uncommitted pages */
334 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
335 }
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700336 mutex_unlock(&fi->inmem_lock);
337
Chao Yu29b96b52016-02-06 14:38:29 +0800338 f2fs_unlock_op(sbi);
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700339 return err;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700340}
341
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900342/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900343 * This function balances dirty node and dentry pages.
344 * In addition, it controls garbage collection.
345 */
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800346void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900347{
Chao Yu0f348022016-09-26 19:45:55 +0800348#ifdef CONFIG_F2FS_FAULT_INJECTION
349 if (time_to_inject(sbi, FAULT_CHECKPOINT))
350 f2fs_stop_checkpoint(sbi, false);
351#endif
352
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800353 if (!need)
354 return;
Jaegeuk Kime589c2c2016-06-02 15:24:24 -0700355
356 /* balance_fs_bg is able to be pending */
357 if (excess_cached_nats(sbi))
358 f2fs_balance_fs_bg(sbi);
359
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900360 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900361 * We should do GC or end up with checkpoint, if there are so many dirty
362 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900363 */
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700364 if (has_not_enough_free_secs(sbi, 0, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900365 mutex_lock(&sbi->gc_mutex);
Chao Yud530d4d2015-10-05 22:22:44 +0800366 f2fs_gc(sbi, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900367 }
368}
369
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900370void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
371{
Chao Yu1dcc3362015-02-05 17:57:31 +0800372 /* try to shrink extent cache when there is no enough memory */
Jaegeuk Kim554df792015-06-19 13:41:23 -0700373 if (!available_free_memory(sbi, EXTENT_CACHE))
374 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800375
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700376 /* check the # of cached NAT entries */
377 if (!available_free_memory(sbi, NAT_ENTRIES))
378 try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
379
Chao Yu31696582015-07-28 18:33:46 +0800380 if (!available_free_memory(sbi, FREE_NIDS))
Jaegeuk Kimad4edb82016-06-16 16:41:49 -0700381 try_to_free_nids(sbi, MAX_FREE_NIDS);
382 else
383 build_free_nids(sbi);
Chao Yu31696582015-07-28 18:33:46 +0800384
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700385 /* checkpoint is the only way to shrink partial cached entries */
386 if (!available_free_memory(sbi, NAT_ENTRIES) ||
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700387 !available_free_memory(sbi, INO_ENTRIES) ||
Chao Yu7d768d22016-01-18 18:31:18 +0800388 excess_prefree_segs(sbi) ||
389 excess_dirty_nats(sbi) ||
Jaegeuk Kimd0239e12016-01-08 16:57:48 -0800390 (is_idle(sbi) && f2fs_time_over(sbi, CP_TIME))) {
Chao Yue9f5b8b2016-02-14 18:54:33 +0800391 if (test_opt(sbi, DATA_FLUSH)) {
392 struct blk_plug plug;
393
394 blk_start_plug(&plug);
Chao Yu36b35a02015-12-17 17:13:28 +0800395 sync_dirty_inodes(sbi, FILE_INODE);
Chao Yue9f5b8b2016-02-14 18:54:33 +0800396 blk_finish_plug(&plug);
397 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900398 f2fs_sync_fs(sbi->sb, true);
Jaegeuk Kim42190d22016-01-09 13:45:17 -0800399 stat_inc_bg_cp_count(sbi->stat_info);
Chao Yu36b35a02015-12-17 17:13:28 +0800400 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900401}
402
Gu Zheng2163d192014-04-27 14:21:33 +0800403static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900404{
405 struct f2fs_sb_info *sbi = data;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800406 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
407 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900408repeat:
409 if (kthread_should_stop())
410 return 0;
411
Gu Zheng721bd4d2014-09-05 18:31:00 +0800412 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700413 struct bio *bio;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900414 struct flush_cmd *cmd, *next;
415 int ret;
416
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700417 bio = f2fs_bio_alloc(0);
418
Gu Zheng721bd4d2014-09-05 18:31:00 +0800419 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
420 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
421
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900422 bio->bi_bdev = sbi->sb->s_bdev;
Mike Christie04d328d2016-06-05 14:31:55 -0500423 bio_set_op_attrs(bio, REQ_OP_WRITE, WRITE_FLUSH);
Mike Christie4e49ea42016-06-05 14:31:41 -0500424 ret = submit_bio_wait(bio);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900425
Gu Zheng721bd4d2014-09-05 18:31:00 +0800426 llist_for_each_entry_safe(cmd, next,
427 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900428 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900429 complete(&cmd->wait);
430 }
Gu Zhenga4ed23f2014-04-11 17:49:35 +0800431 bio_put(bio);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800432 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900433 }
434
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800435 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800436 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900437 goto repeat;
438}
439
440int f2fs_issue_flush(struct f2fs_sb_info *sbi)
441{
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800442 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800443 struct flush_cmd cmd;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900444
Jaegeuk Kim24a9ee02014-07-25 17:46:10 -0700445 trace_f2fs_issue_flush(sbi->sb, test_opt(sbi, NOBARRIER),
446 test_opt(sbi, FLUSH_MERGE));
447
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700448 if (test_opt(sbi, NOBARRIER))
449 return 0;
450
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700451 if (!test_opt(sbi, FLUSH_MERGE) || !atomic_read(&fcc->submit_flush)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700452 struct bio *bio = f2fs_bio_alloc(0);
453 int ret;
454
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700455 atomic_inc(&fcc->submit_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700456 bio->bi_bdev = sbi->sb->s_bdev;
Mike Christie04d328d2016-06-05 14:31:55 -0500457 bio_set_op_attrs(bio, REQ_OP_WRITE, WRITE_FLUSH);
Mike Christie4e49ea42016-06-05 14:31:41 -0500458 ret = submit_bio_wait(bio);
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700459 atomic_dec(&fcc->submit_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700460 bio_put(bio);
461 return ret;
462 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900463
Chao Yuadf8d902014-05-08 17:00:35 +0800464 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900465
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700466 atomic_inc(&fcc->submit_flush);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800467 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900468
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800469 if (!fcc->dispatch_list)
470 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900471
Chao Yuadf8d902014-05-08 17:00:35 +0800472 wait_for_completion(&cmd.wait);
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700473 atomic_dec(&fcc->submit_flush);
Chao Yuadf8d902014-05-08 17:00:35 +0800474
475 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900476}
477
Gu Zheng2163d192014-04-27 14:21:33 +0800478int create_flush_cmd_control(struct f2fs_sb_info *sbi)
479{
480 dev_t dev = sbi->sb->s_bdev->bd_dev;
481 struct flush_cmd_control *fcc;
482 int err = 0;
483
484 fcc = kzalloc(sizeof(struct flush_cmd_control), GFP_KERNEL);
485 if (!fcc)
486 return -ENOMEM;
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700487 atomic_set(&fcc->submit_flush, 0);
Gu Zheng2163d192014-04-27 14:21:33 +0800488 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800489 init_llist_head(&fcc->issue_list);
Chao Yu6b2920a2014-07-07 11:21:59 +0800490 SM_I(sbi)->cmd_control_info = fcc;
Gu Zheng2163d192014-04-27 14:21:33 +0800491 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
492 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
493 if (IS_ERR(fcc->f2fs_issue_flush)) {
494 err = PTR_ERR(fcc->f2fs_issue_flush);
495 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800496 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800497 return err;
498 }
Gu Zheng2163d192014-04-27 14:21:33 +0800499
500 return err;
501}
502
503void destroy_flush_cmd_control(struct f2fs_sb_info *sbi)
504{
Chao Yu6b2920a2014-07-07 11:21:59 +0800505 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800506
507 if (fcc && fcc->f2fs_issue_flush)
508 kthread_stop(fcc->f2fs_issue_flush);
509 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800510 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800511}
512
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900513static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
514 enum dirty_type dirty_type)
515{
516 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
517
518 /* need not be added */
519 if (IS_CURSEG(sbi, segno))
520 return;
521
522 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
523 dirty_i->nr_dirty[dirty_type]++;
524
525 if (dirty_type == DIRTY) {
526 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900527 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900528
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700529 if (unlikely(t >= DIRTY)) {
530 f2fs_bug_on(sbi, 1);
531 return;
532 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900533 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
534 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900535 }
536}
537
538static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
539 enum dirty_type dirty_type)
540{
541 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
542
543 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
544 dirty_i->nr_dirty[dirty_type]--;
545
546 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900547 struct seg_entry *sentry = get_seg_entry(sbi, segno);
548 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900549
Changman Lee4625d6a2013-10-25 17:31:57 +0900550 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
551 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900552
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900553 if (get_valid_blocks(sbi, segno, sbi->segs_per_sec) == 0)
554 clear_bit(GET_SECNO(sbi, segno),
555 dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900556 }
557}
558
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900559/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900560 * Should not occur error such as -ENOMEM.
561 * Adding dirty entry into seglist is not critical operation.
562 * If a given segment is one of current working segments, it won't be added.
563 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800564static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900565{
566 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
567 unsigned short valid_blocks;
568
569 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
570 return;
571
572 mutex_lock(&dirty_i->seglist_lock);
573
574 valid_blocks = get_valid_blocks(sbi, segno, 0);
575
576 if (valid_blocks == 0) {
577 __locate_dirty_segment(sbi, segno, PRE);
578 __remove_dirty_segment(sbi, segno, DIRTY);
579 } else if (valid_blocks < sbi->blocks_per_seg) {
580 __locate_dirty_segment(sbi, segno, DIRTY);
581 } else {
582 /* Recovery routine with SSR needs this */
583 __remove_dirty_segment(sbi, segno, DIRTY);
584 }
585
586 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900587}
588
Chao Yu275b66b2016-08-29 23:58:34 +0800589static struct bio_entry *__add_bio_entry(struct f2fs_sb_info *sbi,
590 struct bio *bio)
591{
592 struct list_head *wait_list = &(SM_I(sbi)->wait_list);
593 struct bio_entry *be = f2fs_kmem_cache_alloc(bio_entry_slab, GFP_NOFS);
594
595 INIT_LIST_HEAD(&be->list);
596 be->bio = bio;
597 init_completion(&be->event);
598 list_add_tail(&be->list, wait_list);
599
600 return be;
601}
602
603void f2fs_wait_all_discard_bio(struct f2fs_sb_info *sbi)
604{
605 struct list_head *wait_list = &(SM_I(sbi)->wait_list);
606 struct bio_entry *be, *tmp;
607
608 list_for_each_entry_safe(be, tmp, wait_list, list) {
609 struct bio *bio = be->bio;
610 int err;
611
612 wait_for_completion_io(&be->event);
613 err = be->error;
614 if (err == -EOPNOTSUPP)
615 err = 0;
616
617 if (err)
618 f2fs_msg(sbi->sb, KERN_INFO,
619 "Issue discard failed, ret: %d", err);
620
621 bio_put(bio);
622 list_del(&be->list);
623 kmem_cache_free(bio_entry_slab, be);
624 }
625}
626
627static void f2fs_submit_bio_wait_endio(struct bio *bio)
628{
629 struct bio_entry *be = (struct bio_entry *)bio->bi_private;
630
631 be->error = bio->bi_error;
632 complete(&be->event);
633}
634
635/* this function is copied from blkdev_issue_discard from block/blk-lib.c */
636int __f2fs_issue_discard_async(struct f2fs_sb_info *sbi, sector_t sector,
637 sector_t nr_sects, gfp_t gfp_mask, unsigned long flags)
638{
639 struct block_device *bdev = sbi->sb->s_bdev;
640 struct bio *bio = NULL;
641 int err;
642
643 err = __blkdev_issue_discard(bdev, sector, nr_sects, gfp_mask, flags,
644 &bio);
645 if (!err && bio) {
646 struct bio_entry *be = __add_bio_entry(sbi, bio);
647
648 bio->bi_private = be;
649 bio->bi_end_io = f2fs_submit_bio_wait_endio;
650 bio->bi_opf |= REQ_SYNC;
651 submit_bio(bio);
652 }
653
654 return err;
655}
656
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900657static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +0900658 block_t blkstart, block_t blklen)
659{
Chao Yu55cf9cb2014-09-15 18:01:10 +0800660 sector_t start = SECTOR_FROM_BLOCK(blkstart);
661 sector_t len = SECTOR_FROM_BLOCK(blklen);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700662 struct seg_entry *se;
663 unsigned int offset;
664 block_t i;
665
666 for (i = blkstart; i < blkstart + blklen; i++) {
667 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
668 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
669
670 if (!f2fs_test_and_set_bit(offset, se->discard_map))
671 sbi->discard_blks--;
672 }
Jaegeuk Kim1661d072013-11-12 17:01:00 +0900673 trace_f2fs_issue_discard(sbi->sb, blkstart, blklen);
Chao Yu275b66b2016-08-29 23:58:34 +0800674 return __f2fs_issue_discard_async(sbi, start, len, GFP_NOFS, 0);
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900675}
676
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700677static void __add_discard_entry(struct f2fs_sb_info *sbi,
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700678 struct cp_control *cpc, struct seg_entry *se,
679 unsigned int start, unsigned int end)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900680{
681 struct list_head *head = &SM_I(sbi)->discard_list;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700682 struct discard_entry *new, *last;
683
684 if (!list_empty(head)) {
685 last = list_last_entry(head, struct discard_entry, list);
686 if (START_BLOCK(sbi, cpc->trim_start) + start ==
687 last->blkaddr + last->len) {
688 last->len += end - start;
689 goto done;
690 }
691 }
692
693 new = f2fs_kmem_cache_alloc(discard_entry_slab, GFP_NOFS);
694 INIT_LIST_HEAD(&new->list);
695 new->blkaddr = START_BLOCK(sbi, cpc->trim_start) + start;
696 new->len = end - start;
697 list_add_tail(&new->list, head);
698done:
699 SM_I(sbi)->nr_discards += end - start;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700700}
701
702static void add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc)
703{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900704 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
705 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700706 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900707 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
708 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700709 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800710 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900711 unsigned int start = 0, end = -1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700712 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900713 int i;
714
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700715 if (se->valid_blocks == max_blocks || !f2fs_discard_en(sbi))
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900716 return;
717
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700718 if (!force) {
719 if (!test_opt(sbi, DISCARD) || !se->valid_blocks ||
Dan Carpenter912a83b2015-05-14 11:52:28 +0300720 SM_I(sbi)->nr_discards >= SM_I(sbi)->max_discards)
721 return;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700722 }
723
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900724 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
725 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700726 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -0800727 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900728
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700729 while (force || SM_I(sbi)->nr_discards <= SM_I(sbi)->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900730 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
731 if (start >= max_blocks)
732 break;
733
734 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Yunlei Hec7b41e12016-07-07 12:13:33 +0800735 if (force && start && end != max_blocks
736 && (end - start) < cpc->trim_minlen)
737 continue;
738
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700739 __add_discard_entry(sbi, cpc, se, start, end);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900740 }
741}
742
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700743void release_discard_addrs(struct f2fs_sb_info *sbi)
744{
745 struct list_head *head = &(SM_I(sbi)->discard_list);
746 struct discard_entry *entry, *this;
747
748 /* drop caches */
749 list_for_each_entry_safe(entry, this, head, list) {
750 list_del(&entry->list);
751 kmem_cache_free(discard_entry_slab, entry);
752 }
753}
754
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900755/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900756 * Should call clear_prefree_segments after checkpoint is done.
757 */
758static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
759{
760 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +0800761 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900762
763 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700764 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900765 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900766 mutex_unlock(&dirty_i->seglist_lock);
767}
768
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700769void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900770{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900771 struct list_head *head = &(SM_I(sbi)->discard_list);
Chao Yu2d7b8222014-03-29 11:33:17 +0800772 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900773 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yu275b66b2016-08-29 23:58:34 +0800774 struct blk_plug plug;
Changman Lee29e59c12013-11-11 09:24:37 +0900775 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +0900776 unsigned int start = 0, end = -1;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700777 unsigned int secno, start_segno;
Chao Yuc24a0fd2016-07-07 22:46:55 +0800778 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900779
Chao Yu275b66b2016-08-29 23:58:34 +0800780 blk_start_plug(&plug);
781
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900782 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900783
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900784 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900785 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700786 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
787 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900788 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700789 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
790 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900791
Changman Lee29e59c12013-11-11 09:24:37 +0900792 for (i = start; i < end; i++)
793 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900794
Changman Lee29e59c12013-11-11 09:24:37 +0900795 dirty_i->nr_dirty[PRE] -= end - start;
796
Chao Yuc24a0fd2016-07-07 22:46:55 +0800797 if (force || !test_opt(sbi, DISCARD))
Changman Lee29e59c12013-11-11 09:24:37 +0900798 continue;
799
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700800 if (!test_opt(sbi, LFS) || sbi->segs_per_sec == 1) {
801 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
Jaegeuk Kim37208872013-11-12 16:55:17 +0900802 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700803 continue;
804 }
805next:
806 secno = GET_SECNO(sbi, start);
807 start_segno = secno * sbi->segs_per_sec;
808 if (!IS_CURSEC(sbi, secno) &&
809 !get_valid_blocks(sbi, start, sbi->segs_per_sec))
810 f2fs_issue_discard(sbi, START_BLOCK(sbi, start_segno),
811 sbi->segs_per_sec << sbi->log_blocks_per_seg);
812
813 start = start_segno + sbi->segs_per_sec;
814 if (start < end)
815 goto next;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900816 }
817 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900818
819 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800820 list_for_each_entry_safe(entry, this, head, list) {
Chao Yuc24a0fd2016-07-07 22:46:55 +0800821 if (force && entry->len < cpc->trim_minlen)
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700822 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900823 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700824 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700825skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900826 list_del(&entry->list);
827 SM_I(sbi)->nr_discards -= entry->len;
828 kmem_cache_free(discard_entry_slab, entry);
829 }
Chao Yu275b66b2016-08-29 23:58:34 +0800830
831 blk_finish_plug(&plug);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900832}
833
Chao Yu184a5cd2014-09-04 18:13:01 +0800834static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900835{
836 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800837
838 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900839 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800840 return false;
841 }
842
843 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900844}
845
846static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
847 unsigned int segno, int modified)
848{
849 struct seg_entry *se = get_seg_entry(sbi, segno);
850 se->type = type;
851 if (modified)
852 __mark_sit_entry_dirty(sbi, segno);
853}
854
855static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
856{
857 struct seg_entry *se;
858 unsigned int segno, offset;
859 long int new_vblocks;
860
861 segno = GET_SEGNO(sbi, blkaddr);
862
863 se = get_seg_entry(sbi, segno);
864 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +0900865 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900866
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700867 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900868 (new_vblocks > sbi->blocks_per_seg)));
869
870 se->valid_blocks = new_vblocks;
871 se->mtime = get_mtime(sbi);
872 SIT_I(sbi)->max_mtime = se->mtime;
873
874 /* Update valid block bitmap */
875 if (del > 0) {
Gu Zheng52aca072014-10-20 17:45:51 +0800876 if (f2fs_test_and_set_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700877 f2fs_bug_on(sbi, 1);
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700878 if (f2fs_discard_en(sbi) &&
879 !f2fs_test_and_set_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700880 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900881 } else {
Gu Zheng52aca072014-10-20 17:45:51 +0800882 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700883 f2fs_bug_on(sbi, 1);
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700884 if (f2fs_discard_en(sbi) &&
885 f2fs_test_and_clear_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700886 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900887 }
888 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
889 se->ckpt_valid_blocks += del;
890
891 __mark_sit_entry_dirty(sbi, segno);
892
893 /* update total number of valid blocks to be written in ckpt area */
894 SIT_I(sbi)->written_valid_blocks += del;
895
896 if (sbi->segs_per_sec > 1)
897 get_sec_entry(sbi, segno)->valid_blocks += del;
898}
899
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900900void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900901{
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900902 update_sit_entry(sbi, new, 1);
903 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
904 update_sit_entry(sbi, old, -1);
905
906 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
907 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900908}
909
910void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
911{
912 unsigned int segno = GET_SEGNO(sbi, addr);
913 struct sit_info *sit_i = SIT_I(sbi);
914
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700915 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900916 if (addr == NEW_ADDR)
917 return;
918
919 /* add it into sit main buffer */
920 mutex_lock(&sit_i->sentry_lock);
921
922 update_sit_entry(sbi, addr, -1);
923
924 /* add it into dirty seglist */
925 locate_dirty_segment(sbi, segno);
926
927 mutex_unlock(&sit_i->sentry_lock);
928}
929
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -0700930bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
931{
932 struct sit_info *sit_i = SIT_I(sbi);
933 unsigned int segno, offset;
934 struct seg_entry *se;
935 bool is_cp = false;
936
937 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
938 return true;
939
940 mutex_lock(&sit_i->sentry_lock);
941
942 segno = GET_SEGNO(sbi, blkaddr);
943 se = get_seg_entry(sbi, segno);
944 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
945
946 if (f2fs_test_bit(offset, se->ckpt_valid_map))
947 is_cp = true;
948
949 mutex_unlock(&sit_i->sentry_lock);
950
951 return is_cp;
952}
953
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900954/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900955 * This function should be resided under the curseg_mutex lock
956 */
957static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +0800958 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900959{
960 struct curseg_info *curseg = CURSEG_I(sbi, type);
961 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +0800962 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900963 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900964}
965
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900966/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900967 * Calculate the number of current summary pages for writing
968 */
Chao Yu3fa06d72014-12-09 14:21:46 +0800969int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900970{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900971 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +0800972 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900973
974 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
975 if (sbi->ckpt->alloc_type[i] == SSR)
976 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +0800977 else {
978 if (for_ra)
979 valid_sum_count += le16_to_cpu(
980 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
981 else
982 valid_sum_count += curseg_blkoff(sbi, i);
983 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900984 }
985
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300986 sum_in_page = (PAGE_SIZE - 2 * SUM_JOURNAL_SIZE -
Fan Li9a479382013-10-29 16:21:47 +0800987 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
988 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900989 return 1;
Fan Li9a479382013-10-29 16:21:47 +0800990 else if ((valid_sum_count - sum_in_page) <=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300991 (PAGE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900992 return 2;
993 return 3;
994}
995
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900996/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900997 * Caller should put this summary page
998 */
999struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
1000{
1001 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
1002}
1003
Chao Yu381722d2015-05-19 17:40:04 +08001004void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
1005{
1006 struct page *page = grab_meta_page(sbi, blk_addr);
1007 void *dst = page_address(page);
1008
1009 if (src)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001010 memcpy(dst, src, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +08001011 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001012 memset(dst, 0, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +08001013 set_page_dirty(page);
1014 f2fs_put_page(page, 1);
1015}
1016
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001017static void write_sum_page(struct f2fs_sb_info *sbi,
1018 struct f2fs_summary_block *sum_blk, block_t blk_addr)
1019{
Chao Yu381722d2015-05-19 17:40:04 +08001020 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001021}
1022
Chao Yub7ad7512016-02-19 18:08:46 +08001023static void write_current_sum_page(struct f2fs_sb_info *sbi,
1024 int type, block_t blk_addr)
1025{
1026 struct curseg_info *curseg = CURSEG_I(sbi, type);
1027 struct page *page = grab_meta_page(sbi, blk_addr);
1028 struct f2fs_summary_block *src = curseg->sum_blk;
1029 struct f2fs_summary_block *dst;
1030
1031 dst = (struct f2fs_summary_block *)page_address(page);
1032
1033 mutex_lock(&curseg->curseg_mutex);
1034
1035 down_read(&curseg->journal_rwsem);
1036 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE);
1037 up_read(&curseg->journal_rwsem);
1038
1039 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE);
1040 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE);
1041
1042 mutex_unlock(&curseg->curseg_mutex);
1043
1044 set_page_dirty(page);
1045 f2fs_put_page(page, 1);
1046}
1047
Jaegeuk Kim60374682013-03-31 13:58:51 +09001048static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
1049{
1050 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +08001051 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +09001052 struct free_segmap_info *free_i = FREE_I(sbi);
1053
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001054 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +08001055 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001056 return 0;
1057}
1058
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001059/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001060 * Find a new segment from the free segments bitmap to right order
1061 * This function should be returned with success, otherwise BUG
1062 */
1063static void get_new_segment(struct f2fs_sb_info *sbi,
1064 unsigned int *newseg, bool new_sec, int dir)
1065{
1066 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001067 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001068 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001069 unsigned int hint = *newseg / sbi->segs_per_sec;
1070 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
1071 unsigned int left_start = hint;
1072 bool init = true;
1073 int go_left = 0;
1074 int i;
1075
Chao Yu1a118cc2015-02-11 18:20:38 +08001076 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001077
1078 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
1079 segno = find_next_zero_bit(free_i->free_segmap,
Chao Yu0ab14352016-01-22 17:42:06 +08001080 (hint + 1) * sbi->segs_per_sec, *newseg + 1);
1081 if (segno < (hint + 1) * sbi->segs_per_sec)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001082 goto got_it;
1083 }
1084find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001085 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
1086 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001087 if (dir == ALLOC_RIGHT) {
1088 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001089 MAIN_SECS(sbi), 0);
1090 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001091 } else {
1092 go_left = 1;
1093 left_start = hint - 1;
1094 }
1095 }
1096 if (go_left == 0)
1097 goto skip_left;
1098
1099 while (test_bit(left_start, free_i->free_secmap)) {
1100 if (left_start > 0) {
1101 left_start--;
1102 continue;
1103 }
1104 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001105 MAIN_SECS(sbi), 0);
1106 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001107 break;
1108 }
1109 secno = left_start;
1110skip_left:
1111 hint = secno;
1112 segno = secno * sbi->segs_per_sec;
1113 zoneno = secno / sbi->secs_per_zone;
1114
1115 /* give up on finding another zone */
1116 if (!init)
1117 goto got_it;
1118 if (sbi->secs_per_zone == 1)
1119 goto got_it;
1120 if (zoneno == old_zoneno)
1121 goto got_it;
1122 if (dir == ALLOC_LEFT) {
1123 if (!go_left && zoneno + 1 >= total_zones)
1124 goto got_it;
1125 if (go_left && zoneno == 0)
1126 goto got_it;
1127 }
1128 for (i = 0; i < NR_CURSEG_TYPE; i++)
1129 if (CURSEG_I(sbi, i)->zone == zoneno)
1130 break;
1131
1132 if (i < NR_CURSEG_TYPE) {
1133 /* zone is in user, try another */
1134 if (go_left)
1135 hint = zoneno * sbi->secs_per_zone - 1;
1136 else if (zoneno + 1 >= total_zones)
1137 hint = 0;
1138 else
1139 hint = (zoneno + 1) * sbi->secs_per_zone;
1140 init = false;
1141 goto find_other_zone;
1142 }
1143got_it:
1144 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001145 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001146 __set_inuse(sbi, segno);
1147 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08001148 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001149}
1150
1151static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
1152{
1153 struct curseg_info *curseg = CURSEG_I(sbi, type);
1154 struct summary_footer *sum_footer;
1155
1156 curseg->segno = curseg->next_segno;
1157 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
1158 curseg->next_blkoff = 0;
1159 curseg->next_segno = NULL_SEGNO;
1160
1161 sum_footer = &(curseg->sum_blk->footer);
1162 memset(sum_footer, 0, sizeof(struct summary_footer));
1163 if (IS_DATASEG(type))
1164 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
1165 if (IS_NODESEG(type))
1166 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
1167 __set_sit_entry_type(sbi, type, curseg->segno, modified);
1168}
1169
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001170/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001171 * Allocate a current working segment.
1172 * This function always allocates a free segment in LFS manner.
1173 */
1174static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
1175{
1176 struct curseg_info *curseg = CURSEG_I(sbi, type);
1177 unsigned int segno = curseg->segno;
1178 int dir = ALLOC_LEFT;
1179
1180 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08001181 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001182 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
1183 dir = ALLOC_RIGHT;
1184
1185 if (test_opt(sbi, NOHEAP))
1186 dir = ALLOC_RIGHT;
1187
1188 get_new_segment(sbi, &segno, new_sec, dir);
1189 curseg->next_segno = segno;
1190 reset_curseg(sbi, type, 1);
1191 curseg->alloc_type = LFS;
1192}
1193
1194static void __next_free_blkoff(struct f2fs_sb_info *sbi,
1195 struct curseg_info *seg, block_t start)
1196{
1197 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09001198 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001199 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09001200 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
1201 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1202 int i, pos;
1203
1204 for (i = 0; i < entries; i++)
1205 target_map[i] = ckpt_map[i] | cur_map[i];
1206
1207 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1208
1209 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001210}
1211
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001212/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001213 * If a segment is written by LFS manner, next block offset is just obtained
1214 * by increasing the current block offset. However, if a segment is written by
1215 * SSR manner, next block offset obtained by calling __next_free_blkoff
1216 */
1217static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1218 struct curseg_info *seg)
1219{
1220 if (seg->alloc_type == SSR)
1221 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1222 else
1223 seg->next_blkoff++;
1224}
1225
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001226/*
arter97e1c42042014-08-06 23:22:50 +09001227 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001228 * manner, so it should recover the existing segment information of valid blocks
1229 */
1230static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1231{
1232 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1233 struct curseg_info *curseg = CURSEG_I(sbi, type);
1234 unsigned int new_segno = curseg->next_segno;
1235 struct f2fs_summary_block *sum_node;
1236 struct page *sum_page;
1237
1238 write_sum_page(sbi, curseg->sum_blk,
1239 GET_SUM_BLOCK(sbi, curseg->segno));
1240 __set_test_and_inuse(sbi, new_segno);
1241
1242 mutex_lock(&dirty_i->seglist_lock);
1243 __remove_dirty_segment(sbi, new_segno, PRE);
1244 __remove_dirty_segment(sbi, new_segno, DIRTY);
1245 mutex_unlock(&dirty_i->seglist_lock);
1246
1247 reset_curseg(sbi, type, 1);
1248 curseg->alloc_type = SSR;
1249 __next_free_blkoff(sbi, curseg, 0);
1250
1251 if (reuse) {
1252 sum_page = get_sum_page(sbi, new_segno);
1253 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1254 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1255 f2fs_put_page(sum_page, 1);
1256 }
1257}
1258
Jaegeuk Kim43727522013-02-04 15:11:17 +09001259static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1260{
1261 struct curseg_info *curseg = CURSEG_I(sbi, type);
1262 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1263
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -07001264 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0, 0))
Jaegeuk Kim43727522013-02-04 15:11:17 +09001265 return v_ops->get_victim(sbi,
1266 &(curseg)->next_segno, BG_GC, type, SSR);
1267
1268 /* For data segments, let's do SSR more intensively */
1269 for (; type >= CURSEG_HOT_DATA; type--)
1270 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1271 BG_GC, type, SSR))
1272 return 1;
1273 return 0;
1274}
1275
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001276/*
1277 * flush out current segment and replace it with new segment
1278 * This function should be returned with success, otherwise BUG
1279 */
1280static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1281 int type, bool force)
1282{
1283 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001284
Gu Zheng7b405272013-08-19 09:41:15 +08001285 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001286 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001287 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001288 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001289 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1290 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001291 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1292 change_curseg(sbi, type, true);
1293 else
1294 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001295
1296 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001297}
1298
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001299static void __allocate_new_segments(struct f2fs_sb_info *sbi, int type)
1300{
1301 struct curseg_info *curseg = CURSEG_I(sbi, type);
1302 unsigned int old_segno;
1303
1304 old_segno = curseg->segno;
1305 SIT_I(sbi)->s_ops->allocate_segment(sbi, type, true);
1306 locate_dirty_segment(sbi, old_segno);
1307}
1308
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001309void allocate_new_segments(struct f2fs_sb_info *sbi)
1310{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001311 int i;
1312
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001313 if (test_opt(sbi, LFS))
1314 return;
1315
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001316 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++)
1317 __allocate_new_segments(sbi, i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001318}
1319
1320static const struct segment_allocation default_salloc_ops = {
1321 .allocate_segment = allocate_segment_by_default,
1322};
1323
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001324int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1325{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001326 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1327 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001328 unsigned int start_segno, end_segno;
1329 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001330 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001331
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001332 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001333 return -EINVAL;
1334
Jan Kara9bd27ae2014-10-21 14:07:33 +02001335 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001336 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001337 goto out;
1338
Yunlei Heed214a12016-09-01 10:14:39 +08001339 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
1340 f2fs_msg(sbi->sb, KERN_WARNING,
1341 "Found FS corruption, run fsck to fix.");
1342 goto out;
1343 }
1344
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001345 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001346 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1347 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1348 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001349 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001350 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001351
1352 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001353 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1354 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001355
1356 if (sbi->discard_blks == 0)
1357 break;
1358 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1359 cpc.trim_end = end_segno;
1360 else
1361 cpc.trim_end = min_t(unsigned int,
1362 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001363 BATCHED_TRIM_SEGMENTS(sbi),
1364 sbi->segs_per_sec) - 1, end_segno);
1365
1366 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001367 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001368 mutex_unlock(&sbi->gc_mutex);
Chao Yue9328352016-08-21 23:21:29 +08001369 if (err)
1370 break;
Chao Yu74fa5f32016-08-21 23:21:30 +08001371
1372 schedule();
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001373 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001374out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001375 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001376 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001377}
1378
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001379static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1380{
1381 struct curseg_info *curseg = CURSEG_I(sbi, type);
1382 if (curseg->next_blkoff < sbi->blocks_per_seg)
1383 return true;
1384 return false;
1385}
1386
1387static int __get_segment_type_2(struct page *page, enum page_type p_type)
1388{
1389 if (p_type == DATA)
1390 return CURSEG_HOT_DATA;
1391 else
1392 return CURSEG_HOT_NODE;
1393}
1394
1395static int __get_segment_type_4(struct page *page, enum page_type p_type)
1396{
1397 if (p_type == DATA) {
1398 struct inode *inode = page->mapping->host;
1399
1400 if (S_ISDIR(inode->i_mode))
1401 return CURSEG_HOT_DATA;
1402 else
1403 return CURSEG_COLD_DATA;
1404 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001405 if (IS_DNODE(page) && is_cold_node(page))
1406 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001407 else
1408 return CURSEG_COLD_NODE;
1409 }
1410}
1411
1412static int __get_segment_type_6(struct page *page, enum page_type p_type)
1413{
1414 if (p_type == DATA) {
1415 struct inode *inode = page->mapping->host;
1416
1417 if (S_ISDIR(inode->i_mode))
1418 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001419 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001420 return CURSEG_COLD_DATA;
1421 else
1422 return CURSEG_WARM_DATA;
1423 } else {
1424 if (IS_DNODE(page))
1425 return is_cold_node(page) ? CURSEG_WARM_NODE :
1426 CURSEG_HOT_NODE;
1427 else
1428 return CURSEG_COLD_NODE;
1429 }
1430}
1431
1432static int __get_segment_type(struct page *page, enum page_type p_type)
1433{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001434 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001435 case 2:
1436 return __get_segment_type_2(page, p_type);
1437 case 4:
1438 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001439 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001440 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001441 f2fs_bug_on(F2FS_P_SB(page),
1442 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001443 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001444}
1445
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001446void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1447 block_t old_blkaddr, block_t *new_blkaddr,
1448 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001449{
1450 struct sit_info *sit_i = SIT_I(sbi);
1451 struct curseg_info *curseg;
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001452 bool direct_io = (type == CURSEG_DIRECT_IO);
1453
1454 type = direct_io ? CURSEG_WARM_DATA : type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001455
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001456 curseg = CURSEG_I(sbi, type);
1457
1458 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001459 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001460
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001461 /* direct_io'ed data is aligned to the segment for better performance */
Jaegeuk Kim47e70ca2015-08-11 10:17:27 -07001462 if (direct_io && curseg->next_blkoff &&
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -07001463 !has_not_enough_free_secs(sbi, 0, 0))
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001464 __allocate_new_segments(sbi, type);
1465
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001466 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001467
1468 /*
1469 * __add_sum_entry should be resided under the curseg_mutex
1470 * because, this function updates a summary entry in the
1471 * current summary block.
1472 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001473 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001474
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001475 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001476
1477 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001478
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001479 if (!__has_curseg_space(sbi, type))
1480 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001481 /*
1482 * SIT information should be updated before segment allocation,
1483 * since SSR needs latest valid block information.
1484 */
1485 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001486
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001487 mutex_unlock(&sit_i->sentry_lock);
1488
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001489 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001490 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1491
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001492 mutex_unlock(&curseg->curseg_mutex);
1493}
1494
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001495static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001496{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001497 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001498
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001499 if (fio->type == NODE || fio->type == DATA)
1500 mutex_lock(&fio->sbi->wio_mutex[fio->type]);
1501
Chao Yu7a9d7542016-02-22 18:36:38 +08001502 allocate_data_block(fio->sbi, fio->page, fio->old_blkaddr,
1503 &fio->new_blkaddr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001504
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001505 /* writeout dirty page into bdev */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001506 f2fs_submit_page_mbio(fio);
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001507
1508 if (fio->type == NODE || fio->type == DATA)
1509 mutex_unlock(&fio->sbi->wio_mutex[fio->type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001510}
1511
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001512void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001513{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001514 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001515 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001516 .type = META,
Mike Christie04d328d2016-06-05 14:31:55 -05001517 .op = REQ_OP_WRITE,
1518 .op_flags = WRITE_SYNC | REQ_META | REQ_PRIO,
Chao Yu7a9d7542016-02-22 18:36:38 +08001519 .old_blkaddr = page->index,
1520 .new_blkaddr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001521 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001522 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001523 };
1524
Chao Yu2b947002015-10-12 17:04:21 +08001525 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
Mike Christie04d328d2016-06-05 14:31:55 -05001526 fio.op_flags &= ~REQ_META;
Chao Yu2b947002015-10-12 17:04:21 +08001527
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001528 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001529 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001530}
1531
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001532void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001533{
1534 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001535
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001536 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001537 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001538}
1539
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001540void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001541{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001542 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001543 struct f2fs_summary sum;
1544 struct node_info ni;
1545
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001546 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001547 get_node_info(sbi, dn->nid, &ni);
1548 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001549 do_write_page(&sum, fio);
Chao Yuf28b3432016-02-24 17:16:47 +08001550 f2fs_update_data_blkaddr(dn, fio->new_blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001551}
1552
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001553void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001554{
Chao Yu7a9d7542016-02-22 18:36:38 +08001555 fio->new_blkaddr = fio->old_blkaddr;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001556 stat_inc_inplace_blocks(fio->sbi);
1557 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001558}
1559
Chao Yu4356e482016-02-23 17:52:43 +08001560void __f2fs_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001561 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08001562 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001563{
1564 struct sit_info *sit_i = SIT_I(sbi);
1565 struct curseg_info *curseg;
1566 unsigned int segno, old_cursegno;
1567 struct seg_entry *se;
1568 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001569 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001570
1571 segno = GET_SEGNO(sbi, new_blkaddr);
1572 se = get_seg_entry(sbi, segno);
1573 type = se->type;
1574
Chao Yu19f106b2015-05-06 13:08:06 +08001575 if (!recover_curseg) {
1576 /* for recovery flow */
1577 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1578 if (old_blkaddr == NULL_ADDR)
1579 type = CURSEG_COLD_DATA;
1580 else
1581 type = CURSEG_WARM_DATA;
1582 }
1583 } else {
1584 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001585 type = CURSEG_WARM_DATA;
1586 }
Chao Yu19f106b2015-05-06 13:08:06 +08001587
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001588 curseg = CURSEG_I(sbi, type);
1589
1590 mutex_lock(&curseg->curseg_mutex);
1591 mutex_lock(&sit_i->sentry_lock);
1592
1593 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001594 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001595
1596 /* change the current segment */
1597 if (segno != curseg->segno) {
1598 curseg->next_segno = segno;
1599 change_curseg(sbi, type, true);
1600 }
1601
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001602 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001603 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001604
Chao Yu28bc1062016-02-06 14:40:34 +08001605 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001606 update_sit_entry(sbi, new_blkaddr, 1);
1607 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1608 update_sit_entry(sbi, old_blkaddr, -1);
1609
1610 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1611 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1612
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001613 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001614
Chao Yu19f106b2015-05-06 13:08:06 +08001615 if (recover_curseg) {
1616 if (old_cursegno != curseg->segno) {
1617 curseg->next_segno = old_cursegno;
1618 change_curseg(sbi, type, true);
1619 }
1620 curseg->next_blkoff = old_blkoff;
1621 }
1622
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001623 mutex_unlock(&sit_i->sentry_lock);
1624 mutex_unlock(&curseg->curseg_mutex);
1625}
1626
Chao Yu528e3452015-05-28 19:15:35 +08001627void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1628 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08001629 unsigned char version, bool recover_curseg,
1630 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08001631{
1632 struct f2fs_summary sum;
1633
1634 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1635
Chao Yu28bc1062016-02-06 14:40:34 +08001636 __f2fs_replace_block(sbi, &sum, old_addr, new_addr,
1637 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08001638
Chao Yuf28b3432016-02-24 17:16:47 +08001639 f2fs_update_data_blkaddr(dn, new_addr);
Chao Yu528e3452015-05-28 19:15:35 +08001640}
1641
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001642void f2fs_wait_on_page_writeback(struct page *page,
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001643 enum page_type type, bool ordered)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001644{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001645 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001646 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1647
Chao Yu0c3a5792016-01-18 18:28:11 +08001648 f2fs_submit_merged_bio_cond(sbi, NULL, page, 0, type, WRITE);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001649 if (ordered)
1650 wait_on_page_writeback(page);
1651 else
1652 wait_for_stable_page(page);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001653 }
1654}
1655
Chao Yu08b39fb2015-10-08 13:27:34 +08001656void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1657 block_t blkaddr)
1658{
1659 struct page *cpage;
1660
Yunlei He5d4c0af2016-09-18 08:16:56 +08001661 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
Chao Yu08b39fb2015-10-08 13:27:34 +08001662 return;
1663
Chao Yu08b39fb2015-10-08 13:27:34 +08001664 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1665 if (cpage) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001666 f2fs_wait_on_page_writeback(cpage, DATA, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08001667 f2fs_put_page(cpage, 1);
1668 }
1669}
1670
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001671static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1672{
1673 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1674 struct curseg_info *seg_i;
1675 unsigned char *kaddr;
1676 struct page *page;
1677 block_t start;
1678 int i, j, offset;
1679
1680 start = start_sum_block(sbi);
1681
1682 page = get_meta_page(sbi, start++);
1683 kaddr = (unsigned char *)page_address(page);
1684
1685 /* Step 1: restore nat cache */
1686 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001687 memcpy(seg_i->journal, kaddr, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001688
1689 /* Step 2: restore sit cache */
1690 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001691 memcpy(seg_i->journal, kaddr + SUM_JOURNAL_SIZE, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001692 offset = 2 * SUM_JOURNAL_SIZE;
1693
1694 /* Step 3: restore summary entries */
1695 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1696 unsigned short blk_off;
1697 unsigned int segno;
1698
1699 seg_i = CURSEG_I(sbi, i);
1700 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1701 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1702 seg_i->next_segno = segno;
1703 reset_curseg(sbi, i, 0);
1704 seg_i->alloc_type = ckpt->alloc_type[i];
1705 seg_i->next_blkoff = blk_off;
1706
1707 if (seg_i->alloc_type == SSR)
1708 blk_off = sbi->blocks_per_seg;
1709
1710 for (j = 0; j < blk_off; j++) {
1711 struct f2fs_summary *s;
1712 s = (struct f2fs_summary *)(kaddr + offset);
1713 seg_i->sum_blk->entries[j] = *s;
1714 offset += SUMMARY_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001715 if (offset + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001716 SUM_FOOTER_SIZE)
1717 continue;
1718
1719 f2fs_put_page(page, 1);
1720 page = NULL;
1721
1722 page = get_meta_page(sbi, start++);
1723 kaddr = (unsigned char *)page_address(page);
1724 offset = 0;
1725 }
1726 }
1727 f2fs_put_page(page, 1);
1728 return 0;
1729}
1730
1731static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1732{
1733 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1734 struct f2fs_summary_block *sum;
1735 struct curseg_info *curseg;
1736 struct page *new;
1737 unsigned short blk_off;
1738 unsigned int segno = 0;
1739 block_t blk_addr = 0;
1740
1741 /* get segment number and block addr */
1742 if (IS_DATASEG(type)) {
1743 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1744 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1745 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001746 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001747 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1748 else
1749 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1750 } else {
1751 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1752 CURSEG_HOT_NODE]);
1753 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1754 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001755 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001756 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1757 type - CURSEG_HOT_NODE);
1758 else
1759 blk_addr = GET_SUM_BLOCK(sbi, segno);
1760 }
1761
1762 new = get_meta_page(sbi, blk_addr);
1763 sum = (struct f2fs_summary_block *)page_address(new);
1764
1765 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001766 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001767 struct f2fs_summary *ns = &sum->entries[0];
1768 int i;
1769 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1770 ns->version = 0;
1771 ns->ofs_in_node = 0;
1772 }
1773 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001774 int err;
1775
1776 err = restore_node_summary(sbi, segno, sum);
1777 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001778 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001779 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001780 }
1781 }
1782 }
1783
1784 /* set uncompleted segment to curseg */
1785 curseg = CURSEG_I(sbi, type);
1786 mutex_lock(&curseg->curseg_mutex);
Chao Yub7ad7512016-02-19 18:08:46 +08001787
1788 /* update journal info */
1789 down_write(&curseg->journal_rwsem);
1790 memcpy(curseg->journal, &sum->journal, SUM_JOURNAL_SIZE);
1791 up_write(&curseg->journal_rwsem);
1792
1793 memcpy(curseg->sum_blk->entries, sum->entries, SUM_ENTRY_SIZE);
1794 memcpy(&curseg->sum_blk->footer, &sum->footer, SUM_FOOTER_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001795 curseg->next_segno = segno;
1796 reset_curseg(sbi, type, 0);
1797 curseg->alloc_type = ckpt->alloc_type[type];
1798 curseg->next_blkoff = blk_off;
1799 mutex_unlock(&curseg->curseg_mutex);
1800 f2fs_put_page(new, 1);
1801 return 0;
1802}
1803
1804static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1805{
1806 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001807 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001808
Chao Yuaaec2b12016-09-20 11:04:18 +08001809 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001810 int npages = npages_for_summary_flush(sbi, true);
1811
1812 if (npages >= 2)
1813 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001814 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001815
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001816 /* restore for compacted data summary */
1817 if (read_compacted_summaries(sbi))
1818 return -EINVAL;
1819 type = CURSEG_HOT_NODE;
1820 }
1821
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001822 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001823 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001824 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001825
Chao Yue4fc5fb2014-03-17 16:36:24 +08001826 for (; type <= CURSEG_COLD_NODE; type++) {
1827 err = read_normal_summaries(sbi, type);
1828 if (err)
1829 return err;
1830 }
1831
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001832 return 0;
1833}
1834
1835static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1836{
1837 struct page *page;
1838 unsigned char *kaddr;
1839 struct f2fs_summary *summary;
1840 struct curseg_info *seg_i;
1841 int written_size = 0;
1842 int i, j;
1843
1844 page = grab_meta_page(sbi, blkaddr++);
1845 kaddr = (unsigned char *)page_address(page);
1846
1847 /* Step 1: write nat cache */
1848 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001849 memcpy(kaddr, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001850 written_size += SUM_JOURNAL_SIZE;
1851
1852 /* Step 2: write sit cache */
1853 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001854 memcpy(kaddr + written_size, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001855 written_size += SUM_JOURNAL_SIZE;
1856
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001857 /* Step 3: write summary entries */
1858 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1859 unsigned short blkoff;
1860 seg_i = CURSEG_I(sbi, i);
1861 if (sbi->ckpt->alloc_type[i] == SSR)
1862 blkoff = sbi->blocks_per_seg;
1863 else
1864 blkoff = curseg_blkoff(sbi, i);
1865
1866 for (j = 0; j < blkoff; j++) {
1867 if (!page) {
1868 page = grab_meta_page(sbi, blkaddr++);
1869 kaddr = (unsigned char *)page_address(page);
1870 written_size = 0;
1871 }
1872 summary = (struct f2fs_summary *)(kaddr + written_size);
1873 *summary = seg_i->sum_blk->entries[j];
1874 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001875
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001876 if (written_size + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001877 SUM_FOOTER_SIZE)
1878 continue;
1879
Chao Yue8d61a72013-10-24 15:08:28 +08001880 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001881 f2fs_put_page(page, 1);
1882 page = NULL;
1883 }
1884 }
Chao Yue8d61a72013-10-24 15:08:28 +08001885 if (page) {
1886 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001887 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08001888 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001889}
1890
1891static void write_normal_summaries(struct f2fs_sb_info *sbi,
1892 block_t blkaddr, int type)
1893{
1894 int i, end;
1895 if (IS_DATASEG(type))
1896 end = type + NR_CURSEG_DATA_TYPE;
1897 else
1898 end = type + NR_CURSEG_NODE_TYPE;
1899
Chao Yub7ad7512016-02-19 18:08:46 +08001900 for (i = type; i < end; i++)
1901 write_current_sum_page(sbi, i, blkaddr + (i - type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001902}
1903
1904void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1905{
Chao Yuaaec2b12016-09-20 11:04:18 +08001906 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001907 write_compacted_summaries(sbi, start_blk);
1908 else
1909 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1910}
1911
1912void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1913{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001914 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001915}
1916
Chao Yudfc08a12016-02-14 18:50:40 +08001917int lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001918 unsigned int val, int alloc)
1919{
1920 int i;
1921
1922 if (type == NAT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001923 for (i = 0; i < nats_in_cursum(journal); i++) {
1924 if (le32_to_cpu(nid_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001925 return i;
1926 }
Chao Yudfc08a12016-02-14 18:50:40 +08001927 if (alloc && __has_cursum_space(journal, 1, NAT_JOURNAL))
1928 return update_nats_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001929 } else if (type == SIT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001930 for (i = 0; i < sits_in_cursum(journal); i++)
1931 if (le32_to_cpu(segno_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001932 return i;
Chao Yudfc08a12016-02-14 18:50:40 +08001933 if (alloc && __has_cursum_space(journal, 1, SIT_JOURNAL))
1934 return update_sits_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001935 }
1936 return -1;
1937}
1938
1939static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
1940 unsigned int segno)
1941{
Gu Zheng2cc22182014-10-20 17:45:49 +08001942 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001943}
1944
1945static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
1946 unsigned int start)
1947{
1948 struct sit_info *sit_i = SIT_I(sbi);
1949 struct page *src_page, *dst_page;
1950 pgoff_t src_off, dst_off;
1951 void *src_addr, *dst_addr;
1952
1953 src_off = current_sit_addr(sbi, start);
1954 dst_off = next_sit_addr(sbi, src_off);
1955
1956 /* get current sit block page without lock */
1957 src_page = get_meta_page(sbi, src_off);
1958 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001959 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001960
1961 src_addr = page_address(src_page);
1962 dst_addr = page_address(dst_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001963 memcpy(dst_addr, src_addr, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001964
1965 set_page_dirty(dst_page);
1966 f2fs_put_page(src_page, 1);
1967
1968 set_to_next_sit(sit_i, start);
1969
1970 return dst_page;
1971}
1972
Chao Yu184a5cd2014-09-04 18:13:01 +08001973static struct sit_entry_set *grab_sit_entry_set(void)
1974{
1975 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001976 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08001977
1978 ses->entry_cnt = 0;
1979 INIT_LIST_HEAD(&ses->set_list);
1980 return ses;
1981}
1982
1983static void release_sit_entry_set(struct sit_entry_set *ses)
1984{
1985 list_del(&ses->set_list);
1986 kmem_cache_free(sit_entry_set_slab, ses);
1987}
1988
1989static void adjust_sit_entry_set(struct sit_entry_set *ses,
1990 struct list_head *head)
1991{
1992 struct sit_entry_set *next = ses;
1993
1994 if (list_is_last(&ses->set_list, head))
1995 return;
1996
1997 list_for_each_entry_continue(next, head, set_list)
1998 if (ses->entry_cnt <= next->entry_cnt)
1999 break;
2000
2001 list_move_tail(&ses->set_list, &next->set_list);
2002}
2003
2004static void add_sit_entry(unsigned int segno, struct list_head *head)
2005{
2006 struct sit_entry_set *ses;
2007 unsigned int start_segno = START_SEGNO(segno);
2008
2009 list_for_each_entry(ses, head, set_list) {
2010 if (ses->start_segno == start_segno) {
2011 ses->entry_cnt++;
2012 adjust_sit_entry_set(ses, head);
2013 return;
2014 }
2015 }
2016
2017 ses = grab_sit_entry_set();
2018
2019 ses->start_segno = start_segno;
2020 ses->entry_cnt++;
2021 list_add(&ses->set_list, head);
2022}
2023
2024static void add_sits_in_set(struct f2fs_sb_info *sbi)
2025{
2026 struct f2fs_sm_info *sm_info = SM_I(sbi);
2027 struct list_head *set_list = &sm_info->sit_entry_set;
2028 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08002029 unsigned int segno;
2030
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002031 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08002032 add_sit_entry(segno, set_list);
2033}
2034
2035static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002036{
2037 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002038 struct f2fs_journal *journal = curseg->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002039 int i;
2040
Chao Yub7ad7512016-02-19 18:08:46 +08002041 down_write(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08002042 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yu184a5cd2014-09-04 18:13:01 +08002043 unsigned int segno;
2044 bool dirtied;
2045
Chao Yudfc08a12016-02-14 18:50:40 +08002046 segno = le32_to_cpu(segno_in_journal(journal, i));
Chao Yu184a5cd2014-09-04 18:13:01 +08002047 dirtied = __mark_sit_entry_dirty(sbi, segno);
2048
2049 if (!dirtied)
2050 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002051 }
Chao Yudfc08a12016-02-14 18:50:40 +08002052 update_sits_in_cursum(journal, -i);
Chao Yub7ad7512016-02-19 18:08:46 +08002053 up_write(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002054}
2055
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002056/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002057 * CP calls this function, which flushes SIT entries including sit_journal,
2058 * and moves prefree segs to free segs.
2059 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002060void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002061{
2062 struct sit_info *sit_i = SIT_I(sbi);
2063 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
2064 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002065 struct f2fs_journal *journal = curseg->journal;
Chao Yu184a5cd2014-09-04 18:13:01 +08002066 struct sit_entry_set *ses, *tmp;
2067 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08002068 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002069 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002070
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002071 mutex_lock(&sit_i->sentry_lock);
2072
Wanpeng Li2b11a742015-02-27 16:52:50 +08002073 if (!sit_i->dirty_sentries)
2074 goto out;
2075
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002076 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08002077 * add and account sit entries of dirty bitmap in sit entry
2078 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002079 */
Chao Yu184a5cd2014-09-04 18:13:01 +08002080 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002081
Chao Yu184a5cd2014-09-04 18:13:01 +08002082 /*
2083 * if there are no enough space in journal to store dirty sit
2084 * entries, remove all entries from journal and add and account
2085 * them in sit entry set.
2086 */
Chao Yudfc08a12016-02-14 18:50:40 +08002087 if (!__has_cursum_space(journal, sit_i->dirty_sentries, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002088 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002089
Chao Yu184a5cd2014-09-04 18:13:01 +08002090 /*
2091 * there are two steps to flush sit entries:
2092 * #1, flush sit entries to journal in current cold data summary block.
2093 * #2, flush sit entries to sit page.
2094 */
2095 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07002096 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08002097 struct f2fs_sit_block *raw_sit = NULL;
2098 unsigned int start_segno = ses->start_segno;
2099 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002100 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08002101 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09002102
Chao Yu184a5cd2014-09-04 18:13:01 +08002103 if (to_journal &&
Chao Yudfc08a12016-02-14 18:50:40 +08002104 !__has_cursum_space(journal, ses->entry_cnt, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002105 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002106
Chao Yub7ad7512016-02-19 18:08:46 +08002107 if (to_journal) {
2108 down_write(&curseg->journal_rwsem);
2109 } else {
Chao Yu184a5cd2014-09-04 18:13:01 +08002110 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002111 raw_sit = page_address(page);
2112 }
2113
Chao Yu184a5cd2014-09-04 18:13:01 +08002114 /* flush dirty sit entries in region of current sit set */
2115 for_each_set_bit_from(segno, bitmap, end) {
2116 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002117
2118 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08002119
2120 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08002121 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002122 cpc->trim_start = segno;
2123 add_discard_addrs(sbi, cpc);
2124 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002125
2126 if (to_journal) {
Chao Yudfc08a12016-02-14 18:50:40 +08002127 offset = lookup_journal_in_cursum(journal,
Chao Yu184a5cd2014-09-04 18:13:01 +08002128 SIT_JOURNAL, segno, 1);
2129 f2fs_bug_on(sbi, offset < 0);
Chao Yudfc08a12016-02-14 18:50:40 +08002130 segno_in_journal(journal, offset) =
Chao Yu184a5cd2014-09-04 18:13:01 +08002131 cpu_to_le32(segno);
2132 seg_info_to_raw_sit(se,
Chao Yudfc08a12016-02-14 18:50:40 +08002133 &sit_in_journal(journal, offset));
Chao Yu184a5cd2014-09-04 18:13:01 +08002134 } else {
2135 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
2136 seg_info_to_raw_sit(se,
2137 &raw_sit->entries[sit_offset]);
2138 }
2139
2140 __clear_bit(segno, bitmap);
2141 sit_i->dirty_sentries--;
2142 ses->entry_cnt--;
2143 }
2144
Chao Yub7ad7512016-02-19 18:08:46 +08002145 if (to_journal)
2146 up_write(&curseg->journal_rwsem);
2147 else
Chao Yu184a5cd2014-09-04 18:13:01 +08002148 f2fs_put_page(page, 1);
2149
2150 f2fs_bug_on(sbi, ses->entry_cnt);
2151 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002152 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002153
2154 f2fs_bug_on(sbi, !list_empty(head));
2155 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08002156out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002157 if (cpc->reason == CP_DISCARD) {
2158 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
2159 add_discard_addrs(sbi, cpc);
2160 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002161 mutex_unlock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002162
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002163 set_prefree_as_free_segments(sbi);
2164}
2165
2166static int build_sit_info(struct f2fs_sb_info *sbi)
2167{
2168 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2169 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
2170 struct sit_info *sit_i;
2171 unsigned int sit_segs, start;
2172 char *src_bitmap, *dst_bitmap;
2173 unsigned int bitmap_size;
2174
2175 /* allocate memory for SIT information */
2176 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
2177 if (!sit_i)
2178 return -ENOMEM;
2179
2180 SM_I(sbi)->sit_info = sit_i;
2181
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002182 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
2183 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002184 if (!sit_i->sentries)
2185 return -ENOMEM;
2186
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002187 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002188 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002189 if (!sit_i->dirty_sentries_bitmap)
2190 return -ENOMEM;
2191
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002192 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002193 sit_i->sentries[start].cur_valid_map
2194 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2195 sit_i->sentries[start].ckpt_valid_map
2196 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002197 if (!sit_i->sentries[start].cur_valid_map ||
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002198 !sit_i->sentries[start].ckpt_valid_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002199 return -ENOMEM;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002200
2201 if (f2fs_discard_en(sbi)) {
2202 sit_i->sentries[start].discard_map
2203 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2204 if (!sit_i->sentries[start].discard_map)
2205 return -ENOMEM;
2206 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002207 }
2208
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002209 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2210 if (!sit_i->tmp_map)
2211 return -ENOMEM;
2212
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002213 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002214 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
2215 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002216 if (!sit_i->sec_entries)
2217 return -ENOMEM;
2218 }
2219
2220 /* get information related with SIT */
2221 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
2222
2223 /* setup SIT bitmap from ckeckpoint pack */
2224 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
2225 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
2226
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02002227 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002228 if (!dst_bitmap)
2229 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002230
2231 /* init SIT information */
2232 sit_i->s_ops = &default_salloc_ops;
2233
2234 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2235 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
2236 sit_i->written_valid_blocks = le64_to_cpu(ckpt->valid_block_count);
2237 sit_i->sit_bitmap = dst_bitmap;
2238 sit_i->bitmap_size = bitmap_size;
2239 sit_i->dirty_sentries = 0;
2240 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2241 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2242 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2243 mutex_init(&sit_i->sentry_lock);
2244 return 0;
2245}
2246
2247static int build_free_segmap(struct f2fs_sb_info *sbi)
2248{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002249 struct free_segmap_info *free_i;
2250 unsigned int bitmap_size, sec_bitmap_size;
2251
2252 /* allocate memory for free segmap information */
2253 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2254 if (!free_i)
2255 return -ENOMEM;
2256
2257 SM_I(sbi)->free_info = free_i;
2258
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002259 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002260 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002261 if (!free_i->free_segmap)
2262 return -ENOMEM;
2263
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002264 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002265 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002266 if (!free_i->free_secmap)
2267 return -ENOMEM;
2268
2269 /* set all segments as dirty temporarily */
2270 memset(free_i->free_segmap, 0xff, bitmap_size);
2271 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2272
2273 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002274 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002275 free_i->free_segments = 0;
2276 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002277 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002278 return 0;
2279}
2280
2281static int build_curseg(struct f2fs_sb_info *sbi)
2282{
Namjae Jeon1042d602012-12-01 10:56:13 +09002283 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002284 int i;
2285
Fabian Frederickb434bab2014-06-23 18:39:15 +02002286 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002287 if (!array)
2288 return -ENOMEM;
2289
2290 SM_I(sbi)->curseg_array = array;
2291
2292 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2293 mutex_init(&array[i].curseg_mutex);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002294 array[i].sum_blk = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002295 if (!array[i].sum_blk)
2296 return -ENOMEM;
Chao Yub7ad7512016-02-19 18:08:46 +08002297 init_rwsem(&array[i].journal_rwsem);
2298 array[i].journal = kzalloc(sizeof(struct f2fs_journal),
2299 GFP_KERNEL);
2300 if (!array[i].journal)
2301 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002302 array[i].segno = NULL_SEGNO;
2303 array[i].next_blkoff = 0;
2304 }
2305 return restore_curseg_summaries(sbi);
2306}
2307
2308static void build_sit_entries(struct f2fs_sb_info *sbi)
2309{
2310 struct sit_info *sit_i = SIT_I(sbi);
2311 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002312 struct f2fs_journal *journal = curseg->journal;
Yunlei He9c094042016-09-24 12:29:18 +08002313 struct seg_entry *se;
2314 struct f2fs_sit_entry sit;
Chao Yu74de5932013-11-22 09:09:59 +08002315 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2316 unsigned int i, start, end;
2317 unsigned int readed, start_blk = 0;
Chao Yue9f5b8b2016-02-14 18:54:33 +08002318 int nrpages = MAX_BIO_BLOCKS(sbi) * 8;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002319
Chao Yu74de5932013-11-22 09:09:59 +08002320 do {
Chao Yu26879fb2015-10-12 17:05:59 +08002321 readed = ra_meta_pages(sbi, start_blk, nrpages, META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002322
Chao Yu74de5932013-11-22 09:09:59 +08002323 start = start_blk * sit_i->sents_per_block;
2324 end = (start_blk + readed) * sit_i->sents_per_block;
2325
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002326 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002327 struct f2fs_sit_block *sit_blk;
Chao Yu74de5932013-11-22 09:09:59 +08002328 struct page *page;
2329
Yunlei He9c094042016-09-24 12:29:18 +08002330 se = &sit_i->sentries[start];
Chao Yu74de5932013-11-22 09:09:59 +08002331 page = get_current_sit_page(sbi, start);
2332 sit_blk = (struct f2fs_sit_block *)page_address(page);
2333 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2334 f2fs_put_page(page, 1);
Chao Yud600af232016-08-19 23:13:47 +08002335
Chao Yu74de5932013-11-22 09:09:59 +08002336 check_block_count(sbi, start, &sit);
2337 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002338
2339 /* build discard map only one time */
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002340 if (f2fs_discard_en(sbi)) {
2341 memcpy(se->discard_map, se->cur_valid_map,
2342 SIT_VBLOCK_MAP_SIZE);
2343 sbi->discard_blks += sbi->blocks_per_seg -
2344 se->valid_blocks;
2345 }
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002346
Chao Yud600af232016-08-19 23:13:47 +08002347 if (sbi->segs_per_sec > 1)
2348 get_sec_entry(sbi, start)->valid_blocks +=
2349 se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002350 }
Chao Yu74de5932013-11-22 09:09:59 +08002351 start_blk += readed;
2352 } while (start_blk < sit_blk_cnt);
Chao Yud600af232016-08-19 23:13:47 +08002353
2354 down_read(&curseg->journal_rwsem);
2355 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yud600af232016-08-19 23:13:47 +08002356 unsigned int old_valid_blocks;
2357
2358 start = le32_to_cpu(segno_in_journal(journal, i));
2359 se = &sit_i->sentries[start];
2360 sit = sit_in_journal(journal, i);
2361
2362 old_valid_blocks = se->valid_blocks;
2363
2364 check_block_count(sbi, start, &sit);
2365 seg_info_from_raw_sit(se, &sit);
2366
2367 if (f2fs_discard_en(sbi)) {
2368 memcpy(se->discard_map, se->cur_valid_map,
2369 SIT_VBLOCK_MAP_SIZE);
2370 sbi->discard_blks += old_valid_blocks -
2371 se->valid_blocks;
2372 }
2373
2374 if (sbi->segs_per_sec > 1)
2375 get_sec_entry(sbi, start)->valid_blocks +=
2376 se->valid_blocks - old_valid_blocks;
2377 }
2378 up_read(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002379}
2380
2381static void init_free_segmap(struct f2fs_sb_info *sbi)
2382{
2383 unsigned int start;
2384 int type;
2385
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002386 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002387 struct seg_entry *sentry = get_seg_entry(sbi, start);
2388 if (!sentry->valid_blocks)
2389 __set_free(sbi, start);
2390 }
2391
2392 /* set use the current segments */
2393 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2394 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2395 __set_test_and_inuse(sbi, curseg_t->segno);
2396 }
2397}
2398
2399static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2400{
2401 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2402 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002403 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002404 unsigned short valid_blocks;
2405
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002406 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002407 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002408 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2409 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002410 break;
2411 offset = segno + 1;
2412 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002413 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002414 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002415 if (valid_blocks > sbi->blocks_per_seg) {
2416 f2fs_bug_on(sbi, 1);
2417 continue;
2418 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002419 mutex_lock(&dirty_i->seglist_lock);
2420 __locate_dirty_segment(sbi, segno, DIRTY);
2421 mutex_unlock(&dirty_i->seglist_lock);
2422 }
2423}
2424
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002425static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002426{
2427 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002428 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002429
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002430 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002431 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002432 return -ENOMEM;
2433 return 0;
2434}
2435
2436static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2437{
2438 struct dirty_seglist_info *dirty_i;
2439 unsigned int bitmap_size, i;
2440
2441 /* allocate memory for dirty segments list information */
2442 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2443 if (!dirty_i)
2444 return -ENOMEM;
2445
2446 SM_I(sbi)->dirty_info = dirty_i;
2447 mutex_init(&dirty_i->seglist_lock);
2448
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002449 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002450
2451 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002452 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002453 if (!dirty_i->dirty_segmap[i])
2454 return -ENOMEM;
2455 }
2456
2457 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002458 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002459}
2460
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002461/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002462 * Update min, max modified time for cost-benefit GC algorithm
2463 */
2464static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2465{
2466 struct sit_info *sit_i = SIT_I(sbi);
2467 unsigned int segno;
2468
2469 mutex_lock(&sit_i->sentry_lock);
2470
2471 sit_i->min_mtime = LLONG_MAX;
2472
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002473 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002474 unsigned int i;
2475 unsigned long long mtime = 0;
2476
2477 for (i = 0; i < sbi->segs_per_sec; i++)
2478 mtime += get_seg_entry(sbi, segno + i)->mtime;
2479
2480 mtime = div_u64(mtime, sbi->segs_per_sec);
2481
2482 if (sit_i->min_mtime > mtime)
2483 sit_i->min_mtime = mtime;
2484 }
2485 sit_i->max_mtime = get_mtime(sbi);
2486 mutex_unlock(&sit_i->sentry_lock);
2487}
2488
2489int build_segment_manager(struct f2fs_sb_info *sbi)
2490{
2491 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2492 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002493 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002494 int err;
2495
2496 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2497 if (!sm_info)
2498 return -ENOMEM;
2499
2500 /* init sm info */
2501 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002502 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2503 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2504 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2505 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2506 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2507 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2508 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002509 sm_info->rec_prefree_segments = sm_info->main_segments *
2510 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim44a83492016-07-13 18:23:35 -07002511 if (sm_info->rec_prefree_segments > DEF_MAX_RECLAIM_PREFREE_SEGMENTS)
2512 sm_info->rec_prefree_segments = DEF_MAX_RECLAIM_PREFREE_SEGMENTS;
2513
Jaegeuk Kim52763a42016-06-13 09:47:48 -07002514 if (!test_opt(sbi, LFS))
2515 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002516 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002517 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002518
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002519 INIT_LIST_HEAD(&sm_info->discard_list);
Chao Yu275b66b2016-08-29 23:58:34 +08002520 INIT_LIST_HEAD(&sm_info->wait_list);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002521 sm_info->nr_discards = 0;
2522 sm_info->max_discards = 0;
2523
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002524 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2525
Chao Yu184a5cd2014-09-04 18:13:01 +08002526 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2527
Gu Zhengb270ad62014-04-11 17:49:55 +08002528 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002529 err = create_flush_cmd_control(sbi);
2530 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002531 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002532 }
2533
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002534 err = build_sit_info(sbi);
2535 if (err)
2536 return err;
2537 err = build_free_segmap(sbi);
2538 if (err)
2539 return err;
2540 err = build_curseg(sbi);
2541 if (err)
2542 return err;
2543
2544 /* reinit free segmap based on SIT */
2545 build_sit_entries(sbi);
2546
2547 init_free_segmap(sbi);
2548 err = build_dirty_segmap(sbi);
2549 if (err)
2550 return err;
2551
2552 init_min_max_mtime(sbi);
2553 return 0;
2554}
2555
2556static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2557 enum dirty_type dirty_type)
2558{
2559 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2560
2561 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002562 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002563 dirty_i->nr_dirty[dirty_type] = 0;
2564 mutex_unlock(&dirty_i->seglist_lock);
2565}
2566
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002567static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002568{
2569 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002570 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002571}
2572
2573static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2574{
2575 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2576 int i;
2577
2578 if (!dirty_i)
2579 return;
2580
2581 /* discard pre-free/dirty segments list */
2582 for (i = 0; i < NR_DIRTY_TYPE; i++)
2583 discard_dirty_segmap(sbi, i);
2584
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002585 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002586 SM_I(sbi)->dirty_info = NULL;
2587 kfree(dirty_i);
2588}
2589
2590static void destroy_curseg(struct f2fs_sb_info *sbi)
2591{
2592 struct curseg_info *array = SM_I(sbi)->curseg_array;
2593 int i;
2594
2595 if (!array)
2596 return;
2597 SM_I(sbi)->curseg_array = NULL;
Chao Yub7ad7512016-02-19 18:08:46 +08002598 for (i = 0; i < NR_CURSEG_TYPE; i++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002599 kfree(array[i].sum_blk);
Chao Yub7ad7512016-02-19 18:08:46 +08002600 kfree(array[i].journal);
2601 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002602 kfree(array);
2603}
2604
2605static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2606{
2607 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2608 if (!free_i)
2609 return;
2610 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002611 kvfree(free_i->free_segmap);
2612 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002613 kfree(free_i);
2614}
2615
2616static void destroy_sit_info(struct f2fs_sb_info *sbi)
2617{
2618 struct sit_info *sit_i = SIT_I(sbi);
2619 unsigned int start;
2620
2621 if (!sit_i)
2622 return;
2623
2624 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002625 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002626 kfree(sit_i->sentries[start].cur_valid_map);
2627 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002628 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002629 }
2630 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002631 kfree(sit_i->tmp_map);
2632
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002633 kvfree(sit_i->sentries);
2634 kvfree(sit_i->sec_entries);
2635 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002636
2637 SM_I(sbi)->sit_info = NULL;
2638 kfree(sit_i->sit_bitmap);
2639 kfree(sit_i);
2640}
2641
2642void destroy_segment_manager(struct f2fs_sb_info *sbi)
2643{
2644 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002645
Chao Yu3b03f722013-11-06 09:12:04 +08002646 if (!sm_info)
2647 return;
Gu Zheng2163d192014-04-27 14:21:33 +08002648 destroy_flush_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002649 destroy_dirty_segmap(sbi);
2650 destroy_curseg(sbi);
2651 destroy_free_segmap(sbi);
2652 destroy_sit_info(sbi);
2653 sbi->sm_info = NULL;
2654 kfree(sm_info);
2655}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002656
2657int __init create_segment_manager_caches(void)
2658{
2659 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002660 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002661 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002662 goto fail;
2663
Chao Yu275b66b2016-08-29 23:58:34 +08002664 bio_entry_slab = f2fs_kmem_cache_create("bio_entry",
2665 sizeof(struct bio_entry));
2666 if (!bio_entry_slab)
Chao Yu6ab2a302016-09-05 12:28:26 +08002667 goto destroy_discard_entry;
Chao Yu275b66b2016-08-29 23:58:34 +08002668
Chao Yu184a5cd2014-09-04 18:13:01 +08002669 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002670 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002671 if (!sit_entry_set_slab)
Chao Yu275b66b2016-08-29 23:58:34 +08002672 goto destroy_bio_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002673
2674 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2675 sizeof(struct inmem_pages));
2676 if (!inmem_entry_slab)
2677 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002678 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002679
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002680destroy_sit_entry_set:
2681 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu275b66b2016-08-29 23:58:34 +08002682destroy_bio_entry:
2683 kmem_cache_destroy(bio_entry_slab);
Chao Yu6ab2a302016-09-05 12:28:26 +08002684destroy_discard_entry:
Chao Yu184a5cd2014-09-04 18:13:01 +08002685 kmem_cache_destroy(discard_entry_slab);
2686fail:
2687 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002688}
2689
2690void destroy_segment_manager_caches(void)
2691{
Chao Yu184a5cd2014-09-04 18:13:01 +08002692 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu275b66b2016-08-29 23:58:34 +08002693 kmem_cache_destroy(bio_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002694 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002695 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002696}