blob: 6d16ecf9d29e9191d11ac7a1173c3a8dc30e4d30 [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,
260 .rw = WRITE_SYNC | REQ_PRIO,
261 .encrypted_page = NULL,
262 };
263 bool submit_bio = false;
264 int err = 0;
265
266 list_for_each_entry_safe(cur, tmp, &fi->inmem_pages, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800267 struct page *page = cur->page;
268
269 lock_page(page);
270 if (page->mapping == inode->i_mapping) {
271 trace_f2fs_commit_inmem_page(page, INMEM);
272
273 set_page_dirty(page);
274 f2fs_wait_on_page_writeback(page, DATA, true);
275 if (clear_page_dirty_for_io(page))
Chao Yu29b96b52016-02-06 14:38:29 +0800276 inode_dec_dirty_pages(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800277
278 fio.page = page;
Chao Yu29b96b52016-02-06 14:38:29 +0800279 err = do_write_data_page(&fio);
280 if (err) {
Chao Yu28bc1062016-02-06 14:40:34 +0800281 unlock_page(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800282 break;
283 }
Chao Yu28bc1062016-02-06 14:40:34 +0800284
285 /* record old blkaddr for revoking */
286 cur->old_addr = fio.old_blkaddr;
287
288 clear_cold_data(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800289 submit_bio = true;
290 }
Chao Yu28bc1062016-02-06 14:40:34 +0800291 unlock_page(page);
292 list_move_tail(&cur->list, revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800293 }
294
295 if (submit_bio)
296 f2fs_submit_merged_bio_cond(sbi, inode, NULL, 0, DATA, WRITE);
Chao Yu28bc1062016-02-06 14:40:34 +0800297
298 if (!err)
299 __revoke_inmem_pages(inode, revoke_list, false, false);
300
Chao Yu29b96b52016-02-06 14:38:29 +0800301 return err;
302}
303
304int commit_inmem_pages(struct inode *inode)
305{
306 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
307 struct f2fs_inode_info *fi = F2FS_I(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800308 struct list_head revoke_list;
309 int err;
Chao Yu29b96b52016-02-06 14:38:29 +0800310
Chao Yu28bc1062016-02-06 14:40:34 +0800311 INIT_LIST_HEAD(&revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800312 f2fs_balance_fs(sbi, true);
313 f2fs_lock_op(sbi);
314
315 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800316 err = __commit_inmem_pages(inode, &revoke_list);
317 if (err) {
318 int ret;
319 /*
320 * try to revoke all committed pages, but still we could fail
321 * due to no memory or other reason, if that happened, EAGAIN
322 * will be returned, which means in such case, transaction is
323 * already not integrity, caller should use journal to do the
324 * recovery or rewrite & commit last transaction. For other
325 * error number, revoking was done by filesystem itself.
326 */
327 ret = __revoke_inmem_pages(inode, &revoke_list, false, true);
328 if (ret)
329 err = ret;
330
331 /* drop all uncommitted pages */
332 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
333 }
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700334 mutex_unlock(&fi->inmem_lock);
335
Chao Yu29b96b52016-02-06 14:38:29 +0800336 f2fs_unlock_op(sbi);
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700337 return err;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700338}
339
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900340/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900341 * This function balances dirty node and dentry pages.
342 * In addition, it controls garbage collection.
343 */
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800344void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900345{
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800346 if (!need)
347 return;
Jaegeuk Kime589c2c2016-06-02 15:24:24 -0700348
349 /* balance_fs_bg is able to be pending */
350 if (excess_cached_nats(sbi))
351 f2fs_balance_fs_bg(sbi);
352
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900353 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900354 * We should do GC or end up with checkpoint, if there are so many dirty
355 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900356 */
Jaegeuk Kim43727522013-02-04 15:11:17 +0900357 if (has_not_enough_free_secs(sbi, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900358 mutex_lock(&sbi->gc_mutex);
Chao Yud530d4d2015-10-05 22:22:44 +0800359 f2fs_gc(sbi, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900360 }
361}
362
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900363void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
364{
Chao Yu1dcc3362015-02-05 17:57:31 +0800365 /* try to shrink extent cache when there is no enough memory */
Jaegeuk Kim554df792015-06-19 13:41:23 -0700366 if (!available_free_memory(sbi, EXTENT_CACHE))
367 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800368
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700369 /* check the # of cached NAT entries */
370 if (!available_free_memory(sbi, NAT_ENTRIES))
371 try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
372
Chao Yu31696582015-07-28 18:33:46 +0800373 if (!available_free_memory(sbi, FREE_NIDS))
Jaegeuk Kimad4edb82016-06-16 16:41:49 -0700374 try_to_free_nids(sbi, MAX_FREE_NIDS);
375 else
376 build_free_nids(sbi);
Chao Yu31696582015-07-28 18:33:46 +0800377
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700378 /* checkpoint is the only way to shrink partial cached entries */
379 if (!available_free_memory(sbi, NAT_ENTRIES) ||
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700380 !available_free_memory(sbi, INO_ENTRIES) ||
Chao Yu7d768d22016-01-18 18:31:18 +0800381 excess_prefree_segs(sbi) ||
382 excess_dirty_nats(sbi) ||
Jaegeuk Kimd0239e12016-01-08 16:57:48 -0800383 (is_idle(sbi) && f2fs_time_over(sbi, CP_TIME))) {
Jaegeuk Kim19a5f5e2016-06-04 14:25:24 -0700384 if (test_opt(sbi, DATA_FLUSH))
Chao Yu36b35a02015-12-17 17:13:28 +0800385 sync_dirty_inodes(sbi, FILE_INODE);
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900386 f2fs_sync_fs(sbi->sb, true);
Jaegeuk Kim42190d22016-01-09 13:45:17 -0800387 stat_inc_bg_cp_count(sbi->stat_info);
Chao Yu36b35a02015-12-17 17:13:28 +0800388 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900389}
390
Gu Zheng2163d192014-04-27 14:21:33 +0800391static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900392{
393 struct f2fs_sb_info *sbi = data;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800394 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
395 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900396repeat:
397 if (kthread_should_stop())
398 return 0;
399
Gu Zheng721bd4d2014-09-05 18:31:00 +0800400 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700401 struct bio *bio;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900402 struct flush_cmd *cmd, *next;
403 int ret;
404
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700405 bio = f2fs_bio_alloc(0);
406
Gu Zheng721bd4d2014-09-05 18:31:00 +0800407 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
408 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
409
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900410 bio->bi_bdev = sbi->sb->s_bdev;
411 ret = submit_bio_wait(WRITE_FLUSH, bio);
412
Gu Zheng721bd4d2014-09-05 18:31:00 +0800413 llist_for_each_entry_safe(cmd, next,
414 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900415 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900416 complete(&cmd->wait);
417 }
Gu Zhenga4ed23f2014-04-11 17:49:35 +0800418 bio_put(bio);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800419 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900420 }
421
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800422 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800423 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900424 goto repeat;
425}
426
427int f2fs_issue_flush(struct f2fs_sb_info *sbi)
428{
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800429 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800430 struct flush_cmd cmd;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900431
Jaegeuk Kim24a9ee02014-07-25 17:46:10 -0700432 trace_f2fs_issue_flush(sbi->sb, test_opt(sbi, NOBARRIER),
433 test_opt(sbi, FLUSH_MERGE));
434
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700435 if (test_opt(sbi, NOBARRIER))
436 return 0;
437
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700438 if (!test_opt(sbi, FLUSH_MERGE) || !atomic_read(&fcc->submit_flush)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700439 struct bio *bio = f2fs_bio_alloc(0);
440 int ret;
441
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700442 atomic_inc(&fcc->submit_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700443 bio->bi_bdev = sbi->sb->s_bdev;
444 ret = submit_bio_wait(WRITE_FLUSH, bio);
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700445 atomic_dec(&fcc->submit_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700446 bio_put(bio);
447 return ret;
448 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900449
Chao Yuadf8d902014-05-08 17:00:35 +0800450 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900451
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700452 atomic_inc(&fcc->submit_flush);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800453 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900454
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800455 if (!fcc->dispatch_list)
456 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900457
Chao Yuadf8d902014-05-08 17:00:35 +0800458 wait_for_completion(&cmd.wait);
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700459 atomic_dec(&fcc->submit_flush);
Chao Yuadf8d902014-05-08 17:00:35 +0800460
461 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900462}
463
Gu Zheng2163d192014-04-27 14:21:33 +0800464int create_flush_cmd_control(struct f2fs_sb_info *sbi)
465{
466 dev_t dev = sbi->sb->s_bdev->bd_dev;
467 struct flush_cmd_control *fcc;
468 int err = 0;
469
470 fcc = kzalloc(sizeof(struct flush_cmd_control), GFP_KERNEL);
471 if (!fcc)
472 return -ENOMEM;
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700473 atomic_set(&fcc->submit_flush, 0);
Gu Zheng2163d192014-04-27 14:21:33 +0800474 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800475 init_llist_head(&fcc->issue_list);
Chao Yu6b2920a2014-07-07 11:21:59 +0800476 SM_I(sbi)->cmd_control_info = fcc;
Gu Zheng2163d192014-04-27 14:21:33 +0800477 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
478 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
479 if (IS_ERR(fcc->f2fs_issue_flush)) {
480 err = PTR_ERR(fcc->f2fs_issue_flush);
481 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800482 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800483 return err;
484 }
Gu Zheng2163d192014-04-27 14:21:33 +0800485
486 return err;
487}
488
489void destroy_flush_cmd_control(struct f2fs_sb_info *sbi)
490{
Chao Yu6b2920a2014-07-07 11:21:59 +0800491 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800492
493 if (fcc && fcc->f2fs_issue_flush)
494 kthread_stop(fcc->f2fs_issue_flush);
495 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800496 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800497}
498
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900499static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
500 enum dirty_type dirty_type)
501{
502 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
503
504 /* need not be added */
505 if (IS_CURSEG(sbi, segno))
506 return;
507
508 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
509 dirty_i->nr_dirty[dirty_type]++;
510
511 if (dirty_type == DIRTY) {
512 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900513 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900514
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700515 if (unlikely(t >= DIRTY)) {
516 f2fs_bug_on(sbi, 1);
517 return;
518 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900519 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
520 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900521 }
522}
523
524static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
525 enum dirty_type dirty_type)
526{
527 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
528
529 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
530 dirty_i->nr_dirty[dirty_type]--;
531
532 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900533 struct seg_entry *sentry = get_seg_entry(sbi, segno);
534 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900535
Changman Lee4625d6a2013-10-25 17:31:57 +0900536 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
537 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900538
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900539 if (get_valid_blocks(sbi, segno, sbi->segs_per_sec) == 0)
540 clear_bit(GET_SECNO(sbi, segno),
541 dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900542 }
543}
544
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900545/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900546 * Should not occur error such as -ENOMEM.
547 * Adding dirty entry into seglist is not critical operation.
548 * If a given segment is one of current working segments, it won't be added.
549 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800550static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900551{
552 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
553 unsigned short valid_blocks;
554
555 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
556 return;
557
558 mutex_lock(&dirty_i->seglist_lock);
559
560 valid_blocks = get_valid_blocks(sbi, segno, 0);
561
562 if (valid_blocks == 0) {
563 __locate_dirty_segment(sbi, segno, PRE);
564 __remove_dirty_segment(sbi, segno, DIRTY);
565 } else if (valid_blocks < sbi->blocks_per_seg) {
566 __locate_dirty_segment(sbi, segno, DIRTY);
567 } else {
568 /* Recovery routine with SSR needs this */
569 __remove_dirty_segment(sbi, segno, DIRTY);
570 }
571
572 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900573}
574
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900575static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +0900576 block_t blkstart, block_t blklen)
577{
Chao Yu55cf9cb2014-09-15 18:01:10 +0800578 sector_t start = SECTOR_FROM_BLOCK(blkstart);
579 sector_t len = SECTOR_FROM_BLOCK(blklen);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700580 struct seg_entry *se;
581 unsigned int offset;
582 block_t i;
583
584 for (i = blkstart; i < blkstart + blklen; i++) {
585 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
586 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
587
588 if (!f2fs_test_and_set_bit(offset, se->discard_map))
589 sbi->discard_blks--;
590 }
Jaegeuk Kim1661d072013-11-12 17:01:00 +0900591 trace_f2fs_issue_discard(sbi->sb, blkstart, blklen);
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900592 return blkdev_issue_discard(sbi->sb->s_bdev, start, len, GFP_NOFS, 0);
593}
594
Chao Yue90c2d22015-07-28 18:36:47 +0800595bool discard_next_dnode(struct f2fs_sb_info *sbi, block_t blkaddr)
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900596{
Jaegeuk Kim60b286c2016-02-09 10:24:31 -0800597 int err = -EOPNOTSUPP;
Jaegeuk Kim40a02be2015-05-11 20:03:49 -0700598
599 if (test_opt(sbi, DISCARD)) {
600 struct seg_entry *se = get_seg_entry(sbi,
601 GET_SEGNO(sbi, blkaddr));
602 unsigned int offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
603
604 if (f2fs_test_bit(offset, se->discard_map))
Chao Yue90c2d22015-07-28 18:36:47 +0800605 return false;
Jaegeuk Kim40a02be2015-05-11 20:03:49 -0700606
607 err = f2fs_issue_discard(sbi, blkaddr, 1);
608 }
609
Chao Yue90c2d22015-07-28 18:36:47 +0800610 if (err) {
Chao Yu381722d2015-05-19 17:40:04 +0800611 update_meta_page(sbi, NULL, blkaddr);
Chao Yue90c2d22015-07-28 18:36:47 +0800612 return true;
613 }
614 return false;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900615}
616
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700617static void __add_discard_entry(struct f2fs_sb_info *sbi,
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700618 struct cp_control *cpc, struct seg_entry *se,
619 unsigned int start, unsigned int end)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900620{
621 struct list_head *head = &SM_I(sbi)->discard_list;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700622 struct discard_entry *new, *last;
623
624 if (!list_empty(head)) {
625 last = list_last_entry(head, struct discard_entry, list);
626 if (START_BLOCK(sbi, cpc->trim_start) + start ==
627 last->blkaddr + last->len) {
628 last->len += end - start;
629 goto done;
630 }
631 }
632
633 new = f2fs_kmem_cache_alloc(discard_entry_slab, GFP_NOFS);
634 INIT_LIST_HEAD(&new->list);
635 new->blkaddr = START_BLOCK(sbi, cpc->trim_start) + start;
636 new->len = end - start;
637 list_add_tail(&new->list, head);
638done:
639 SM_I(sbi)->nr_discards += end - start;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700640}
641
642static void add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc)
643{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900644 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
645 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700646 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900647 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
648 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700649 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800650 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900651 unsigned int start = 0, end = -1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700652 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900653 int i;
654
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700655 if (se->valid_blocks == max_blocks)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900656 return;
657
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700658 if (!force) {
659 if (!test_opt(sbi, DISCARD) || !se->valid_blocks ||
Dan Carpenter912a83b2015-05-14 11:52:28 +0300660 SM_I(sbi)->nr_discards >= SM_I(sbi)->max_discards)
661 return;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700662 }
663
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900664 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
665 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700666 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -0800667 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900668
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700669 while (force || SM_I(sbi)->nr_discards <= SM_I(sbi)->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900670 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
671 if (start >= max_blocks)
672 break;
673
674 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700675 __add_discard_entry(sbi, cpc, se, start, end);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900676 }
677}
678
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700679void release_discard_addrs(struct f2fs_sb_info *sbi)
680{
681 struct list_head *head = &(SM_I(sbi)->discard_list);
682 struct discard_entry *entry, *this;
683
684 /* drop caches */
685 list_for_each_entry_safe(entry, this, head, list) {
686 list_del(&entry->list);
687 kmem_cache_free(discard_entry_slab, entry);
688 }
689}
690
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900691/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900692 * Should call clear_prefree_segments after checkpoint is done.
693 */
694static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
695{
696 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +0800697 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900698
699 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700700 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900701 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900702 mutex_unlock(&dirty_i->seglist_lock);
703}
704
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700705void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900706{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900707 struct list_head *head = &(SM_I(sbi)->discard_list);
Chao Yu2d7b8222014-03-29 11:33:17 +0800708 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900709 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Changman Lee29e59c12013-11-11 09:24:37 +0900710 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +0900711 unsigned int start = 0, end = -1;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700712 unsigned int secno, start_segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900713
714 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900715
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900716 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900717 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700718 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
719 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900720 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700721 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
722 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900723
Changman Lee29e59c12013-11-11 09:24:37 +0900724 for (i = start; i < end; i++)
725 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900726
Changman Lee29e59c12013-11-11 09:24:37 +0900727 dirty_i->nr_dirty[PRE] -= end - start;
728
729 if (!test_opt(sbi, DISCARD))
730 continue;
731
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700732 if (!test_opt(sbi, LFS) || sbi->segs_per_sec == 1) {
733 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
Jaegeuk Kim37208872013-11-12 16:55:17 +0900734 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700735 continue;
736 }
737next:
738 secno = GET_SECNO(sbi, start);
739 start_segno = secno * sbi->segs_per_sec;
740 if (!IS_CURSEC(sbi, secno) &&
741 !get_valid_blocks(sbi, start, sbi->segs_per_sec))
742 f2fs_issue_discard(sbi, START_BLOCK(sbi, start_segno),
743 sbi->segs_per_sec << sbi->log_blocks_per_seg);
744
745 start = start_segno + sbi->segs_per_sec;
746 if (start < end)
747 goto next;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900748 }
749 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900750
751 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800752 list_for_each_entry_safe(entry, this, head, list) {
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700753 if (cpc->reason == CP_DISCARD && entry->len < cpc->trim_minlen)
754 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900755 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700756 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700757skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900758 list_del(&entry->list);
759 SM_I(sbi)->nr_discards -= entry->len;
760 kmem_cache_free(discard_entry_slab, entry);
761 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900762}
763
Chao Yu184a5cd2014-09-04 18:13:01 +0800764static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900765{
766 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800767
768 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900769 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800770 return false;
771 }
772
773 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900774}
775
776static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
777 unsigned int segno, int modified)
778{
779 struct seg_entry *se = get_seg_entry(sbi, segno);
780 se->type = type;
781 if (modified)
782 __mark_sit_entry_dirty(sbi, segno);
783}
784
785static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
786{
787 struct seg_entry *se;
788 unsigned int segno, offset;
789 long int new_vblocks;
790
791 segno = GET_SEGNO(sbi, blkaddr);
792
793 se = get_seg_entry(sbi, segno);
794 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +0900795 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900796
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700797 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900798 (new_vblocks > sbi->blocks_per_seg)));
799
800 se->valid_blocks = new_vblocks;
801 se->mtime = get_mtime(sbi);
802 SIT_I(sbi)->max_mtime = se->mtime;
803
804 /* Update valid block bitmap */
805 if (del > 0) {
Gu Zheng52aca072014-10-20 17:45:51 +0800806 if (f2fs_test_and_set_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700807 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700808 if (!f2fs_test_and_set_bit(offset, se->discard_map))
809 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900810 } else {
Gu Zheng52aca072014-10-20 17:45:51 +0800811 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700812 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700813 if (f2fs_test_and_clear_bit(offset, se->discard_map))
814 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900815 }
816 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
817 se->ckpt_valid_blocks += del;
818
819 __mark_sit_entry_dirty(sbi, segno);
820
821 /* update total number of valid blocks to be written in ckpt area */
822 SIT_I(sbi)->written_valid_blocks += del;
823
824 if (sbi->segs_per_sec > 1)
825 get_sec_entry(sbi, segno)->valid_blocks += del;
826}
827
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900828void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900829{
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900830 update_sit_entry(sbi, new, 1);
831 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
832 update_sit_entry(sbi, old, -1);
833
834 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
835 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900836}
837
838void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
839{
840 unsigned int segno = GET_SEGNO(sbi, addr);
841 struct sit_info *sit_i = SIT_I(sbi);
842
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700843 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900844 if (addr == NEW_ADDR)
845 return;
846
847 /* add it into sit main buffer */
848 mutex_lock(&sit_i->sentry_lock);
849
850 update_sit_entry(sbi, addr, -1);
851
852 /* add it into dirty seglist */
853 locate_dirty_segment(sbi, segno);
854
855 mutex_unlock(&sit_i->sentry_lock);
856}
857
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -0700858bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
859{
860 struct sit_info *sit_i = SIT_I(sbi);
861 unsigned int segno, offset;
862 struct seg_entry *se;
863 bool is_cp = false;
864
865 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
866 return true;
867
868 mutex_lock(&sit_i->sentry_lock);
869
870 segno = GET_SEGNO(sbi, blkaddr);
871 se = get_seg_entry(sbi, segno);
872 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
873
874 if (f2fs_test_bit(offset, se->ckpt_valid_map))
875 is_cp = true;
876
877 mutex_unlock(&sit_i->sentry_lock);
878
879 return is_cp;
880}
881
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900882/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900883 * This function should be resided under the curseg_mutex lock
884 */
885static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +0800886 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900887{
888 struct curseg_info *curseg = CURSEG_I(sbi, type);
889 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +0800890 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900891 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900892}
893
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900894/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900895 * Calculate the number of current summary pages for writing
896 */
Chao Yu3fa06d72014-12-09 14:21:46 +0800897int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900898{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900899 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +0800900 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900901
902 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
903 if (sbi->ckpt->alloc_type[i] == SSR)
904 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +0800905 else {
906 if (for_ra)
907 valid_sum_count += le16_to_cpu(
908 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
909 else
910 valid_sum_count += curseg_blkoff(sbi, i);
911 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900912 }
913
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300914 sum_in_page = (PAGE_SIZE - 2 * SUM_JOURNAL_SIZE -
Fan Li9a479382013-10-29 16:21:47 +0800915 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
916 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900917 return 1;
Fan Li9a479382013-10-29 16:21:47 +0800918 else if ((valid_sum_count - sum_in_page) <=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300919 (PAGE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900920 return 2;
921 return 3;
922}
923
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900924/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900925 * Caller should put this summary page
926 */
927struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
928{
929 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
930}
931
Chao Yu381722d2015-05-19 17:40:04 +0800932void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
933{
934 struct page *page = grab_meta_page(sbi, blk_addr);
935 void *dst = page_address(page);
936
937 if (src)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300938 memcpy(dst, src, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +0800939 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300940 memset(dst, 0, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +0800941 set_page_dirty(page);
942 f2fs_put_page(page, 1);
943}
944
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900945static void write_sum_page(struct f2fs_sb_info *sbi,
946 struct f2fs_summary_block *sum_blk, block_t blk_addr)
947{
Chao Yu381722d2015-05-19 17:40:04 +0800948 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900949}
950
Chao Yub7ad7512016-02-19 18:08:46 +0800951static void write_current_sum_page(struct f2fs_sb_info *sbi,
952 int type, block_t blk_addr)
953{
954 struct curseg_info *curseg = CURSEG_I(sbi, type);
955 struct page *page = grab_meta_page(sbi, blk_addr);
956 struct f2fs_summary_block *src = curseg->sum_blk;
957 struct f2fs_summary_block *dst;
958
959 dst = (struct f2fs_summary_block *)page_address(page);
960
961 mutex_lock(&curseg->curseg_mutex);
962
963 down_read(&curseg->journal_rwsem);
964 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE);
965 up_read(&curseg->journal_rwsem);
966
967 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE);
968 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE);
969
970 mutex_unlock(&curseg->curseg_mutex);
971
972 set_page_dirty(page);
973 f2fs_put_page(page, 1);
974}
975
Jaegeuk Kim60374682013-03-31 13:58:51 +0900976static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
977{
978 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +0800979 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +0900980 struct free_segmap_info *free_i = FREE_I(sbi);
981
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700982 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +0800983 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +0900984 return 0;
985}
986
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900987/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900988 * Find a new segment from the free segments bitmap to right order
989 * This function should be returned with success, otherwise BUG
990 */
991static void get_new_segment(struct f2fs_sb_info *sbi,
992 unsigned int *newseg, bool new_sec, int dir)
993{
994 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900995 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700996 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900997 unsigned int hint = *newseg / sbi->segs_per_sec;
998 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
999 unsigned int left_start = hint;
1000 bool init = true;
1001 int go_left = 0;
1002 int i;
1003
Chao Yu1a118cc2015-02-11 18:20:38 +08001004 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001005
1006 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
1007 segno = find_next_zero_bit(free_i->free_segmap,
Chao Yu0ab14352016-01-22 17:42:06 +08001008 (hint + 1) * sbi->segs_per_sec, *newseg + 1);
1009 if (segno < (hint + 1) * sbi->segs_per_sec)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001010 goto got_it;
1011 }
1012find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001013 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
1014 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001015 if (dir == ALLOC_RIGHT) {
1016 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001017 MAIN_SECS(sbi), 0);
1018 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001019 } else {
1020 go_left = 1;
1021 left_start = hint - 1;
1022 }
1023 }
1024 if (go_left == 0)
1025 goto skip_left;
1026
1027 while (test_bit(left_start, free_i->free_secmap)) {
1028 if (left_start > 0) {
1029 left_start--;
1030 continue;
1031 }
1032 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001033 MAIN_SECS(sbi), 0);
1034 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001035 break;
1036 }
1037 secno = left_start;
1038skip_left:
1039 hint = secno;
1040 segno = secno * sbi->segs_per_sec;
1041 zoneno = secno / sbi->secs_per_zone;
1042
1043 /* give up on finding another zone */
1044 if (!init)
1045 goto got_it;
1046 if (sbi->secs_per_zone == 1)
1047 goto got_it;
1048 if (zoneno == old_zoneno)
1049 goto got_it;
1050 if (dir == ALLOC_LEFT) {
1051 if (!go_left && zoneno + 1 >= total_zones)
1052 goto got_it;
1053 if (go_left && zoneno == 0)
1054 goto got_it;
1055 }
1056 for (i = 0; i < NR_CURSEG_TYPE; i++)
1057 if (CURSEG_I(sbi, i)->zone == zoneno)
1058 break;
1059
1060 if (i < NR_CURSEG_TYPE) {
1061 /* zone is in user, try another */
1062 if (go_left)
1063 hint = zoneno * sbi->secs_per_zone - 1;
1064 else if (zoneno + 1 >= total_zones)
1065 hint = 0;
1066 else
1067 hint = (zoneno + 1) * sbi->secs_per_zone;
1068 init = false;
1069 goto find_other_zone;
1070 }
1071got_it:
1072 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001073 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001074 __set_inuse(sbi, segno);
1075 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08001076 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001077}
1078
1079static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
1080{
1081 struct curseg_info *curseg = CURSEG_I(sbi, type);
1082 struct summary_footer *sum_footer;
1083
1084 curseg->segno = curseg->next_segno;
1085 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
1086 curseg->next_blkoff = 0;
1087 curseg->next_segno = NULL_SEGNO;
1088
1089 sum_footer = &(curseg->sum_blk->footer);
1090 memset(sum_footer, 0, sizeof(struct summary_footer));
1091 if (IS_DATASEG(type))
1092 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
1093 if (IS_NODESEG(type))
1094 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
1095 __set_sit_entry_type(sbi, type, curseg->segno, modified);
1096}
1097
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001098/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001099 * Allocate a current working segment.
1100 * This function always allocates a free segment in LFS manner.
1101 */
1102static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
1103{
1104 struct curseg_info *curseg = CURSEG_I(sbi, type);
1105 unsigned int segno = curseg->segno;
1106 int dir = ALLOC_LEFT;
1107
1108 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08001109 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001110 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
1111 dir = ALLOC_RIGHT;
1112
1113 if (test_opt(sbi, NOHEAP))
1114 dir = ALLOC_RIGHT;
1115
1116 get_new_segment(sbi, &segno, new_sec, dir);
1117 curseg->next_segno = segno;
1118 reset_curseg(sbi, type, 1);
1119 curseg->alloc_type = LFS;
1120}
1121
1122static void __next_free_blkoff(struct f2fs_sb_info *sbi,
1123 struct curseg_info *seg, block_t start)
1124{
1125 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09001126 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001127 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09001128 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
1129 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1130 int i, pos;
1131
1132 for (i = 0; i < entries; i++)
1133 target_map[i] = ckpt_map[i] | cur_map[i];
1134
1135 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1136
1137 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001138}
1139
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001140/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001141 * If a segment is written by LFS manner, next block offset is just obtained
1142 * by increasing the current block offset. However, if a segment is written by
1143 * SSR manner, next block offset obtained by calling __next_free_blkoff
1144 */
1145static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1146 struct curseg_info *seg)
1147{
1148 if (seg->alloc_type == SSR)
1149 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1150 else
1151 seg->next_blkoff++;
1152}
1153
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001154/*
arter97e1c42042014-08-06 23:22:50 +09001155 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001156 * manner, so it should recover the existing segment information of valid blocks
1157 */
1158static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1159{
1160 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1161 struct curseg_info *curseg = CURSEG_I(sbi, type);
1162 unsigned int new_segno = curseg->next_segno;
1163 struct f2fs_summary_block *sum_node;
1164 struct page *sum_page;
1165
1166 write_sum_page(sbi, curseg->sum_blk,
1167 GET_SUM_BLOCK(sbi, curseg->segno));
1168 __set_test_and_inuse(sbi, new_segno);
1169
1170 mutex_lock(&dirty_i->seglist_lock);
1171 __remove_dirty_segment(sbi, new_segno, PRE);
1172 __remove_dirty_segment(sbi, new_segno, DIRTY);
1173 mutex_unlock(&dirty_i->seglist_lock);
1174
1175 reset_curseg(sbi, type, 1);
1176 curseg->alloc_type = SSR;
1177 __next_free_blkoff(sbi, curseg, 0);
1178
1179 if (reuse) {
1180 sum_page = get_sum_page(sbi, new_segno);
1181 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1182 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1183 f2fs_put_page(sum_page, 1);
1184 }
1185}
1186
Jaegeuk Kim43727522013-02-04 15:11:17 +09001187static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1188{
1189 struct curseg_info *curseg = CURSEG_I(sbi, type);
1190 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1191
1192 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0))
1193 return v_ops->get_victim(sbi,
1194 &(curseg)->next_segno, BG_GC, type, SSR);
1195
1196 /* For data segments, let's do SSR more intensively */
1197 for (; type >= CURSEG_HOT_DATA; type--)
1198 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1199 BG_GC, type, SSR))
1200 return 1;
1201 return 0;
1202}
1203
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001204/*
1205 * flush out current segment and replace it with new segment
1206 * This function should be returned with success, otherwise BUG
1207 */
1208static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1209 int type, bool force)
1210{
1211 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001212
Gu Zheng7b405272013-08-19 09:41:15 +08001213 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001214 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001215 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001216 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001217 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1218 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001219 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1220 change_curseg(sbi, type, true);
1221 else
1222 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001223
1224 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001225}
1226
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001227static void __allocate_new_segments(struct f2fs_sb_info *sbi, int type)
1228{
1229 struct curseg_info *curseg = CURSEG_I(sbi, type);
1230 unsigned int old_segno;
1231
1232 old_segno = curseg->segno;
1233 SIT_I(sbi)->s_ops->allocate_segment(sbi, type, true);
1234 locate_dirty_segment(sbi, old_segno);
1235}
1236
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001237void allocate_new_segments(struct f2fs_sb_info *sbi)
1238{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001239 int i;
1240
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001241 if (test_opt(sbi, LFS))
1242 return;
1243
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001244 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++)
1245 __allocate_new_segments(sbi, i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001246}
1247
1248static const struct segment_allocation default_salloc_ops = {
1249 .allocate_segment = allocate_segment_by_default,
1250};
1251
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001252int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1253{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001254 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1255 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001256 unsigned int start_segno, end_segno;
1257 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001258 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001259
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001260 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001261 return -EINVAL;
1262
Jan Kara9bd27ae2014-10-21 14:07:33 +02001263 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001264 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001265 goto out;
1266
1267 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001268 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1269 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1270 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001271 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001272 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001273
1274 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001275 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1276 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001277
1278 if (sbi->discard_blks == 0)
1279 break;
1280 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1281 cpc.trim_end = end_segno;
1282 else
1283 cpc.trim_end = min_t(unsigned int,
1284 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001285 BATCHED_TRIM_SEGMENTS(sbi),
1286 sbi->segs_per_sec) - 1, end_segno);
1287
1288 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001289 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001290 mutex_unlock(&sbi->gc_mutex);
1291 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001292out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001293 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001294 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001295}
1296
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001297static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1298{
1299 struct curseg_info *curseg = CURSEG_I(sbi, type);
1300 if (curseg->next_blkoff < sbi->blocks_per_seg)
1301 return true;
1302 return false;
1303}
1304
1305static int __get_segment_type_2(struct page *page, enum page_type p_type)
1306{
1307 if (p_type == DATA)
1308 return CURSEG_HOT_DATA;
1309 else
1310 return CURSEG_HOT_NODE;
1311}
1312
1313static int __get_segment_type_4(struct page *page, enum page_type p_type)
1314{
1315 if (p_type == DATA) {
1316 struct inode *inode = page->mapping->host;
1317
1318 if (S_ISDIR(inode->i_mode))
1319 return CURSEG_HOT_DATA;
1320 else
1321 return CURSEG_COLD_DATA;
1322 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001323 if (IS_DNODE(page) && is_cold_node(page))
1324 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001325 else
1326 return CURSEG_COLD_NODE;
1327 }
1328}
1329
1330static int __get_segment_type_6(struct page *page, enum page_type p_type)
1331{
1332 if (p_type == DATA) {
1333 struct inode *inode = page->mapping->host;
1334
1335 if (S_ISDIR(inode->i_mode))
1336 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001337 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001338 return CURSEG_COLD_DATA;
1339 else
1340 return CURSEG_WARM_DATA;
1341 } else {
1342 if (IS_DNODE(page))
1343 return is_cold_node(page) ? CURSEG_WARM_NODE :
1344 CURSEG_HOT_NODE;
1345 else
1346 return CURSEG_COLD_NODE;
1347 }
1348}
1349
1350static int __get_segment_type(struct page *page, enum page_type p_type)
1351{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001352 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001353 case 2:
1354 return __get_segment_type_2(page, p_type);
1355 case 4:
1356 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001357 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001358 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001359 f2fs_bug_on(F2FS_P_SB(page),
1360 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001361 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001362}
1363
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001364void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1365 block_t old_blkaddr, block_t *new_blkaddr,
1366 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001367{
1368 struct sit_info *sit_i = SIT_I(sbi);
1369 struct curseg_info *curseg;
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001370 bool direct_io = (type == CURSEG_DIRECT_IO);
1371
1372 type = direct_io ? CURSEG_WARM_DATA : type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001373
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001374 curseg = CURSEG_I(sbi, type);
1375
1376 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001377 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001378
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001379 /* direct_io'ed data is aligned to the segment for better performance */
Jaegeuk Kim47e70ca2015-08-11 10:17:27 -07001380 if (direct_io && curseg->next_blkoff &&
1381 !has_not_enough_free_secs(sbi, 0))
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001382 __allocate_new_segments(sbi, type);
1383
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001384 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001385
1386 /*
1387 * __add_sum_entry should be resided under the curseg_mutex
1388 * because, this function updates a summary entry in the
1389 * current summary block.
1390 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001391 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001392
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001393 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001394
1395 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001396
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001397 if (!__has_curseg_space(sbi, type))
1398 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001399 /*
1400 * SIT information should be updated before segment allocation,
1401 * since SSR needs latest valid block information.
1402 */
1403 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001404
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001405 mutex_unlock(&sit_i->sentry_lock);
1406
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001407 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001408 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1409
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001410 mutex_unlock(&curseg->curseg_mutex);
1411}
1412
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001413static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001414{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001415 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001416
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001417 if (fio->type == NODE || fio->type == DATA)
1418 mutex_lock(&fio->sbi->wio_mutex[fio->type]);
1419
Chao Yu7a9d7542016-02-22 18:36:38 +08001420 allocate_data_block(fio->sbi, fio->page, fio->old_blkaddr,
1421 &fio->new_blkaddr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001422
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001423 /* writeout dirty page into bdev */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001424 f2fs_submit_page_mbio(fio);
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001425
1426 if (fio->type == NODE || fio->type == DATA)
1427 mutex_unlock(&fio->sbi->wio_mutex[fio->type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001428}
1429
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001430void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001431{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001432 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001433 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001434 .type = META,
Jaegeuk Kimcf04e8e2014-12-17 19:33:13 -08001435 .rw = WRITE_SYNC | REQ_META | REQ_PRIO,
Chao Yu7a9d7542016-02-22 18:36:38 +08001436 .old_blkaddr = page->index,
1437 .new_blkaddr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001438 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001439 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001440 };
1441
Chao Yu2b947002015-10-12 17:04:21 +08001442 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
1443 fio.rw &= ~REQ_META;
1444
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001445 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001446 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001447}
1448
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001449void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001450{
1451 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001452
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001453 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001454 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001455}
1456
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001457void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001458{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001459 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001460 struct f2fs_summary sum;
1461 struct node_info ni;
1462
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001463 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001464 get_node_info(sbi, dn->nid, &ni);
1465 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001466 do_write_page(&sum, fio);
Chao Yuf28b3432016-02-24 17:16:47 +08001467 f2fs_update_data_blkaddr(dn, fio->new_blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001468}
1469
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001470void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001471{
Chao Yu7a9d7542016-02-22 18:36:38 +08001472 fio->new_blkaddr = fio->old_blkaddr;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001473 stat_inc_inplace_blocks(fio->sbi);
1474 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001475}
1476
Chao Yu4356e482016-02-23 17:52:43 +08001477void __f2fs_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001478 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08001479 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001480{
1481 struct sit_info *sit_i = SIT_I(sbi);
1482 struct curseg_info *curseg;
1483 unsigned int segno, old_cursegno;
1484 struct seg_entry *se;
1485 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001486 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001487
1488 segno = GET_SEGNO(sbi, new_blkaddr);
1489 se = get_seg_entry(sbi, segno);
1490 type = se->type;
1491
Chao Yu19f106b2015-05-06 13:08:06 +08001492 if (!recover_curseg) {
1493 /* for recovery flow */
1494 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1495 if (old_blkaddr == NULL_ADDR)
1496 type = CURSEG_COLD_DATA;
1497 else
1498 type = CURSEG_WARM_DATA;
1499 }
1500 } else {
1501 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001502 type = CURSEG_WARM_DATA;
1503 }
Chao Yu19f106b2015-05-06 13:08:06 +08001504
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001505 curseg = CURSEG_I(sbi, type);
1506
1507 mutex_lock(&curseg->curseg_mutex);
1508 mutex_lock(&sit_i->sentry_lock);
1509
1510 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001511 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001512
1513 /* change the current segment */
1514 if (segno != curseg->segno) {
1515 curseg->next_segno = segno;
1516 change_curseg(sbi, type, true);
1517 }
1518
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001519 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001520 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001521
Chao Yu28bc1062016-02-06 14:40:34 +08001522 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001523 update_sit_entry(sbi, new_blkaddr, 1);
1524 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1525 update_sit_entry(sbi, old_blkaddr, -1);
1526
1527 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1528 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1529
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001530 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001531
Chao Yu19f106b2015-05-06 13:08:06 +08001532 if (recover_curseg) {
1533 if (old_cursegno != curseg->segno) {
1534 curseg->next_segno = old_cursegno;
1535 change_curseg(sbi, type, true);
1536 }
1537 curseg->next_blkoff = old_blkoff;
1538 }
1539
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001540 mutex_unlock(&sit_i->sentry_lock);
1541 mutex_unlock(&curseg->curseg_mutex);
1542}
1543
Chao Yu528e3452015-05-28 19:15:35 +08001544void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1545 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08001546 unsigned char version, bool recover_curseg,
1547 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08001548{
1549 struct f2fs_summary sum;
1550
1551 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1552
Chao Yu28bc1062016-02-06 14:40:34 +08001553 __f2fs_replace_block(sbi, &sum, old_addr, new_addr,
1554 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08001555
Chao Yuf28b3432016-02-24 17:16:47 +08001556 f2fs_update_data_blkaddr(dn, new_addr);
Chao Yu528e3452015-05-28 19:15:35 +08001557}
1558
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001559void f2fs_wait_on_page_writeback(struct page *page,
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001560 enum page_type type, bool ordered)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001561{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001562 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001563 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1564
Chao Yu0c3a5792016-01-18 18:28:11 +08001565 f2fs_submit_merged_bio_cond(sbi, NULL, page, 0, type, WRITE);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001566 if (ordered)
1567 wait_on_page_writeback(page);
1568 else
1569 wait_for_stable_page(page);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001570 }
1571}
1572
Chao Yu08b39fb2015-10-08 13:27:34 +08001573void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1574 block_t blkaddr)
1575{
1576 struct page *cpage;
1577
1578 if (blkaddr == NEW_ADDR)
1579 return;
1580
1581 f2fs_bug_on(sbi, blkaddr == NULL_ADDR);
1582
1583 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1584 if (cpage) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001585 f2fs_wait_on_page_writeback(cpage, DATA, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08001586 f2fs_put_page(cpage, 1);
1587 }
1588}
1589
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001590static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1591{
1592 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1593 struct curseg_info *seg_i;
1594 unsigned char *kaddr;
1595 struct page *page;
1596 block_t start;
1597 int i, j, offset;
1598
1599 start = start_sum_block(sbi);
1600
1601 page = get_meta_page(sbi, start++);
1602 kaddr = (unsigned char *)page_address(page);
1603
1604 /* Step 1: restore nat cache */
1605 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001606 memcpy(seg_i->journal, kaddr, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001607
1608 /* Step 2: restore sit cache */
1609 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001610 memcpy(seg_i->journal, kaddr + SUM_JOURNAL_SIZE, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001611 offset = 2 * SUM_JOURNAL_SIZE;
1612
1613 /* Step 3: restore summary entries */
1614 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1615 unsigned short blk_off;
1616 unsigned int segno;
1617
1618 seg_i = CURSEG_I(sbi, i);
1619 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1620 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1621 seg_i->next_segno = segno;
1622 reset_curseg(sbi, i, 0);
1623 seg_i->alloc_type = ckpt->alloc_type[i];
1624 seg_i->next_blkoff = blk_off;
1625
1626 if (seg_i->alloc_type == SSR)
1627 blk_off = sbi->blocks_per_seg;
1628
1629 for (j = 0; j < blk_off; j++) {
1630 struct f2fs_summary *s;
1631 s = (struct f2fs_summary *)(kaddr + offset);
1632 seg_i->sum_blk->entries[j] = *s;
1633 offset += SUMMARY_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001634 if (offset + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001635 SUM_FOOTER_SIZE)
1636 continue;
1637
1638 f2fs_put_page(page, 1);
1639 page = NULL;
1640
1641 page = get_meta_page(sbi, start++);
1642 kaddr = (unsigned char *)page_address(page);
1643 offset = 0;
1644 }
1645 }
1646 f2fs_put_page(page, 1);
1647 return 0;
1648}
1649
1650static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1651{
1652 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1653 struct f2fs_summary_block *sum;
1654 struct curseg_info *curseg;
1655 struct page *new;
1656 unsigned short blk_off;
1657 unsigned int segno = 0;
1658 block_t blk_addr = 0;
1659
1660 /* get segment number and block addr */
1661 if (IS_DATASEG(type)) {
1662 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1663 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1664 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001665 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001666 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1667 else
1668 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1669 } else {
1670 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1671 CURSEG_HOT_NODE]);
1672 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1673 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001674 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001675 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1676 type - CURSEG_HOT_NODE);
1677 else
1678 blk_addr = GET_SUM_BLOCK(sbi, segno);
1679 }
1680
1681 new = get_meta_page(sbi, blk_addr);
1682 sum = (struct f2fs_summary_block *)page_address(new);
1683
1684 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001685 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001686 struct f2fs_summary *ns = &sum->entries[0];
1687 int i;
1688 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1689 ns->version = 0;
1690 ns->ofs_in_node = 0;
1691 }
1692 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001693 int err;
1694
1695 err = restore_node_summary(sbi, segno, sum);
1696 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001697 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001698 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001699 }
1700 }
1701 }
1702
1703 /* set uncompleted segment to curseg */
1704 curseg = CURSEG_I(sbi, type);
1705 mutex_lock(&curseg->curseg_mutex);
Chao Yub7ad7512016-02-19 18:08:46 +08001706
1707 /* update journal info */
1708 down_write(&curseg->journal_rwsem);
1709 memcpy(curseg->journal, &sum->journal, SUM_JOURNAL_SIZE);
1710 up_write(&curseg->journal_rwsem);
1711
1712 memcpy(curseg->sum_blk->entries, sum->entries, SUM_ENTRY_SIZE);
1713 memcpy(&curseg->sum_blk->footer, &sum->footer, SUM_FOOTER_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001714 curseg->next_segno = segno;
1715 reset_curseg(sbi, type, 0);
1716 curseg->alloc_type = ckpt->alloc_type[type];
1717 curseg->next_blkoff = blk_off;
1718 mutex_unlock(&curseg->curseg_mutex);
1719 f2fs_put_page(new, 1);
1720 return 0;
1721}
1722
1723static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1724{
1725 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001726 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001727
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001728 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001729 int npages = npages_for_summary_flush(sbi, true);
1730
1731 if (npages >= 2)
1732 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001733 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001734
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001735 /* restore for compacted data summary */
1736 if (read_compacted_summaries(sbi))
1737 return -EINVAL;
1738 type = CURSEG_HOT_NODE;
1739 }
1740
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001741 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001742 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001743 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001744
Chao Yue4fc5fb2014-03-17 16:36:24 +08001745 for (; type <= CURSEG_COLD_NODE; type++) {
1746 err = read_normal_summaries(sbi, type);
1747 if (err)
1748 return err;
1749 }
1750
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001751 return 0;
1752}
1753
1754static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1755{
1756 struct page *page;
1757 unsigned char *kaddr;
1758 struct f2fs_summary *summary;
1759 struct curseg_info *seg_i;
1760 int written_size = 0;
1761 int i, j;
1762
1763 page = grab_meta_page(sbi, blkaddr++);
1764 kaddr = (unsigned char *)page_address(page);
1765
1766 /* Step 1: write nat cache */
1767 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001768 memcpy(kaddr, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001769 written_size += SUM_JOURNAL_SIZE;
1770
1771 /* Step 2: write sit cache */
1772 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001773 memcpy(kaddr + written_size, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001774 written_size += SUM_JOURNAL_SIZE;
1775
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001776 /* Step 3: write summary entries */
1777 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1778 unsigned short blkoff;
1779 seg_i = CURSEG_I(sbi, i);
1780 if (sbi->ckpt->alloc_type[i] == SSR)
1781 blkoff = sbi->blocks_per_seg;
1782 else
1783 blkoff = curseg_blkoff(sbi, i);
1784
1785 for (j = 0; j < blkoff; j++) {
1786 if (!page) {
1787 page = grab_meta_page(sbi, blkaddr++);
1788 kaddr = (unsigned char *)page_address(page);
1789 written_size = 0;
1790 }
1791 summary = (struct f2fs_summary *)(kaddr + written_size);
1792 *summary = seg_i->sum_blk->entries[j];
1793 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001794
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001795 if (written_size + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001796 SUM_FOOTER_SIZE)
1797 continue;
1798
Chao Yue8d61a72013-10-24 15:08:28 +08001799 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001800 f2fs_put_page(page, 1);
1801 page = NULL;
1802 }
1803 }
Chao Yue8d61a72013-10-24 15:08:28 +08001804 if (page) {
1805 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001806 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08001807 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001808}
1809
1810static void write_normal_summaries(struct f2fs_sb_info *sbi,
1811 block_t blkaddr, int type)
1812{
1813 int i, end;
1814 if (IS_DATASEG(type))
1815 end = type + NR_CURSEG_DATA_TYPE;
1816 else
1817 end = type + NR_CURSEG_NODE_TYPE;
1818
Chao Yub7ad7512016-02-19 18:08:46 +08001819 for (i = type; i < end; i++)
1820 write_current_sum_page(sbi, i, blkaddr + (i - type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001821}
1822
1823void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1824{
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001825 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001826 write_compacted_summaries(sbi, start_blk);
1827 else
1828 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1829}
1830
1831void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1832{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001833 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001834}
1835
Chao Yudfc08a12016-02-14 18:50:40 +08001836int lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001837 unsigned int val, int alloc)
1838{
1839 int i;
1840
1841 if (type == NAT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001842 for (i = 0; i < nats_in_cursum(journal); i++) {
1843 if (le32_to_cpu(nid_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001844 return i;
1845 }
Chao Yudfc08a12016-02-14 18:50:40 +08001846 if (alloc && __has_cursum_space(journal, 1, NAT_JOURNAL))
1847 return update_nats_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001848 } else if (type == SIT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001849 for (i = 0; i < sits_in_cursum(journal); i++)
1850 if (le32_to_cpu(segno_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001851 return i;
Chao Yudfc08a12016-02-14 18:50:40 +08001852 if (alloc && __has_cursum_space(journal, 1, SIT_JOURNAL))
1853 return update_sits_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001854 }
1855 return -1;
1856}
1857
1858static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
1859 unsigned int segno)
1860{
Gu Zheng2cc22182014-10-20 17:45:49 +08001861 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001862}
1863
1864static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
1865 unsigned int start)
1866{
1867 struct sit_info *sit_i = SIT_I(sbi);
1868 struct page *src_page, *dst_page;
1869 pgoff_t src_off, dst_off;
1870 void *src_addr, *dst_addr;
1871
1872 src_off = current_sit_addr(sbi, start);
1873 dst_off = next_sit_addr(sbi, src_off);
1874
1875 /* get current sit block page without lock */
1876 src_page = get_meta_page(sbi, src_off);
1877 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001878 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001879
1880 src_addr = page_address(src_page);
1881 dst_addr = page_address(dst_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001882 memcpy(dst_addr, src_addr, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001883
1884 set_page_dirty(dst_page);
1885 f2fs_put_page(src_page, 1);
1886
1887 set_to_next_sit(sit_i, start);
1888
1889 return dst_page;
1890}
1891
Chao Yu184a5cd2014-09-04 18:13:01 +08001892static struct sit_entry_set *grab_sit_entry_set(void)
1893{
1894 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001895 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08001896
1897 ses->entry_cnt = 0;
1898 INIT_LIST_HEAD(&ses->set_list);
1899 return ses;
1900}
1901
1902static void release_sit_entry_set(struct sit_entry_set *ses)
1903{
1904 list_del(&ses->set_list);
1905 kmem_cache_free(sit_entry_set_slab, ses);
1906}
1907
1908static void adjust_sit_entry_set(struct sit_entry_set *ses,
1909 struct list_head *head)
1910{
1911 struct sit_entry_set *next = ses;
1912
1913 if (list_is_last(&ses->set_list, head))
1914 return;
1915
1916 list_for_each_entry_continue(next, head, set_list)
1917 if (ses->entry_cnt <= next->entry_cnt)
1918 break;
1919
1920 list_move_tail(&ses->set_list, &next->set_list);
1921}
1922
1923static void add_sit_entry(unsigned int segno, struct list_head *head)
1924{
1925 struct sit_entry_set *ses;
1926 unsigned int start_segno = START_SEGNO(segno);
1927
1928 list_for_each_entry(ses, head, set_list) {
1929 if (ses->start_segno == start_segno) {
1930 ses->entry_cnt++;
1931 adjust_sit_entry_set(ses, head);
1932 return;
1933 }
1934 }
1935
1936 ses = grab_sit_entry_set();
1937
1938 ses->start_segno = start_segno;
1939 ses->entry_cnt++;
1940 list_add(&ses->set_list, head);
1941}
1942
1943static void add_sits_in_set(struct f2fs_sb_info *sbi)
1944{
1945 struct f2fs_sm_info *sm_info = SM_I(sbi);
1946 struct list_head *set_list = &sm_info->sit_entry_set;
1947 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08001948 unsigned int segno;
1949
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001950 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08001951 add_sit_entry(segno, set_list);
1952}
1953
1954static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001955{
1956 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001957 struct f2fs_journal *journal = curseg->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001958 int i;
1959
Chao Yub7ad7512016-02-19 18:08:46 +08001960 down_write(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08001961 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yu184a5cd2014-09-04 18:13:01 +08001962 unsigned int segno;
1963 bool dirtied;
1964
Chao Yudfc08a12016-02-14 18:50:40 +08001965 segno = le32_to_cpu(segno_in_journal(journal, i));
Chao Yu184a5cd2014-09-04 18:13:01 +08001966 dirtied = __mark_sit_entry_dirty(sbi, segno);
1967
1968 if (!dirtied)
1969 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001970 }
Chao Yudfc08a12016-02-14 18:50:40 +08001971 update_sits_in_cursum(journal, -i);
Chao Yub7ad7512016-02-19 18:08:46 +08001972 up_write(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001973}
1974
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001975/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001976 * CP calls this function, which flushes SIT entries including sit_journal,
1977 * and moves prefree segs to free segs.
1978 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001979void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001980{
1981 struct sit_info *sit_i = SIT_I(sbi);
1982 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
1983 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001984 struct f2fs_journal *journal = curseg->journal;
Chao Yu184a5cd2014-09-04 18:13:01 +08001985 struct sit_entry_set *ses, *tmp;
1986 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08001987 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001988 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001989
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001990 mutex_lock(&sit_i->sentry_lock);
1991
Wanpeng Li2b11a742015-02-27 16:52:50 +08001992 if (!sit_i->dirty_sentries)
1993 goto out;
1994
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001995 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08001996 * add and account sit entries of dirty bitmap in sit entry
1997 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001998 */
Chao Yu184a5cd2014-09-04 18:13:01 +08001999 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002000
Chao Yu184a5cd2014-09-04 18:13:01 +08002001 /*
2002 * if there are no enough space in journal to store dirty sit
2003 * entries, remove all entries from journal and add and account
2004 * them in sit entry set.
2005 */
Chao Yudfc08a12016-02-14 18:50:40 +08002006 if (!__has_cursum_space(journal, sit_i->dirty_sentries, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002007 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002008
Chao Yu184a5cd2014-09-04 18:13:01 +08002009 /*
2010 * there are two steps to flush sit entries:
2011 * #1, flush sit entries to journal in current cold data summary block.
2012 * #2, flush sit entries to sit page.
2013 */
2014 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07002015 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08002016 struct f2fs_sit_block *raw_sit = NULL;
2017 unsigned int start_segno = ses->start_segno;
2018 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002019 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08002020 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09002021
Chao Yu184a5cd2014-09-04 18:13:01 +08002022 if (to_journal &&
Chao Yudfc08a12016-02-14 18:50:40 +08002023 !__has_cursum_space(journal, ses->entry_cnt, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002024 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002025
Chao Yub7ad7512016-02-19 18:08:46 +08002026 if (to_journal) {
2027 down_write(&curseg->journal_rwsem);
2028 } else {
Chao Yu184a5cd2014-09-04 18:13:01 +08002029 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002030 raw_sit = page_address(page);
2031 }
2032
Chao Yu184a5cd2014-09-04 18:13:01 +08002033 /* flush dirty sit entries in region of current sit set */
2034 for_each_set_bit_from(segno, bitmap, end) {
2035 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002036
2037 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08002038
2039 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08002040 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002041 cpc->trim_start = segno;
2042 add_discard_addrs(sbi, cpc);
2043 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002044
2045 if (to_journal) {
Chao Yudfc08a12016-02-14 18:50:40 +08002046 offset = lookup_journal_in_cursum(journal,
Chao Yu184a5cd2014-09-04 18:13:01 +08002047 SIT_JOURNAL, segno, 1);
2048 f2fs_bug_on(sbi, offset < 0);
Chao Yudfc08a12016-02-14 18:50:40 +08002049 segno_in_journal(journal, offset) =
Chao Yu184a5cd2014-09-04 18:13:01 +08002050 cpu_to_le32(segno);
2051 seg_info_to_raw_sit(se,
Chao Yudfc08a12016-02-14 18:50:40 +08002052 &sit_in_journal(journal, offset));
Chao Yu184a5cd2014-09-04 18:13:01 +08002053 } else {
2054 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
2055 seg_info_to_raw_sit(se,
2056 &raw_sit->entries[sit_offset]);
2057 }
2058
2059 __clear_bit(segno, bitmap);
2060 sit_i->dirty_sentries--;
2061 ses->entry_cnt--;
2062 }
2063
Chao Yub7ad7512016-02-19 18:08:46 +08002064 if (to_journal)
2065 up_write(&curseg->journal_rwsem);
2066 else
Chao Yu184a5cd2014-09-04 18:13:01 +08002067 f2fs_put_page(page, 1);
2068
2069 f2fs_bug_on(sbi, ses->entry_cnt);
2070 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002071 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002072
2073 f2fs_bug_on(sbi, !list_empty(head));
2074 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08002075out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002076 if (cpc->reason == CP_DISCARD) {
2077 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
2078 add_discard_addrs(sbi, cpc);
2079 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002080 mutex_unlock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002081
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002082 set_prefree_as_free_segments(sbi);
2083}
2084
2085static int build_sit_info(struct f2fs_sb_info *sbi)
2086{
2087 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2088 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
2089 struct sit_info *sit_i;
2090 unsigned int sit_segs, start;
2091 char *src_bitmap, *dst_bitmap;
2092 unsigned int bitmap_size;
2093
2094 /* allocate memory for SIT information */
2095 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
2096 if (!sit_i)
2097 return -ENOMEM;
2098
2099 SM_I(sbi)->sit_info = sit_i;
2100
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002101 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
2102 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002103 if (!sit_i->sentries)
2104 return -ENOMEM;
2105
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002106 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002107 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002108 if (!sit_i->dirty_sentries_bitmap)
2109 return -ENOMEM;
2110
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002111 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002112 sit_i->sentries[start].cur_valid_map
2113 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2114 sit_i->sentries[start].ckpt_valid_map
2115 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002116 sit_i->sentries[start].discard_map
2117 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2118 if (!sit_i->sentries[start].cur_valid_map ||
2119 !sit_i->sentries[start].ckpt_valid_map ||
2120 !sit_i->sentries[start].discard_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002121 return -ENOMEM;
2122 }
2123
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002124 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2125 if (!sit_i->tmp_map)
2126 return -ENOMEM;
2127
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002128 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002129 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
2130 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002131 if (!sit_i->sec_entries)
2132 return -ENOMEM;
2133 }
2134
2135 /* get information related with SIT */
2136 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
2137
2138 /* setup SIT bitmap from ckeckpoint pack */
2139 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
2140 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
2141
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02002142 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002143 if (!dst_bitmap)
2144 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002145
2146 /* init SIT information */
2147 sit_i->s_ops = &default_salloc_ops;
2148
2149 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2150 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
2151 sit_i->written_valid_blocks = le64_to_cpu(ckpt->valid_block_count);
2152 sit_i->sit_bitmap = dst_bitmap;
2153 sit_i->bitmap_size = bitmap_size;
2154 sit_i->dirty_sentries = 0;
2155 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2156 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2157 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2158 mutex_init(&sit_i->sentry_lock);
2159 return 0;
2160}
2161
2162static int build_free_segmap(struct f2fs_sb_info *sbi)
2163{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002164 struct free_segmap_info *free_i;
2165 unsigned int bitmap_size, sec_bitmap_size;
2166
2167 /* allocate memory for free segmap information */
2168 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2169 if (!free_i)
2170 return -ENOMEM;
2171
2172 SM_I(sbi)->free_info = free_i;
2173
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002174 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002175 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002176 if (!free_i->free_segmap)
2177 return -ENOMEM;
2178
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002179 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002180 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002181 if (!free_i->free_secmap)
2182 return -ENOMEM;
2183
2184 /* set all segments as dirty temporarily */
2185 memset(free_i->free_segmap, 0xff, bitmap_size);
2186 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2187
2188 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002189 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002190 free_i->free_segments = 0;
2191 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002192 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002193 return 0;
2194}
2195
2196static int build_curseg(struct f2fs_sb_info *sbi)
2197{
Namjae Jeon1042d602012-12-01 10:56:13 +09002198 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002199 int i;
2200
Fabian Frederickb434bab2014-06-23 18:39:15 +02002201 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002202 if (!array)
2203 return -ENOMEM;
2204
2205 SM_I(sbi)->curseg_array = array;
2206
2207 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2208 mutex_init(&array[i].curseg_mutex);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002209 array[i].sum_blk = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002210 if (!array[i].sum_blk)
2211 return -ENOMEM;
Chao Yub7ad7512016-02-19 18:08:46 +08002212 init_rwsem(&array[i].journal_rwsem);
2213 array[i].journal = kzalloc(sizeof(struct f2fs_journal),
2214 GFP_KERNEL);
2215 if (!array[i].journal)
2216 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002217 array[i].segno = NULL_SEGNO;
2218 array[i].next_blkoff = 0;
2219 }
2220 return restore_curseg_summaries(sbi);
2221}
2222
2223static void build_sit_entries(struct f2fs_sb_info *sbi)
2224{
2225 struct sit_info *sit_i = SIT_I(sbi);
2226 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002227 struct f2fs_journal *journal = curseg->journal;
Chao Yu74de5932013-11-22 09:09:59 +08002228 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2229 unsigned int i, start, end;
2230 unsigned int readed, start_blk = 0;
Chao Yue9f5b8b2016-02-14 18:54:33 +08002231 int nrpages = MAX_BIO_BLOCKS(sbi) * 8;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002232
Chao Yu74de5932013-11-22 09:09:59 +08002233 do {
Chao Yu26879fb2015-10-12 17:05:59 +08002234 readed = ra_meta_pages(sbi, start_blk, nrpages, META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002235
Chao Yu74de5932013-11-22 09:09:59 +08002236 start = start_blk * sit_i->sents_per_block;
2237 end = (start_blk + readed) * sit_i->sents_per_block;
2238
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002239 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002240 struct seg_entry *se = &sit_i->sentries[start];
2241 struct f2fs_sit_block *sit_blk;
2242 struct f2fs_sit_entry sit;
2243 struct page *page;
2244
Chao Yub7ad7512016-02-19 18:08:46 +08002245 down_read(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08002246 for (i = 0; i < sits_in_cursum(journal); i++) {
2247 if (le32_to_cpu(segno_in_journal(journal, i))
Chris Fries6c311ec2014-01-17 14:44:39 -06002248 == start) {
Chao Yudfc08a12016-02-14 18:50:40 +08002249 sit = sit_in_journal(journal, i);
Chao Yub7ad7512016-02-19 18:08:46 +08002250 up_read(&curseg->journal_rwsem);
Chao Yu74de5932013-11-22 09:09:59 +08002251 goto got_it;
2252 }
2253 }
Chao Yub7ad7512016-02-19 18:08:46 +08002254 up_read(&curseg->journal_rwsem);
Chao Yu74de5932013-11-22 09:09:59 +08002255
2256 page = get_current_sit_page(sbi, start);
2257 sit_blk = (struct f2fs_sit_block *)page_address(page);
2258 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2259 f2fs_put_page(page, 1);
2260got_it:
2261 check_block_count(sbi, start, &sit);
2262 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002263
2264 /* build discard map only one time */
2265 memcpy(se->discard_map, se->cur_valid_map, SIT_VBLOCK_MAP_SIZE);
2266 sbi->discard_blks += sbi->blocks_per_seg - se->valid_blocks;
2267
Chao Yu74de5932013-11-22 09:09:59 +08002268 if (sbi->segs_per_sec > 1) {
2269 struct sec_entry *e = get_sec_entry(sbi, start);
2270 e->valid_blocks += se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002271 }
2272 }
Chao Yu74de5932013-11-22 09:09:59 +08002273 start_blk += readed;
2274 } while (start_blk < sit_blk_cnt);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002275}
2276
2277static void init_free_segmap(struct f2fs_sb_info *sbi)
2278{
2279 unsigned int start;
2280 int type;
2281
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002282 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002283 struct seg_entry *sentry = get_seg_entry(sbi, start);
2284 if (!sentry->valid_blocks)
2285 __set_free(sbi, start);
2286 }
2287
2288 /* set use the current segments */
2289 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2290 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2291 __set_test_and_inuse(sbi, curseg_t->segno);
2292 }
2293}
2294
2295static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2296{
2297 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2298 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002299 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002300 unsigned short valid_blocks;
2301
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002302 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002303 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002304 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2305 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002306 break;
2307 offset = segno + 1;
2308 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002309 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002310 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002311 if (valid_blocks > sbi->blocks_per_seg) {
2312 f2fs_bug_on(sbi, 1);
2313 continue;
2314 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002315 mutex_lock(&dirty_i->seglist_lock);
2316 __locate_dirty_segment(sbi, segno, DIRTY);
2317 mutex_unlock(&dirty_i->seglist_lock);
2318 }
2319}
2320
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002321static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002322{
2323 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002324 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002325
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002326 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002327 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002328 return -ENOMEM;
2329 return 0;
2330}
2331
2332static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2333{
2334 struct dirty_seglist_info *dirty_i;
2335 unsigned int bitmap_size, i;
2336
2337 /* allocate memory for dirty segments list information */
2338 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2339 if (!dirty_i)
2340 return -ENOMEM;
2341
2342 SM_I(sbi)->dirty_info = dirty_i;
2343 mutex_init(&dirty_i->seglist_lock);
2344
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002345 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002346
2347 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002348 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002349 if (!dirty_i->dirty_segmap[i])
2350 return -ENOMEM;
2351 }
2352
2353 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002354 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002355}
2356
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002357/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002358 * Update min, max modified time for cost-benefit GC algorithm
2359 */
2360static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2361{
2362 struct sit_info *sit_i = SIT_I(sbi);
2363 unsigned int segno;
2364
2365 mutex_lock(&sit_i->sentry_lock);
2366
2367 sit_i->min_mtime = LLONG_MAX;
2368
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002369 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002370 unsigned int i;
2371 unsigned long long mtime = 0;
2372
2373 for (i = 0; i < sbi->segs_per_sec; i++)
2374 mtime += get_seg_entry(sbi, segno + i)->mtime;
2375
2376 mtime = div_u64(mtime, sbi->segs_per_sec);
2377
2378 if (sit_i->min_mtime > mtime)
2379 sit_i->min_mtime = mtime;
2380 }
2381 sit_i->max_mtime = get_mtime(sbi);
2382 mutex_unlock(&sit_i->sentry_lock);
2383}
2384
2385int build_segment_manager(struct f2fs_sb_info *sbi)
2386{
2387 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2388 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002389 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002390 int err;
2391
2392 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2393 if (!sm_info)
2394 return -ENOMEM;
2395
2396 /* init sm info */
2397 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002398 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2399 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2400 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2401 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2402 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2403 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2404 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002405 sm_info->rec_prefree_segments = sm_info->main_segments *
2406 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim52763a42016-06-13 09:47:48 -07002407 if (!test_opt(sbi, LFS))
2408 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002409 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002410 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002411
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002412 INIT_LIST_HEAD(&sm_info->discard_list);
2413 sm_info->nr_discards = 0;
2414 sm_info->max_discards = 0;
2415
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002416 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2417
Chao Yu184a5cd2014-09-04 18:13:01 +08002418 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2419
Gu Zhengb270ad62014-04-11 17:49:55 +08002420 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002421 err = create_flush_cmd_control(sbi);
2422 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002423 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002424 }
2425
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002426 err = build_sit_info(sbi);
2427 if (err)
2428 return err;
2429 err = build_free_segmap(sbi);
2430 if (err)
2431 return err;
2432 err = build_curseg(sbi);
2433 if (err)
2434 return err;
2435
2436 /* reinit free segmap based on SIT */
2437 build_sit_entries(sbi);
2438
2439 init_free_segmap(sbi);
2440 err = build_dirty_segmap(sbi);
2441 if (err)
2442 return err;
2443
2444 init_min_max_mtime(sbi);
2445 return 0;
2446}
2447
2448static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2449 enum dirty_type dirty_type)
2450{
2451 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2452
2453 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002454 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002455 dirty_i->nr_dirty[dirty_type] = 0;
2456 mutex_unlock(&dirty_i->seglist_lock);
2457}
2458
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002459static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002460{
2461 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002462 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002463}
2464
2465static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2466{
2467 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2468 int i;
2469
2470 if (!dirty_i)
2471 return;
2472
2473 /* discard pre-free/dirty segments list */
2474 for (i = 0; i < NR_DIRTY_TYPE; i++)
2475 discard_dirty_segmap(sbi, i);
2476
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002477 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002478 SM_I(sbi)->dirty_info = NULL;
2479 kfree(dirty_i);
2480}
2481
2482static void destroy_curseg(struct f2fs_sb_info *sbi)
2483{
2484 struct curseg_info *array = SM_I(sbi)->curseg_array;
2485 int i;
2486
2487 if (!array)
2488 return;
2489 SM_I(sbi)->curseg_array = NULL;
Chao Yub7ad7512016-02-19 18:08:46 +08002490 for (i = 0; i < NR_CURSEG_TYPE; i++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002491 kfree(array[i].sum_blk);
Chao Yub7ad7512016-02-19 18:08:46 +08002492 kfree(array[i].journal);
2493 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002494 kfree(array);
2495}
2496
2497static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2498{
2499 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2500 if (!free_i)
2501 return;
2502 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002503 kvfree(free_i->free_segmap);
2504 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002505 kfree(free_i);
2506}
2507
2508static void destroy_sit_info(struct f2fs_sb_info *sbi)
2509{
2510 struct sit_info *sit_i = SIT_I(sbi);
2511 unsigned int start;
2512
2513 if (!sit_i)
2514 return;
2515
2516 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002517 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002518 kfree(sit_i->sentries[start].cur_valid_map);
2519 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002520 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002521 }
2522 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002523 kfree(sit_i->tmp_map);
2524
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002525 kvfree(sit_i->sentries);
2526 kvfree(sit_i->sec_entries);
2527 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002528
2529 SM_I(sbi)->sit_info = NULL;
2530 kfree(sit_i->sit_bitmap);
2531 kfree(sit_i);
2532}
2533
2534void destroy_segment_manager(struct f2fs_sb_info *sbi)
2535{
2536 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002537
Chao Yu3b03f722013-11-06 09:12:04 +08002538 if (!sm_info)
2539 return;
Gu Zheng2163d192014-04-27 14:21:33 +08002540 destroy_flush_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002541 destroy_dirty_segmap(sbi);
2542 destroy_curseg(sbi);
2543 destroy_free_segmap(sbi);
2544 destroy_sit_info(sbi);
2545 sbi->sm_info = NULL;
2546 kfree(sm_info);
2547}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002548
2549int __init create_segment_manager_caches(void)
2550{
2551 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002552 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002553 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002554 goto fail;
2555
2556 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002557 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002558 if (!sit_entry_set_slab)
2559 goto destory_discard_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002560
2561 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2562 sizeof(struct inmem_pages));
2563 if (!inmem_entry_slab)
2564 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002565 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002566
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002567destroy_sit_entry_set:
2568 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu184a5cd2014-09-04 18:13:01 +08002569destory_discard_entry:
2570 kmem_cache_destroy(discard_entry_slab);
2571fail:
2572 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002573}
2574
2575void destroy_segment_manager_caches(void)
2576{
Chao Yu184a5cd2014-09-04 18:13:01 +08002577 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002578 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002579 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002580}