blob: e87aa058f57a671e0fb5170329192e301ff17fa7 [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;
Chao Yuc24a0fd2016-07-07 22:46:55 +0800717 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900718
719 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900720
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900721 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900722 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700723 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
724 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900725 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700726 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
727 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900728
Changman Lee29e59c12013-11-11 09:24:37 +0900729 for (i = start; i < end; i++)
730 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900731
Changman Lee29e59c12013-11-11 09:24:37 +0900732 dirty_i->nr_dirty[PRE] -= end - start;
733
Chao Yuc24a0fd2016-07-07 22:46:55 +0800734 if (force || !test_opt(sbi, DISCARD))
Changman Lee29e59c12013-11-11 09:24:37 +0900735 continue;
736
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700737 if (!test_opt(sbi, LFS) || sbi->segs_per_sec == 1) {
738 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
Jaegeuk Kim37208872013-11-12 16:55:17 +0900739 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700740 continue;
741 }
742next:
743 secno = GET_SECNO(sbi, start);
744 start_segno = secno * sbi->segs_per_sec;
745 if (!IS_CURSEC(sbi, secno) &&
746 !get_valid_blocks(sbi, start, sbi->segs_per_sec))
747 f2fs_issue_discard(sbi, START_BLOCK(sbi, start_segno),
748 sbi->segs_per_sec << sbi->log_blocks_per_seg);
749
750 start = start_segno + sbi->segs_per_sec;
751 if (start < end)
752 goto next;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900753 }
754 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900755
756 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800757 list_for_each_entry_safe(entry, this, head, list) {
Chao Yuc24a0fd2016-07-07 22:46:55 +0800758 if (force && entry->len < cpc->trim_minlen)
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700759 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900760 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700761 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700762skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900763 list_del(&entry->list);
764 SM_I(sbi)->nr_discards -= entry->len;
765 kmem_cache_free(discard_entry_slab, entry);
766 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900767}
768
Chao Yu184a5cd2014-09-04 18:13:01 +0800769static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900770{
771 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800772
773 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900774 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800775 return false;
776 }
777
778 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900779}
780
781static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
782 unsigned int segno, int modified)
783{
784 struct seg_entry *se = get_seg_entry(sbi, segno);
785 se->type = type;
786 if (modified)
787 __mark_sit_entry_dirty(sbi, segno);
788}
789
790static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
791{
792 struct seg_entry *se;
793 unsigned int segno, offset;
794 long int new_vblocks;
795
796 segno = GET_SEGNO(sbi, blkaddr);
797
798 se = get_seg_entry(sbi, segno);
799 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +0900800 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900801
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700802 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900803 (new_vblocks > sbi->blocks_per_seg)));
804
805 se->valid_blocks = new_vblocks;
806 se->mtime = get_mtime(sbi);
807 SIT_I(sbi)->max_mtime = se->mtime;
808
809 /* Update valid block bitmap */
810 if (del > 0) {
Gu Zheng52aca072014-10-20 17:45:51 +0800811 if (f2fs_test_and_set_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700812 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700813 if (!f2fs_test_and_set_bit(offset, se->discard_map))
814 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900815 } else {
Gu Zheng52aca072014-10-20 17:45:51 +0800816 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700817 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700818 if (f2fs_test_and_clear_bit(offset, se->discard_map))
819 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900820 }
821 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
822 se->ckpt_valid_blocks += del;
823
824 __mark_sit_entry_dirty(sbi, segno);
825
826 /* update total number of valid blocks to be written in ckpt area */
827 SIT_I(sbi)->written_valid_blocks += del;
828
829 if (sbi->segs_per_sec > 1)
830 get_sec_entry(sbi, segno)->valid_blocks += del;
831}
832
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900833void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900834{
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900835 update_sit_entry(sbi, new, 1);
836 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
837 update_sit_entry(sbi, old, -1);
838
839 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
840 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900841}
842
843void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
844{
845 unsigned int segno = GET_SEGNO(sbi, addr);
846 struct sit_info *sit_i = SIT_I(sbi);
847
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700848 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900849 if (addr == NEW_ADDR)
850 return;
851
852 /* add it into sit main buffer */
853 mutex_lock(&sit_i->sentry_lock);
854
855 update_sit_entry(sbi, addr, -1);
856
857 /* add it into dirty seglist */
858 locate_dirty_segment(sbi, segno);
859
860 mutex_unlock(&sit_i->sentry_lock);
861}
862
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -0700863bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
864{
865 struct sit_info *sit_i = SIT_I(sbi);
866 unsigned int segno, offset;
867 struct seg_entry *se;
868 bool is_cp = false;
869
870 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
871 return true;
872
873 mutex_lock(&sit_i->sentry_lock);
874
875 segno = GET_SEGNO(sbi, blkaddr);
876 se = get_seg_entry(sbi, segno);
877 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
878
879 if (f2fs_test_bit(offset, se->ckpt_valid_map))
880 is_cp = true;
881
882 mutex_unlock(&sit_i->sentry_lock);
883
884 return is_cp;
885}
886
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900887/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900888 * This function should be resided under the curseg_mutex lock
889 */
890static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +0800891 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900892{
893 struct curseg_info *curseg = CURSEG_I(sbi, type);
894 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +0800895 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900896 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900897}
898
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900899/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900900 * Calculate the number of current summary pages for writing
901 */
Chao Yu3fa06d72014-12-09 14:21:46 +0800902int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900903{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900904 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +0800905 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900906
907 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
908 if (sbi->ckpt->alloc_type[i] == SSR)
909 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +0800910 else {
911 if (for_ra)
912 valid_sum_count += le16_to_cpu(
913 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
914 else
915 valid_sum_count += curseg_blkoff(sbi, i);
916 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900917 }
918
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300919 sum_in_page = (PAGE_SIZE - 2 * SUM_JOURNAL_SIZE -
Fan Li9a479382013-10-29 16:21:47 +0800920 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
921 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900922 return 1;
Fan Li9a479382013-10-29 16:21:47 +0800923 else if ((valid_sum_count - sum_in_page) <=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300924 (PAGE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900925 return 2;
926 return 3;
927}
928
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900929/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900930 * Caller should put this summary page
931 */
932struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
933{
934 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
935}
936
Chao Yu381722d2015-05-19 17:40:04 +0800937void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
938{
939 struct page *page = grab_meta_page(sbi, blk_addr);
940 void *dst = page_address(page);
941
942 if (src)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300943 memcpy(dst, src, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +0800944 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300945 memset(dst, 0, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +0800946 set_page_dirty(page);
947 f2fs_put_page(page, 1);
948}
949
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900950static void write_sum_page(struct f2fs_sb_info *sbi,
951 struct f2fs_summary_block *sum_blk, block_t blk_addr)
952{
Chao Yu381722d2015-05-19 17:40:04 +0800953 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900954}
955
Chao Yub7ad7512016-02-19 18:08:46 +0800956static void write_current_sum_page(struct f2fs_sb_info *sbi,
957 int type, block_t blk_addr)
958{
959 struct curseg_info *curseg = CURSEG_I(sbi, type);
960 struct page *page = grab_meta_page(sbi, blk_addr);
961 struct f2fs_summary_block *src = curseg->sum_blk;
962 struct f2fs_summary_block *dst;
963
964 dst = (struct f2fs_summary_block *)page_address(page);
965
966 mutex_lock(&curseg->curseg_mutex);
967
968 down_read(&curseg->journal_rwsem);
969 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE);
970 up_read(&curseg->journal_rwsem);
971
972 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE);
973 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE);
974
975 mutex_unlock(&curseg->curseg_mutex);
976
977 set_page_dirty(page);
978 f2fs_put_page(page, 1);
979}
980
Jaegeuk Kim60374682013-03-31 13:58:51 +0900981static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
982{
983 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +0800984 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +0900985 struct free_segmap_info *free_i = FREE_I(sbi);
986
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700987 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +0800988 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +0900989 return 0;
990}
991
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900992/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900993 * Find a new segment from the free segments bitmap to right order
994 * This function should be returned with success, otherwise BUG
995 */
996static void get_new_segment(struct f2fs_sb_info *sbi,
997 unsigned int *newseg, bool new_sec, int dir)
998{
999 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001000 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001001 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001002 unsigned int hint = *newseg / sbi->segs_per_sec;
1003 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
1004 unsigned int left_start = hint;
1005 bool init = true;
1006 int go_left = 0;
1007 int i;
1008
Chao Yu1a118cc2015-02-11 18:20:38 +08001009 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001010
1011 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
1012 segno = find_next_zero_bit(free_i->free_segmap,
Chao Yu0ab14352016-01-22 17:42:06 +08001013 (hint + 1) * sbi->segs_per_sec, *newseg + 1);
1014 if (segno < (hint + 1) * sbi->segs_per_sec)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001015 goto got_it;
1016 }
1017find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001018 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
1019 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001020 if (dir == ALLOC_RIGHT) {
1021 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001022 MAIN_SECS(sbi), 0);
1023 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001024 } else {
1025 go_left = 1;
1026 left_start = hint - 1;
1027 }
1028 }
1029 if (go_left == 0)
1030 goto skip_left;
1031
1032 while (test_bit(left_start, free_i->free_secmap)) {
1033 if (left_start > 0) {
1034 left_start--;
1035 continue;
1036 }
1037 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001038 MAIN_SECS(sbi), 0);
1039 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001040 break;
1041 }
1042 secno = left_start;
1043skip_left:
1044 hint = secno;
1045 segno = secno * sbi->segs_per_sec;
1046 zoneno = secno / sbi->secs_per_zone;
1047
1048 /* give up on finding another zone */
1049 if (!init)
1050 goto got_it;
1051 if (sbi->secs_per_zone == 1)
1052 goto got_it;
1053 if (zoneno == old_zoneno)
1054 goto got_it;
1055 if (dir == ALLOC_LEFT) {
1056 if (!go_left && zoneno + 1 >= total_zones)
1057 goto got_it;
1058 if (go_left && zoneno == 0)
1059 goto got_it;
1060 }
1061 for (i = 0; i < NR_CURSEG_TYPE; i++)
1062 if (CURSEG_I(sbi, i)->zone == zoneno)
1063 break;
1064
1065 if (i < NR_CURSEG_TYPE) {
1066 /* zone is in user, try another */
1067 if (go_left)
1068 hint = zoneno * sbi->secs_per_zone - 1;
1069 else if (zoneno + 1 >= total_zones)
1070 hint = 0;
1071 else
1072 hint = (zoneno + 1) * sbi->secs_per_zone;
1073 init = false;
1074 goto find_other_zone;
1075 }
1076got_it:
1077 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001078 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001079 __set_inuse(sbi, segno);
1080 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08001081 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001082}
1083
1084static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
1085{
1086 struct curseg_info *curseg = CURSEG_I(sbi, type);
1087 struct summary_footer *sum_footer;
1088
1089 curseg->segno = curseg->next_segno;
1090 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
1091 curseg->next_blkoff = 0;
1092 curseg->next_segno = NULL_SEGNO;
1093
1094 sum_footer = &(curseg->sum_blk->footer);
1095 memset(sum_footer, 0, sizeof(struct summary_footer));
1096 if (IS_DATASEG(type))
1097 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
1098 if (IS_NODESEG(type))
1099 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
1100 __set_sit_entry_type(sbi, type, curseg->segno, modified);
1101}
1102
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001103/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001104 * Allocate a current working segment.
1105 * This function always allocates a free segment in LFS manner.
1106 */
1107static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
1108{
1109 struct curseg_info *curseg = CURSEG_I(sbi, type);
1110 unsigned int segno = curseg->segno;
1111 int dir = ALLOC_LEFT;
1112
1113 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08001114 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001115 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
1116 dir = ALLOC_RIGHT;
1117
1118 if (test_opt(sbi, NOHEAP))
1119 dir = ALLOC_RIGHT;
1120
1121 get_new_segment(sbi, &segno, new_sec, dir);
1122 curseg->next_segno = segno;
1123 reset_curseg(sbi, type, 1);
1124 curseg->alloc_type = LFS;
1125}
1126
1127static void __next_free_blkoff(struct f2fs_sb_info *sbi,
1128 struct curseg_info *seg, block_t start)
1129{
1130 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09001131 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001132 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09001133 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
1134 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1135 int i, pos;
1136
1137 for (i = 0; i < entries; i++)
1138 target_map[i] = ckpt_map[i] | cur_map[i];
1139
1140 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1141
1142 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001143}
1144
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001145/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001146 * If a segment is written by LFS manner, next block offset is just obtained
1147 * by increasing the current block offset. However, if a segment is written by
1148 * SSR manner, next block offset obtained by calling __next_free_blkoff
1149 */
1150static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1151 struct curseg_info *seg)
1152{
1153 if (seg->alloc_type == SSR)
1154 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1155 else
1156 seg->next_blkoff++;
1157}
1158
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001159/*
arter97e1c42042014-08-06 23:22:50 +09001160 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001161 * manner, so it should recover the existing segment information of valid blocks
1162 */
1163static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1164{
1165 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1166 struct curseg_info *curseg = CURSEG_I(sbi, type);
1167 unsigned int new_segno = curseg->next_segno;
1168 struct f2fs_summary_block *sum_node;
1169 struct page *sum_page;
1170
1171 write_sum_page(sbi, curseg->sum_blk,
1172 GET_SUM_BLOCK(sbi, curseg->segno));
1173 __set_test_and_inuse(sbi, new_segno);
1174
1175 mutex_lock(&dirty_i->seglist_lock);
1176 __remove_dirty_segment(sbi, new_segno, PRE);
1177 __remove_dirty_segment(sbi, new_segno, DIRTY);
1178 mutex_unlock(&dirty_i->seglist_lock);
1179
1180 reset_curseg(sbi, type, 1);
1181 curseg->alloc_type = SSR;
1182 __next_free_blkoff(sbi, curseg, 0);
1183
1184 if (reuse) {
1185 sum_page = get_sum_page(sbi, new_segno);
1186 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1187 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1188 f2fs_put_page(sum_page, 1);
1189 }
1190}
1191
Jaegeuk Kim43727522013-02-04 15:11:17 +09001192static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1193{
1194 struct curseg_info *curseg = CURSEG_I(sbi, type);
1195 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1196
1197 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0))
1198 return v_ops->get_victim(sbi,
1199 &(curseg)->next_segno, BG_GC, type, SSR);
1200
1201 /* For data segments, let's do SSR more intensively */
1202 for (; type >= CURSEG_HOT_DATA; type--)
1203 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1204 BG_GC, type, SSR))
1205 return 1;
1206 return 0;
1207}
1208
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001209/*
1210 * flush out current segment and replace it with new segment
1211 * This function should be returned with success, otherwise BUG
1212 */
1213static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1214 int type, bool force)
1215{
1216 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001217
Gu Zheng7b405272013-08-19 09:41:15 +08001218 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001219 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001220 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001221 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001222 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1223 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001224 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1225 change_curseg(sbi, type, true);
1226 else
1227 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001228
1229 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001230}
1231
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001232static void __allocate_new_segments(struct f2fs_sb_info *sbi, int type)
1233{
1234 struct curseg_info *curseg = CURSEG_I(sbi, type);
1235 unsigned int old_segno;
1236
1237 old_segno = curseg->segno;
1238 SIT_I(sbi)->s_ops->allocate_segment(sbi, type, true);
1239 locate_dirty_segment(sbi, old_segno);
1240}
1241
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001242void allocate_new_segments(struct f2fs_sb_info *sbi)
1243{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001244 int i;
1245
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001246 if (test_opt(sbi, LFS))
1247 return;
1248
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001249 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++)
1250 __allocate_new_segments(sbi, i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001251}
1252
1253static const struct segment_allocation default_salloc_ops = {
1254 .allocate_segment = allocate_segment_by_default,
1255};
1256
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001257int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1258{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001259 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1260 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001261 unsigned int start_segno, end_segno;
1262 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001263 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001264
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001265 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001266 return -EINVAL;
1267
Jan Kara9bd27ae2014-10-21 14:07:33 +02001268 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001269 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001270 goto out;
1271
1272 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001273 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1274 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1275 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001276 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001277 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001278
1279 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001280 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1281 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001282
1283 if (sbi->discard_blks == 0)
1284 break;
1285 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1286 cpc.trim_end = end_segno;
1287 else
1288 cpc.trim_end = min_t(unsigned int,
1289 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001290 BATCHED_TRIM_SEGMENTS(sbi),
1291 sbi->segs_per_sec) - 1, end_segno);
1292
1293 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001294 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001295 mutex_unlock(&sbi->gc_mutex);
1296 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001297out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001298 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001299 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001300}
1301
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001302static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1303{
1304 struct curseg_info *curseg = CURSEG_I(sbi, type);
1305 if (curseg->next_blkoff < sbi->blocks_per_seg)
1306 return true;
1307 return false;
1308}
1309
1310static int __get_segment_type_2(struct page *page, enum page_type p_type)
1311{
1312 if (p_type == DATA)
1313 return CURSEG_HOT_DATA;
1314 else
1315 return CURSEG_HOT_NODE;
1316}
1317
1318static int __get_segment_type_4(struct page *page, enum page_type p_type)
1319{
1320 if (p_type == DATA) {
1321 struct inode *inode = page->mapping->host;
1322
1323 if (S_ISDIR(inode->i_mode))
1324 return CURSEG_HOT_DATA;
1325 else
1326 return CURSEG_COLD_DATA;
1327 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001328 if (IS_DNODE(page) && is_cold_node(page))
1329 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001330 else
1331 return CURSEG_COLD_NODE;
1332 }
1333}
1334
1335static int __get_segment_type_6(struct page *page, enum page_type p_type)
1336{
1337 if (p_type == DATA) {
1338 struct inode *inode = page->mapping->host;
1339
1340 if (S_ISDIR(inode->i_mode))
1341 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001342 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001343 return CURSEG_COLD_DATA;
1344 else
1345 return CURSEG_WARM_DATA;
1346 } else {
1347 if (IS_DNODE(page))
1348 return is_cold_node(page) ? CURSEG_WARM_NODE :
1349 CURSEG_HOT_NODE;
1350 else
1351 return CURSEG_COLD_NODE;
1352 }
1353}
1354
1355static int __get_segment_type(struct page *page, enum page_type p_type)
1356{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001357 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001358 case 2:
1359 return __get_segment_type_2(page, p_type);
1360 case 4:
1361 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001362 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001363 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001364 f2fs_bug_on(F2FS_P_SB(page),
1365 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001366 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001367}
1368
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001369void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1370 block_t old_blkaddr, block_t *new_blkaddr,
1371 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001372{
1373 struct sit_info *sit_i = SIT_I(sbi);
1374 struct curseg_info *curseg;
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001375 bool direct_io = (type == CURSEG_DIRECT_IO);
1376
1377 type = direct_io ? CURSEG_WARM_DATA : type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001378
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001379 curseg = CURSEG_I(sbi, type);
1380
1381 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001382 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001383
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001384 /* direct_io'ed data is aligned to the segment for better performance */
Jaegeuk Kim47e70ca2015-08-11 10:17:27 -07001385 if (direct_io && curseg->next_blkoff &&
1386 !has_not_enough_free_secs(sbi, 0))
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001387 __allocate_new_segments(sbi, type);
1388
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001389 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001390
1391 /*
1392 * __add_sum_entry should be resided under the curseg_mutex
1393 * because, this function updates a summary entry in the
1394 * current summary block.
1395 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001396 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001397
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001398 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001399
1400 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001401
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001402 if (!__has_curseg_space(sbi, type))
1403 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001404 /*
1405 * SIT information should be updated before segment allocation,
1406 * since SSR needs latest valid block information.
1407 */
1408 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001409
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001410 mutex_unlock(&sit_i->sentry_lock);
1411
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001412 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001413 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1414
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001415 mutex_unlock(&curseg->curseg_mutex);
1416}
1417
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001418static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001419{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001420 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001421
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001422 if (fio->type == NODE || fio->type == DATA)
1423 mutex_lock(&fio->sbi->wio_mutex[fio->type]);
1424
Chao Yu7a9d7542016-02-22 18:36:38 +08001425 allocate_data_block(fio->sbi, fio->page, fio->old_blkaddr,
1426 &fio->new_blkaddr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001427
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001428 /* writeout dirty page into bdev */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001429 f2fs_submit_page_mbio(fio);
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001430
1431 if (fio->type == NODE || fio->type == DATA)
1432 mutex_unlock(&fio->sbi->wio_mutex[fio->type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001433}
1434
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001435void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001436{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001437 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001438 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001439 .type = META,
Jaegeuk Kimcf04e8e2014-12-17 19:33:13 -08001440 .rw = WRITE_SYNC | REQ_META | REQ_PRIO,
Chao Yu7a9d7542016-02-22 18:36:38 +08001441 .old_blkaddr = page->index,
1442 .new_blkaddr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001443 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001444 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001445 };
1446
Chao Yu2b947002015-10-12 17:04:21 +08001447 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
1448 fio.rw &= ~REQ_META;
1449
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001450 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001451 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001452}
1453
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001454void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001455{
1456 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001457
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001458 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001459 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001460}
1461
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001462void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001463{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001464 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001465 struct f2fs_summary sum;
1466 struct node_info ni;
1467
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001468 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001469 get_node_info(sbi, dn->nid, &ni);
1470 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001471 do_write_page(&sum, fio);
Chao Yuf28b3432016-02-24 17:16:47 +08001472 f2fs_update_data_blkaddr(dn, fio->new_blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001473}
1474
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001475void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001476{
Chao Yu7a9d7542016-02-22 18:36:38 +08001477 fio->new_blkaddr = fio->old_blkaddr;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001478 stat_inc_inplace_blocks(fio->sbi);
1479 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001480}
1481
Chao Yu4356e482016-02-23 17:52:43 +08001482void __f2fs_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001483 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08001484 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001485{
1486 struct sit_info *sit_i = SIT_I(sbi);
1487 struct curseg_info *curseg;
1488 unsigned int segno, old_cursegno;
1489 struct seg_entry *se;
1490 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001491 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001492
1493 segno = GET_SEGNO(sbi, new_blkaddr);
1494 se = get_seg_entry(sbi, segno);
1495 type = se->type;
1496
Chao Yu19f106b2015-05-06 13:08:06 +08001497 if (!recover_curseg) {
1498 /* for recovery flow */
1499 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1500 if (old_blkaddr == NULL_ADDR)
1501 type = CURSEG_COLD_DATA;
1502 else
1503 type = CURSEG_WARM_DATA;
1504 }
1505 } else {
1506 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001507 type = CURSEG_WARM_DATA;
1508 }
Chao Yu19f106b2015-05-06 13:08:06 +08001509
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001510 curseg = CURSEG_I(sbi, type);
1511
1512 mutex_lock(&curseg->curseg_mutex);
1513 mutex_lock(&sit_i->sentry_lock);
1514
1515 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001516 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001517
1518 /* change the current segment */
1519 if (segno != curseg->segno) {
1520 curseg->next_segno = segno;
1521 change_curseg(sbi, type, true);
1522 }
1523
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001524 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001525 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001526
Chao Yu28bc1062016-02-06 14:40:34 +08001527 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001528 update_sit_entry(sbi, new_blkaddr, 1);
1529 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1530 update_sit_entry(sbi, old_blkaddr, -1);
1531
1532 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1533 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1534
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001535 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001536
Chao Yu19f106b2015-05-06 13:08:06 +08001537 if (recover_curseg) {
1538 if (old_cursegno != curseg->segno) {
1539 curseg->next_segno = old_cursegno;
1540 change_curseg(sbi, type, true);
1541 }
1542 curseg->next_blkoff = old_blkoff;
1543 }
1544
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001545 mutex_unlock(&sit_i->sentry_lock);
1546 mutex_unlock(&curseg->curseg_mutex);
1547}
1548
Chao Yu528e3452015-05-28 19:15:35 +08001549void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1550 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08001551 unsigned char version, bool recover_curseg,
1552 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08001553{
1554 struct f2fs_summary sum;
1555
1556 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1557
Chao Yu28bc1062016-02-06 14:40:34 +08001558 __f2fs_replace_block(sbi, &sum, old_addr, new_addr,
1559 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08001560
Chao Yuf28b3432016-02-24 17:16:47 +08001561 f2fs_update_data_blkaddr(dn, new_addr);
Chao Yu528e3452015-05-28 19:15:35 +08001562}
1563
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001564void f2fs_wait_on_page_writeback(struct page *page,
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001565 enum page_type type, bool ordered)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001566{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001567 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001568 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1569
Chao Yu0c3a5792016-01-18 18:28:11 +08001570 f2fs_submit_merged_bio_cond(sbi, NULL, page, 0, type, WRITE);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001571 if (ordered)
1572 wait_on_page_writeback(page);
1573 else
1574 wait_for_stable_page(page);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001575 }
1576}
1577
Chao Yu08b39fb2015-10-08 13:27:34 +08001578void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1579 block_t blkaddr)
1580{
1581 struct page *cpage;
1582
1583 if (blkaddr == NEW_ADDR)
1584 return;
1585
1586 f2fs_bug_on(sbi, blkaddr == NULL_ADDR);
1587
1588 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1589 if (cpage) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001590 f2fs_wait_on_page_writeback(cpage, DATA, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08001591 f2fs_put_page(cpage, 1);
1592 }
1593}
1594
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001595static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1596{
1597 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1598 struct curseg_info *seg_i;
1599 unsigned char *kaddr;
1600 struct page *page;
1601 block_t start;
1602 int i, j, offset;
1603
1604 start = start_sum_block(sbi);
1605
1606 page = get_meta_page(sbi, start++);
1607 kaddr = (unsigned char *)page_address(page);
1608
1609 /* Step 1: restore nat cache */
1610 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001611 memcpy(seg_i->journal, kaddr, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001612
1613 /* Step 2: restore sit cache */
1614 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001615 memcpy(seg_i->journal, kaddr + SUM_JOURNAL_SIZE, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001616 offset = 2 * SUM_JOURNAL_SIZE;
1617
1618 /* Step 3: restore summary entries */
1619 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1620 unsigned short blk_off;
1621 unsigned int segno;
1622
1623 seg_i = CURSEG_I(sbi, i);
1624 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1625 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1626 seg_i->next_segno = segno;
1627 reset_curseg(sbi, i, 0);
1628 seg_i->alloc_type = ckpt->alloc_type[i];
1629 seg_i->next_blkoff = blk_off;
1630
1631 if (seg_i->alloc_type == SSR)
1632 blk_off = sbi->blocks_per_seg;
1633
1634 for (j = 0; j < blk_off; j++) {
1635 struct f2fs_summary *s;
1636 s = (struct f2fs_summary *)(kaddr + offset);
1637 seg_i->sum_blk->entries[j] = *s;
1638 offset += SUMMARY_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001639 if (offset + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001640 SUM_FOOTER_SIZE)
1641 continue;
1642
1643 f2fs_put_page(page, 1);
1644 page = NULL;
1645
1646 page = get_meta_page(sbi, start++);
1647 kaddr = (unsigned char *)page_address(page);
1648 offset = 0;
1649 }
1650 }
1651 f2fs_put_page(page, 1);
1652 return 0;
1653}
1654
1655static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1656{
1657 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1658 struct f2fs_summary_block *sum;
1659 struct curseg_info *curseg;
1660 struct page *new;
1661 unsigned short blk_off;
1662 unsigned int segno = 0;
1663 block_t blk_addr = 0;
1664
1665 /* get segment number and block addr */
1666 if (IS_DATASEG(type)) {
1667 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1668 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1669 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001670 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001671 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1672 else
1673 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1674 } else {
1675 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1676 CURSEG_HOT_NODE]);
1677 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1678 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001679 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001680 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1681 type - CURSEG_HOT_NODE);
1682 else
1683 blk_addr = GET_SUM_BLOCK(sbi, segno);
1684 }
1685
1686 new = get_meta_page(sbi, blk_addr);
1687 sum = (struct f2fs_summary_block *)page_address(new);
1688
1689 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001690 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001691 struct f2fs_summary *ns = &sum->entries[0];
1692 int i;
1693 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1694 ns->version = 0;
1695 ns->ofs_in_node = 0;
1696 }
1697 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001698 int err;
1699
1700 err = restore_node_summary(sbi, segno, sum);
1701 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001702 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001703 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001704 }
1705 }
1706 }
1707
1708 /* set uncompleted segment to curseg */
1709 curseg = CURSEG_I(sbi, type);
1710 mutex_lock(&curseg->curseg_mutex);
Chao Yub7ad7512016-02-19 18:08:46 +08001711
1712 /* update journal info */
1713 down_write(&curseg->journal_rwsem);
1714 memcpy(curseg->journal, &sum->journal, SUM_JOURNAL_SIZE);
1715 up_write(&curseg->journal_rwsem);
1716
1717 memcpy(curseg->sum_blk->entries, sum->entries, SUM_ENTRY_SIZE);
1718 memcpy(&curseg->sum_blk->footer, &sum->footer, SUM_FOOTER_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001719 curseg->next_segno = segno;
1720 reset_curseg(sbi, type, 0);
1721 curseg->alloc_type = ckpt->alloc_type[type];
1722 curseg->next_blkoff = blk_off;
1723 mutex_unlock(&curseg->curseg_mutex);
1724 f2fs_put_page(new, 1);
1725 return 0;
1726}
1727
1728static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1729{
1730 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001731 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001732
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001733 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001734 int npages = npages_for_summary_flush(sbi, true);
1735
1736 if (npages >= 2)
1737 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001738 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001739
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001740 /* restore for compacted data summary */
1741 if (read_compacted_summaries(sbi))
1742 return -EINVAL;
1743 type = CURSEG_HOT_NODE;
1744 }
1745
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001746 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001747 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001748 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001749
Chao Yue4fc5fb2014-03-17 16:36:24 +08001750 for (; type <= CURSEG_COLD_NODE; type++) {
1751 err = read_normal_summaries(sbi, type);
1752 if (err)
1753 return err;
1754 }
1755
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001756 return 0;
1757}
1758
1759static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1760{
1761 struct page *page;
1762 unsigned char *kaddr;
1763 struct f2fs_summary *summary;
1764 struct curseg_info *seg_i;
1765 int written_size = 0;
1766 int i, j;
1767
1768 page = grab_meta_page(sbi, blkaddr++);
1769 kaddr = (unsigned char *)page_address(page);
1770
1771 /* Step 1: write nat cache */
1772 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001773 memcpy(kaddr, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001774 written_size += SUM_JOURNAL_SIZE;
1775
1776 /* Step 2: write sit cache */
1777 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001778 memcpy(kaddr + written_size, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001779 written_size += SUM_JOURNAL_SIZE;
1780
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001781 /* Step 3: write summary entries */
1782 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1783 unsigned short blkoff;
1784 seg_i = CURSEG_I(sbi, i);
1785 if (sbi->ckpt->alloc_type[i] == SSR)
1786 blkoff = sbi->blocks_per_seg;
1787 else
1788 blkoff = curseg_blkoff(sbi, i);
1789
1790 for (j = 0; j < blkoff; j++) {
1791 if (!page) {
1792 page = grab_meta_page(sbi, blkaddr++);
1793 kaddr = (unsigned char *)page_address(page);
1794 written_size = 0;
1795 }
1796 summary = (struct f2fs_summary *)(kaddr + written_size);
1797 *summary = seg_i->sum_blk->entries[j];
1798 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001799
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001800 if (written_size + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001801 SUM_FOOTER_SIZE)
1802 continue;
1803
Chao Yue8d61a72013-10-24 15:08:28 +08001804 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001805 f2fs_put_page(page, 1);
1806 page = NULL;
1807 }
1808 }
Chao Yue8d61a72013-10-24 15:08:28 +08001809 if (page) {
1810 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001811 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08001812 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001813}
1814
1815static void write_normal_summaries(struct f2fs_sb_info *sbi,
1816 block_t blkaddr, int type)
1817{
1818 int i, end;
1819 if (IS_DATASEG(type))
1820 end = type + NR_CURSEG_DATA_TYPE;
1821 else
1822 end = type + NR_CURSEG_NODE_TYPE;
1823
Chao Yub7ad7512016-02-19 18:08:46 +08001824 for (i = type; i < end; i++)
1825 write_current_sum_page(sbi, i, blkaddr + (i - type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001826}
1827
1828void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1829{
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001830 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001831 write_compacted_summaries(sbi, start_blk);
1832 else
1833 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1834}
1835
1836void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1837{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001838 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001839}
1840
Chao Yudfc08a12016-02-14 18:50:40 +08001841int lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001842 unsigned int val, int alloc)
1843{
1844 int i;
1845
1846 if (type == NAT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001847 for (i = 0; i < nats_in_cursum(journal); i++) {
1848 if (le32_to_cpu(nid_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001849 return i;
1850 }
Chao Yudfc08a12016-02-14 18:50:40 +08001851 if (alloc && __has_cursum_space(journal, 1, NAT_JOURNAL))
1852 return update_nats_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001853 } else if (type == SIT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001854 for (i = 0; i < sits_in_cursum(journal); i++)
1855 if (le32_to_cpu(segno_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001856 return i;
Chao Yudfc08a12016-02-14 18:50:40 +08001857 if (alloc && __has_cursum_space(journal, 1, SIT_JOURNAL))
1858 return update_sits_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001859 }
1860 return -1;
1861}
1862
1863static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
1864 unsigned int segno)
1865{
Gu Zheng2cc22182014-10-20 17:45:49 +08001866 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001867}
1868
1869static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
1870 unsigned int start)
1871{
1872 struct sit_info *sit_i = SIT_I(sbi);
1873 struct page *src_page, *dst_page;
1874 pgoff_t src_off, dst_off;
1875 void *src_addr, *dst_addr;
1876
1877 src_off = current_sit_addr(sbi, start);
1878 dst_off = next_sit_addr(sbi, src_off);
1879
1880 /* get current sit block page without lock */
1881 src_page = get_meta_page(sbi, src_off);
1882 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001883 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001884
1885 src_addr = page_address(src_page);
1886 dst_addr = page_address(dst_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001887 memcpy(dst_addr, src_addr, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001888
1889 set_page_dirty(dst_page);
1890 f2fs_put_page(src_page, 1);
1891
1892 set_to_next_sit(sit_i, start);
1893
1894 return dst_page;
1895}
1896
Chao Yu184a5cd2014-09-04 18:13:01 +08001897static struct sit_entry_set *grab_sit_entry_set(void)
1898{
1899 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001900 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08001901
1902 ses->entry_cnt = 0;
1903 INIT_LIST_HEAD(&ses->set_list);
1904 return ses;
1905}
1906
1907static void release_sit_entry_set(struct sit_entry_set *ses)
1908{
1909 list_del(&ses->set_list);
1910 kmem_cache_free(sit_entry_set_slab, ses);
1911}
1912
1913static void adjust_sit_entry_set(struct sit_entry_set *ses,
1914 struct list_head *head)
1915{
1916 struct sit_entry_set *next = ses;
1917
1918 if (list_is_last(&ses->set_list, head))
1919 return;
1920
1921 list_for_each_entry_continue(next, head, set_list)
1922 if (ses->entry_cnt <= next->entry_cnt)
1923 break;
1924
1925 list_move_tail(&ses->set_list, &next->set_list);
1926}
1927
1928static void add_sit_entry(unsigned int segno, struct list_head *head)
1929{
1930 struct sit_entry_set *ses;
1931 unsigned int start_segno = START_SEGNO(segno);
1932
1933 list_for_each_entry(ses, head, set_list) {
1934 if (ses->start_segno == start_segno) {
1935 ses->entry_cnt++;
1936 adjust_sit_entry_set(ses, head);
1937 return;
1938 }
1939 }
1940
1941 ses = grab_sit_entry_set();
1942
1943 ses->start_segno = start_segno;
1944 ses->entry_cnt++;
1945 list_add(&ses->set_list, head);
1946}
1947
1948static void add_sits_in_set(struct f2fs_sb_info *sbi)
1949{
1950 struct f2fs_sm_info *sm_info = SM_I(sbi);
1951 struct list_head *set_list = &sm_info->sit_entry_set;
1952 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08001953 unsigned int segno;
1954
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001955 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08001956 add_sit_entry(segno, set_list);
1957}
1958
1959static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001960{
1961 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001962 struct f2fs_journal *journal = curseg->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001963 int i;
1964
Chao Yub7ad7512016-02-19 18:08:46 +08001965 down_write(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08001966 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yu184a5cd2014-09-04 18:13:01 +08001967 unsigned int segno;
1968 bool dirtied;
1969
Chao Yudfc08a12016-02-14 18:50:40 +08001970 segno = le32_to_cpu(segno_in_journal(journal, i));
Chao Yu184a5cd2014-09-04 18:13:01 +08001971 dirtied = __mark_sit_entry_dirty(sbi, segno);
1972
1973 if (!dirtied)
1974 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001975 }
Chao Yudfc08a12016-02-14 18:50:40 +08001976 update_sits_in_cursum(journal, -i);
Chao Yub7ad7512016-02-19 18:08:46 +08001977 up_write(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001978}
1979
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001980/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001981 * CP calls this function, which flushes SIT entries including sit_journal,
1982 * and moves prefree segs to free segs.
1983 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001984void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001985{
1986 struct sit_info *sit_i = SIT_I(sbi);
1987 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
1988 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001989 struct f2fs_journal *journal = curseg->journal;
Chao Yu184a5cd2014-09-04 18:13:01 +08001990 struct sit_entry_set *ses, *tmp;
1991 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08001992 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001993 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001994
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001995 mutex_lock(&sit_i->sentry_lock);
1996
Wanpeng Li2b11a742015-02-27 16:52:50 +08001997 if (!sit_i->dirty_sentries)
1998 goto out;
1999
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002000 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08002001 * add and account sit entries of dirty bitmap in sit entry
2002 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002003 */
Chao Yu184a5cd2014-09-04 18:13:01 +08002004 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002005
Chao Yu184a5cd2014-09-04 18:13:01 +08002006 /*
2007 * if there are no enough space in journal to store dirty sit
2008 * entries, remove all entries from journal and add and account
2009 * them in sit entry set.
2010 */
Chao Yudfc08a12016-02-14 18:50:40 +08002011 if (!__has_cursum_space(journal, sit_i->dirty_sentries, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002012 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002013
Chao Yu184a5cd2014-09-04 18:13:01 +08002014 /*
2015 * there are two steps to flush sit entries:
2016 * #1, flush sit entries to journal in current cold data summary block.
2017 * #2, flush sit entries to sit page.
2018 */
2019 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07002020 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08002021 struct f2fs_sit_block *raw_sit = NULL;
2022 unsigned int start_segno = ses->start_segno;
2023 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002024 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08002025 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09002026
Chao Yu184a5cd2014-09-04 18:13:01 +08002027 if (to_journal &&
Chao Yudfc08a12016-02-14 18:50:40 +08002028 !__has_cursum_space(journal, ses->entry_cnt, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002029 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002030
Chao Yub7ad7512016-02-19 18:08:46 +08002031 if (to_journal) {
2032 down_write(&curseg->journal_rwsem);
2033 } else {
Chao Yu184a5cd2014-09-04 18:13:01 +08002034 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002035 raw_sit = page_address(page);
2036 }
2037
Chao Yu184a5cd2014-09-04 18:13:01 +08002038 /* flush dirty sit entries in region of current sit set */
2039 for_each_set_bit_from(segno, bitmap, end) {
2040 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002041
2042 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08002043
2044 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08002045 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002046 cpc->trim_start = segno;
2047 add_discard_addrs(sbi, cpc);
2048 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002049
2050 if (to_journal) {
Chao Yudfc08a12016-02-14 18:50:40 +08002051 offset = lookup_journal_in_cursum(journal,
Chao Yu184a5cd2014-09-04 18:13:01 +08002052 SIT_JOURNAL, segno, 1);
2053 f2fs_bug_on(sbi, offset < 0);
Chao Yudfc08a12016-02-14 18:50:40 +08002054 segno_in_journal(journal, offset) =
Chao Yu184a5cd2014-09-04 18:13:01 +08002055 cpu_to_le32(segno);
2056 seg_info_to_raw_sit(se,
Chao Yudfc08a12016-02-14 18:50:40 +08002057 &sit_in_journal(journal, offset));
Chao Yu184a5cd2014-09-04 18:13:01 +08002058 } else {
2059 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
2060 seg_info_to_raw_sit(se,
2061 &raw_sit->entries[sit_offset]);
2062 }
2063
2064 __clear_bit(segno, bitmap);
2065 sit_i->dirty_sentries--;
2066 ses->entry_cnt--;
2067 }
2068
Chao Yub7ad7512016-02-19 18:08:46 +08002069 if (to_journal)
2070 up_write(&curseg->journal_rwsem);
2071 else
Chao Yu184a5cd2014-09-04 18:13:01 +08002072 f2fs_put_page(page, 1);
2073
2074 f2fs_bug_on(sbi, ses->entry_cnt);
2075 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002076 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002077
2078 f2fs_bug_on(sbi, !list_empty(head));
2079 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08002080out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002081 if (cpc->reason == CP_DISCARD) {
2082 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
2083 add_discard_addrs(sbi, cpc);
2084 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002085 mutex_unlock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002086
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002087 set_prefree_as_free_segments(sbi);
2088}
2089
2090static int build_sit_info(struct f2fs_sb_info *sbi)
2091{
2092 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2093 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
2094 struct sit_info *sit_i;
2095 unsigned int sit_segs, start;
2096 char *src_bitmap, *dst_bitmap;
2097 unsigned int bitmap_size;
2098
2099 /* allocate memory for SIT information */
2100 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
2101 if (!sit_i)
2102 return -ENOMEM;
2103
2104 SM_I(sbi)->sit_info = sit_i;
2105
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002106 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
2107 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002108 if (!sit_i->sentries)
2109 return -ENOMEM;
2110
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002111 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002112 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002113 if (!sit_i->dirty_sentries_bitmap)
2114 return -ENOMEM;
2115
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002116 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002117 sit_i->sentries[start].cur_valid_map
2118 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2119 sit_i->sentries[start].ckpt_valid_map
2120 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002121 sit_i->sentries[start].discard_map
2122 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2123 if (!sit_i->sentries[start].cur_valid_map ||
2124 !sit_i->sentries[start].ckpt_valid_map ||
2125 !sit_i->sentries[start].discard_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002126 return -ENOMEM;
2127 }
2128
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002129 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2130 if (!sit_i->tmp_map)
2131 return -ENOMEM;
2132
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002133 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002134 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
2135 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002136 if (!sit_i->sec_entries)
2137 return -ENOMEM;
2138 }
2139
2140 /* get information related with SIT */
2141 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
2142
2143 /* setup SIT bitmap from ckeckpoint pack */
2144 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
2145 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
2146
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02002147 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002148 if (!dst_bitmap)
2149 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002150
2151 /* init SIT information */
2152 sit_i->s_ops = &default_salloc_ops;
2153
2154 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2155 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
2156 sit_i->written_valid_blocks = le64_to_cpu(ckpt->valid_block_count);
2157 sit_i->sit_bitmap = dst_bitmap;
2158 sit_i->bitmap_size = bitmap_size;
2159 sit_i->dirty_sentries = 0;
2160 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2161 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2162 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2163 mutex_init(&sit_i->sentry_lock);
2164 return 0;
2165}
2166
2167static int build_free_segmap(struct f2fs_sb_info *sbi)
2168{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002169 struct free_segmap_info *free_i;
2170 unsigned int bitmap_size, sec_bitmap_size;
2171
2172 /* allocate memory for free segmap information */
2173 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2174 if (!free_i)
2175 return -ENOMEM;
2176
2177 SM_I(sbi)->free_info = free_i;
2178
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002179 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002180 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002181 if (!free_i->free_segmap)
2182 return -ENOMEM;
2183
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002184 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002185 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002186 if (!free_i->free_secmap)
2187 return -ENOMEM;
2188
2189 /* set all segments as dirty temporarily */
2190 memset(free_i->free_segmap, 0xff, bitmap_size);
2191 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2192
2193 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002194 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002195 free_i->free_segments = 0;
2196 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002197 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002198 return 0;
2199}
2200
2201static int build_curseg(struct f2fs_sb_info *sbi)
2202{
Namjae Jeon1042d602012-12-01 10:56:13 +09002203 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002204 int i;
2205
Fabian Frederickb434bab2014-06-23 18:39:15 +02002206 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002207 if (!array)
2208 return -ENOMEM;
2209
2210 SM_I(sbi)->curseg_array = array;
2211
2212 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2213 mutex_init(&array[i].curseg_mutex);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002214 array[i].sum_blk = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002215 if (!array[i].sum_blk)
2216 return -ENOMEM;
Chao Yub7ad7512016-02-19 18:08:46 +08002217 init_rwsem(&array[i].journal_rwsem);
2218 array[i].journal = kzalloc(sizeof(struct f2fs_journal),
2219 GFP_KERNEL);
2220 if (!array[i].journal)
2221 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002222 array[i].segno = NULL_SEGNO;
2223 array[i].next_blkoff = 0;
2224 }
2225 return restore_curseg_summaries(sbi);
2226}
2227
2228static void build_sit_entries(struct f2fs_sb_info *sbi)
2229{
2230 struct sit_info *sit_i = SIT_I(sbi);
2231 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002232 struct f2fs_journal *journal = curseg->journal;
Chao Yu74de5932013-11-22 09:09:59 +08002233 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2234 unsigned int i, start, end;
2235 unsigned int readed, start_blk = 0;
Chao Yue9f5b8b2016-02-14 18:54:33 +08002236 int nrpages = MAX_BIO_BLOCKS(sbi) * 8;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002237
Chao Yu74de5932013-11-22 09:09:59 +08002238 do {
Chao Yu26879fb2015-10-12 17:05:59 +08002239 readed = ra_meta_pages(sbi, start_blk, nrpages, META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002240
Chao Yu74de5932013-11-22 09:09:59 +08002241 start = start_blk * sit_i->sents_per_block;
2242 end = (start_blk + readed) * sit_i->sents_per_block;
2243
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002244 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002245 struct seg_entry *se = &sit_i->sentries[start];
2246 struct f2fs_sit_block *sit_blk;
2247 struct f2fs_sit_entry sit;
2248 struct page *page;
2249
Chao Yub7ad7512016-02-19 18:08:46 +08002250 down_read(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08002251 for (i = 0; i < sits_in_cursum(journal); i++) {
2252 if (le32_to_cpu(segno_in_journal(journal, i))
Chris Fries6c311ec2014-01-17 14:44:39 -06002253 == start) {
Chao Yudfc08a12016-02-14 18:50:40 +08002254 sit = sit_in_journal(journal, i);
Chao Yub7ad7512016-02-19 18:08:46 +08002255 up_read(&curseg->journal_rwsem);
Chao Yu74de5932013-11-22 09:09:59 +08002256 goto got_it;
2257 }
2258 }
Chao Yub7ad7512016-02-19 18:08:46 +08002259 up_read(&curseg->journal_rwsem);
Chao Yu74de5932013-11-22 09:09:59 +08002260
2261 page = get_current_sit_page(sbi, start);
2262 sit_blk = (struct f2fs_sit_block *)page_address(page);
2263 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2264 f2fs_put_page(page, 1);
2265got_it:
2266 check_block_count(sbi, start, &sit);
2267 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002268
2269 /* build discard map only one time */
2270 memcpy(se->discard_map, se->cur_valid_map, SIT_VBLOCK_MAP_SIZE);
2271 sbi->discard_blks += sbi->blocks_per_seg - se->valid_blocks;
2272
Chao Yu74de5932013-11-22 09:09:59 +08002273 if (sbi->segs_per_sec > 1) {
2274 struct sec_entry *e = get_sec_entry(sbi, start);
2275 e->valid_blocks += se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002276 }
2277 }
Chao Yu74de5932013-11-22 09:09:59 +08002278 start_blk += readed;
2279 } while (start_blk < sit_blk_cnt);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002280}
2281
2282static void init_free_segmap(struct f2fs_sb_info *sbi)
2283{
2284 unsigned int start;
2285 int type;
2286
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002287 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002288 struct seg_entry *sentry = get_seg_entry(sbi, start);
2289 if (!sentry->valid_blocks)
2290 __set_free(sbi, start);
2291 }
2292
2293 /* set use the current segments */
2294 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2295 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2296 __set_test_and_inuse(sbi, curseg_t->segno);
2297 }
2298}
2299
2300static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2301{
2302 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2303 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002304 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002305 unsigned short valid_blocks;
2306
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002307 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002308 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002309 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2310 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002311 break;
2312 offset = segno + 1;
2313 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002314 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002315 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002316 if (valid_blocks > sbi->blocks_per_seg) {
2317 f2fs_bug_on(sbi, 1);
2318 continue;
2319 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002320 mutex_lock(&dirty_i->seglist_lock);
2321 __locate_dirty_segment(sbi, segno, DIRTY);
2322 mutex_unlock(&dirty_i->seglist_lock);
2323 }
2324}
2325
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002326static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002327{
2328 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002329 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002330
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002331 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002332 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002333 return -ENOMEM;
2334 return 0;
2335}
2336
2337static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2338{
2339 struct dirty_seglist_info *dirty_i;
2340 unsigned int bitmap_size, i;
2341
2342 /* allocate memory for dirty segments list information */
2343 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2344 if (!dirty_i)
2345 return -ENOMEM;
2346
2347 SM_I(sbi)->dirty_info = dirty_i;
2348 mutex_init(&dirty_i->seglist_lock);
2349
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002350 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002351
2352 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002353 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002354 if (!dirty_i->dirty_segmap[i])
2355 return -ENOMEM;
2356 }
2357
2358 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002359 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002360}
2361
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002362/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002363 * Update min, max modified time for cost-benefit GC algorithm
2364 */
2365static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2366{
2367 struct sit_info *sit_i = SIT_I(sbi);
2368 unsigned int segno;
2369
2370 mutex_lock(&sit_i->sentry_lock);
2371
2372 sit_i->min_mtime = LLONG_MAX;
2373
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002374 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002375 unsigned int i;
2376 unsigned long long mtime = 0;
2377
2378 for (i = 0; i < sbi->segs_per_sec; i++)
2379 mtime += get_seg_entry(sbi, segno + i)->mtime;
2380
2381 mtime = div_u64(mtime, sbi->segs_per_sec);
2382
2383 if (sit_i->min_mtime > mtime)
2384 sit_i->min_mtime = mtime;
2385 }
2386 sit_i->max_mtime = get_mtime(sbi);
2387 mutex_unlock(&sit_i->sentry_lock);
2388}
2389
2390int build_segment_manager(struct f2fs_sb_info *sbi)
2391{
2392 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2393 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002394 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002395 int err;
2396
2397 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2398 if (!sm_info)
2399 return -ENOMEM;
2400
2401 /* init sm info */
2402 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002403 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2404 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2405 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2406 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2407 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2408 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2409 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002410 sm_info->rec_prefree_segments = sm_info->main_segments *
2411 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim44a83492016-07-13 18:23:35 -07002412 if (sm_info->rec_prefree_segments > DEF_MAX_RECLAIM_PREFREE_SEGMENTS)
2413 sm_info->rec_prefree_segments = DEF_MAX_RECLAIM_PREFREE_SEGMENTS;
2414
Jaegeuk Kim52763a42016-06-13 09:47:48 -07002415 if (!test_opt(sbi, LFS))
2416 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002417 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002418 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002419
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002420 INIT_LIST_HEAD(&sm_info->discard_list);
2421 sm_info->nr_discards = 0;
2422 sm_info->max_discards = 0;
2423
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002424 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2425
Chao Yu184a5cd2014-09-04 18:13:01 +08002426 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2427
Gu Zhengb270ad62014-04-11 17:49:55 +08002428 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002429 err = create_flush_cmd_control(sbi);
2430 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002431 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002432 }
2433
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002434 err = build_sit_info(sbi);
2435 if (err)
2436 return err;
2437 err = build_free_segmap(sbi);
2438 if (err)
2439 return err;
2440 err = build_curseg(sbi);
2441 if (err)
2442 return err;
2443
2444 /* reinit free segmap based on SIT */
2445 build_sit_entries(sbi);
2446
2447 init_free_segmap(sbi);
2448 err = build_dirty_segmap(sbi);
2449 if (err)
2450 return err;
2451
2452 init_min_max_mtime(sbi);
2453 return 0;
2454}
2455
2456static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2457 enum dirty_type dirty_type)
2458{
2459 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2460
2461 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002462 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002463 dirty_i->nr_dirty[dirty_type] = 0;
2464 mutex_unlock(&dirty_i->seglist_lock);
2465}
2466
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002467static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002468{
2469 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002470 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002471}
2472
2473static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2474{
2475 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2476 int i;
2477
2478 if (!dirty_i)
2479 return;
2480
2481 /* discard pre-free/dirty segments list */
2482 for (i = 0; i < NR_DIRTY_TYPE; i++)
2483 discard_dirty_segmap(sbi, i);
2484
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002485 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002486 SM_I(sbi)->dirty_info = NULL;
2487 kfree(dirty_i);
2488}
2489
2490static void destroy_curseg(struct f2fs_sb_info *sbi)
2491{
2492 struct curseg_info *array = SM_I(sbi)->curseg_array;
2493 int i;
2494
2495 if (!array)
2496 return;
2497 SM_I(sbi)->curseg_array = NULL;
Chao Yub7ad7512016-02-19 18:08:46 +08002498 for (i = 0; i < NR_CURSEG_TYPE; i++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002499 kfree(array[i].sum_blk);
Chao Yub7ad7512016-02-19 18:08:46 +08002500 kfree(array[i].journal);
2501 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002502 kfree(array);
2503}
2504
2505static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2506{
2507 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2508 if (!free_i)
2509 return;
2510 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002511 kvfree(free_i->free_segmap);
2512 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002513 kfree(free_i);
2514}
2515
2516static void destroy_sit_info(struct f2fs_sb_info *sbi)
2517{
2518 struct sit_info *sit_i = SIT_I(sbi);
2519 unsigned int start;
2520
2521 if (!sit_i)
2522 return;
2523
2524 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002525 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002526 kfree(sit_i->sentries[start].cur_valid_map);
2527 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002528 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002529 }
2530 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002531 kfree(sit_i->tmp_map);
2532
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002533 kvfree(sit_i->sentries);
2534 kvfree(sit_i->sec_entries);
2535 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002536
2537 SM_I(sbi)->sit_info = NULL;
2538 kfree(sit_i->sit_bitmap);
2539 kfree(sit_i);
2540}
2541
2542void destroy_segment_manager(struct f2fs_sb_info *sbi)
2543{
2544 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002545
Chao Yu3b03f722013-11-06 09:12:04 +08002546 if (!sm_info)
2547 return;
Gu Zheng2163d192014-04-27 14:21:33 +08002548 destroy_flush_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002549 destroy_dirty_segmap(sbi);
2550 destroy_curseg(sbi);
2551 destroy_free_segmap(sbi);
2552 destroy_sit_info(sbi);
2553 sbi->sm_info = NULL;
2554 kfree(sm_info);
2555}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002556
2557int __init create_segment_manager_caches(void)
2558{
2559 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002560 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002561 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002562 goto fail;
2563
2564 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002565 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002566 if (!sit_entry_set_slab)
2567 goto destory_discard_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002568
2569 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2570 sizeof(struct inmem_pages));
2571 if (!inmem_entry_slab)
2572 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002573 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002574
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002575destroy_sit_entry_set:
2576 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu184a5cd2014-09-04 18:13:01 +08002577destory_discard_entry:
2578 kmem_cache_destroy(discard_entry_slab);
2579fail:
2580 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002581}
2582
2583void destroy_segment_manager_caches(void)
2584{
Chao Yu184a5cd2014-09-04 18:13:01 +08002585 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002586 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002587 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002588}