blob: 9e13db05e3f09e2472ebf7461806d536a16eec4a [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);
Yunlei Hec7b41e12016-07-07 12:13:33 +0800675 if (force && start && end != max_blocks
676 && (end - start) < cpc->trim_minlen)
677 continue;
678
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700679 __add_discard_entry(sbi, cpc, se, start, end);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900680 }
681}
682
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700683void release_discard_addrs(struct f2fs_sb_info *sbi)
684{
685 struct list_head *head = &(SM_I(sbi)->discard_list);
686 struct discard_entry *entry, *this;
687
688 /* drop caches */
689 list_for_each_entry_safe(entry, this, head, list) {
690 list_del(&entry->list);
691 kmem_cache_free(discard_entry_slab, entry);
692 }
693}
694
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900695/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900696 * Should call clear_prefree_segments after checkpoint is done.
697 */
698static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
699{
700 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +0800701 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900702
703 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700704 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900705 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900706 mutex_unlock(&dirty_i->seglist_lock);
707}
708
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700709void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900710{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900711 struct list_head *head = &(SM_I(sbi)->discard_list);
Chao Yu2d7b8222014-03-29 11:33:17 +0800712 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900713 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Changman Lee29e59c12013-11-11 09:24:37 +0900714 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +0900715 unsigned int start = 0, end = -1;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700716 unsigned int secno, start_segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900717
718 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900719
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900720 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900721 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700722 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
723 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900724 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700725 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
726 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900727
Changman Lee29e59c12013-11-11 09:24:37 +0900728 for (i = start; i < end; i++)
729 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900730
Changman Lee29e59c12013-11-11 09:24:37 +0900731 dirty_i->nr_dirty[PRE] -= end - start;
732
733 if (!test_opt(sbi, DISCARD))
734 continue;
735
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700736 if (!test_opt(sbi, LFS) || sbi->segs_per_sec == 1) {
737 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
Jaegeuk Kim37208872013-11-12 16:55:17 +0900738 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700739 continue;
740 }
741next:
742 secno = GET_SECNO(sbi, start);
743 start_segno = secno * sbi->segs_per_sec;
744 if (!IS_CURSEC(sbi, secno) &&
745 !get_valid_blocks(sbi, start, sbi->segs_per_sec))
746 f2fs_issue_discard(sbi, START_BLOCK(sbi, start_segno),
747 sbi->segs_per_sec << sbi->log_blocks_per_seg);
748
749 start = start_segno + sbi->segs_per_sec;
750 if (start < end)
751 goto next;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900752 }
753 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900754
755 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800756 list_for_each_entry_safe(entry, this, head, list) {
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700757 if (cpc->reason == CP_DISCARD && entry->len < cpc->trim_minlen)
758 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900759 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700760 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700761skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900762 list_del(&entry->list);
763 SM_I(sbi)->nr_discards -= entry->len;
764 kmem_cache_free(discard_entry_slab, entry);
765 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900766}
767
Chao Yu184a5cd2014-09-04 18:13:01 +0800768static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900769{
770 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800771
772 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900773 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800774 return false;
775 }
776
777 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900778}
779
780static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
781 unsigned int segno, int modified)
782{
783 struct seg_entry *se = get_seg_entry(sbi, segno);
784 se->type = type;
785 if (modified)
786 __mark_sit_entry_dirty(sbi, segno);
787}
788
789static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
790{
791 struct seg_entry *se;
792 unsigned int segno, offset;
793 long int new_vblocks;
794
795 segno = GET_SEGNO(sbi, blkaddr);
796
797 se = get_seg_entry(sbi, segno);
798 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +0900799 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900800
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700801 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900802 (new_vblocks > sbi->blocks_per_seg)));
803
804 se->valid_blocks = new_vblocks;
805 se->mtime = get_mtime(sbi);
806 SIT_I(sbi)->max_mtime = se->mtime;
807
808 /* Update valid block bitmap */
809 if (del > 0) {
Gu Zheng52aca072014-10-20 17:45:51 +0800810 if (f2fs_test_and_set_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700811 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700812 if (!f2fs_test_and_set_bit(offset, se->discard_map))
813 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900814 } else {
Gu Zheng52aca072014-10-20 17:45:51 +0800815 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700816 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700817 if (f2fs_test_and_clear_bit(offset, se->discard_map))
818 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900819 }
820 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
821 se->ckpt_valid_blocks += del;
822
823 __mark_sit_entry_dirty(sbi, segno);
824
825 /* update total number of valid blocks to be written in ckpt area */
826 SIT_I(sbi)->written_valid_blocks += del;
827
828 if (sbi->segs_per_sec > 1)
829 get_sec_entry(sbi, segno)->valid_blocks += del;
830}
831
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900832void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900833{
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900834 update_sit_entry(sbi, new, 1);
835 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
836 update_sit_entry(sbi, old, -1);
837
838 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
839 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900840}
841
842void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
843{
844 unsigned int segno = GET_SEGNO(sbi, addr);
845 struct sit_info *sit_i = SIT_I(sbi);
846
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700847 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900848 if (addr == NEW_ADDR)
849 return;
850
851 /* add it into sit main buffer */
852 mutex_lock(&sit_i->sentry_lock);
853
854 update_sit_entry(sbi, addr, -1);
855
856 /* add it into dirty seglist */
857 locate_dirty_segment(sbi, segno);
858
859 mutex_unlock(&sit_i->sentry_lock);
860}
861
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -0700862bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
863{
864 struct sit_info *sit_i = SIT_I(sbi);
865 unsigned int segno, offset;
866 struct seg_entry *se;
867 bool is_cp = false;
868
869 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
870 return true;
871
872 mutex_lock(&sit_i->sentry_lock);
873
874 segno = GET_SEGNO(sbi, blkaddr);
875 se = get_seg_entry(sbi, segno);
876 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
877
878 if (f2fs_test_bit(offset, se->ckpt_valid_map))
879 is_cp = true;
880
881 mutex_unlock(&sit_i->sentry_lock);
882
883 return is_cp;
884}
885
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900886/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900887 * This function should be resided under the curseg_mutex lock
888 */
889static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +0800890 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900891{
892 struct curseg_info *curseg = CURSEG_I(sbi, type);
893 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +0800894 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900895 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900896}
897
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900898/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900899 * Calculate the number of current summary pages for writing
900 */
Chao Yu3fa06d72014-12-09 14:21:46 +0800901int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900902{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900903 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +0800904 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900905
906 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
907 if (sbi->ckpt->alloc_type[i] == SSR)
908 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +0800909 else {
910 if (for_ra)
911 valid_sum_count += le16_to_cpu(
912 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
913 else
914 valid_sum_count += curseg_blkoff(sbi, i);
915 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900916 }
917
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300918 sum_in_page = (PAGE_SIZE - 2 * SUM_JOURNAL_SIZE -
Fan Li9a479382013-10-29 16:21:47 +0800919 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
920 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900921 return 1;
Fan Li9a479382013-10-29 16:21:47 +0800922 else if ((valid_sum_count - sum_in_page) <=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300923 (PAGE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900924 return 2;
925 return 3;
926}
927
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900928/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900929 * Caller should put this summary page
930 */
931struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
932{
933 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
934}
935
Chao Yu381722d2015-05-19 17:40:04 +0800936void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
937{
938 struct page *page = grab_meta_page(sbi, blk_addr);
939 void *dst = page_address(page);
940
941 if (src)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300942 memcpy(dst, src, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +0800943 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300944 memset(dst, 0, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +0800945 set_page_dirty(page);
946 f2fs_put_page(page, 1);
947}
948
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900949static void write_sum_page(struct f2fs_sb_info *sbi,
950 struct f2fs_summary_block *sum_blk, block_t blk_addr)
951{
Chao Yu381722d2015-05-19 17:40:04 +0800952 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900953}
954
Chao Yub7ad7512016-02-19 18:08:46 +0800955static void write_current_sum_page(struct f2fs_sb_info *sbi,
956 int type, block_t blk_addr)
957{
958 struct curseg_info *curseg = CURSEG_I(sbi, type);
959 struct page *page = grab_meta_page(sbi, blk_addr);
960 struct f2fs_summary_block *src = curseg->sum_blk;
961 struct f2fs_summary_block *dst;
962
963 dst = (struct f2fs_summary_block *)page_address(page);
964
965 mutex_lock(&curseg->curseg_mutex);
966
967 down_read(&curseg->journal_rwsem);
968 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE);
969 up_read(&curseg->journal_rwsem);
970
971 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE);
972 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE);
973
974 mutex_unlock(&curseg->curseg_mutex);
975
976 set_page_dirty(page);
977 f2fs_put_page(page, 1);
978}
979
Jaegeuk Kim60374682013-03-31 13:58:51 +0900980static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
981{
982 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +0800983 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +0900984 struct free_segmap_info *free_i = FREE_I(sbi);
985
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700986 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +0800987 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +0900988 return 0;
989}
990
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900991/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900992 * Find a new segment from the free segments bitmap to right order
993 * This function should be returned with success, otherwise BUG
994 */
995static void get_new_segment(struct f2fs_sb_info *sbi,
996 unsigned int *newseg, bool new_sec, int dir)
997{
998 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900999 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001000 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001001 unsigned int hint = *newseg / sbi->segs_per_sec;
1002 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
1003 unsigned int left_start = hint;
1004 bool init = true;
1005 int go_left = 0;
1006 int i;
1007
Chao Yu1a118cc2015-02-11 18:20:38 +08001008 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001009
1010 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
1011 segno = find_next_zero_bit(free_i->free_segmap,
Chao Yu0ab14352016-01-22 17:42:06 +08001012 (hint + 1) * sbi->segs_per_sec, *newseg + 1);
1013 if (segno < (hint + 1) * sbi->segs_per_sec)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001014 goto got_it;
1015 }
1016find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001017 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
1018 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001019 if (dir == ALLOC_RIGHT) {
1020 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001021 MAIN_SECS(sbi), 0);
1022 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001023 } else {
1024 go_left = 1;
1025 left_start = hint - 1;
1026 }
1027 }
1028 if (go_left == 0)
1029 goto skip_left;
1030
1031 while (test_bit(left_start, free_i->free_secmap)) {
1032 if (left_start > 0) {
1033 left_start--;
1034 continue;
1035 }
1036 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001037 MAIN_SECS(sbi), 0);
1038 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001039 break;
1040 }
1041 secno = left_start;
1042skip_left:
1043 hint = secno;
1044 segno = secno * sbi->segs_per_sec;
1045 zoneno = secno / sbi->secs_per_zone;
1046
1047 /* give up on finding another zone */
1048 if (!init)
1049 goto got_it;
1050 if (sbi->secs_per_zone == 1)
1051 goto got_it;
1052 if (zoneno == old_zoneno)
1053 goto got_it;
1054 if (dir == ALLOC_LEFT) {
1055 if (!go_left && zoneno + 1 >= total_zones)
1056 goto got_it;
1057 if (go_left && zoneno == 0)
1058 goto got_it;
1059 }
1060 for (i = 0; i < NR_CURSEG_TYPE; i++)
1061 if (CURSEG_I(sbi, i)->zone == zoneno)
1062 break;
1063
1064 if (i < NR_CURSEG_TYPE) {
1065 /* zone is in user, try another */
1066 if (go_left)
1067 hint = zoneno * sbi->secs_per_zone - 1;
1068 else if (zoneno + 1 >= total_zones)
1069 hint = 0;
1070 else
1071 hint = (zoneno + 1) * sbi->secs_per_zone;
1072 init = false;
1073 goto find_other_zone;
1074 }
1075got_it:
1076 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001077 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001078 __set_inuse(sbi, segno);
1079 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08001080 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001081}
1082
1083static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
1084{
1085 struct curseg_info *curseg = CURSEG_I(sbi, type);
1086 struct summary_footer *sum_footer;
1087
1088 curseg->segno = curseg->next_segno;
1089 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
1090 curseg->next_blkoff = 0;
1091 curseg->next_segno = NULL_SEGNO;
1092
1093 sum_footer = &(curseg->sum_blk->footer);
1094 memset(sum_footer, 0, sizeof(struct summary_footer));
1095 if (IS_DATASEG(type))
1096 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
1097 if (IS_NODESEG(type))
1098 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
1099 __set_sit_entry_type(sbi, type, curseg->segno, modified);
1100}
1101
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001102/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001103 * Allocate a current working segment.
1104 * This function always allocates a free segment in LFS manner.
1105 */
1106static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
1107{
1108 struct curseg_info *curseg = CURSEG_I(sbi, type);
1109 unsigned int segno = curseg->segno;
1110 int dir = ALLOC_LEFT;
1111
1112 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08001113 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001114 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
1115 dir = ALLOC_RIGHT;
1116
1117 if (test_opt(sbi, NOHEAP))
1118 dir = ALLOC_RIGHT;
1119
1120 get_new_segment(sbi, &segno, new_sec, dir);
1121 curseg->next_segno = segno;
1122 reset_curseg(sbi, type, 1);
1123 curseg->alloc_type = LFS;
1124}
1125
1126static void __next_free_blkoff(struct f2fs_sb_info *sbi,
1127 struct curseg_info *seg, block_t start)
1128{
1129 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09001130 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001131 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09001132 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
1133 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1134 int i, pos;
1135
1136 for (i = 0; i < entries; i++)
1137 target_map[i] = ckpt_map[i] | cur_map[i];
1138
1139 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1140
1141 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001142}
1143
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001144/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001145 * If a segment is written by LFS manner, next block offset is just obtained
1146 * by increasing the current block offset. However, if a segment is written by
1147 * SSR manner, next block offset obtained by calling __next_free_blkoff
1148 */
1149static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1150 struct curseg_info *seg)
1151{
1152 if (seg->alloc_type == SSR)
1153 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1154 else
1155 seg->next_blkoff++;
1156}
1157
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001158/*
arter97e1c42042014-08-06 23:22:50 +09001159 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001160 * manner, so it should recover the existing segment information of valid blocks
1161 */
1162static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1163{
1164 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1165 struct curseg_info *curseg = CURSEG_I(sbi, type);
1166 unsigned int new_segno = curseg->next_segno;
1167 struct f2fs_summary_block *sum_node;
1168 struct page *sum_page;
1169
1170 write_sum_page(sbi, curseg->sum_blk,
1171 GET_SUM_BLOCK(sbi, curseg->segno));
1172 __set_test_and_inuse(sbi, new_segno);
1173
1174 mutex_lock(&dirty_i->seglist_lock);
1175 __remove_dirty_segment(sbi, new_segno, PRE);
1176 __remove_dirty_segment(sbi, new_segno, DIRTY);
1177 mutex_unlock(&dirty_i->seglist_lock);
1178
1179 reset_curseg(sbi, type, 1);
1180 curseg->alloc_type = SSR;
1181 __next_free_blkoff(sbi, curseg, 0);
1182
1183 if (reuse) {
1184 sum_page = get_sum_page(sbi, new_segno);
1185 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1186 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1187 f2fs_put_page(sum_page, 1);
1188 }
1189}
1190
Jaegeuk Kim43727522013-02-04 15:11:17 +09001191static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1192{
1193 struct curseg_info *curseg = CURSEG_I(sbi, type);
1194 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1195
1196 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0))
1197 return v_ops->get_victim(sbi,
1198 &(curseg)->next_segno, BG_GC, type, SSR);
1199
1200 /* For data segments, let's do SSR more intensively */
1201 for (; type >= CURSEG_HOT_DATA; type--)
1202 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1203 BG_GC, type, SSR))
1204 return 1;
1205 return 0;
1206}
1207
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001208/*
1209 * flush out current segment and replace it with new segment
1210 * This function should be returned with success, otherwise BUG
1211 */
1212static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1213 int type, bool force)
1214{
1215 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001216
Gu Zheng7b405272013-08-19 09:41:15 +08001217 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001218 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001219 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001220 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001221 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1222 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001223 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1224 change_curseg(sbi, type, true);
1225 else
1226 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001227
1228 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001229}
1230
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001231static void __allocate_new_segments(struct f2fs_sb_info *sbi, int type)
1232{
1233 struct curseg_info *curseg = CURSEG_I(sbi, type);
1234 unsigned int old_segno;
1235
1236 old_segno = curseg->segno;
1237 SIT_I(sbi)->s_ops->allocate_segment(sbi, type, true);
1238 locate_dirty_segment(sbi, old_segno);
1239}
1240
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001241void allocate_new_segments(struct f2fs_sb_info *sbi)
1242{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001243 int i;
1244
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001245 if (test_opt(sbi, LFS))
1246 return;
1247
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001248 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++)
1249 __allocate_new_segments(sbi, i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001250}
1251
1252static const struct segment_allocation default_salloc_ops = {
1253 .allocate_segment = allocate_segment_by_default,
1254};
1255
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001256int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1257{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001258 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1259 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001260 unsigned int start_segno, end_segno;
1261 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001262 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001263
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001264 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001265 return -EINVAL;
1266
Jan Kara9bd27ae2014-10-21 14:07:33 +02001267 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001268 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001269 goto out;
1270
1271 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001272 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1273 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1274 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001275 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001276 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001277
1278 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001279 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1280 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001281
1282 if (sbi->discard_blks == 0)
1283 break;
1284 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1285 cpc.trim_end = end_segno;
1286 else
1287 cpc.trim_end = min_t(unsigned int,
1288 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001289 BATCHED_TRIM_SEGMENTS(sbi),
1290 sbi->segs_per_sec) - 1, end_segno);
1291
1292 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001293 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001294 mutex_unlock(&sbi->gc_mutex);
1295 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001296out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001297 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001298 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001299}
1300
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001301static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1302{
1303 struct curseg_info *curseg = CURSEG_I(sbi, type);
1304 if (curseg->next_blkoff < sbi->blocks_per_seg)
1305 return true;
1306 return false;
1307}
1308
1309static int __get_segment_type_2(struct page *page, enum page_type p_type)
1310{
1311 if (p_type == DATA)
1312 return CURSEG_HOT_DATA;
1313 else
1314 return CURSEG_HOT_NODE;
1315}
1316
1317static int __get_segment_type_4(struct page *page, enum page_type p_type)
1318{
1319 if (p_type == DATA) {
1320 struct inode *inode = page->mapping->host;
1321
1322 if (S_ISDIR(inode->i_mode))
1323 return CURSEG_HOT_DATA;
1324 else
1325 return CURSEG_COLD_DATA;
1326 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001327 if (IS_DNODE(page) && is_cold_node(page))
1328 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001329 else
1330 return CURSEG_COLD_NODE;
1331 }
1332}
1333
1334static int __get_segment_type_6(struct page *page, enum page_type p_type)
1335{
1336 if (p_type == DATA) {
1337 struct inode *inode = page->mapping->host;
1338
1339 if (S_ISDIR(inode->i_mode))
1340 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001341 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001342 return CURSEG_COLD_DATA;
1343 else
1344 return CURSEG_WARM_DATA;
1345 } else {
1346 if (IS_DNODE(page))
1347 return is_cold_node(page) ? CURSEG_WARM_NODE :
1348 CURSEG_HOT_NODE;
1349 else
1350 return CURSEG_COLD_NODE;
1351 }
1352}
1353
1354static int __get_segment_type(struct page *page, enum page_type p_type)
1355{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001356 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001357 case 2:
1358 return __get_segment_type_2(page, p_type);
1359 case 4:
1360 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001361 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001362 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001363 f2fs_bug_on(F2FS_P_SB(page),
1364 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001365 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001366}
1367
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001368void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1369 block_t old_blkaddr, block_t *new_blkaddr,
1370 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001371{
1372 struct sit_info *sit_i = SIT_I(sbi);
1373 struct curseg_info *curseg;
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001374 bool direct_io = (type == CURSEG_DIRECT_IO);
1375
1376 type = direct_io ? CURSEG_WARM_DATA : type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001377
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001378 curseg = CURSEG_I(sbi, type);
1379
1380 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001381 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001382
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001383 /* direct_io'ed data is aligned to the segment for better performance */
Jaegeuk Kim47e70ca2015-08-11 10:17:27 -07001384 if (direct_io && curseg->next_blkoff &&
1385 !has_not_enough_free_secs(sbi, 0))
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001386 __allocate_new_segments(sbi, type);
1387
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001388 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001389
1390 /*
1391 * __add_sum_entry should be resided under the curseg_mutex
1392 * because, this function updates a summary entry in the
1393 * current summary block.
1394 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001395 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001396
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001397 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001398
1399 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001400
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001401 if (!__has_curseg_space(sbi, type))
1402 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001403 /*
1404 * SIT information should be updated before segment allocation,
1405 * since SSR needs latest valid block information.
1406 */
1407 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001408
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001409 mutex_unlock(&sit_i->sentry_lock);
1410
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001411 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001412 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1413
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001414 mutex_unlock(&curseg->curseg_mutex);
1415}
1416
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001417static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001418{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001419 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001420
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001421 if (fio->type == NODE || fio->type == DATA)
1422 mutex_lock(&fio->sbi->wio_mutex[fio->type]);
1423
Chao Yu7a9d7542016-02-22 18:36:38 +08001424 allocate_data_block(fio->sbi, fio->page, fio->old_blkaddr,
1425 &fio->new_blkaddr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001426
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001427 /* writeout dirty page into bdev */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001428 f2fs_submit_page_mbio(fio);
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001429
1430 if (fio->type == NODE || fio->type == DATA)
1431 mutex_unlock(&fio->sbi->wio_mutex[fio->type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001432}
1433
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001434void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001435{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001436 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001437 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001438 .type = META,
Jaegeuk Kimcf04e8e2014-12-17 19:33:13 -08001439 .rw = WRITE_SYNC | REQ_META | REQ_PRIO,
Chao Yu7a9d7542016-02-22 18:36:38 +08001440 .old_blkaddr = page->index,
1441 .new_blkaddr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001442 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001443 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001444 };
1445
Chao Yu2b947002015-10-12 17:04:21 +08001446 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
1447 fio.rw &= ~REQ_META;
1448
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001449 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001450 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001451}
1452
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001453void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001454{
1455 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001456
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001457 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001458 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001459}
1460
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001461void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001462{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001463 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001464 struct f2fs_summary sum;
1465 struct node_info ni;
1466
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001467 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001468 get_node_info(sbi, dn->nid, &ni);
1469 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001470 do_write_page(&sum, fio);
Chao Yuf28b3432016-02-24 17:16:47 +08001471 f2fs_update_data_blkaddr(dn, fio->new_blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001472}
1473
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001474void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001475{
Chao Yu7a9d7542016-02-22 18:36:38 +08001476 fio->new_blkaddr = fio->old_blkaddr;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001477 stat_inc_inplace_blocks(fio->sbi);
1478 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001479}
1480
Chao Yu4356e482016-02-23 17:52:43 +08001481void __f2fs_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001482 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08001483 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001484{
1485 struct sit_info *sit_i = SIT_I(sbi);
1486 struct curseg_info *curseg;
1487 unsigned int segno, old_cursegno;
1488 struct seg_entry *se;
1489 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001490 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001491
1492 segno = GET_SEGNO(sbi, new_blkaddr);
1493 se = get_seg_entry(sbi, segno);
1494 type = se->type;
1495
Chao Yu19f106b2015-05-06 13:08:06 +08001496 if (!recover_curseg) {
1497 /* for recovery flow */
1498 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1499 if (old_blkaddr == NULL_ADDR)
1500 type = CURSEG_COLD_DATA;
1501 else
1502 type = CURSEG_WARM_DATA;
1503 }
1504 } else {
1505 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001506 type = CURSEG_WARM_DATA;
1507 }
Chao Yu19f106b2015-05-06 13:08:06 +08001508
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001509 curseg = CURSEG_I(sbi, type);
1510
1511 mutex_lock(&curseg->curseg_mutex);
1512 mutex_lock(&sit_i->sentry_lock);
1513
1514 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001515 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001516
1517 /* change the current segment */
1518 if (segno != curseg->segno) {
1519 curseg->next_segno = segno;
1520 change_curseg(sbi, type, true);
1521 }
1522
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001523 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001524 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001525
Chao Yu28bc1062016-02-06 14:40:34 +08001526 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001527 update_sit_entry(sbi, new_blkaddr, 1);
1528 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1529 update_sit_entry(sbi, old_blkaddr, -1);
1530
1531 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1532 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1533
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001534 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001535
Chao Yu19f106b2015-05-06 13:08:06 +08001536 if (recover_curseg) {
1537 if (old_cursegno != curseg->segno) {
1538 curseg->next_segno = old_cursegno;
1539 change_curseg(sbi, type, true);
1540 }
1541 curseg->next_blkoff = old_blkoff;
1542 }
1543
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001544 mutex_unlock(&sit_i->sentry_lock);
1545 mutex_unlock(&curseg->curseg_mutex);
1546}
1547
Chao Yu528e3452015-05-28 19:15:35 +08001548void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1549 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08001550 unsigned char version, bool recover_curseg,
1551 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08001552{
1553 struct f2fs_summary sum;
1554
1555 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1556
Chao Yu28bc1062016-02-06 14:40:34 +08001557 __f2fs_replace_block(sbi, &sum, old_addr, new_addr,
1558 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08001559
Chao Yuf28b3432016-02-24 17:16:47 +08001560 f2fs_update_data_blkaddr(dn, new_addr);
Chao Yu528e3452015-05-28 19:15:35 +08001561}
1562
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001563void f2fs_wait_on_page_writeback(struct page *page,
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001564 enum page_type type, bool ordered)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001565{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001566 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001567 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1568
Chao Yu0c3a5792016-01-18 18:28:11 +08001569 f2fs_submit_merged_bio_cond(sbi, NULL, page, 0, type, WRITE);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001570 if (ordered)
1571 wait_on_page_writeback(page);
1572 else
1573 wait_for_stable_page(page);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001574 }
1575}
1576
Chao Yu08b39fb2015-10-08 13:27:34 +08001577void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1578 block_t blkaddr)
1579{
1580 struct page *cpage;
1581
1582 if (blkaddr == NEW_ADDR)
1583 return;
1584
1585 f2fs_bug_on(sbi, blkaddr == NULL_ADDR);
1586
1587 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1588 if (cpage) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001589 f2fs_wait_on_page_writeback(cpage, DATA, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08001590 f2fs_put_page(cpage, 1);
1591 }
1592}
1593
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001594static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1595{
1596 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1597 struct curseg_info *seg_i;
1598 unsigned char *kaddr;
1599 struct page *page;
1600 block_t start;
1601 int i, j, offset;
1602
1603 start = start_sum_block(sbi);
1604
1605 page = get_meta_page(sbi, start++);
1606 kaddr = (unsigned char *)page_address(page);
1607
1608 /* Step 1: restore nat cache */
1609 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001610 memcpy(seg_i->journal, kaddr, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001611
1612 /* Step 2: restore sit cache */
1613 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001614 memcpy(seg_i->journal, kaddr + SUM_JOURNAL_SIZE, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001615 offset = 2 * SUM_JOURNAL_SIZE;
1616
1617 /* Step 3: restore summary entries */
1618 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1619 unsigned short blk_off;
1620 unsigned int segno;
1621
1622 seg_i = CURSEG_I(sbi, i);
1623 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1624 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1625 seg_i->next_segno = segno;
1626 reset_curseg(sbi, i, 0);
1627 seg_i->alloc_type = ckpt->alloc_type[i];
1628 seg_i->next_blkoff = blk_off;
1629
1630 if (seg_i->alloc_type == SSR)
1631 blk_off = sbi->blocks_per_seg;
1632
1633 for (j = 0; j < blk_off; j++) {
1634 struct f2fs_summary *s;
1635 s = (struct f2fs_summary *)(kaddr + offset);
1636 seg_i->sum_blk->entries[j] = *s;
1637 offset += SUMMARY_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001638 if (offset + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001639 SUM_FOOTER_SIZE)
1640 continue;
1641
1642 f2fs_put_page(page, 1);
1643 page = NULL;
1644
1645 page = get_meta_page(sbi, start++);
1646 kaddr = (unsigned char *)page_address(page);
1647 offset = 0;
1648 }
1649 }
1650 f2fs_put_page(page, 1);
1651 return 0;
1652}
1653
1654static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1655{
1656 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1657 struct f2fs_summary_block *sum;
1658 struct curseg_info *curseg;
1659 struct page *new;
1660 unsigned short blk_off;
1661 unsigned int segno = 0;
1662 block_t blk_addr = 0;
1663
1664 /* get segment number and block addr */
1665 if (IS_DATASEG(type)) {
1666 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1667 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1668 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001669 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001670 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1671 else
1672 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1673 } else {
1674 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1675 CURSEG_HOT_NODE]);
1676 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1677 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001678 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001679 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1680 type - CURSEG_HOT_NODE);
1681 else
1682 blk_addr = GET_SUM_BLOCK(sbi, segno);
1683 }
1684
1685 new = get_meta_page(sbi, blk_addr);
1686 sum = (struct f2fs_summary_block *)page_address(new);
1687
1688 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001689 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001690 struct f2fs_summary *ns = &sum->entries[0];
1691 int i;
1692 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1693 ns->version = 0;
1694 ns->ofs_in_node = 0;
1695 }
1696 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001697 int err;
1698
1699 err = restore_node_summary(sbi, segno, sum);
1700 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001701 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001702 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001703 }
1704 }
1705 }
1706
1707 /* set uncompleted segment to curseg */
1708 curseg = CURSEG_I(sbi, type);
1709 mutex_lock(&curseg->curseg_mutex);
Chao Yub7ad7512016-02-19 18:08:46 +08001710
1711 /* update journal info */
1712 down_write(&curseg->journal_rwsem);
1713 memcpy(curseg->journal, &sum->journal, SUM_JOURNAL_SIZE);
1714 up_write(&curseg->journal_rwsem);
1715
1716 memcpy(curseg->sum_blk->entries, sum->entries, SUM_ENTRY_SIZE);
1717 memcpy(&curseg->sum_blk->footer, &sum->footer, SUM_FOOTER_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001718 curseg->next_segno = segno;
1719 reset_curseg(sbi, type, 0);
1720 curseg->alloc_type = ckpt->alloc_type[type];
1721 curseg->next_blkoff = blk_off;
1722 mutex_unlock(&curseg->curseg_mutex);
1723 f2fs_put_page(new, 1);
1724 return 0;
1725}
1726
1727static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1728{
1729 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001730 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001731
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001732 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001733 int npages = npages_for_summary_flush(sbi, true);
1734
1735 if (npages >= 2)
1736 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001737 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001738
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001739 /* restore for compacted data summary */
1740 if (read_compacted_summaries(sbi))
1741 return -EINVAL;
1742 type = CURSEG_HOT_NODE;
1743 }
1744
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001745 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001746 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001747 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001748
Chao Yue4fc5fb2014-03-17 16:36:24 +08001749 for (; type <= CURSEG_COLD_NODE; type++) {
1750 err = read_normal_summaries(sbi, type);
1751 if (err)
1752 return err;
1753 }
1754
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001755 return 0;
1756}
1757
1758static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1759{
1760 struct page *page;
1761 unsigned char *kaddr;
1762 struct f2fs_summary *summary;
1763 struct curseg_info *seg_i;
1764 int written_size = 0;
1765 int i, j;
1766
1767 page = grab_meta_page(sbi, blkaddr++);
1768 kaddr = (unsigned char *)page_address(page);
1769
1770 /* Step 1: write nat cache */
1771 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001772 memcpy(kaddr, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001773 written_size += SUM_JOURNAL_SIZE;
1774
1775 /* Step 2: write sit cache */
1776 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001777 memcpy(kaddr + written_size, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001778 written_size += SUM_JOURNAL_SIZE;
1779
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001780 /* Step 3: write summary entries */
1781 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1782 unsigned short blkoff;
1783 seg_i = CURSEG_I(sbi, i);
1784 if (sbi->ckpt->alloc_type[i] == SSR)
1785 blkoff = sbi->blocks_per_seg;
1786 else
1787 blkoff = curseg_blkoff(sbi, i);
1788
1789 for (j = 0; j < blkoff; j++) {
1790 if (!page) {
1791 page = grab_meta_page(sbi, blkaddr++);
1792 kaddr = (unsigned char *)page_address(page);
1793 written_size = 0;
1794 }
1795 summary = (struct f2fs_summary *)(kaddr + written_size);
1796 *summary = seg_i->sum_blk->entries[j];
1797 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001798
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001799 if (written_size + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001800 SUM_FOOTER_SIZE)
1801 continue;
1802
Chao Yue8d61a72013-10-24 15:08:28 +08001803 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001804 f2fs_put_page(page, 1);
1805 page = NULL;
1806 }
1807 }
Chao Yue8d61a72013-10-24 15:08:28 +08001808 if (page) {
1809 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001810 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08001811 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001812}
1813
1814static void write_normal_summaries(struct f2fs_sb_info *sbi,
1815 block_t blkaddr, int type)
1816{
1817 int i, end;
1818 if (IS_DATASEG(type))
1819 end = type + NR_CURSEG_DATA_TYPE;
1820 else
1821 end = type + NR_CURSEG_NODE_TYPE;
1822
Chao Yub7ad7512016-02-19 18:08:46 +08001823 for (i = type; i < end; i++)
1824 write_current_sum_page(sbi, i, blkaddr + (i - type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001825}
1826
1827void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1828{
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001829 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001830 write_compacted_summaries(sbi, start_blk);
1831 else
1832 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1833}
1834
1835void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1836{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001837 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001838}
1839
Chao Yudfc08a12016-02-14 18:50:40 +08001840int lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001841 unsigned int val, int alloc)
1842{
1843 int i;
1844
1845 if (type == NAT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001846 for (i = 0; i < nats_in_cursum(journal); i++) {
1847 if (le32_to_cpu(nid_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001848 return i;
1849 }
Chao Yudfc08a12016-02-14 18:50:40 +08001850 if (alloc && __has_cursum_space(journal, 1, NAT_JOURNAL))
1851 return update_nats_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001852 } else if (type == SIT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001853 for (i = 0; i < sits_in_cursum(journal); i++)
1854 if (le32_to_cpu(segno_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001855 return i;
Chao Yudfc08a12016-02-14 18:50:40 +08001856 if (alloc && __has_cursum_space(journal, 1, SIT_JOURNAL))
1857 return update_sits_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001858 }
1859 return -1;
1860}
1861
1862static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
1863 unsigned int segno)
1864{
Gu Zheng2cc22182014-10-20 17:45:49 +08001865 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001866}
1867
1868static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
1869 unsigned int start)
1870{
1871 struct sit_info *sit_i = SIT_I(sbi);
1872 struct page *src_page, *dst_page;
1873 pgoff_t src_off, dst_off;
1874 void *src_addr, *dst_addr;
1875
1876 src_off = current_sit_addr(sbi, start);
1877 dst_off = next_sit_addr(sbi, src_off);
1878
1879 /* get current sit block page without lock */
1880 src_page = get_meta_page(sbi, src_off);
1881 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001882 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001883
1884 src_addr = page_address(src_page);
1885 dst_addr = page_address(dst_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001886 memcpy(dst_addr, src_addr, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001887
1888 set_page_dirty(dst_page);
1889 f2fs_put_page(src_page, 1);
1890
1891 set_to_next_sit(sit_i, start);
1892
1893 return dst_page;
1894}
1895
Chao Yu184a5cd2014-09-04 18:13:01 +08001896static struct sit_entry_set *grab_sit_entry_set(void)
1897{
1898 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001899 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08001900
1901 ses->entry_cnt = 0;
1902 INIT_LIST_HEAD(&ses->set_list);
1903 return ses;
1904}
1905
1906static void release_sit_entry_set(struct sit_entry_set *ses)
1907{
1908 list_del(&ses->set_list);
1909 kmem_cache_free(sit_entry_set_slab, ses);
1910}
1911
1912static void adjust_sit_entry_set(struct sit_entry_set *ses,
1913 struct list_head *head)
1914{
1915 struct sit_entry_set *next = ses;
1916
1917 if (list_is_last(&ses->set_list, head))
1918 return;
1919
1920 list_for_each_entry_continue(next, head, set_list)
1921 if (ses->entry_cnt <= next->entry_cnt)
1922 break;
1923
1924 list_move_tail(&ses->set_list, &next->set_list);
1925}
1926
1927static void add_sit_entry(unsigned int segno, struct list_head *head)
1928{
1929 struct sit_entry_set *ses;
1930 unsigned int start_segno = START_SEGNO(segno);
1931
1932 list_for_each_entry(ses, head, set_list) {
1933 if (ses->start_segno == start_segno) {
1934 ses->entry_cnt++;
1935 adjust_sit_entry_set(ses, head);
1936 return;
1937 }
1938 }
1939
1940 ses = grab_sit_entry_set();
1941
1942 ses->start_segno = start_segno;
1943 ses->entry_cnt++;
1944 list_add(&ses->set_list, head);
1945}
1946
1947static void add_sits_in_set(struct f2fs_sb_info *sbi)
1948{
1949 struct f2fs_sm_info *sm_info = SM_I(sbi);
1950 struct list_head *set_list = &sm_info->sit_entry_set;
1951 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08001952 unsigned int segno;
1953
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001954 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08001955 add_sit_entry(segno, set_list);
1956}
1957
1958static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001959{
1960 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001961 struct f2fs_journal *journal = curseg->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001962 int i;
1963
Chao Yub7ad7512016-02-19 18:08:46 +08001964 down_write(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08001965 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yu184a5cd2014-09-04 18:13:01 +08001966 unsigned int segno;
1967 bool dirtied;
1968
Chao Yudfc08a12016-02-14 18:50:40 +08001969 segno = le32_to_cpu(segno_in_journal(journal, i));
Chao Yu184a5cd2014-09-04 18:13:01 +08001970 dirtied = __mark_sit_entry_dirty(sbi, segno);
1971
1972 if (!dirtied)
1973 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001974 }
Chao Yudfc08a12016-02-14 18:50:40 +08001975 update_sits_in_cursum(journal, -i);
Chao Yub7ad7512016-02-19 18:08:46 +08001976 up_write(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001977}
1978
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001979/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001980 * CP calls this function, which flushes SIT entries including sit_journal,
1981 * and moves prefree segs to free segs.
1982 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001983void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001984{
1985 struct sit_info *sit_i = SIT_I(sbi);
1986 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
1987 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001988 struct f2fs_journal *journal = curseg->journal;
Chao Yu184a5cd2014-09-04 18:13:01 +08001989 struct sit_entry_set *ses, *tmp;
1990 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08001991 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001992 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001993
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001994 mutex_lock(&sit_i->sentry_lock);
1995
Wanpeng Li2b11a742015-02-27 16:52:50 +08001996 if (!sit_i->dirty_sentries)
1997 goto out;
1998
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001999 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08002000 * add and account sit entries of dirty bitmap in sit entry
2001 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002002 */
Chao Yu184a5cd2014-09-04 18:13:01 +08002003 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002004
Chao Yu184a5cd2014-09-04 18:13:01 +08002005 /*
2006 * if there are no enough space in journal to store dirty sit
2007 * entries, remove all entries from journal and add and account
2008 * them in sit entry set.
2009 */
Chao Yudfc08a12016-02-14 18:50:40 +08002010 if (!__has_cursum_space(journal, sit_i->dirty_sentries, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002011 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002012
Chao Yu184a5cd2014-09-04 18:13:01 +08002013 /*
2014 * there are two steps to flush sit entries:
2015 * #1, flush sit entries to journal in current cold data summary block.
2016 * #2, flush sit entries to sit page.
2017 */
2018 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07002019 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08002020 struct f2fs_sit_block *raw_sit = NULL;
2021 unsigned int start_segno = ses->start_segno;
2022 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002023 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08002024 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09002025
Chao Yu184a5cd2014-09-04 18:13:01 +08002026 if (to_journal &&
Chao Yudfc08a12016-02-14 18:50:40 +08002027 !__has_cursum_space(journal, ses->entry_cnt, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002028 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002029
Chao Yub7ad7512016-02-19 18:08:46 +08002030 if (to_journal) {
2031 down_write(&curseg->journal_rwsem);
2032 } else {
Chao Yu184a5cd2014-09-04 18:13:01 +08002033 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002034 raw_sit = page_address(page);
2035 }
2036
Chao Yu184a5cd2014-09-04 18:13:01 +08002037 /* flush dirty sit entries in region of current sit set */
2038 for_each_set_bit_from(segno, bitmap, end) {
2039 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002040
2041 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08002042
2043 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08002044 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002045 cpc->trim_start = segno;
2046 add_discard_addrs(sbi, cpc);
2047 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002048
2049 if (to_journal) {
Chao Yudfc08a12016-02-14 18:50:40 +08002050 offset = lookup_journal_in_cursum(journal,
Chao Yu184a5cd2014-09-04 18:13:01 +08002051 SIT_JOURNAL, segno, 1);
2052 f2fs_bug_on(sbi, offset < 0);
Chao Yudfc08a12016-02-14 18:50:40 +08002053 segno_in_journal(journal, offset) =
Chao Yu184a5cd2014-09-04 18:13:01 +08002054 cpu_to_le32(segno);
2055 seg_info_to_raw_sit(se,
Chao Yudfc08a12016-02-14 18:50:40 +08002056 &sit_in_journal(journal, offset));
Chao Yu184a5cd2014-09-04 18:13:01 +08002057 } else {
2058 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
2059 seg_info_to_raw_sit(se,
2060 &raw_sit->entries[sit_offset]);
2061 }
2062
2063 __clear_bit(segno, bitmap);
2064 sit_i->dirty_sentries--;
2065 ses->entry_cnt--;
2066 }
2067
Chao Yub7ad7512016-02-19 18:08:46 +08002068 if (to_journal)
2069 up_write(&curseg->journal_rwsem);
2070 else
Chao Yu184a5cd2014-09-04 18:13:01 +08002071 f2fs_put_page(page, 1);
2072
2073 f2fs_bug_on(sbi, ses->entry_cnt);
2074 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002075 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002076
2077 f2fs_bug_on(sbi, !list_empty(head));
2078 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08002079out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002080 if (cpc->reason == CP_DISCARD) {
2081 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
2082 add_discard_addrs(sbi, cpc);
2083 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002084 mutex_unlock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002085
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002086 set_prefree_as_free_segments(sbi);
2087}
2088
2089static int build_sit_info(struct f2fs_sb_info *sbi)
2090{
2091 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2092 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
2093 struct sit_info *sit_i;
2094 unsigned int sit_segs, start;
2095 char *src_bitmap, *dst_bitmap;
2096 unsigned int bitmap_size;
2097
2098 /* allocate memory for SIT information */
2099 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
2100 if (!sit_i)
2101 return -ENOMEM;
2102
2103 SM_I(sbi)->sit_info = sit_i;
2104
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002105 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
2106 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002107 if (!sit_i->sentries)
2108 return -ENOMEM;
2109
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002110 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002111 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002112 if (!sit_i->dirty_sentries_bitmap)
2113 return -ENOMEM;
2114
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002115 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002116 sit_i->sentries[start].cur_valid_map
2117 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2118 sit_i->sentries[start].ckpt_valid_map
2119 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002120 sit_i->sentries[start].discard_map
2121 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2122 if (!sit_i->sentries[start].cur_valid_map ||
2123 !sit_i->sentries[start].ckpt_valid_map ||
2124 !sit_i->sentries[start].discard_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002125 return -ENOMEM;
2126 }
2127
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002128 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2129 if (!sit_i->tmp_map)
2130 return -ENOMEM;
2131
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002132 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002133 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
2134 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002135 if (!sit_i->sec_entries)
2136 return -ENOMEM;
2137 }
2138
2139 /* get information related with SIT */
2140 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
2141
2142 /* setup SIT bitmap from ckeckpoint pack */
2143 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
2144 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
2145
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02002146 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002147 if (!dst_bitmap)
2148 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002149
2150 /* init SIT information */
2151 sit_i->s_ops = &default_salloc_ops;
2152
2153 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2154 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
2155 sit_i->written_valid_blocks = le64_to_cpu(ckpt->valid_block_count);
2156 sit_i->sit_bitmap = dst_bitmap;
2157 sit_i->bitmap_size = bitmap_size;
2158 sit_i->dirty_sentries = 0;
2159 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2160 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2161 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2162 mutex_init(&sit_i->sentry_lock);
2163 return 0;
2164}
2165
2166static int build_free_segmap(struct f2fs_sb_info *sbi)
2167{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002168 struct free_segmap_info *free_i;
2169 unsigned int bitmap_size, sec_bitmap_size;
2170
2171 /* allocate memory for free segmap information */
2172 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2173 if (!free_i)
2174 return -ENOMEM;
2175
2176 SM_I(sbi)->free_info = free_i;
2177
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002178 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002179 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002180 if (!free_i->free_segmap)
2181 return -ENOMEM;
2182
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002183 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002184 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002185 if (!free_i->free_secmap)
2186 return -ENOMEM;
2187
2188 /* set all segments as dirty temporarily */
2189 memset(free_i->free_segmap, 0xff, bitmap_size);
2190 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2191
2192 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002193 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002194 free_i->free_segments = 0;
2195 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002196 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002197 return 0;
2198}
2199
2200static int build_curseg(struct f2fs_sb_info *sbi)
2201{
Namjae Jeon1042d602012-12-01 10:56:13 +09002202 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002203 int i;
2204
Fabian Frederickb434bab2014-06-23 18:39:15 +02002205 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002206 if (!array)
2207 return -ENOMEM;
2208
2209 SM_I(sbi)->curseg_array = array;
2210
2211 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2212 mutex_init(&array[i].curseg_mutex);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002213 array[i].sum_blk = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002214 if (!array[i].sum_blk)
2215 return -ENOMEM;
Chao Yub7ad7512016-02-19 18:08:46 +08002216 init_rwsem(&array[i].journal_rwsem);
2217 array[i].journal = kzalloc(sizeof(struct f2fs_journal),
2218 GFP_KERNEL);
2219 if (!array[i].journal)
2220 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002221 array[i].segno = NULL_SEGNO;
2222 array[i].next_blkoff = 0;
2223 }
2224 return restore_curseg_summaries(sbi);
2225}
2226
2227static void build_sit_entries(struct f2fs_sb_info *sbi)
2228{
2229 struct sit_info *sit_i = SIT_I(sbi);
2230 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002231 struct f2fs_journal *journal = curseg->journal;
Chao Yu74de5932013-11-22 09:09:59 +08002232 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2233 unsigned int i, start, end;
2234 unsigned int readed, start_blk = 0;
Chao Yue9f5b8b2016-02-14 18:54:33 +08002235 int nrpages = MAX_BIO_BLOCKS(sbi) * 8;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002236
Chao Yu74de5932013-11-22 09:09:59 +08002237 do {
Chao Yu26879fb2015-10-12 17:05:59 +08002238 readed = ra_meta_pages(sbi, start_blk, nrpages, META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002239
Chao Yu74de5932013-11-22 09:09:59 +08002240 start = start_blk * sit_i->sents_per_block;
2241 end = (start_blk + readed) * sit_i->sents_per_block;
2242
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002243 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002244 struct seg_entry *se = &sit_i->sentries[start];
2245 struct f2fs_sit_block *sit_blk;
2246 struct f2fs_sit_entry sit;
2247 struct page *page;
2248
Chao Yub7ad7512016-02-19 18:08:46 +08002249 down_read(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08002250 for (i = 0; i < sits_in_cursum(journal); i++) {
2251 if (le32_to_cpu(segno_in_journal(journal, i))
Chris Fries6c311ec2014-01-17 14:44:39 -06002252 == start) {
Chao Yudfc08a12016-02-14 18:50:40 +08002253 sit = sit_in_journal(journal, i);
Chao Yub7ad7512016-02-19 18:08:46 +08002254 up_read(&curseg->journal_rwsem);
Chao Yu74de5932013-11-22 09:09:59 +08002255 goto got_it;
2256 }
2257 }
Chao Yub7ad7512016-02-19 18:08:46 +08002258 up_read(&curseg->journal_rwsem);
Chao Yu74de5932013-11-22 09:09:59 +08002259
2260 page = get_current_sit_page(sbi, start);
2261 sit_blk = (struct f2fs_sit_block *)page_address(page);
2262 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2263 f2fs_put_page(page, 1);
2264got_it:
2265 check_block_count(sbi, start, &sit);
2266 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002267
2268 /* build discard map only one time */
2269 memcpy(se->discard_map, se->cur_valid_map, SIT_VBLOCK_MAP_SIZE);
2270 sbi->discard_blks += sbi->blocks_per_seg - se->valid_blocks;
2271
Chao Yu74de5932013-11-22 09:09:59 +08002272 if (sbi->segs_per_sec > 1) {
2273 struct sec_entry *e = get_sec_entry(sbi, start);
2274 e->valid_blocks += se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002275 }
2276 }
Chao Yu74de5932013-11-22 09:09:59 +08002277 start_blk += readed;
2278 } while (start_blk < sit_blk_cnt);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002279}
2280
2281static void init_free_segmap(struct f2fs_sb_info *sbi)
2282{
2283 unsigned int start;
2284 int type;
2285
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002286 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002287 struct seg_entry *sentry = get_seg_entry(sbi, start);
2288 if (!sentry->valid_blocks)
2289 __set_free(sbi, start);
2290 }
2291
2292 /* set use the current segments */
2293 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2294 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2295 __set_test_and_inuse(sbi, curseg_t->segno);
2296 }
2297}
2298
2299static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2300{
2301 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2302 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002303 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002304 unsigned short valid_blocks;
2305
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002306 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002307 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002308 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2309 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002310 break;
2311 offset = segno + 1;
2312 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002313 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002314 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002315 if (valid_blocks > sbi->blocks_per_seg) {
2316 f2fs_bug_on(sbi, 1);
2317 continue;
2318 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002319 mutex_lock(&dirty_i->seglist_lock);
2320 __locate_dirty_segment(sbi, segno, DIRTY);
2321 mutex_unlock(&dirty_i->seglist_lock);
2322 }
2323}
2324
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002325static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002326{
2327 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002328 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002329
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002330 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002331 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002332 return -ENOMEM;
2333 return 0;
2334}
2335
2336static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2337{
2338 struct dirty_seglist_info *dirty_i;
2339 unsigned int bitmap_size, i;
2340
2341 /* allocate memory for dirty segments list information */
2342 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2343 if (!dirty_i)
2344 return -ENOMEM;
2345
2346 SM_I(sbi)->dirty_info = dirty_i;
2347 mutex_init(&dirty_i->seglist_lock);
2348
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002349 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002350
2351 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002352 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002353 if (!dirty_i->dirty_segmap[i])
2354 return -ENOMEM;
2355 }
2356
2357 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002358 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002359}
2360
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002361/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002362 * Update min, max modified time for cost-benefit GC algorithm
2363 */
2364static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2365{
2366 struct sit_info *sit_i = SIT_I(sbi);
2367 unsigned int segno;
2368
2369 mutex_lock(&sit_i->sentry_lock);
2370
2371 sit_i->min_mtime = LLONG_MAX;
2372
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002373 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002374 unsigned int i;
2375 unsigned long long mtime = 0;
2376
2377 for (i = 0; i < sbi->segs_per_sec; i++)
2378 mtime += get_seg_entry(sbi, segno + i)->mtime;
2379
2380 mtime = div_u64(mtime, sbi->segs_per_sec);
2381
2382 if (sit_i->min_mtime > mtime)
2383 sit_i->min_mtime = mtime;
2384 }
2385 sit_i->max_mtime = get_mtime(sbi);
2386 mutex_unlock(&sit_i->sentry_lock);
2387}
2388
2389int build_segment_manager(struct f2fs_sb_info *sbi)
2390{
2391 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2392 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002393 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002394 int err;
2395
2396 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2397 if (!sm_info)
2398 return -ENOMEM;
2399
2400 /* init sm info */
2401 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002402 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2403 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2404 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2405 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2406 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2407 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2408 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002409 sm_info->rec_prefree_segments = sm_info->main_segments *
2410 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim52763a42016-06-13 09:47:48 -07002411 if (!test_opt(sbi, LFS))
2412 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002413 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002414 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002415
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002416 INIT_LIST_HEAD(&sm_info->discard_list);
2417 sm_info->nr_discards = 0;
2418 sm_info->max_discards = 0;
2419
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002420 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2421
Chao Yu184a5cd2014-09-04 18:13:01 +08002422 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2423
Gu Zhengb270ad62014-04-11 17:49:55 +08002424 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002425 err = create_flush_cmd_control(sbi);
2426 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002427 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002428 }
2429
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002430 err = build_sit_info(sbi);
2431 if (err)
2432 return err;
2433 err = build_free_segmap(sbi);
2434 if (err)
2435 return err;
2436 err = build_curseg(sbi);
2437 if (err)
2438 return err;
2439
2440 /* reinit free segmap based on SIT */
2441 build_sit_entries(sbi);
2442
2443 init_free_segmap(sbi);
2444 err = build_dirty_segmap(sbi);
2445 if (err)
2446 return err;
2447
2448 init_min_max_mtime(sbi);
2449 return 0;
2450}
2451
2452static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2453 enum dirty_type dirty_type)
2454{
2455 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2456
2457 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002458 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002459 dirty_i->nr_dirty[dirty_type] = 0;
2460 mutex_unlock(&dirty_i->seglist_lock);
2461}
2462
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002463static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002464{
2465 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002466 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002467}
2468
2469static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2470{
2471 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2472 int i;
2473
2474 if (!dirty_i)
2475 return;
2476
2477 /* discard pre-free/dirty segments list */
2478 for (i = 0; i < NR_DIRTY_TYPE; i++)
2479 discard_dirty_segmap(sbi, i);
2480
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002481 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002482 SM_I(sbi)->dirty_info = NULL;
2483 kfree(dirty_i);
2484}
2485
2486static void destroy_curseg(struct f2fs_sb_info *sbi)
2487{
2488 struct curseg_info *array = SM_I(sbi)->curseg_array;
2489 int i;
2490
2491 if (!array)
2492 return;
2493 SM_I(sbi)->curseg_array = NULL;
Chao Yub7ad7512016-02-19 18:08:46 +08002494 for (i = 0; i < NR_CURSEG_TYPE; i++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002495 kfree(array[i].sum_blk);
Chao Yub7ad7512016-02-19 18:08:46 +08002496 kfree(array[i].journal);
2497 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002498 kfree(array);
2499}
2500
2501static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2502{
2503 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2504 if (!free_i)
2505 return;
2506 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002507 kvfree(free_i->free_segmap);
2508 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002509 kfree(free_i);
2510}
2511
2512static void destroy_sit_info(struct f2fs_sb_info *sbi)
2513{
2514 struct sit_info *sit_i = SIT_I(sbi);
2515 unsigned int start;
2516
2517 if (!sit_i)
2518 return;
2519
2520 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002521 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002522 kfree(sit_i->sentries[start].cur_valid_map);
2523 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002524 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002525 }
2526 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002527 kfree(sit_i->tmp_map);
2528
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002529 kvfree(sit_i->sentries);
2530 kvfree(sit_i->sec_entries);
2531 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002532
2533 SM_I(sbi)->sit_info = NULL;
2534 kfree(sit_i->sit_bitmap);
2535 kfree(sit_i);
2536}
2537
2538void destroy_segment_manager(struct f2fs_sb_info *sbi)
2539{
2540 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002541
Chao Yu3b03f722013-11-06 09:12:04 +08002542 if (!sm_info)
2543 return;
Gu Zheng2163d192014-04-27 14:21:33 +08002544 destroy_flush_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002545 destroy_dirty_segmap(sbi);
2546 destroy_curseg(sbi);
2547 destroy_free_segmap(sbi);
2548 destroy_sit_info(sbi);
2549 sbi->sm_info = NULL;
2550 kfree(sm_info);
2551}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002552
2553int __init create_segment_manager_caches(void)
2554{
2555 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002556 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002557 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002558 goto fail;
2559
2560 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002561 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002562 if (!sit_entry_set_slab)
2563 goto destory_discard_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002564
2565 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2566 sizeof(struct inmem_pages));
2567 if (!inmem_entry_slab)
2568 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002569 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002570
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002571destroy_sit_entry_set:
2572 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu184a5cd2014-09-04 18:13:01 +08002573destory_discard_entry:
2574 kmem_cache_destroy(discard_entry_slab);
2575fail:
2576 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002577}
2578
2579void destroy_segment_manager_caches(void)
2580{
Chao Yu184a5cd2014-09-04 18:13:01 +08002581 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002582 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002583 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002584}