blob: d0f74eb521ae7033f718bbc6a9bfd3a7597cc4eb [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 Yu184a5cd2014-09-04 18:13:01 +080029static struct kmem_cache *sit_entry_set_slab;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -070030static struct kmem_cache *inmem_entry_slab;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090031
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070032static unsigned long __reverse_ulong(unsigned char *str)
33{
34 unsigned long tmp = 0;
35 int shift = 24, idx = 0;
36
37#if BITS_PER_LONG == 64
38 shift = 56;
39#endif
40 while (shift >= 0) {
41 tmp |= (unsigned long)str[idx++] << shift;
42 shift -= BITS_PER_BYTE;
43 }
44 return tmp;
45}
46
Changman Lee9a7f1432013-11-15 10:42:51 +090047/*
48 * __reverse_ffs is copied from include/asm-generic/bitops/__ffs.h since
49 * MSB and LSB are reversed in a byte by f2fs_set_bit.
50 */
51static inline unsigned long __reverse_ffs(unsigned long word)
52{
53 int num = 0;
54
55#if BITS_PER_LONG == 64
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070056 if ((word & 0xffffffff00000000UL) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090057 num += 32;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070058 else
Changman Lee9a7f1432013-11-15 10:42:51 +090059 word >>= 32;
Changman Lee9a7f1432013-11-15 10:42:51 +090060#endif
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070061 if ((word & 0xffff0000) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090062 num += 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070063 else
Changman Lee9a7f1432013-11-15 10:42:51 +090064 word >>= 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070065
66 if ((word & 0xff00) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090067 num += 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070068 else
Changman Lee9a7f1432013-11-15 10:42:51 +090069 word >>= 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070070
Changman Lee9a7f1432013-11-15 10:42:51 +090071 if ((word & 0xf0) == 0)
72 num += 4;
73 else
74 word >>= 4;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070075
Changman Lee9a7f1432013-11-15 10:42:51 +090076 if ((word & 0xc) == 0)
77 num += 2;
78 else
79 word >>= 2;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070080
Changman Lee9a7f1432013-11-15 10:42:51 +090081 if ((word & 0x2) == 0)
82 num += 1;
83 return num;
84}
85
86/*
arter97e1c42042014-08-06 23:22:50 +090087 * __find_rev_next(_zero)_bit is copied from lib/find_next_bit.c because
Changman Lee9a7f1432013-11-15 10:42:51 +090088 * f2fs_set_bit makes MSB and LSB reversed in a byte.
Fan Li692223d2015-11-12 08:43:04 +080089 * @size must be integral times of unsigned long.
Changman Lee9a7f1432013-11-15 10:42:51 +090090 * Example:
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070091 * MSB <--> LSB
92 * f2fs_set_bit(0, bitmap) => 1000 0000
93 * f2fs_set_bit(7, bitmap) => 0000 0001
Changman Lee9a7f1432013-11-15 10:42:51 +090094 */
95static unsigned long __find_rev_next_bit(const unsigned long *addr,
96 unsigned long size, unsigned long offset)
97{
98 const unsigned long *p = addr + BIT_WORD(offset);
Fan Li692223d2015-11-12 08:43:04 +080099 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900100 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900101
102 if (offset >= size)
103 return size;
104
Fan Li692223d2015-11-12 08:43:04 +0800105 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900106 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900107
Fan Li692223d2015-11-12 08:43:04 +0800108 while (1) {
109 if (*p == 0)
110 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700111
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700112 tmp = __reverse_ulong((unsigned char *)p);
Fan Li692223d2015-11-12 08:43:04 +0800113
114 tmp &= ~0UL >> offset;
115 if (size < BITS_PER_LONG)
116 tmp &= (~0UL << (BITS_PER_LONG - size));
Changman Lee9a7f1432013-11-15 10:42:51 +0900117 if (tmp)
Fan Li692223d2015-11-12 08:43:04 +0800118 goto found;
119pass:
120 if (size <= BITS_PER_LONG)
121 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900122 size -= BITS_PER_LONG;
Fan Li692223d2015-11-12 08:43:04 +0800123 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700124 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900125 }
Fan Li692223d2015-11-12 08:43:04 +0800126 return result;
127found:
128 return result - size + __reverse_ffs(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900129}
130
131static unsigned long __find_rev_next_zero_bit(const unsigned long *addr,
132 unsigned long size, unsigned long offset)
133{
134 const unsigned long *p = addr + BIT_WORD(offset);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800135 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900136 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900137
138 if (offset >= size)
139 return size;
140
Jaegeuk Kim80609442015-12-04 16:51:13 -0800141 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900142 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900143
Jaegeuk Kim80609442015-12-04 16:51:13 -0800144 while (1) {
145 if (*p == ~0UL)
146 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700147
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700148 tmp = __reverse_ulong((unsigned char *)p);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800149
150 if (offset)
151 tmp |= ~0UL << (BITS_PER_LONG - offset);
152 if (size < BITS_PER_LONG)
153 tmp |= ~0UL >> size;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700154 if (tmp != ~0UL)
Jaegeuk Kim80609442015-12-04 16:51:13 -0800155 goto found;
156pass:
157 if (size <= BITS_PER_LONG)
158 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900159 size -= BITS_PER_LONG;
Jaegeuk Kim80609442015-12-04 16:51:13 -0800160 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700161 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900162 }
Jaegeuk Kim80609442015-12-04 16:51:13 -0800163 return result;
164found:
165 return result - size + __reverse_ffz(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900166}
167
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700168void register_inmem_page(struct inode *inode, struct page *page)
169{
170 struct f2fs_inode_info *fi = F2FS_I(inode);
171 struct inmem_pages *new;
Jaegeuk Kim9be32d72014-12-05 10:39:49 -0800172
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -0800173 f2fs_trace_pid(page);
Jaegeuk Kim0722b102014-12-05 11:58:02 -0800174
Chao Yudecd36b2015-08-07 18:42:09 +0800175 set_page_private(page, (unsigned long)ATOMIC_WRITTEN_PAGE);
176 SetPagePrivate(page);
177
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700178 new = f2fs_kmem_cache_alloc(inmem_entry_slab, GFP_NOFS);
179
180 /* add atomic page indices to the list */
181 new->page = page;
182 INIT_LIST_HEAD(&new->list);
Chao Yudecd36b2015-08-07 18:42:09 +0800183
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700184 /* increase reference count with clean state */
185 mutex_lock(&fi->inmem_lock);
186 get_page(page);
187 list_add_tail(&new->list, &fi->inmem_pages);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800188 inc_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700189 mutex_unlock(&fi->inmem_lock);
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700190
191 trace_f2fs_register_inmem_page(page, INMEM);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700192}
193
Chao Yu28bc1062016-02-06 14:40:34 +0800194static int __revoke_inmem_pages(struct inode *inode,
195 struct list_head *head, bool drop, bool recover)
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700196{
Chao Yu28bc1062016-02-06 14:40:34 +0800197 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700198 struct inmem_pages *cur, *tmp;
Chao Yu28bc1062016-02-06 14:40:34 +0800199 int err = 0;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700200
Chao Yu29b96b52016-02-06 14:38:29 +0800201 list_for_each_entry_safe(cur, tmp, head, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800202 struct page *page = cur->page;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700203
Chao Yu28bc1062016-02-06 14:40:34 +0800204 if (drop)
205 trace_f2fs_commit_inmem_page(page, INMEM_DROP);
206
207 lock_page(page);
208
209 if (recover) {
210 struct dnode_of_data dn;
211 struct node_info ni;
212
213 trace_f2fs_commit_inmem_page(page, INMEM_REVOKE);
214
215 set_new_dnode(&dn, inode, NULL, NULL, 0);
216 if (get_dnode_of_data(&dn, page->index, LOOKUP_NODE)) {
217 err = -EAGAIN;
218 goto next;
219 }
220 get_node_info(sbi, dn.nid, &ni);
221 f2fs_replace_block(sbi, &dn, dn.data_blkaddr,
222 cur->old_addr, ni.version, true, true);
223 f2fs_put_dnode(&dn);
224 }
225next:
Jaegeuk Kim63c52d72016-04-12 14:11:03 -0700226 /* we don't need to invalidate this in the sccessful status */
227 if (drop || recover)
228 ClearPageUptodate(page);
Chao Yu28bc1062016-02-06 14:40:34 +0800229 set_page_private(page, 0);
Chao Yuc81ced02016-04-29 20:13:36 +0800230 ClearPagePrivate(page);
Chao Yu28bc1062016-02-06 14:40:34 +0800231 f2fs_put_page(page, 1);
Chao Yudecd36b2015-08-07 18:42:09 +0800232
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700233 list_del(&cur->list);
234 kmem_cache_free(inmem_entry_slab, cur);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800235 dec_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700236 }
Chao Yu28bc1062016-02-06 14:40:34 +0800237 return err;
Chao Yu29b96b52016-02-06 14:38:29 +0800238}
239
240void drop_inmem_pages(struct inode *inode)
241{
242 struct f2fs_inode_info *fi = F2FS_I(inode);
243
Jaegeuk Kim91942322016-05-20 10:13:22 -0700244 clear_inode_flag(inode, FI_ATOMIC_FILE);
Jaegeuk Kim26dc3d42016-04-11 13:15:10 -0700245
Chao Yu29b96b52016-02-06 14:38:29 +0800246 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800247 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
Chao Yu29b96b52016-02-06 14:38:29 +0800248 mutex_unlock(&fi->inmem_lock);
249}
250
Chao Yu28bc1062016-02-06 14:40:34 +0800251static int __commit_inmem_pages(struct inode *inode,
252 struct list_head *revoke_list)
Chao Yu29b96b52016-02-06 14:38:29 +0800253{
254 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
255 struct f2fs_inode_info *fi = F2FS_I(inode);
256 struct inmem_pages *cur, *tmp;
257 struct f2fs_io_info fio = {
258 .sbi = sbi,
259 .type = DATA,
Mike Christie04d328d2016-06-05 14:31:55 -0500260 .op = REQ_OP_WRITE,
261 .op_flags = WRITE_SYNC | REQ_PRIO,
Chao Yu29b96b52016-02-06 14:38:29 +0800262 .encrypted_page = NULL,
263 };
264 bool submit_bio = false;
265 int err = 0;
266
267 list_for_each_entry_safe(cur, tmp, &fi->inmem_pages, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800268 struct page *page = cur->page;
269
270 lock_page(page);
271 if (page->mapping == inode->i_mapping) {
272 trace_f2fs_commit_inmem_page(page, INMEM);
273
274 set_page_dirty(page);
275 f2fs_wait_on_page_writeback(page, DATA, true);
276 if (clear_page_dirty_for_io(page))
Chao Yu29b96b52016-02-06 14:38:29 +0800277 inode_dec_dirty_pages(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800278
279 fio.page = page;
Chao Yu29b96b52016-02-06 14:38:29 +0800280 err = do_write_data_page(&fio);
281 if (err) {
Chao Yu28bc1062016-02-06 14:40:34 +0800282 unlock_page(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800283 break;
284 }
Chao Yu28bc1062016-02-06 14:40:34 +0800285
286 /* record old blkaddr for revoking */
287 cur->old_addr = fio.old_blkaddr;
288
289 clear_cold_data(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800290 submit_bio = true;
291 }
Chao Yu28bc1062016-02-06 14:40:34 +0800292 unlock_page(page);
293 list_move_tail(&cur->list, revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800294 }
295
296 if (submit_bio)
297 f2fs_submit_merged_bio_cond(sbi, inode, NULL, 0, DATA, WRITE);
Chao Yu28bc1062016-02-06 14:40:34 +0800298
299 if (!err)
300 __revoke_inmem_pages(inode, revoke_list, false, false);
301
Chao Yu29b96b52016-02-06 14:38:29 +0800302 return err;
303}
304
305int commit_inmem_pages(struct inode *inode)
306{
307 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
308 struct f2fs_inode_info *fi = F2FS_I(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800309 struct list_head revoke_list;
310 int err;
Chao Yu29b96b52016-02-06 14:38:29 +0800311
Chao Yu28bc1062016-02-06 14:40:34 +0800312 INIT_LIST_HEAD(&revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800313 f2fs_balance_fs(sbi, true);
314 f2fs_lock_op(sbi);
315
316 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800317 err = __commit_inmem_pages(inode, &revoke_list);
318 if (err) {
319 int ret;
320 /*
321 * try to revoke all committed pages, but still we could fail
322 * due to no memory or other reason, if that happened, EAGAIN
323 * will be returned, which means in such case, transaction is
324 * already not integrity, caller should use journal to do the
325 * recovery or rewrite & commit last transaction. For other
326 * error number, revoking was done by filesystem itself.
327 */
328 ret = __revoke_inmem_pages(inode, &revoke_list, false, true);
329 if (ret)
330 err = ret;
331
332 /* drop all uncommitted pages */
333 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
334 }
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700335 mutex_unlock(&fi->inmem_lock);
336
Chao Yu29b96b52016-02-06 14:38:29 +0800337 f2fs_unlock_op(sbi);
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700338 return err;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700339}
340
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900341/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900342 * This function balances dirty node and dentry pages.
343 * In addition, it controls garbage collection.
344 */
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800345void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900346{
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800347 if (!need)
348 return;
Jaegeuk Kime589c2c2016-06-02 15:24:24 -0700349
350 /* balance_fs_bg is able to be pending */
351 if (excess_cached_nats(sbi))
352 f2fs_balance_fs_bg(sbi);
353
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900354 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900355 * We should do GC or end up with checkpoint, if there are so many dirty
356 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900357 */
Jaegeuk Kim43727522013-02-04 15:11:17 +0900358 if (has_not_enough_free_secs(sbi, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900359 mutex_lock(&sbi->gc_mutex);
Chao Yud530d4d2015-10-05 22:22:44 +0800360 f2fs_gc(sbi, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900361 }
362}
363
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900364void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
365{
Chao Yu1dcc3362015-02-05 17:57:31 +0800366 /* try to shrink extent cache when there is no enough memory */
Jaegeuk Kim554df792015-06-19 13:41:23 -0700367 if (!available_free_memory(sbi, EXTENT_CACHE))
368 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800369
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700370 /* check the # of cached NAT entries */
371 if (!available_free_memory(sbi, NAT_ENTRIES))
372 try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
373
Chao Yu31696582015-07-28 18:33:46 +0800374 if (!available_free_memory(sbi, FREE_NIDS))
Jaegeuk Kimad4edb82016-06-16 16:41:49 -0700375 try_to_free_nids(sbi, MAX_FREE_NIDS);
376 else
377 build_free_nids(sbi);
Chao Yu31696582015-07-28 18:33:46 +0800378
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700379 /* checkpoint is the only way to shrink partial cached entries */
380 if (!available_free_memory(sbi, NAT_ENTRIES) ||
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700381 !available_free_memory(sbi, INO_ENTRIES) ||
Chao Yu7d768d22016-01-18 18:31:18 +0800382 excess_prefree_segs(sbi) ||
383 excess_dirty_nats(sbi) ||
Jaegeuk Kimd0239e12016-01-08 16:57:48 -0800384 (is_idle(sbi) && f2fs_time_over(sbi, CP_TIME))) {
Chao Yue9f5b8b2016-02-14 18:54:33 +0800385 if (test_opt(sbi, DATA_FLUSH)) {
386 struct blk_plug plug;
387
388 blk_start_plug(&plug);
Chao Yu36b35a02015-12-17 17:13:28 +0800389 sync_dirty_inodes(sbi, FILE_INODE);
Chao Yue9f5b8b2016-02-14 18:54:33 +0800390 blk_finish_plug(&plug);
391 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900392 f2fs_sync_fs(sbi->sb, true);
Jaegeuk Kim42190d22016-01-09 13:45:17 -0800393 stat_inc_bg_cp_count(sbi->stat_info);
Chao Yu36b35a02015-12-17 17:13:28 +0800394 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900395}
396
Gu Zheng2163d192014-04-27 14:21:33 +0800397static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900398{
399 struct f2fs_sb_info *sbi = data;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800400 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
401 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900402repeat:
403 if (kthread_should_stop())
404 return 0;
405
Gu Zheng721bd4d2014-09-05 18:31:00 +0800406 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700407 struct bio *bio;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900408 struct flush_cmd *cmd, *next;
409 int ret;
410
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700411 bio = f2fs_bio_alloc(0);
412
Gu Zheng721bd4d2014-09-05 18:31:00 +0800413 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
414 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
415
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900416 bio->bi_bdev = sbi->sb->s_bdev;
Mike Christie04d328d2016-06-05 14:31:55 -0500417 bio_set_op_attrs(bio, REQ_OP_WRITE, WRITE_FLUSH);
Mike Christie4e49ea42016-06-05 14:31:41 -0500418 ret = submit_bio_wait(bio);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900419
Gu Zheng721bd4d2014-09-05 18:31:00 +0800420 llist_for_each_entry_safe(cmd, next,
421 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900422 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900423 complete(&cmd->wait);
424 }
Gu Zhenga4ed23f2014-04-11 17:49:35 +0800425 bio_put(bio);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800426 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900427 }
428
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800429 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800430 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900431 goto repeat;
432}
433
434int f2fs_issue_flush(struct f2fs_sb_info *sbi)
435{
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800436 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800437 struct flush_cmd cmd;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900438
Jaegeuk Kim24a9ee02014-07-25 17:46:10 -0700439 trace_f2fs_issue_flush(sbi->sb, test_opt(sbi, NOBARRIER),
440 test_opt(sbi, FLUSH_MERGE));
441
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700442 if (test_opt(sbi, NOBARRIER))
443 return 0;
444
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700445 if (!test_opt(sbi, FLUSH_MERGE) || !atomic_read(&fcc->submit_flush)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700446 struct bio *bio = f2fs_bio_alloc(0);
447 int ret;
448
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700449 atomic_inc(&fcc->submit_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700450 bio->bi_bdev = sbi->sb->s_bdev;
Mike Christie04d328d2016-06-05 14:31:55 -0500451 bio_set_op_attrs(bio, REQ_OP_WRITE, WRITE_FLUSH);
Mike Christie4e49ea42016-06-05 14:31:41 -0500452 ret = submit_bio_wait(bio);
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700453 atomic_dec(&fcc->submit_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700454 bio_put(bio);
455 return ret;
456 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900457
Chao Yuadf8d902014-05-08 17:00:35 +0800458 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900459
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700460 atomic_inc(&fcc->submit_flush);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800461 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900462
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800463 if (!fcc->dispatch_list)
464 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900465
Chao Yuadf8d902014-05-08 17:00:35 +0800466 wait_for_completion(&cmd.wait);
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700467 atomic_dec(&fcc->submit_flush);
Chao Yuadf8d902014-05-08 17:00:35 +0800468
469 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900470}
471
Gu Zheng2163d192014-04-27 14:21:33 +0800472int create_flush_cmd_control(struct f2fs_sb_info *sbi)
473{
474 dev_t dev = sbi->sb->s_bdev->bd_dev;
475 struct flush_cmd_control *fcc;
476 int err = 0;
477
478 fcc = kzalloc(sizeof(struct flush_cmd_control), GFP_KERNEL);
479 if (!fcc)
480 return -ENOMEM;
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700481 atomic_set(&fcc->submit_flush, 0);
Gu Zheng2163d192014-04-27 14:21:33 +0800482 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800483 init_llist_head(&fcc->issue_list);
Chao Yu6b2920a2014-07-07 11:21:59 +0800484 SM_I(sbi)->cmd_control_info = fcc;
Gu Zheng2163d192014-04-27 14:21:33 +0800485 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
486 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
487 if (IS_ERR(fcc->f2fs_issue_flush)) {
488 err = PTR_ERR(fcc->f2fs_issue_flush);
489 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800490 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800491 return err;
492 }
Gu Zheng2163d192014-04-27 14:21:33 +0800493
494 return err;
495}
496
497void destroy_flush_cmd_control(struct f2fs_sb_info *sbi)
498{
Chao Yu6b2920a2014-07-07 11:21:59 +0800499 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800500
501 if (fcc && fcc->f2fs_issue_flush)
502 kthread_stop(fcc->f2fs_issue_flush);
503 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800504 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800505}
506
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900507static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
508 enum dirty_type dirty_type)
509{
510 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
511
512 /* need not be added */
513 if (IS_CURSEG(sbi, segno))
514 return;
515
516 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
517 dirty_i->nr_dirty[dirty_type]++;
518
519 if (dirty_type == DIRTY) {
520 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900521 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900522
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700523 if (unlikely(t >= DIRTY)) {
524 f2fs_bug_on(sbi, 1);
525 return;
526 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900527 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
528 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900529 }
530}
531
532static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
533 enum dirty_type dirty_type)
534{
535 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
536
537 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
538 dirty_i->nr_dirty[dirty_type]--;
539
540 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900541 struct seg_entry *sentry = get_seg_entry(sbi, segno);
542 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900543
Changman Lee4625d6a2013-10-25 17:31:57 +0900544 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
545 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900546
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900547 if (get_valid_blocks(sbi, segno, sbi->segs_per_sec) == 0)
548 clear_bit(GET_SECNO(sbi, segno),
549 dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900550 }
551}
552
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900553/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900554 * Should not occur error such as -ENOMEM.
555 * Adding dirty entry into seglist is not critical operation.
556 * If a given segment is one of current working segments, it won't be added.
557 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800558static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900559{
560 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
561 unsigned short valid_blocks;
562
563 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
564 return;
565
566 mutex_lock(&dirty_i->seglist_lock);
567
568 valid_blocks = get_valid_blocks(sbi, segno, 0);
569
570 if (valid_blocks == 0) {
571 __locate_dirty_segment(sbi, segno, PRE);
572 __remove_dirty_segment(sbi, segno, DIRTY);
573 } else if (valid_blocks < sbi->blocks_per_seg) {
574 __locate_dirty_segment(sbi, segno, DIRTY);
575 } else {
576 /* Recovery routine with SSR needs this */
577 __remove_dirty_segment(sbi, segno, DIRTY);
578 }
579
580 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900581}
582
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900583static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +0900584 block_t blkstart, block_t blklen)
585{
Chao Yu55cf9cb2014-09-15 18:01:10 +0800586 sector_t start = SECTOR_FROM_BLOCK(blkstart);
587 sector_t len = SECTOR_FROM_BLOCK(blklen);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700588 struct seg_entry *se;
589 unsigned int offset;
590 block_t i;
591
592 for (i = blkstart; i < blkstart + blklen; i++) {
593 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
594 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
595
596 if (!f2fs_test_and_set_bit(offset, se->discard_map))
597 sbi->discard_blks--;
598 }
Jaegeuk Kim1661d072013-11-12 17:01:00 +0900599 trace_f2fs_issue_discard(sbi->sb, blkstart, blklen);
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900600 return blkdev_issue_discard(sbi->sb->s_bdev, start, len, GFP_NOFS, 0);
601}
602
Chao Yue90c2d22015-07-28 18:36:47 +0800603bool discard_next_dnode(struct f2fs_sb_info *sbi, block_t blkaddr)
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900604{
Jaegeuk Kim60b286c2016-02-09 10:24:31 -0800605 int err = -EOPNOTSUPP;
Jaegeuk Kim40a02be2015-05-11 20:03:49 -0700606
607 if (test_opt(sbi, DISCARD)) {
608 struct seg_entry *se = get_seg_entry(sbi,
609 GET_SEGNO(sbi, blkaddr));
610 unsigned int offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
611
612 if (f2fs_test_bit(offset, se->discard_map))
Chao Yue90c2d22015-07-28 18:36:47 +0800613 return false;
Jaegeuk Kim40a02be2015-05-11 20:03:49 -0700614
615 err = f2fs_issue_discard(sbi, blkaddr, 1);
616 }
617
Chao Yue90c2d22015-07-28 18:36:47 +0800618 if (err) {
Chao Yu381722d2015-05-19 17:40:04 +0800619 update_meta_page(sbi, NULL, blkaddr);
Chao Yue90c2d22015-07-28 18:36:47 +0800620 return true;
621 }
622 return false;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900623}
624
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700625static void __add_discard_entry(struct f2fs_sb_info *sbi,
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700626 struct cp_control *cpc, struct seg_entry *se,
627 unsigned int start, unsigned int end)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900628{
629 struct list_head *head = &SM_I(sbi)->discard_list;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700630 struct discard_entry *new, *last;
631
632 if (!list_empty(head)) {
633 last = list_last_entry(head, struct discard_entry, list);
634 if (START_BLOCK(sbi, cpc->trim_start) + start ==
635 last->blkaddr + last->len) {
636 last->len += end - start;
637 goto done;
638 }
639 }
640
641 new = f2fs_kmem_cache_alloc(discard_entry_slab, GFP_NOFS);
642 INIT_LIST_HEAD(&new->list);
643 new->blkaddr = START_BLOCK(sbi, cpc->trim_start) + start;
644 new->len = end - start;
645 list_add_tail(&new->list, head);
646done:
647 SM_I(sbi)->nr_discards += end - start;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700648}
649
650static void add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc)
651{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900652 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
653 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700654 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900655 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
656 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700657 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800658 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900659 unsigned int start = 0, end = -1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700660 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900661 int i;
662
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700663 if (se->valid_blocks == max_blocks || !f2fs_discard_en(sbi))
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900664 return;
665
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700666 if (!force) {
667 if (!test_opt(sbi, DISCARD) || !se->valid_blocks ||
Dan Carpenter912a83b2015-05-14 11:52:28 +0300668 SM_I(sbi)->nr_discards >= SM_I(sbi)->max_discards)
669 return;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700670 }
671
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900672 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
673 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700674 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -0800675 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900676
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700677 while (force || SM_I(sbi)->nr_discards <= SM_I(sbi)->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900678 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
679 if (start >= max_blocks)
680 break;
681
682 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Yunlei Hec7b41e12016-07-07 12:13:33 +0800683 if (force && start && end != max_blocks
684 && (end - start) < cpc->trim_minlen)
685 continue;
686
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700687 __add_discard_entry(sbi, cpc, se, start, end);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900688 }
689}
690
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700691void release_discard_addrs(struct f2fs_sb_info *sbi)
692{
693 struct list_head *head = &(SM_I(sbi)->discard_list);
694 struct discard_entry *entry, *this;
695
696 /* drop caches */
697 list_for_each_entry_safe(entry, this, head, list) {
698 list_del(&entry->list);
699 kmem_cache_free(discard_entry_slab, entry);
700 }
701}
702
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900703/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900704 * Should call clear_prefree_segments after checkpoint is done.
705 */
706static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
707{
708 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +0800709 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900710
711 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700712 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900713 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900714 mutex_unlock(&dirty_i->seglist_lock);
715}
716
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700717void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900718{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900719 struct list_head *head = &(SM_I(sbi)->discard_list);
Chao Yu2d7b8222014-03-29 11:33:17 +0800720 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900721 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Changman Lee29e59c12013-11-11 09:24:37 +0900722 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +0900723 unsigned int start = 0, end = -1;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700724 unsigned int secno, start_segno;
Chao Yuc24a0fd2016-07-07 22:46:55 +0800725 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900726
727 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900728
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900729 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900730 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700731 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
732 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900733 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700734 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
735 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900736
Changman Lee29e59c12013-11-11 09:24:37 +0900737 for (i = start; i < end; i++)
738 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900739
Changman Lee29e59c12013-11-11 09:24:37 +0900740 dirty_i->nr_dirty[PRE] -= end - start;
741
Chao Yuc24a0fd2016-07-07 22:46:55 +0800742 if (force || !test_opt(sbi, DISCARD))
Changman Lee29e59c12013-11-11 09:24:37 +0900743 continue;
744
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700745 if (!test_opt(sbi, LFS) || sbi->segs_per_sec == 1) {
746 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
Jaegeuk Kim37208872013-11-12 16:55:17 +0900747 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700748 continue;
749 }
750next:
751 secno = GET_SECNO(sbi, start);
752 start_segno = secno * sbi->segs_per_sec;
753 if (!IS_CURSEC(sbi, secno) &&
754 !get_valid_blocks(sbi, start, sbi->segs_per_sec))
755 f2fs_issue_discard(sbi, START_BLOCK(sbi, start_segno),
756 sbi->segs_per_sec << sbi->log_blocks_per_seg);
757
758 start = start_segno + sbi->segs_per_sec;
759 if (start < end)
760 goto next;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900761 }
762 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900763
764 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800765 list_for_each_entry_safe(entry, this, head, list) {
Chao Yuc24a0fd2016-07-07 22:46:55 +0800766 if (force && entry->len < cpc->trim_minlen)
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700767 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900768 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700769 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700770skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900771 list_del(&entry->list);
772 SM_I(sbi)->nr_discards -= entry->len;
773 kmem_cache_free(discard_entry_slab, entry);
774 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900775}
776
Chao Yu184a5cd2014-09-04 18:13:01 +0800777static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900778{
779 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800780
781 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900782 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800783 return false;
784 }
785
786 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900787}
788
789static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
790 unsigned int segno, int modified)
791{
792 struct seg_entry *se = get_seg_entry(sbi, segno);
793 se->type = type;
794 if (modified)
795 __mark_sit_entry_dirty(sbi, segno);
796}
797
798static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
799{
800 struct seg_entry *se;
801 unsigned int segno, offset;
802 long int new_vblocks;
803
804 segno = GET_SEGNO(sbi, blkaddr);
805
806 se = get_seg_entry(sbi, segno);
807 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +0900808 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900809
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700810 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900811 (new_vblocks > sbi->blocks_per_seg)));
812
813 se->valid_blocks = new_vblocks;
814 se->mtime = get_mtime(sbi);
815 SIT_I(sbi)->max_mtime = se->mtime;
816
817 /* Update valid block bitmap */
818 if (del > 0) {
Gu Zheng52aca072014-10-20 17:45:51 +0800819 if (f2fs_test_and_set_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700820 f2fs_bug_on(sbi, 1);
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700821 if (f2fs_discard_en(sbi) &&
822 !f2fs_test_and_set_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700823 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900824 } else {
Gu Zheng52aca072014-10-20 17:45:51 +0800825 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700826 f2fs_bug_on(sbi, 1);
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700827 if (f2fs_discard_en(sbi) &&
828 f2fs_test_and_clear_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700829 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900830 }
831 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
832 se->ckpt_valid_blocks += del;
833
834 __mark_sit_entry_dirty(sbi, segno);
835
836 /* update total number of valid blocks to be written in ckpt area */
837 SIT_I(sbi)->written_valid_blocks += del;
838
839 if (sbi->segs_per_sec > 1)
840 get_sec_entry(sbi, segno)->valid_blocks += del;
841}
842
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900843void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900844{
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900845 update_sit_entry(sbi, new, 1);
846 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
847 update_sit_entry(sbi, old, -1);
848
849 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
850 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900851}
852
853void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
854{
855 unsigned int segno = GET_SEGNO(sbi, addr);
856 struct sit_info *sit_i = SIT_I(sbi);
857
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700858 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900859 if (addr == NEW_ADDR)
860 return;
861
862 /* add it into sit main buffer */
863 mutex_lock(&sit_i->sentry_lock);
864
865 update_sit_entry(sbi, addr, -1);
866
867 /* add it into dirty seglist */
868 locate_dirty_segment(sbi, segno);
869
870 mutex_unlock(&sit_i->sentry_lock);
871}
872
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -0700873bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
874{
875 struct sit_info *sit_i = SIT_I(sbi);
876 unsigned int segno, offset;
877 struct seg_entry *se;
878 bool is_cp = false;
879
880 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
881 return true;
882
883 mutex_lock(&sit_i->sentry_lock);
884
885 segno = GET_SEGNO(sbi, blkaddr);
886 se = get_seg_entry(sbi, segno);
887 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
888
889 if (f2fs_test_bit(offset, se->ckpt_valid_map))
890 is_cp = true;
891
892 mutex_unlock(&sit_i->sentry_lock);
893
894 return is_cp;
895}
896
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900897/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900898 * This function should be resided under the curseg_mutex lock
899 */
900static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +0800901 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900902{
903 struct curseg_info *curseg = CURSEG_I(sbi, type);
904 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +0800905 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900906 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900907}
908
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900909/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900910 * Calculate the number of current summary pages for writing
911 */
Chao Yu3fa06d72014-12-09 14:21:46 +0800912int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900913{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900914 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +0800915 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900916
917 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
918 if (sbi->ckpt->alloc_type[i] == SSR)
919 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +0800920 else {
921 if (for_ra)
922 valid_sum_count += le16_to_cpu(
923 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
924 else
925 valid_sum_count += curseg_blkoff(sbi, i);
926 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900927 }
928
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300929 sum_in_page = (PAGE_SIZE - 2 * SUM_JOURNAL_SIZE -
Fan Li9a479382013-10-29 16:21:47 +0800930 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
931 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900932 return 1;
Fan Li9a479382013-10-29 16:21:47 +0800933 else if ((valid_sum_count - sum_in_page) <=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300934 (PAGE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900935 return 2;
936 return 3;
937}
938
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900939/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900940 * Caller should put this summary page
941 */
942struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
943{
944 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
945}
946
Chao Yu381722d2015-05-19 17:40:04 +0800947void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
948{
949 struct page *page = grab_meta_page(sbi, blk_addr);
950 void *dst = page_address(page);
951
952 if (src)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300953 memcpy(dst, src, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +0800954 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300955 memset(dst, 0, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +0800956 set_page_dirty(page);
957 f2fs_put_page(page, 1);
958}
959
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900960static void write_sum_page(struct f2fs_sb_info *sbi,
961 struct f2fs_summary_block *sum_blk, block_t blk_addr)
962{
Chao Yu381722d2015-05-19 17:40:04 +0800963 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900964}
965
Chao Yub7ad7512016-02-19 18:08:46 +0800966static void write_current_sum_page(struct f2fs_sb_info *sbi,
967 int type, block_t blk_addr)
968{
969 struct curseg_info *curseg = CURSEG_I(sbi, type);
970 struct page *page = grab_meta_page(sbi, blk_addr);
971 struct f2fs_summary_block *src = curseg->sum_blk;
972 struct f2fs_summary_block *dst;
973
974 dst = (struct f2fs_summary_block *)page_address(page);
975
976 mutex_lock(&curseg->curseg_mutex);
977
978 down_read(&curseg->journal_rwsem);
979 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE);
980 up_read(&curseg->journal_rwsem);
981
982 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE);
983 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE);
984
985 mutex_unlock(&curseg->curseg_mutex);
986
987 set_page_dirty(page);
988 f2fs_put_page(page, 1);
989}
990
Jaegeuk Kim60374682013-03-31 13:58:51 +0900991static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
992{
993 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +0800994 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +0900995 struct free_segmap_info *free_i = FREE_I(sbi);
996
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700997 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +0800998 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +0900999 return 0;
1000}
1001
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001002/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001003 * Find a new segment from the free segments bitmap to right order
1004 * This function should be returned with success, otherwise BUG
1005 */
1006static void get_new_segment(struct f2fs_sb_info *sbi,
1007 unsigned int *newseg, bool new_sec, int dir)
1008{
1009 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001010 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001011 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001012 unsigned int hint = *newseg / sbi->segs_per_sec;
1013 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
1014 unsigned int left_start = hint;
1015 bool init = true;
1016 int go_left = 0;
1017 int i;
1018
Chao Yu1a118cc2015-02-11 18:20:38 +08001019 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001020
1021 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
1022 segno = find_next_zero_bit(free_i->free_segmap,
Chao Yu0ab14352016-01-22 17:42:06 +08001023 (hint + 1) * sbi->segs_per_sec, *newseg + 1);
1024 if (segno < (hint + 1) * sbi->segs_per_sec)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001025 goto got_it;
1026 }
1027find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001028 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
1029 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001030 if (dir == ALLOC_RIGHT) {
1031 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001032 MAIN_SECS(sbi), 0);
1033 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001034 } else {
1035 go_left = 1;
1036 left_start = hint - 1;
1037 }
1038 }
1039 if (go_left == 0)
1040 goto skip_left;
1041
1042 while (test_bit(left_start, free_i->free_secmap)) {
1043 if (left_start > 0) {
1044 left_start--;
1045 continue;
1046 }
1047 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001048 MAIN_SECS(sbi), 0);
1049 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001050 break;
1051 }
1052 secno = left_start;
1053skip_left:
1054 hint = secno;
1055 segno = secno * sbi->segs_per_sec;
1056 zoneno = secno / sbi->secs_per_zone;
1057
1058 /* give up on finding another zone */
1059 if (!init)
1060 goto got_it;
1061 if (sbi->secs_per_zone == 1)
1062 goto got_it;
1063 if (zoneno == old_zoneno)
1064 goto got_it;
1065 if (dir == ALLOC_LEFT) {
1066 if (!go_left && zoneno + 1 >= total_zones)
1067 goto got_it;
1068 if (go_left && zoneno == 0)
1069 goto got_it;
1070 }
1071 for (i = 0; i < NR_CURSEG_TYPE; i++)
1072 if (CURSEG_I(sbi, i)->zone == zoneno)
1073 break;
1074
1075 if (i < NR_CURSEG_TYPE) {
1076 /* zone is in user, try another */
1077 if (go_left)
1078 hint = zoneno * sbi->secs_per_zone - 1;
1079 else if (zoneno + 1 >= total_zones)
1080 hint = 0;
1081 else
1082 hint = (zoneno + 1) * sbi->secs_per_zone;
1083 init = false;
1084 goto find_other_zone;
1085 }
1086got_it:
1087 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001088 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001089 __set_inuse(sbi, segno);
1090 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08001091 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001092}
1093
1094static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
1095{
1096 struct curseg_info *curseg = CURSEG_I(sbi, type);
1097 struct summary_footer *sum_footer;
1098
1099 curseg->segno = curseg->next_segno;
1100 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
1101 curseg->next_blkoff = 0;
1102 curseg->next_segno = NULL_SEGNO;
1103
1104 sum_footer = &(curseg->sum_blk->footer);
1105 memset(sum_footer, 0, sizeof(struct summary_footer));
1106 if (IS_DATASEG(type))
1107 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
1108 if (IS_NODESEG(type))
1109 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
1110 __set_sit_entry_type(sbi, type, curseg->segno, modified);
1111}
1112
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001113/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001114 * Allocate a current working segment.
1115 * This function always allocates a free segment in LFS manner.
1116 */
1117static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
1118{
1119 struct curseg_info *curseg = CURSEG_I(sbi, type);
1120 unsigned int segno = curseg->segno;
1121 int dir = ALLOC_LEFT;
1122
1123 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08001124 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001125 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
1126 dir = ALLOC_RIGHT;
1127
1128 if (test_opt(sbi, NOHEAP))
1129 dir = ALLOC_RIGHT;
1130
1131 get_new_segment(sbi, &segno, new_sec, dir);
1132 curseg->next_segno = segno;
1133 reset_curseg(sbi, type, 1);
1134 curseg->alloc_type = LFS;
1135}
1136
1137static void __next_free_blkoff(struct f2fs_sb_info *sbi,
1138 struct curseg_info *seg, block_t start)
1139{
1140 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09001141 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001142 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09001143 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
1144 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1145 int i, pos;
1146
1147 for (i = 0; i < entries; i++)
1148 target_map[i] = ckpt_map[i] | cur_map[i];
1149
1150 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1151
1152 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001153}
1154
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001155/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001156 * If a segment is written by LFS manner, next block offset is just obtained
1157 * by increasing the current block offset. However, if a segment is written by
1158 * SSR manner, next block offset obtained by calling __next_free_blkoff
1159 */
1160static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1161 struct curseg_info *seg)
1162{
1163 if (seg->alloc_type == SSR)
1164 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1165 else
1166 seg->next_blkoff++;
1167}
1168
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001169/*
arter97e1c42042014-08-06 23:22:50 +09001170 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001171 * manner, so it should recover the existing segment information of valid blocks
1172 */
1173static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1174{
1175 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1176 struct curseg_info *curseg = CURSEG_I(sbi, type);
1177 unsigned int new_segno = curseg->next_segno;
1178 struct f2fs_summary_block *sum_node;
1179 struct page *sum_page;
1180
1181 write_sum_page(sbi, curseg->sum_blk,
1182 GET_SUM_BLOCK(sbi, curseg->segno));
1183 __set_test_and_inuse(sbi, new_segno);
1184
1185 mutex_lock(&dirty_i->seglist_lock);
1186 __remove_dirty_segment(sbi, new_segno, PRE);
1187 __remove_dirty_segment(sbi, new_segno, DIRTY);
1188 mutex_unlock(&dirty_i->seglist_lock);
1189
1190 reset_curseg(sbi, type, 1);
1191 curseg->alloc_type = SSR;
1192 __next_free_blkoff(sbi, curseg, 0);
1193
1194 if (reuse) {
1195 sum_page = get_sum_page(sbi, new_segno);
1196 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1197 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1198 f2fs_put_page(sum_page, 1);
1199 }
1200}
1201
Jaegeuk Kim43727522013-02-04 15:11:17 +09001202static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1203{
1204 struct curseg_info *curseg = CURSEG_I(sbi, type);
1205 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1206
1207 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0))
1208 return v_ops->get_victim(sbi,
1209 &(curseg)->next_segno, BG_GC, type, SSR);
1210
1211 /* For data segments, let's do SSR more intensively */
1212 for (; type >= CURSEG_HOT_DATA; type--)
1213 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1214 BG_GC, type, SSR))
1215 return 1;
1216 return 0;
1217}
1218
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001219/*
1220 * flush out current segment and replace it with new segment
1221 * This function should be returned with success, otherwise BUG
1222 */
1223static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1224 int type, bool force)
1225{
1226 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001227
Gu Zheng7b405272013-08-19 09:41:15 +08001228 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001229 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001230 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001231 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001232 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1233 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001234 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1235 change_curseg(sbi, type, true);
1236 else
1237 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001238
1239 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001240}
1241
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001242static void __allocate_new_segments(struct f2fs_sb_info *sbi, int type)
1243{
1244 struct curseg_info *curseg = CURSEG_I(sbi, type);
1245 unsigned int old_segno;
1246
1247 old_segno = curseg->segno;
1248 SIT_I(sbi)->s_ops->allocate_segment(sbi, type, true);
1249 locate_dirty_segment(sbi, old_segno);
1250}
1251
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001252void allocate_new_segments(struct f2fs_sb_info *sbi)
1253{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001254 int i;
1255
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001256 if (test_opt(sbi, LFS))
1257 return;
1258
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001259 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++)
1260 __allocate_new_segments(sbi, i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001261}
1262
1263static const struct segment_allocation default_salloc_ops = {
1264 .allocate_segment = allocate_segment_by_default,
1265};
1266
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001267int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1268{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001269 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1270 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001271 unsigned int start_segno, end_segno;
1272 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001273 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001274
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001275 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001276 return -EINVAL;
1277
Jan Kara9bd27ae2014-10-21 14:07:33 +02001278 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001279 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001280 goto out;
1281
1282 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001283 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1284 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1285 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001286 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001287 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001288
1289 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001290 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1291 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001292
1293 if (sbi->discard_blks == 0)
1294 break;
1295 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1296 cpc.trim_end = end_segno;
1297 else
1298 cpc.trim_end = min_t(unsigned int,
1299 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001300 BATCHED_TRIM_SEGMENTS(sbi),
1301 sbi->segs_per_sec) - 1, end_segno);
1302
1303 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001304 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001305 mutex_unlock(&sbi->gc_mutex);
Chao Yue9328352016-08-21 23:21:29 +08001306 if (err)
1307 break;
Chao Yu74fa5f32016-08-21 23:21:30 +08001308
1309 schedule();
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001310 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001311out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001312 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001313 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001314}
1315
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001316static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1317{
1318 struct curseg_info *curseg = CURSEG_I(sbi, type);
1319 if (curseg->next_blkoff < sbi->blocks_per_seg)
1320 return true;
1321 return false;
1322}
1323
1324static int __get_segment_type_2(struct page *page, enum page_type p_type)
1325{
1326 if (p_type == DATA)
1327 return CURSEG_HOT_DATA;
1328 else
1329 return CURSEG_HOT_NODE;
1330}
1331
1332static int __get_segment_type_4(struct page *page, enum page_type p_type)
1333{
1334 if (p_type == DATA) {
1335 struct inode *inode = page->mapping->host;
1336
1337 if (S_ISDIR(inode->i_mode))
1338 return CURSEG_HOT_DATA;
1339 else
1340 return CURSEG_COLD_DATA;
1341 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001342 if (IS_DNODE(page) && is_cold_node(page))
1343 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001344 else
1345 return CURSEG_COLD_NODE;
1346 }
1347}
1348
1349static int __get_segment_type_6(struct page *page, enum page_type p_type)
1350{
1351 if (p_type == DATA) {
1352 struct inode *inode = page->mapping->host;
1353
1354 if (S_ISDIR(inode->i_mode))
1355 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001356 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001357 return CURSEG_COLD_DATA;
1358 else
1359 return CURSEG_WARM_DATA;
1360 } else {
1361 if (IS_DNODE(page))
1362 return is_cold_node(page) ? CURSEG_WARM_NODE :
1363 CURSEG_HOT_NODE;
1364 else
1365 return CURSEG_COLD_NODE;
1366 }
1367}
1368
1369static int __get_segment_type(struct page *page, enum page_type p_type)
1370{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001371 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001372 case 2:
1373 return __get_segment_type_2(page, p_type);
1374 case 4:
1375 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001376 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001377 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001378 f2fs_bug_on(F2FS_P_SB(page),
1379 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001380 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001381}
1382
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001383void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1384 block_t old_blkaddr, block_t *new_blkaddr,
1385 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001386{
1387 struct sit_info *sit_i = SIT_I(sbi);
1388 struct curseg_info *curseg;
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001389 bool direct_io = (type == CURSEG_DIRECT_IO);
1390
1391 type = direct_io ? CURSEG_WARM_DATA : type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001392
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001393 curseg = CURSEG_I(sbi, type);
1394
1395 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001396 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001397
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001398 /* direct_io'ed data is aligned to the segment for better performance */
Jaegeuk Kim47e70ca2015-08-11 10:17:27 -07001399 if (direct_io && curseg->next_blkoff &&
1400 !has_not_enough_free_secs(sbi, 0))
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001401 __allocate_new_segments(sbi, type);
1402
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001403 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001404
1405 /*
1406 * __add_sum_entry should be resided under the curseg_mutex
1407 * because, this function updates a summary entry in the
1408 * current summary block.
1409 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001410 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001411
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001412 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001413
1414 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001415
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001416 if (!__has_curseg_space(sbi, type))
1417 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001418 /*
1419 * SIT information should be updated before segment allocation,
1420 * since SSR needs latest valid block information.
1421 */
1422 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001423
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001424 mutex_unlock(&sit_i->sentry_lock);
1425
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001426 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001427 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1428
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001429 mutex_unlock(&curseg->curseg_mutex);
1430}
1431
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001432static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001433{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001434 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001435
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001436 if (fio->type == NODE || fio->type == DATA)
1437 mutex_lock(&fio->sbi->wio_mutex[fio->type]);
1438
Chao Yu7a9d7542016-02-22 18:36:38 +08001439 allocate_data_block(fio->sbi, fio->page, fio->old_blkaddr,
1440 &fio->new_blkaddr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001441
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001442 /* writeout dirty page into bdev */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001443 f2fs_submit_page_mbio(fio);
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001444
1445 if (fio->type == NODE || fio->type == DATA)
1446 mutex_unlock(&fio->sbi->wio_mutex[fio->type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001447}
1448
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001449void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001450{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001451 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001452 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001453 .type = META,
Mike Christie04d328d2016-06-05 14:31:55 -05001454 .op = REQ_OP_WRITE,
1455 .op_flags = WRITE_SYNC | REQ_META | REQ_PRIO,
Chao Yu7a9d7542016-02-22 18:36:38 +08001456 .old_blkaddr = page->index,
1457 .new_blkaddr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001458 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001459 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001460 };
1461
Chao Yu2b947002015-10-12 17:04:21 +08001462 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
Mike Christie04d328d2016-06-05 14:31:55 -05001463 fio.op_flags &= ~REQ_META;
Chao Yu2b947002015-10-12 17:04:21 +08001464
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001465 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001466 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001467}
1468
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001469void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001470{
1471 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001472
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001473 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001474 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001475}
1476
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001477void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001478{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001479 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001480 struct f2fs_summary sum;
1481 struct node_info ni;
1482
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001483 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001484 get_node_info(sbi, dn->nid, &ni);
1485 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001486 do_write_page(&sum, fio);
Chao Yuf28b3432016-02-24 17:16:47 +08001487 f2fs_update_data_blkaddr(dn, fio->new_blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001488}
1489
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001490void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001491{
Chao Yu7a9d7542016-02-22 18:36:38 +08001492 fio->new_blkaddr = fio->old_blkaddr;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001493 stat_inc_inplace_blocks(fio->sbi);
1494 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001495}
1496
Chao Yu4356e482016-02-23 17:52:43 +08001497void __f2fs_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001498 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08001499 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001500{
1501 struct sit_info *sit_i = SIT_I(sbi);
1502 struct curseg_info *curseg;
1503 unsigned int segno, old_cursegno;
1504 struct seg_entry *se;
1505 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001506 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001507
1508 segno = GET_SEGNO(sbi, new_blkaddr);
1509 se = get_seg_entry(sbi, segno);
1510 type = se->type;
1511
Chao Yu19f106b2015-05-06 13:08:06 +08001512 if (!recover_curseg) {
1513 /* for recovery flow */
1514 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1515 if (old_blkaddr == NULL_ADDR)
1516 type = CURSEG_COLD_DATA;
1517 else
1518 type = CURSEG_WARM_DATA;
1519 }
1520 } else {
1521 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001522 type = CURSEG_WARM_DATA;
1523 }
Chao Yu19f106b2015-05-06 13:08:06 +08001524
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001525 curseg = CURSEG_I(sbi, type);
1526
1527 mutex_lock(&curseg->curseg_mutex);
1528 mutex_lock(&sit_i->sentry_lock);
1529
1530 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001531 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001532
1533 /* change the current segment */
1534 if (segno != curseg->segno) {
1535 curseg->next_segno = segno;
1536 change_curseg(sbi, type, true);
1537 }
1538
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001539 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001540 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001541
Chao Yu28bc1062016-02-06 14:40:34 +08001542 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001543 update_sit_entry(sbi, new_blkaddr, 1);
1544 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1545 update_sit_entry(sbi, old_blkaddr, -1);
1546
1547 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1548 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1549
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001550 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001551
Chao Yu19f106b2015-05-06 13:08:06 +08001552 if (recover_curseg) {
1553 if (old_cursegno != curseg->segno) {
1554 curseg->next_segno = old_cursegno;
1555 change_curseg(sbi, type, true);
1556 }
1557 curseg->next_blkoff = old_blkoff;
1558 }
1559
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001560 mutex_unlock(&sit_i->sentry_lock);
1561 mutex_unlock(&curseg->curseg_mutex);
1562}
1563
Chao Yu528e3452015-05-28 19:15:35 +08001564void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1565 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08001566 unsigned char version, bool recover_curseg,
1567 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08001568{
1569 struct f2fs_summary sum;
1570
1571 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1572
Chao Yu28bc1062016-02-06 14:40:34 +08001573 __f2fs_replace_block(sbi, &sum, old_addr, new_addr,
1574 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08001575
Chao Yuf28b3432016-02-24 17:16:47 +08001576 f2fs_update_data_blkaddr(dn, new_addr);
Chao Yu528e3452015-05-28 19:15:35 +08001577}
1578
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001579void f2fs_wait_on_page_writeback(struct page *page,
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001580 enum page_type type, bool ordered)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001581{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001582 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001583 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1584
Chao Yu0c3a5792016-01-18 18:28:11 +08001585 f2fs_submit_merged_bio_cond(sbi, NULL, page, 0, type, WRITE);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001586 if (ordered)
1587 wait_on_page_writeback(page);
1588 else
1589 wait_for_stable_page(page);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001590 }
1591}
1592
Chao Yu08b39fb2015-10-08 13:27:34 +08001593void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1594 block_t blkaddr)
1595{
1596 struct page *cpage;
1597
1598 if (blkaddr == NEW_ADDR)
1599 return;
1600
1601 f2fs_bug_on(sbi, blkaddr == NULL_ADDR);
1602
1603 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1604 if (cpage) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001605 f2fs_wait_on_page_writeback(cpage, DATA, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08001606 f2fs_put_page(cpage, 1);
1607 }
1608}
1609
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001610static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1611{
1612 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1613 struct curseg_info *seg_i;
1614 unsigned char *kaddr;
1615 struct page *page;
1616 block_t start;
1617 int i, j, offset;
1618
1619 start = start_sum_block(sbi);
1620
1621 page = get_meta_page(sbi, start++);
1622 kaddr = (unsigned char *)page_address(page);
1623
1624 /* Step 1: restore nat cache */
1625 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001626 memcpy(seg_i->journal, kaddr, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001627
1628 /* Step 2: restore sit cache */
1629 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001630 memcpy(seg_i->journal, kaddr + SUM_JOURNAL_SIZE, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001631 offset = 2 * SUM_JOURNAL_SIZE;
1632
1633 /* Step 3: restore summary entries */
1634 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1635 unsigned short blk_off;
1636 unsigned int segno;
1637
1638 seg_i = CURSEG_I(sbi, i);
1639 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1640 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1641 seg_i->next_segno = segno;
1642 reset_curseg(sbi, i, 0);
1643 seg_i->alloc_type = ckpt->alloc_type[i];
1644 seg_i->next_blkoff = blk_off;
1645
1646 if (seg_i->alloc_type == SSR)
1647 blk_off = sbi->blocks_per_seg;
1648
1649 for (j = 0; j < blk_off; j++) {
1650 struct f2fs_summary *s;
1651 s = (struct f2fs_summary *)(kaddr + offset);
1652 seg_i->sum_blk->entries[j] = *s;
1653 offset += SUMMARY_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001654 if (offset + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001655 SUM_FOOTER_SIZE)
1656 continue;
1657
1658 f2fs_put_page(page, 1);
1659 page = NULL;
1660
1661 page = get_meta_page(sbi, start++);
1662 kaddr = (unsigned char *)page_address(page);
1663 offset = 0;
1664 }
1665 }
1666 f2fs_put_page(page, 1);
1667 return 0;
1668}
1669
1670static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1671{
1672 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1673 struct f2fs_summary_block *sum;
1674 struct curseg_info *curseg;
1675 struct page *new;
1676 unsigned short blk_off;
1677 unsigned int segno = 0;
1678 block_t blk_addr = 0;
1679
1680 /* get segment number and block addr */
1681 if (IS_DATASEG(type)) {
1682 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1683 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1684 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001685 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001686 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1687 else
1688 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1689 } else {
1690 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1691 CURSEG_HOT_NODE]);
1692 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1693 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001694 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001695 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1696 type - CURSEG_HOT_NODE);
1697 else
1698 blk_addr = GET_SUM_BLOCK(sbi, segno);
1699 }
1700
1701 new = get_meta_page(sbi, blk_addr);
1702 sum = (struct f2fs_summary_block *)page_address(new);
1703
1704 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001705 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001706 struct f2fs_summary *ns = &sum->entries[0];
1707 int i;
1708 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1709 ns->version = 0;
1710 ns->ofs_in_node = 0;
1711 }
1712 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001713 int err;
1714
1715 err = restore_node_summary(sbi, segno, sum);
1716 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001717 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001718 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001719 }
1720 }
1721 }
1722
1723 /* set uncompleted segment to curseg */
1724 curseg = CURSEG_I(sbi, type);
1725 mutex_lock(&curseg->curseg_mutex);
Chao Yub7ad7512016-02-19 18:08:46 +08001726
1727 /* update journal info */
1728 down_write(&curseg->journal_rwsem);
1729 memcpy(curseg->journal, &sum->journal, SUM_JOURNAL_SIZE);
1730 up_write(&curseg->journal_rwsem);
1731
1732 memcpy(curseg->sum_blk->entries, sum->entries, SUM_ENTRY_SIZE);
1733 memcpy(&curseg->sum_blk->footer, &sum->footer, SUM_FOOTER_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001734 curseg->next_segno = segno;
1735 reset_curseg(sbi, type, 0);
1736 curseg->alloc_type = ckpt->alloc_type[type];
1737 curseg->next_blkoff = blk_off;
1738 mutex_unlock(&curseg->curseg_mutex);
1739 f2fs_put_page(new, 1);
1740 return 0;
1741}
1742
1743static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1744{
1745 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001746 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001747
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001748 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001749 int npages = npages_for_summary_flush(sbi, true);
1750
1751 if (npages >= 2)
1752 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001753 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001754
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001755 /* restore for compacted data summary */
1756 if (read_compacted_summaries(sbi))
1757 return -EINVAL;
1758 type = CURSEG_HOT_NODE;
1759 }
1760
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001761 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001762 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001763 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001764
Chao Yue4fc5fb2014-03-17 16:36:24 +08001765 for (; type <= CURSEG_COLD_NODE; type++) {
1766 err = read_normal_summaries(sbi, type);
1767 if (err)
1768 return err;
1769 }
1770
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001771 return 0;
1772}
1773
1774static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1775{
1776 struct page *page;
1777 unsigned char *kaddr;
1778 struct f2fs_summary *summary;
1779 struct curseg_info *seg_i;
1780 int written_size = 0;
1781 int i, j;
1782
1783 page = grab_meta_page(sbi, blkaddr++);
1784 kaddr = (unsigned char *)page_address(page);
1785
1786 /* Step 1: write nat cache */
1787 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001788 memcpy(kaddr, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001789 written_size += SUM_JOURNAL_SIZE;
1790
1791 /* Step 2: write sit cache */
1792 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001793 memcpy(kaddr + written_size, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001794 written_size += SUM_JOURNAL_SIZE;
1795
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001796 /* Step 3: write summary entries */
1797 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1798 unsigned short blkoff;
1799 seg_i = CURSEG_I(sbi, i);
1800 if (sbi->ckpt->alloc_type[i] == SSR)
1801 blkoff = sbi->blocks_per_seg;
1802 else
1803 blkoff = curseg_blkoff(sbi, i);
1804
1805 for (j = 0; j < blkoff; j++) {
1806 if (!page) {
1807 page = grab_meta_page(sbi, blkaddr++);
1808 kaddr = (unsigned char *)page_address(page);
1809 written_size = 0;
1810 }
1811 summary = (struct f2fs_summary *)(kaddr + written_size);
1812 *summary = seg_i->sum_blk->entries[j];
1813 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001814
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001815 if (written_size + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001816 SUM_FOOTER_SIZE)
1817 continue;
1818
Chao Yue8d61a72013-10-24 15:08:28 +08001819 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001820 f2fs_put_page(page, 1);
1821 page = NULL;
1822 }
1823 }
Chao Yue8d61a72013-10-24 15:08:28 +08001824 if (page) {
1825 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001826 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08001827 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001828}
1829
1830static void write_normal_summaries(struct f2fs_sb_info *sbi,
1831 block_t blkaddr, int type)
1832{
1833 int i, end;
1834 if (IS_DATASEG(type))
1835 end = type + NR_CURSEG_DATA_TYPE;
1836 else
1837 end = type + NR_CURSEG_NODE_TYPE;
1838
Chao Yub7ad7512016-02-19 18:08:46 +08001839 for (i = type; i < end; i++)
1840 write_current_sum_page(sbi, i, blkaddr + (i - type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001841}
1842
1843void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1844{
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001845 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001846 write_compacted_summaries(sbi, start_blk);
1847 else
1848 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1849}
1850
1851void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1852{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001853 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001854}
1855
Chao Yudfc08a12016-02-14 18:50:40 +08001856int lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001857 unsigned int val, int alloc)
1858{
1859 int i;
1860
1861 if (type == NAT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001862 for (i = 0; i < nats_in_cursum(journal); i++) {
1863 if (le32_to_cpu(nid_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001864 return i;
1865 }
Chao Yudfc08a12016-02-14 18:50:40 +08001866 if (alloc && __has_cursum_space(journal, 1, NAT_JOURNAL))
1867 return update_nats_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001868 } else if (type == SIT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001869 for (i = 0; i < sits_in_cursum(journal); i++)
1870 if (le32_to_cpu(segno_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001871 return i;
Chao Yudfc08a12016-02-14 18:50:40 +08001872 if (alloc && __has_cursum_space(journal, 1, SIT_JOURNAL))
1873 return update_sits_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001874 }
1875 return -1;
1876}
1877
1878static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
1879 unsigned int segno)
1880{
Gu Zheng2cc22182014-10-20 17:45:49 +08001881 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001882}
1883
1884static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
1885 unsigned int start)
1886{
1887 struct sit_info *sit_i = SIT_I(sbi);
1888 struct page *src_page, *dst_page;
1889 pgoff_t src_off, dst_off;
1890 void *src_addr, *dst_addr;
1891
1892 src_off = current_sit_addr(sbi, start);
1893 dst_off = next_sit_addr(sbi, src_off);
1894
1895 /* get current sit block page without lock */
1896 src_page = get_meta_page(sbi, src_off);
1897 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001898 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001899
1900 src_addr = page_address(src_page);
1901 dst_addr = page_address(dst_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001902 memcpy(dst_addr, src_addr, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001903
1904 set_page_dirty(dst_page);
1905 f2fs_put_page(src_page, 1);
1906
1907 set_to_next_sit(sit_i, start);
1908
1909 return dst_page;
1910}
1911
Chao Yu184a5cd2014-09-04 18:13:01 +08001912static struct sit_entry_set *grab_sit_entry_set(void)
1913{
1914 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001915 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08001916
1917 ses->entry_cnt = 0;
1918 INIT_LIST_HEAD(&ses->set_list);
1919 return ses;
1920}
1921
1922static void release_sit_entry_set(struct sit_entry_set *ses)
1923{
1924 list_del(&ses->set_list);
1925 kmem_cache_free(sit_entry_set_slab, ses);
1926}
1927
1928static void adjust_sit_entry_set(struct sit_entry_set *ses,
1929 struct list_head *head)
1930{
1931 struct sit_entry_set *next = ses;
1932
1933 if (list_is_last(&ses->set_list, head))
1934 return;
1935
1936 list_for_each_entry_continue(next, head, set_list)
1937 if (ses->entry_cnt <= next->entry_cnt)
1938 break;
1939
1940 list_move_tail(&ses->set_list, &next->set_list);
1941}
1942
1943static void add_sit_entry(unsigned int segno, struct list_head *head)
1944{
1945 struct sit_entry_set *ses;
1946 unsigned int start_segno = START_SEGNO(segno);
1947
1948 list_for_each_entry(ses, head, set_list) {
1949 if (ses->start_segno == start_segno) {
1950 ses->entry_cnt++;
1951 adjust_sit_entry_set(ses, head);
1952 return;
1953 }
1954 }
1955
1956 ses = grab_sit_entry_set();
1957
1958 ses->start_segno = start_segno;
1959 ses->entry_cnt++;
1960 list_add(&ses->set_list, head);
1961}
1962
1963static void add_sits_in_set(struct f2fs_sb_info *sbi)
1964{
1965 struct f2fs_sm_info *sm_info = SM_I(sbi);
1966 struct list_head *set_list = &sm_info->sit_entry_set;
1967 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08001968 unsigned int segno;
1969
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001970 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08001971 add_sit_entry(segno, set_list);
1972}
1973
1974static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001975{
1976 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001977 struct f2fs_journal *journal = curseg->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001978 int i;
1979
Chao Yub7ad7512016-02-19 18:08:46 +08001980 down_write(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08001981 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yu184a5cd2014-09-04 18:13:01 +08001982 unsigned int segno;
1983 bool dirtied;
1984
Chao Yudfc08a12016-02-14 18:50:40 +08001985 segno = le32_to_cpu(segno_in_journal(journal, i));
Chao Yu184a5cd2014-09-04 18:13:01 +08001986 dirtied = __mark_sit_entry_dirty(sbi, segno);
1987
1988 if (!dirtied)
1989 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001990 }
Chao Yudfc08a12016-02-14 18:50:40 +08001991 update_sits_in_cursum(journal, -i);
Chao Yub7ad7512016-02-19 18:08:46 +08001992 up_write(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001993}
1994
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001995/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001996 * CP calls this function, which flushes SIT entries including sit_journal,
1997 * and moves prefree segs to free segs.
1998 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001999void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002000{
2001 struct sit_info *sit_i = SIT_I(sbi);
2002 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
2003 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002004 struct f2fs_journal *journal = curseg->journal;
Chao Yu184a5cd2014-09-04 18:13:01 +08002005 struct sit_entry_set *ses, *tmp;
2006 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08002007 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002008 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002009
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002010 mutex_lock(&sit_i->sentry_lock);
2011
Wanpeng Li2b11a742015-02-27 16:52:50 +08002012 if (!sit_i->dirty_sentries)
2013 goto out;
2014
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002015 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08002016 * add and account sit entries of dirty bitmap in sit entry
2017 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002018 */
Chao Yu184a5cd2014-09-04 18:13:01 +08002019 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002020
Chao Yu184a5cd2014-09-04 18:13:01 +08002021 /*
2022 * if there are no enough space in journal to store dirty sit
2023 * entries, remove all entries from journal and add and account
2024 * them in sit entry set.
2025 */
Chao Yudfc08a12016-02-14 18:50:40 +08002026 if (!__has_cursum_space(journal, sit_i->dirty_sentries, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002027 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002028
Chao Yu184a5cd2014-09-04 18:13:01 +08002029 /*
2030 * there are two steps to flush sit entries:
2031 * #1, flush sit entries to journal in current cold data summary block.
2032 * #2, flush sit entries to sit page.
2033 */
2034 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07002035 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08002036 struct f2fs_sit_block *raw_sit = NULL;
2037 unsigned int start_segno = ses->start_segno;
2038 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002039 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08002040 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09002041
Chao Yu184a5cd2014-09-04 18:13:01 +08002042 if (to_journal &&
Chao Yudfc08a12016-02-14 18:50:40 +08002043 !__has_cursum_space(journal, ses->entry_cnt, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002044 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002045
Chao Yub7ad7512016-02-19 18:08:46 +08002046 if (to_journal) {
2047 down_write(&curseg->journal_rwsem);
2048 } else {
Chao Yu184a5cd2014-09-04 18:13:01 +08002049 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002050 raw_sit = page_address(page);
2051 }
2052
Chao Yu184a5cd2014-09-04 18:13:01 +08002053 /* flush dirty sit entries in region of current sit set */
2054 for_each_set_bit_from(segno, bitmap, end) {
2055 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002056
2057 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08002058
2059 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08002060 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002061 cpc->trim_start = segno;
2062 add_discard_addrs(sbi, cpc);
2063 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002064
2065 if (to_journal) {
Chao Yudfc08a12016-02-14 18:50:40 +08002066 offset = lookup_journal_in_cursum(journal,
Chao Yu184a5cd2014-09-04 18:13:01 +08002067 SIT_JOURNAL, segno, 1);
2068 f2fs_bug_on(sbi, offset < 0);
Chao Yudfc08a12016-02-14 18:50:40 +08002069 segno_in_journal(journal, offset) =
Chao Yu184a5cd2014-09-04 18:13:01 +08002070 cpu_to_le32(segno);
2071 seg_info_to_raw_sit(se,
Chao Yudfc08a12016-02-14 18:50:40 +08002072 &sit_in_journal(journal, offset));
Chao Yu184a5cd2014-09-04 18:13:01 +08002073 } else {
2074 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
2075 seg_info_to_raw_sit(se,
2076 &raw_sit->entries[sit_offset]);
2077 }
2078
2079 __clear_bit(segno, bitmap);
2080 sit_i->dirty_sentries--;
2081 ses->entry_cnt--;
2082 }
2083
Chao Yub7ad7512016-02-19 18:08:46 +08002084 if (to_journal)
2085 up_write(&curseg->journal_rwsem);
2086 else
Chao Yu184a5cd2014-09-04 18:13:01 +08002087 f2fs_put_page(page, 1);
2088
2089 f2fs_bug_on(sbi, ses->entry_cnt);
2090 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002091 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002092
2093 f2fs_bug_on(sbi, !list_empty(head));
2094 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08002095out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002096 if (cpc->reason == CP_DISCARD) {
2097 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
2098 add_discard_addrs(sbi, cpc);
2099 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002100 mutex_unlock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002101
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002102 set_prefree_as_free_segments(sbi);
2103}
2104
2105static int build_sit_info(struct f2fs_sb_info *sbi)
2106{
2107 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2108 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
2109 struct sit_info *sit_i;
2110 unsigned int sit_segs, start;
2111 char *src_bitmap, *dst_bitmap;
2112 unsigned int bitmap_size;
2113
2114 /* allocate memory for SIT information */
2115 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
2116 if (!sit_i)
2117 return -ENOMEM;
2118
2119 SM_I(sbi)->sit_info = sit_i;
2120
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002121 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
2122 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002123 if (!sit_i->sentries)
2124 return -ENOMEM;
2125
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002126 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002127 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002128 if (!sit_i->dirty_sentries_bitmap)
2129 return -ENOMEM;
2130
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002131 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002132 sit_i->sentries[start].cur_valid_map
2133 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2134 sit_i->sentries[start].ckpt_valid_map
2135 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002136 if (!sit_i->sentries[start].cur_valid_map ||
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002137 !sit_i->sentries[start].ckpt_valid_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002138 return -ENOMEM;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002139
2140 if (f2fs_discard_en(sbi)) {
2141 sit_i->sentries[start].discard_map
2142 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2143 if (!sit_i->sentries[start].discard_map)
2144 return -ENOMEM;
2145 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002146 }
2147
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002148 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2149 if (!sit_i->tmp_map)
2150 return -ENOMEM;
2151
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002152 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002153 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
2154 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002155 if (!sit_i->sec_entries)
2156 return -ENOMEM;
2157 }
2158
2159 /* get information related with SIT */
2160 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
2161
2162 /* setup SIT bitmap from ckeckpoint pack */
2163 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
2164 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
2165
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02002166 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002167 if (!dst_bitmap)
2168 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002169
2170 /* init SIT information */
2171 sit_i->s_ops = &default_salloc_ops;
2172
2173 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2174 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
2175 sit_i->written_valid_blocks = le64_to_cpu(ckpt->valid_block_count);
2176 sit_i->sit_bitmap = dst_bitmap;
2177 sit_i->bitmap_size = bitmap_size;
2178 sit_i->dirty_sentries = 0;
2179 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2180 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2181 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2182 mutex_init(&sit_i->sentry_lock);
2183 return 0;
2184}
2185
2186static int build_free_segmap(struct f2fs_sb_info *sbi)
2187{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002188 struct free_segmap_info *free_i;
2189 unsigned int bitmap_size, sec_bitmap_size;
2190
2191 /* allocate memory for free segmap information */
2192 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2193 if (!free_i)
2194 return -ENOMEM;
2195
2196 SM_I(sbi)->free_info = free_i;
2197
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002198 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002199 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002200 if (!free_i->free_segmap)
2201 return -ENOMEM;
2202
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002203 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002204 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002205 if (!free_i->free_secmap)
2206 return -ENOMEM;
2207
2208 /* set all segments as dirty temporarily */
2209 memset(free_i->free_segmap, 0xff, bitmap_size);
2210 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2211
2212 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002213 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002214 free_i->free_segments = 0;
2215 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002216 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002217 return 0;
2218}
2219
2220static int build_curseg(struct f2fs_sb_info *sbi)
2221{
Namjae Jeon1042d602012-12-01 10:56:13 +09002222 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002223 int i;
2224
Fabian Frederickb434bab2014-06-23 18:39:15 +02002225 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002226 if (!array)
2227 return -ENOMEM;
2228
2229 SM_I(sbi)->curseg_array = array;
2230
2231 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2232 mutex_init(&array[i].curseg_mutex);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002233 array[i].sum_blk = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002234 if (!array[i].sum_blk)
2235 return -ENOMEM;
Chao Yub7ad7512016-02-19 18:08:46 +08002236 init_rwsem(&array[i].journal_rwsem);
2237 array[i].journal = kzalloc(sizeof(struct f2fs_journal),
2238 GFP_KERNEL);
2239 if (!array[i].journal)
2240 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002241 array[i].segno = NULL_SEGNO;
2242 array[i].next_blkoff = 0;
2243 }
2244 return restore_curseg_summaries(sbi);
2245}
2246
2247static void build_sit_entries(struct f2fs_sb_info *sbi)
2248{
2249 struct sit_info *sit_i = SIT_I(sbi);
2250 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002251 struct f2fs_journal *journal = curseg->journal;
Chao Yu74de5932013-11-22 09:09:59 +08002252 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2253 unsigned int i, start, end;
2254 unsigned int readed, start_blk = 0;
Chao Yue9f5b8b2016-02-14 18:54:33 +08002255 int nrpages = MAX_BIO_BLOCKS(sbi) * 8;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002256
Chao Yu74de5932013-11-22 09:09:59 +08002257 do {
Chao Yu26879fb2015-10-12 17:05:59 +08002258 readed = ra_meta_pages(sbi, start_blk, nrpages, META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002259
Chao Yu74de5932013-11-22 09:09:59 +08002260 start = start_blk * sit_i->sents_per_block;
2261 end = (start_blk + readed) * sit_i->sents_per_block;
2262
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002263 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002264 struct seg_entry *se = &sit_i->sentries[start];
2265 struct f2fs_sit_block *sit_blk;
2266 struct f2fs_sit_entry sit;
2267 struct page *page;
2268
Chao Yu74de5932013-11-22 09:09:59 +08002269 page = get_current_sit_page(sbi, start);
2270 sit_blk = (struct f2fs_sit_block *)page_address(page);
2271 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2272 f2fs_put_page(page, 1);
Chao Yud600af232016-08-19 23:13:47 +08002273
Chao Yu74de5932013-11-22 09:09:59 +08002274 check_block_count(sbi, start, &sit);
2275 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002276
2277 /* build discard map only one time */
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002278 if (f2fs_discard_en(sbi)) {
2279 memcpy(se->discard_map, se->cur_valid_map,
2280 SIT_VBLOCK_MAP_SIZE);
2281 sbi->discard_blks += sbi->blocks_per_seg -
2282 se->valid_blocks;
2283 }
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002284
Chao Yud600af232016-08-19 23:13:47 +08002285 if (sbi->segs_per_sec > 1)
2286 get_sec_entry(sbi, start)->valid_blocks +=
2287 se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002288 }
Chao Yu74de5932013-11-22 09:09:59 +08002289 start_blk += readed;
2290 } while (start_blk < sit_blk_cnt);
Chao Yud600af232016-08-19 23:13:47 +08002291
2292 down_read(&curseg->journal_rwsem);
2293 for (i = 0; i < sits_in_cursum(journal); i++) {
2294 struct f2fs_sit_entry sit;
2295 struct seg_entry *se;
2296 unsigned int old_valid_blocks;
2297
2298 start = le32_to_cpu(segno_in_journal(journal, i));
2299 se = &sit_i->sentries[start];
2300 sit = sit_in_journal(journal, i);
2301
2302 old_valid_blocks = se->valid_blocks;
2303
2304 check_block_count(sbi, start, &sit);
2305 seg_info_from_raw_sit(se, &sit);
2306
2307 if (f2fs_discard_en(sbi)) {
2308 memcpy(se->discard_map, se->cur_valid_map,
2309 SIT_VBLOCK_MAP_SIZE);
2310 sbi->discard_blks += old_valid_blocks -
2311 se->valid_blocks;
2312 }
2313
2314 if (sbi->segs_per_sec > 1)
2315 get_sec_entry(sbi, start)->valid_blocks +=
2316 se->valid_blocks - old_valid_blocks;
2317 }
2318 up_read(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002319}
2320
2321static void init_free_segmap(struct f2fs_sb_info *sbi)
2322{
2323 unsigned int start;
2324 int type;
2325
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002326 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002327 struct seg_entry *sentry = get_seg_entry(sbi, start);
2328 if (!sentry->valid_blocks)
2329 __set_free(sbi, start);
2330 }
2331
2332 /* set use the current segments */
2333 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2334 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2335 __set_test_and_inuse(sbi, curseg_t->segno);
2336 }
2337}
2338
2339static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2340{
2341 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2342 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002343 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002344 unsigned short valid_blocks;
2345
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002346 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002347 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002348 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2349 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002350 break;
2351 offset = segno + 1;
2352 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002353 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002354 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002355 if (valid_blocks > sbi->blocks_per_seg) {
2356 f2fs_bug_on(sbi, 1);
2357 continue;
2358 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002359 mutex_lock(&dirty_i->seglist_lock);
2360 __locate_dirty_segment(sbi, segno, DIRTY);
2361 mutex_unlock(&dirty_i->seglist_lock);
2362 }
2363}
2364
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002365static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002366{
2367 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002368 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002369
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002370 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002371 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002372 return -ENOMEM;
2373 return 0;
2374}
2375
2376static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2377{
2378 struct dirty_seglist_info *dirty_i;
2379 unsigned int bitmap_size, i;
2380
2381 /* allocate memory for dirty segments list information */
2382 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2383 if (!dirty_i)
2384 return -ENOMEM;
2385
2386 SM_I(sbi)->dirty_info = dirty_i;
2387 mutex_init(&dirty_i->seglist_lock);
2388
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002389 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002390
2391 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002392 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002393 if (!dirty_i->dirty_segmap[i])
2394 return -ENOMEM;
2395 }
2396
2397 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002398 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002399}
2400
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002401/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002402 * Update min, max modified time for cost-benefit GC algorithm
2403 */
2404static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2405{
2406 struct sit_info *sit_i = SIT_I(sbi);
2407 unsigned int segno;
2408
2409 mutex_lock(&sit_i->sentry_lock);
2410
2411 sit_i->min_mtime = LLONG_MAX;
2412
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002413 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002414 unsigned int i;
2415 unsigned long long mtime = 0;
2416
2417 for (i = 0; i < sbi->segs_per_sec; i++)
2418 mtime += get_seg_entry(sbi, segno + i)->mtime;
2419
2420 mtime = div_u64(mtime, sbi->segs_per_sec);
2421
2422 if (sit_i->min_mtime > mtime)
2423 sit_i->min_mtime = mtime;
2424 }
2425 sit_i->max_mtime = get_mtime(sbi);
2426 mutex_unlock(&sit_i->sentry_lock);
2427}
2428
2429int build_segment_manager(struct f2fs_sb_info *sbi)
2430{
2431 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2432 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002433 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002434 int err;
2435
2436 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2437 if (!sm_info)
2438 return -ENOMEM;
2439
2440 /* init sm info */
2441 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002442 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2443 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2444 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2445 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2446 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2447 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2448 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002449 sm_info->rec_prefree_segments = sm_info->main_segments *
2450 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim44a83492016-07-13 18:23:35 -07002451 if (sm_info->rec_prefree_segments > DEF_MAX_RECLAIM_PREFREE_SEGMENTS)
2452 sm_info->rec_prefree_segments = DEF_MAX_RECLAIM_PREFREE_SEGMENTS;
2453
Jaegeuk Kim52763a42016-06-13 09:47:48 -07002454 if (!test_opt(sbi, LFS))
2455 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002456 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002457 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002458
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002459 INIT_LIST_HEAD(&sm_info->discard_list);
2460 sm_info->nr_discards = 0;
2461 sm_info->max_discards = 0;
2462
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002463 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2464
Chao Yu184a5cd2014-09-04 18:13:01 +08002465 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2466
Gu Zhengb270ad62014-04-11 17:49:55 +08002467 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002468 err = create_flush_cmd_control(sbi);
2469 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002470 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002471 }
2472
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002473 err = build_sit_info(sbi);
2474 if (err)
2475 return err;
2476 err = build_free_segmap(sbi);
2477 if (err)
2478 return err;
2479 err = build_curseg(sbi);
2480 if (err)
2481 return err;
2482
2483 /* reinit free segmap based on SIT */
2484 build_sit_entries(sbi);
2485
2486 init_free_segmap(sbi);
2487 err = build_dirty_segmap(sbi);
2488 if (err)
2489 return err;
2490
2491 init_min_max_mtime(sbi);
2492 return 0;
2493}
2494
2495static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2496 enum dirty_type dirty_type)
2497{
2498 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2499
2500 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002501 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002502 dirty_i->nr_dirty[dirty_type] = 0;
2503 mutex_unlock(&dirty_i->seglist_lock);
2504}
2505
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002506static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002507{
2508 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002509 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002510}
2511
2512static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2513{
2514 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2515 int i;
2516
2517 if (!dirty_i)
2518 return;
2519
2520 /* discard pre-free/dirty segments list */
2521 for (i = 0; i < NR_DIRTY_TYPE; i++)
2522 discard_dirty_segmap(sbi, i);
2523
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002524 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002525 SM_I(sbi)->dirty_info = NULL;
2526 kfree(dirty_i);
2527}
2528
2529static void destroy_curseg(struct f2fs_sb_info *sbi)
2530{
2531 struct curseg_info *array = SM_I(sbi)->curseg_array;
2532 int i;
2533
2534 if (!array)
2535 return;
2536 SM_I(sbi)->curseg_array = NULL;
Chao Yub7ad7512016-02-19 18:08:46 +08002537 for (i = 0; i < NR_CURSEG_TYPE; i++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002538 kfree(array[i].sum_blk);
Chao Yub7ad7512016-02-19 18:08:46 +08002539 kfree(array[i].journal);
2540 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002541 kfree(array);
2542}
2543
2544static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2545{
2546 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2547 if (!free_i)
2548 return;
2549 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002550 kvfree(free_i->free_segmap);
2551 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002552 kfree(free_i);
2553}
2554
2555static void destroy_sit_info(struct f2fs_sb_info *sbi)
2556{
2557 struct sit_info *sit_i = SIT_I(sbi);
2558 unsigned int start;
2559
2560 if (!sit_i)
2561 return;
2562
2563 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002564 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002565 kfree(sit_i->sentries[start].cur_valid_map);
2566 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002567 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002568 }
2569 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002570 kfree(sit_i->tmp_map);
2571
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002572 kvfree(sit_i->sentries);
2573 kvfree(sit_i->sec_entries);
2574 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002575
2576 SM_I(sbi)->sit_info = NULL;
2577 kfree(sit_i->sit_bitmap);
2578 kfree(sit_i);
2579}
2580
2581void destroy_segment_manager(struct f2fs_sb_info *sbi)
2582{
2583 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002584
Chao Yu3b03f722013-11-06 09:12:04 +08002585 if (!sm_info)
2586 return;
Gu Zheng2163d192014-04-27 14:21:33 +08002587 destroy_flush_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002588 destroy_dirty_segmap(sbi);
2589 destroy_curseg(sbi);
2590 destroy_free_segmap(sbi);
2591 destroy_sit_info(sbi);
2592 sbi->sm_info = NULL;
2593 kfree(sm_info);
2594}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002595
2596int __init create_segment_manager_caches(void)
2597{
2598 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002599 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002600 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002601 goto fail;
2602
2603 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002604 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002605 if (!sit_entry_set_slab)
2606 goto destory_discard_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002607
2608 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2609 sizeof(struct inmem_pages));
2610 if (!inmem_entry_slab)
2611 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002612 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002613
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002614destroy_sit_entry_set:
2615 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu184a5cd2014-09-04 18:13:01 +08002616destory_discard_entry:
2617 kmem_cache_destroy(discard_entry_slab);
2618fail:
2619 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002620}
2621
2622void destroy_segment_manager_caches(void)
2623{
Chao Yu184a5cd2014-09-04 18:13:01 +08002624 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002625 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002626 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002627}