blob: 299c784f5b61e777d0897bc83b87926688779774 [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:
226 ClearPageUptodate(page);
227 set_page_private(page, 0);
228 ClearPageUptodate(page);
229 f2fs_put_page(page, 1);
Chao Yudecd36b2015-08-07 18:42:09 +0800230
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700231 list_del(&cur->list);
232 kmem_cache_free(inmem_entry_slab, cur);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800233 dec_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700234 }
Chao Yu28bc1062016-02-06 14:40:34 +0800235 return err;
Chao Yu29b96b52016-02-06 14:38:29 +0800236}
237
238void drop_inmem_pages(struct inode *inode)
239{
240 struct f2fs_inode_info *fi = F2FS_I(inode);
241
Jaegeuk Kim26dc3d42016-04-11 13:15:10 -0700242 clear_inode_flag(F2FS_I(inode), FI_ATOMIC_FILE);
243
Chao Yu29b96b52016-02-06 14:38:29 +0800244 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800245 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
Chao Yu29b96b52016-02-06 14:38:29 +0800246 mutex_unlock(&fi->inmem_lock);
247}
248
Chao Yu28bc1062016-02-06 14:40:34 +0800249static int __commit_inmem_pages(struct inode *inode,
250 struct list_head *revoke_list)
Chao Yu29b96b52016-02-06 14:38:29 +0800251{
252 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
253 struct f2fs_inode_info *fi = F2FS_I(inode);
254 struct inmem_pages *cur, *tmp;
255 struct f2fs_io_info fio = {
256 .sbi = sbi,
257 .type = DATA,
258 .rw = WRITE_SYNC | REQ_PRIO,
259 .encrypted_page = NULL,
260 };
261 bool submit_bio = false;
262 int err = 0;
263
264 list_for_each_entry_safe(cur, tmp, &fi->inmem_pages, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800265 struct page *page = cur->page;
266
267 lock_page(page);
268 if (page->mapping == inode->i_mapping) {
269 trace_f2fs_commit_inmem_page(page, INMEM);
270
271 set_page_dirty(page);
272 f2fs_wait_on_page_writeback(page, DATA, true);
273 if (clear_page_dirty_for_io(page))
Chao Yu29b96b52016-02-06 14:38:29 +0800274 inode_dec_dirty_pages(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800275
276 fio.page = page;
Chao Yu29b96b52016-02-06 14:38:29 +0800277 err = do_write_data_page(&fio);
278 if (err) {
Chao Yu28bc1062016-02-06 14:40:34 +0800279 unlock_page(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800280 break;
281 }
Chao Yu28bc1062016-02-06 14:40:34 +0800282
283 /* record old blkaddr for revoking */
284 cur->old_addr = fio.old_blkaddr;
285
286 clear_cold_data(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800287 submit_bio = true;
288 }
Chao Yu28bc1062016-02-06 14:40:34 +0800289 unlock_page(page);
290 list_move_tail(&cur->list, revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800291 }
292
293 if (submit_bio)
294 f2fs_submit_merged_bio_cond(sbi, inode, NULL, 0, DATA, WRITE);
Chao Yu28bc1062016-02-06 14:40:34 +0800295
296 if (!err)
297 __revoke_inmem_pages(inode, revoke_list, false, false);
298
Chao Yu29b96b52016-02-06 14:38:29 +0800299 return err;
300}
301
302int commit_inmem_pages(struct inode *inode)
303{
304 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
305 struct f2fs_inode_info *fi = F2FS_I(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800306 struct list_head revoke_list;
307 int err;
Chao Yu29b96b52016-02-06 14:38:29 +0800308
Chao Yu28bc1062016-02-06 14:40:34 +0800309 INIT_LIST_HEAD(&revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800310 f2fs_balance_fs(sbi, true);
311 f2fs_lock_op(sbi);
312
313 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800314 err = __commit_inmem_pages(inode, &revoke_list);
315 if (err) {
316 int ret;
317 /*
318 * try to revoke all committed pages, but still we could fail
319 * due to no memory or other reason, if that happened, EAGAIN
320 * will be returned, which means in such case, transaction is
321 * already not integrity, caller should use journal to do the
322 * recovery or rewrite & commit last transaction. For other
323 * error number, revoking was done by filesystem itself.
324 */
325 ret = __revoke_inmem_pages(inode, &revoke_list, false, true);
326 if (ret)
327 err = ret;
328
329 /* drop all uncommitted pages */
330 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
331 }
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700332 mutex_unlock(&fi->inmem_lock);
333
Chao Yu29b96b52016-02-06 14:38:29 +0800334 f2fs_unlock_op(sbi);
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700335 return err;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700336}
337
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900338/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900339 * This function balances dirty node and dentry pages.
340 * In addition, it controls garbage collection.
341 */
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800342void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900343{
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800344 if (!need)
345 return;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900346 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900347 * We should do GC or end up with checkpoint, if there are so many dirty
348 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900349 */
Jaegeuk Kim43727522013-02-04 15:11:17 +0900350 if (has_not_enough_free_secs(sbi, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900351 mutex_lock(&sbi->gc_mutex);
Chao Yud530d4d2015-10-05 22:22:44 +0800352 f2fs_gc(sbi, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900353 }
354}
355
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900356void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
357{
Chao Yu1dcc3362015-02-05 17:57:31 +0800358 /* try to shrink extent cache when there is no enough memory */
Jaegeuk Kim554df792015-06-19 13:41:23 -0700359 if (!available_free_memory(sbi, EXTENT_CACHE))
360 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800361
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700362 /* check the # of cached NAT entries */
363 if (!available_free_memory(sbi, NAT_ENTRIES))
364 try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
365
Chao Yu31696582015-07-28 18:33:46 +0800366 if (!available_free_memory(sbi, FREE_NIDS))
367 try_to_free_nids(sbi, NAT_ENTRY_PER_BLOCK * FREE_NID_PAGES);
368
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700369 /* checkpoint is the only way to shrink partial cached entries */
370 if (!available_free_memory(sbi, NAT_ENTRIES) ||
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700371 !available_free_memory(sbi, INO_ENTRIES) ||
Chao Yu7d768d22016-01-18 18:31:18 +0800372 excess_prefree_segs(sbi) ||
373 excess_dirty_nats(sbi) ||
Jaegeuk Kimd0239e12016-01-08 16:57:48 -0800374 (is_idle(sbi) && f2fs_time_over(sbi, CP_TIME))) {
Chao Yue9f5b8b2016-02-14 18:54:33 +0800375 if (test_opt(sbi, DATA_FLUSH)) {
376 struct blk_plug plug;
377
378 blk_start_plug(&plug);
Chao Yu36b35a02015-12-17 17:13:28 +0800379 sync_dirty_inodes(sbi, FILE_INODE);
Chao Yue9f5b8b2016-02-14 18:54:33 +0800380 blk_finish_plug(&plug);
381 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900382 f2fs_sync_fs(sbi->sb, true);
Jaegeuk Kim42190d22016-01-09 13:45:17 -0800383 stat_inc_bg_cp_count(sbi->stat_info);
Chao Yu36b35a02015-12-17 17:13:28 +0800384 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900385}
386
Gu Zheng2163d192014-04-27 14:21:33 +0800387static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900388{
389 struct f2fs_sb_info *sbi = data;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800390 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
391 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900392repeat:
393 if (kthread_should_stop())
394 return 0;
395
Gu Zheng721bd4d2014-09-05 18:31:00 +0800396 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700397 struct bio *bio;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900398 struct flush_cmd *cmd, *next;
399 int ret;
400
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700401 bio = f2fs_bio_alloc(0);
402
Gu Zheng721bd4d2014-09-05 18:31:00 +0800403 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
404 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
405
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900406 bio->bi_bdev = sbi->sb->s_bdev;
407 ret = submit_bio_wait(WRITE_FLUSH, bio);
408
Gu Zheng721bd4d2014-09-05 18:31:00 +0800409 llist_for_each_entry_safe(cmd, next,
410 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900411 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900412 complete(&cmd->wait);
413 }
Gu Zhenga4ed23f2014-04-11 17:49:35 +0800414 bio_put(bio);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800415 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900416 }
417
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800418 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800419 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900420 goto repeat;
421}
422
423int f2fs_issue_flush(struct f2fs_sb_info *sbi)
424{
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800425 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800426 struct flush_cmd cmd;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900427
Jaegeuk Kim24a9ee02014-07-25 17:46:10 -0700428 trace_f2fs_issue_flush(sbi->sb, test_opt(sbi, NOBARRIER),
429 test_opt(sbi, FLUSH_MERGE));
430
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700431 if (test_opt(sbi, NOBARRIER))
432 return 0;
433
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700434 if (!test_opt(sbi, FLUSH_MERGE)) {
435 struct bio *bio = f2fs_bio_alloc(0);
436 int ret;
437
438 bio->bi_bdev = sbi->sb->s_bdev;
439 ret = submit_bio_wait(WRITE_FLUSH, bio);
440 bio_put(bio);
441 return ret;
442 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900443
Chao Yuadf8d902014-05-08 17:00:35 +0800444 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900445
Gu Zheng721bd4d2014-09-05 18:31:00 +0800446 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900447
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800448 if (!fcc->dispatch_list)
449 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900450
Chao Yuadf8d902014-05-08 17:00:35 +0800451 wait_for_completion(&cmd.wait);
452
453 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900454}
455
Gu Zheng2163d192014-04-27 14:21:33 +0800456int create_flush_cmd_control(struct f2fs_sb_info *sbi)
457{
458 dev_t dev = sbi->sb->s_bdev->bd_dev;
459 struct flush_cmd_control *fcc;
460 int err = 0;
461
462 fcc = kzalloc(sizeof(struct flush_cmd_control), GFP_KERNEL);
463 if (!fcc)
464 return -ENOMEM;
Gu Zheng2163d192014-04-27 14:21:33 +0800465 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800466 init_llist_head(&fcc->issue_list);
Chao Yu6b2920a2014-07-07 11:21:59 +0800467 SM_I(sbi)->cmd_control_info = fcc;
Gu Zheng2163d192014-04-27 14:21:33 +0800468 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
469 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
470 if (IS_ERR(fcc->f2fs_issue_flush)) {
471 err = PTR_ERR(fcc->f2fs_issue_flush);
472 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800473 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800474 return err;
475 }
Gu Zheng2163d192014-04-27 14:21:33 +0800476
477 return err;
478}
479
480void destroy_flush_cmd_control(struct f2fs_sb_info *sbi)
481{
Chao Yu6b2920a2014-07-07 11:21:59 +0800482 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800483
484 if (fcc && fcc->f2fs_issue_flush)
485 kthread_stop(fcc->f2fs_issue_flush);
486 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800487 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800488}
489
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900490static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
491 enum dirty_type dirty_type)
492{
493 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
494
495 /* need not be added */
496 if (IS_CURSEG(sbi, segno))
497 return;
498
499 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
500 dirty_i->nr_dirty[dirty_type]++;
501
502 if (dirty_type == DIRTY) {
503 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900504 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900505
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700506 if (unlikely(t >= DIRTY)) {
507 f2fs_bug_on(sbi, 1);
508 return;
509 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900510 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
511 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900512 }
513}
514
515static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
516 enum dirty_type dirty_type)
517{
518 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
519
520 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
521 dirty_i->nr_dirty[dirty_type]--;
522
523 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900524 struct seg_entry *sentry = get_seg_entry(sbi, segno);
525 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900526
Changman Lee4625d6a2013-10-25 17:31:57 +0900527 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
528 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900529
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900530 if (get_valid_blocks(sbi, segno, sbi->segs_per_sec) == 0)
531 clear_bit(GET_SECNO(sbi, segno),
532 dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900533 }
534}
535
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900536/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900537 * Should not occur error such as -ENOMEM.
538 * Adding dirty entry into seglist is not critical operation.
539 * If a given segment is one of current working segments, it won't be added.
540 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800541static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900542{
543 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
544 unsigned short valid_blocks;
545
546 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
547 return;
548
549 mutex_lock(&dirty_i->seglist_lock);
550
551 valid_blocks = get_valid_blocks(sbi, segno, 0);
552
553 if (valid_blocks == 0) {
554 __locate_dirty_segment(sbi, segno, PRE);
555 __remove_dirty_segment(sbi, segno, DIRTY);
556 } else if (valid_blocks < sbi->blocks_per_seg) {
557 __locate_dirty_segment(sbi, segno, DIRTY);
558 } else {
559 /* Recovery routine with SSR needs this */
560 __remove_dirty_segment(sbi, segno, DIRTY);
561 }
562
563 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900564}
565
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900566static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +0900567 block_t blkstart, block_t blklen)
568{
Chao Yu55cf9cb2014-09-15 18:01:10 +0800569 sector_t start = SECTOR_FROM_BLOCK(blkstart);
570 sector_t len = SECTOR_FROM_BLOCK(blklen);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700571 struct seg_entry *se;
572 unsigned int offset;
573 block_t i;
574
575 for (i = blkstart; i < blkstart + blklen; i++) {
576 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
577 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
578
579 if (!f2fs_test_and_set_bit(offset, se->discard_map))
580 sbi->discard_blks--;
581 }
Jaegeuk Kim1661d072013-11-12 17:01:00 +0900582 trace_f2fs_issue_discard(sbi->sb, blkstart, blklen);
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900583 return blkdev_issue_discard(sbi->sb->s_bdev, start, len, GFP_NOFS, 0);
584}
585
Chao Yue90c2d22015-07-28 18:36:47 +0800586bool discard_next_dnode(struct f2fs_sb_info *sbi, block_t blkaddr)
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900587{
Jaegeuk Kim60b286c2016-02-09 10:24:31 -0800588 int err = -EOPNOTSUPP;
Jaegeuk Kim40a02be2015-05-11 20:03:49 -0700589
590 if (test_opt(sbi, DISCARD)) {
591 struct seg_entry *se = get_seg_entry(sbi,
592 GET_SEGNO(sbi, blkaddr));
593 unsigned int offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
594
595 if (f2fs_test_bit(offset, se->discard_map))
Chao Yue90c2d22015-07-28 18:36:47 +0800596 return false;
Jaegeuk Kim40a02be2015-05-11 20:03:49 -0700597
598 err = f2fs_issue_discard(sbi, blkaddr, 1);
599 }
600
Chao Yue90c2d22015-07-28 18:36:47 +0800601 if (err) {
Chao Yu381722d2015-05-19 17:40:04 +0800602 update_meta_page(sbi, NULL, blkaddr);
Chao Yue90c2d22015-07-28 18:36:47 +0800603 return true;
604 }
605 return false;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900606}
607
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700608static void __add_discard_entry(struct f2fs_sb_info *sbi,
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700609 struct cp_control *cpc, struct seg_entry *se,
610 unsigned int start, unsigned int end)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900611{
612 struct list_head *head = &SM_I(sbi)->discard_list;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700613 struct discard_entry *new, *last;
614
615 if (!list_empty(head)) {
616 last = list_last_entry(head, struct discard_entry, list);
617 if (START_BLOCK(sbi, cpc->trim_start) + start ==
618 last->blkaddr + last->len) {
619 last->len += end - start;
620 goto done;
621 }
622 }
623
624 new = f2fs_kmem_cache_alloc(discard_entry_slab, GFP_NOFS);
625 INIT_LIST_HEAD(&new->list);
626 new->blkaddr = START_BLOCK(sbi, cpc->trim_start) + start;
627 new->len = end - start;
628 list_add_tail(&new->list, head);
629done:
630 SM_I(sbi)->nr_discards += end - start;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700631}
632
633static void add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc)
634{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900635 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
636 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700637 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900638 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
639 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700640 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800641 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900642 unsigned int start = 0, end = -1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700643 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900644 int i;
645
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700646 if (se->valid_blocks == max_blocks)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900647 return;
648
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700649 if (!force) {
650 if (!test_opt(sbi, DISCARD) || !se->valid_blocks ||
Dan Carpenter912a83b2015-05-14 11:52:28 +0300651 SM_I(sbi)->nr_discards >= SM_I(sbi)->max_discards)
652 return;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700653 }
654
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900655 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
656 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700657 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -0800658 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900659
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700660 while (force || SM_I(sbi)->nr_discards <= SM_I(sbi)->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900661 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
662 if (start >= max_blocks)
663 break;
664
665 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700666 __add_discard_entry(sbi, cpc, se, start, end);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900667 }
668}
669
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700670void release_discard_addrs(struct f2fs_sb_info *sbi)
671{
672 struct list_head *head = &(SM_I(sbi)->discard_list);
673 struct discard_entry *entry, *this;
674
675 /* drop caches */
676 list_for_each_entry_safe(entry, this, head, list) {
677 list_del(&entry->list);
678 kmem_cache_free(discard_entry_slab, entry);
679 }
680}
681
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900682/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900683 * Should call clear_prefree_segments after checkpoint is done.
684 */
685static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
686{
687 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +0800688 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900689
690 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700691 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900692 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900693 mutex_unlock(&dirty_i->seglist_lock);
694}
695
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700696void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900697{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900698 struct list_head *head = &(SM_I(sbi)->discard_list);
Chao Yu2d7b8222014-03-29 11:33:17 +0800699 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900700 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Changman Lee29e59c12013-11-11 09:24:37 +0900701 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +0900702 unsigned int start = 0, end = -1;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900703
704 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900705
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900706 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900707 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700708 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
709 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900710 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700711 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
712 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900713
Changman Lee29e59c12013-11-11 09:24:37 +0900714 for (i = start; i < end; i++)
715 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900716
Changman Lee29e59c12013-11-11 09:24:37 +0900717 dirty_i->nr_dirty[PRE] -= end - start;
718
719 if (!test_opt(sbi, DISCARD))
720 continue;
721
Jaegeuk Kim37208872013-11-12 16:55:17 +0900722 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
723 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900724 }
725 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900726
727 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800728 list_for_each_entry_safe(entry, this, head, list) {
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700729 if (cpc->reason == CP_DISCARD && entry->len < cpc->trim_minlen)
730 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900731 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700732 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700733skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900734 list_del(&entry->list);
735 SM_I(sbi)->nr_discards -= entry->len;
736 kmem_cache_free(discard_entry_slab, entry);
737 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900738}
739
Chao Yu184a5cd2014-09-04 18:13:01 +0800740static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900741{
742 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800743
744 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900745 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800746 return false;
747 }
748
749 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900750}
751
752static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
753 unsigned int segno, int modified)
754{
755 struct seg_entry *se = get_seg_entry(sbi, segno);
756 se->type = type;
757 if (modified)
758 __mark_sit_entry_dirty(sbi, segno);
759}
760
761static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
762{
763 struct seg_entry *se;
764 unsigned int segno, offset;
765 long int new_vblocks;
766
767 segno = GET_SEGNO(sbi, blkaddr);
768
769 se = get_seg_entry(sbi, segno);
770 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +0900771 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900772
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700773 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900774 (new_vblocks > sbi->blocks_per_seg)));
775
776 se->valid_blocks = new_vblocks;
777 se->mtime = get_mtime(sbi);
778 SIT_I(sbi)->max_mtime = se->mtime;
779
780 /* Update valid block bitmap */
781 if (del > 0) {
Gu Zheng52aca072014-10-20 17:45:51 +0800782 if (f2fs_test_and_set_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700783 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700784 if (!f2fs_test_and_set_bit(offset, se->discard_map))
785 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900786 } else {
Gu Zheng52aca072014-10-20 17:45:51 +0800787 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700788 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700789 if (f2fs_test_and_clear_bit(offset, se->discard_map))
790 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900791 }
792 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
793 se->ckpt_valid_blocks += del;
794
795 __mark_sit_entry_dirty(sbi, segno);
796
797 /* update total number of valid blocks to be written in ckpt area */
798 SIT_I(sbi)->written_valid_blocks += del;
799
800 if (sbi->segs_per_sec > 1)
801 get_sec_entry(sbi, segno)->valid_blocks += del;
802}
803
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900804void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900805{
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900806 update_sit_entry(sbi, new, 1);
807 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
808 update_sit_entry(sbi, old, -1);
809
810 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
811 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900812}
813
814void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
815{
816 unsigned int segno = GET_SEGNO(sbi, addr);
817 struct sit_info *sit_i = SIT_I(sbi);
818
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700819 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900820 if (addr == NEW_ADDR)
821 return;
822
823 /* add it into sit main buffer */
824 mutex_lock(&sit_i->sentry_lock);
825
826 update_sit_entry(sbi, addr, -1);
827
828 /* add it into dirty seglist */
829 locate_dirty_segment(sbi, segno);
830
831 mutex_unlock(&sit_i->sentry_lock);
832}
833
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -0700834bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
835{
836 struct sit_info *sit_i = SIT_I(sbi);
837 unsigned int segno, offset;
838 struct seg_entry *se;
839 bool is_cp = false;
840
841 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
842 return true;
843
844 mutex_lock(&sit_i->sentry_lock);
845
846 segno = GET_SEGNO(sbi, blkaddr);
847 se = get_seg_entry(sbi, segno);
848 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
849
850 if (f2fs_test_bit(offset, se->ckpt_valid_map))
851 is_cp = true;
852
853 mutex_unlock(&sit_i->sentry_lock);
854
855 return is_cp;
856}
857
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900858/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900859 * This function should be resided under the curseg_mutex lock
860 */
861static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +0800862 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900863{
864 struct curseg_info *curseg = CURSEG_I(sbi, type);
865 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +0800866 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900867 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900868}
869
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900870/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900871 * Calculate the number of current summary pages for writing
872 */
Chao Yu3fa06d72014-12-09 14:21:46 +0800873int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900874{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900875 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +0800876 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900877
878 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
879 if (sbi->ckpt->alloc_type[i] == SSR)
880 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +0800881 else {
882 if (for_ra)
883 valid_sum_count += le16_to_cpu(
884 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
885 else
886 valid_sum_count += curseg_blkoff(sbi, i);
887 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900888 }
889
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300890 sum_in_page = (PAGE_SIZE - 2 * SUM_JOURNAL_SIZE -
Fan Li9a479382013-10-29 16:21:47 +0800891 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
892 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900893 return 1;
Fan Li9a479382013-10-29 16:21:47 +0800894 else if ((valid_sum_count - sum_in_page) <=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300895 (PAGE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900896 return 2;
897 return 3;
898}
899
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900900/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900901 * Caller should put this summary page
902 */
903struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
904{
905 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
906}
907
Chao Yu381722d2015-05-19 17:40:04 +0800908void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
909{
910 struct page *page = grab_meta_page(sbi, blk_addr);
911 void *dst = page_address(page);
912
913 if (src)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300914 memcpy(dst, src, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +0800915 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300916 memset(dst, 0, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +0800917 set_page_dirty(page);
918 f2fs_put_page(page, 1);
919}
920
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900921static void write_sum_page(struct f2fs_sb_info *sbi,
922 struct f2fs_summary_block *sum_blk, block_t blk_addr)
923{
Chao Yu381722d2015-05-19 17:40:04 +0800924 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900925}
926
Chao Yub7ad7512016-02-19 18:08:46 +0800927static void write_current_sum_page(struct f2fs_sb_info *sbi,
928 int type, block_t blk_addr)
929{
930 struct curseg_info *curseg = CURSEG_I(sbi, type);
931 struct page *page = grab_meta_page(sbi, blk_addr);
932 struct f2fs_summary_block *src = curseg->sum_blk;
933 struct f2fs_summary_block *dst;
934
935 dst = (struct f2fs_summary_block *)page_address(page);
936
937 mutex_lock(&curseg->curseg_mutex);
938
939 down_read(&curseg->journal_rwsem);
940 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE);
941 up_read(&curseg->journal_rwsem);
942
943 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE);
944 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE);
945
946 mutex_unlock(&curseg->curseg_mutex);
947
948 set_page_dirty(page);
949 f2fs_put_page(page, 1);
950}
951
Jaegeuk Kim60374682013-03-31 13:58:51 +0900952static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
953{
954 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +0800955 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +0900956 struct free_segmap_info *free_i = FREE_I(sbi);
957
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700958 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +0800959 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +0900960 return 0;
961}
962
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900963/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900964 * Find a new segment from the free segments bitmap to right order
965 * This function should be returned with success, otherwise BUG
966 */
967static void get_new_segment(struct f2fs_sb_info *sbi,
968 unsigned int *newseg, bool new_sec, int dir)
969{
970 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900971 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700972 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900973 unsigned int hint = *newseg / sbi->segs_per_sec;
974 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
975 unsigned int left_start = hint;
976 bool init = true;
977 int go_left = 0;
978 int i;
979
Chao Yu1a118cc2015-02-11 18:20:38 +0800980 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900981
982 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
983 segno = find_next_zero_bit(free_i->free_segmap,
Chao Yu0ab14352016-01-22 17:42:06 +0800984 (hint + 1) * sbi->segs_per_sec, *newseg + 1);
985 if (segno < (hint + 1) * sbi->segs_per_sec)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900986 goto got_it;
987 }
988find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700989 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
990 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900991 if (dir == ALLOC_RIGHT) {
992 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700993 MAIN_SECS(sbi), 0);
994 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900995 } else {
996 go_left = 1;
997 left_start = hint - 1;
998 }
999 }
1000 if (go_left == 0)
1001 goto skip_left;
1002
1003 while (test_bit(left_start, free_i->free_secmap)) {
1004 if (left_start > 0) {
1005 left_start--;
1006 continue;
1007 }
1008 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001009 MAIN_SECS(sbi), 0);
1010 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001011 break;
1012 }
1013 secno = left_start;
1014skip_left:
1015 hint = secno;
1016 segno = secno * sbi->segs_per_sec;
1017 zoneno = secno / sbi->secs_per_zone;
1018
1019 /* give up on finding another zone */
1020 if (!init)
1021 goto got_it;
1022 if (sbi->secs_per_zone == 1)
1023 goto got_it;
1024 if (zoneno == old_zoneno)
1025 goto got_it;
1026 if (dir == ALLOC_LEFT) {
1027 if (!go_left && zoneno + 1 >= total_zones)
1028 goto got_it;
1029 if (go_left && zoneno == 0)
1030 goto got_it;
1031 }
1032 for (i = 0; i < NR_CURSEG_TYPE; i++)
1033 if (CURSEG_I(sbi, i)->zone == zoneno)
1034 break;
1035
1036 if (i < NR_CURSEG_TYPE) {
1037 /* zone is in user, try another */
1038 if (go_left)
1039 hint = zoneno * sbi->secs_per_zone - 1;
1040 else if (zoneno + 1 >= total_zones)
1041 hint = 0;
1042 else
1043 hint = (zoneno + 1) * sbi->secs_per_zone;
1044 init = false;
1045 goto find_other_zone;
1046 }
1047got_it:
1048 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001049 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001050 __set_inuse(sbi, segno);
1051 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08001052 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001053}
1054
1055static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
1056{
1057 struct curseg_info *curseg = CURSEG_I(sbi, type);
1058 struct summary_footer *sum_footer;
1059
1060 curseg->segno = curseg->next_segno;
1061 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
1062 curseg->next_blkoff = 0;
1063 curseg->next_segno = NULL_SEGNO;
1064
1065 sum_footer = &(curseg->sum_blk->footer);
1066 memset(sum_footer, 0, sizeof(struct summary_footer));
1067 if (IS_DATASEG(type))
1068 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
1069 if (IS_NODESEG(type))
1070 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
1071 __set_sit_entry_type(sbi, type, curseg->segno, modified);
1072}
1073
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001074/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001075 * Allocate a current working segment.
1076 * This function always allocates a free segment in LFS manner.
1077 */
1078static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
1079{
1080 struct curseg_info *curseg = CURSEG_I(sbi, type);
1081 unsigned int segno = curseg->segno;
1082 int dir = ALLOC_LEFT;
1083
1084 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08001085 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001086 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
1087 dir = ALLOC_RIGHT;
1088
1089 if (test_opt(sbi, NOHEAP))
1090 dir = ALLOC_RIGHT;
1091
1092 get_new_segment(sbi, &segno, new_sec, dir);
1093 curseg->next_segno = segno;
1094 reset_curseg(sbi, type, 1);
1095 curseg->alloc_type = LFS;
1096}
1097
1098static void __next_free_blkoff(struct f2fs_sb_info *sbi,
1099 struct curseg_info *seg, block_t start)
1100{
1101 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09001102 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001103 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09001104 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
1105 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1106 int i, pos;
1107
1108 for (i = 0; i < entries; i++)
1109 target_map[i] = ckpt_map[i] | cur_map[i];
1110
1111 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1112
1113 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001114}
1115
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001116/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001117 * If a segment is written by LFS manner, next block offset is just obtained
1118 * by increasing the current block offset. However, if a segment is written by
1119 * SSR manner, next block offset obtained by calling __next_free_blkoff
1120 */
1121static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1122 struct curseg_info *seg)
1123{
1124 if (seg->alloc_type == SSR)
1125 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1126 else
1127 seg->next_blkoff++;
1128}
1129
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001130/*
arter97e1c42042014-08-06 23:22:50 +09001131 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001132 * manner, so it should recover the existing segment information of valid blocks
1133 */
1134static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1135{
1136 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1137 struct curseg_info *curseg = CURSEG_I(sbi, type);
1138 unsigned int new_segno = curseg->next_segno;
1139 struct f2fs_summary_block *sum_node;
1140 struct page *sum_page;
1141
1142 write_sum_page(sbi, curseg->sum_blk,
1143 GET_SUM_BLOCK(sbi, curseg->segno));
1144 __set_test_and_inuse(sbi, new_segno);
1145
1146 mutex_lock(&dirty_i->seglist_lock);
1147 __remove_dirty_segment(sbi, new_segno, PRE);
1148 __remove_dirty_segment(sbi, new_segno, DIRTY);
1149 mutex_unlock(&dirty_i->seglist_lock);
1150
1151 reset_curseg(sbi, type, 1);
1152 curseg->alloc_type = SSR;
1153 __next_free_blkoff(sbi, curseg, 0);
1154
1155 if (reuse) {
1156 sum_page = get_sum_page(sbi, new_segno);
1157 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1158 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1159 f2fs_put_page(sum_page, 1);
1160 }
1161}
1162
Jaegeuk Kim43727522013-02-04 15:11:17 +09001163static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1164{
1165 struct curseg_info *curseg = CURSEG_I(sbi, type);
1166 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1167
1168 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0))
1169 return v_ops->get_victim(sbi,
1170 &(curseg)->next_segno, BG_GC, type, SSR);
1171
1172 /* For data segments, let's do SSR more intensively */
1173 for (; type >= CURSEG_HOT_DATA; type--)
1174 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1175 BG_GC, type, SSR))
1176 return 1;
1177 return 0;
1178}
1179
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001180/*
1181 * flush out current segment and replace it with new segment
1182 * This function should be returned with success, otherwise BUG
1183 */
1184static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1185 int type, bool force)
1186{
1187 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001188
Gu Zheng7b405272013-08-19 09:41:15 +08001189 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001190 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001191 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001192 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001193 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1194 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001195 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1196 change_curseg(sbi, type, true);
1197 else
1198 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001199
1200 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001201}
1202
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001203static void __allocate_new_segments(struct f2fs_sb_info *sbi, int type)
1204{
1205 struct curseg_info *curseg = CURSEG_I(sbi, type);
1206 unsigned int old_segno;
1207
1208 old_segno = curseg->segno;
1209 SIT_I(sbi)->s_ops->allocate_segment(sbi, type, true);
1210 locate_dirty_segment(sbi, old_segno);
1211}
1212
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001213void allocate_new_segments(struct f2fs_sb_info *sbi)
1214{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001215 int i;
1216
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001217 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++)
1218 __allocate_new_segments(sbi, i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001219}
1220
1221static const struct segment_allocation default_salloc_ops = {
1222 .allocate_segment = allocate_segment_by_default,
1223};
1224
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001225int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1226{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001227 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1228 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001229 unsigned int start_segno, end_segno;
1230 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001231 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001232
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001233 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001234 return -EINVAL;
1235
Jan Kara9bd27ae2014-10-21 14:07:33 +02001236 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001237 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001238 goto out;
1239
1240 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001241 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1242 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1243 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001244 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001245 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001246
1247 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001248 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1249 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001250
1251 if (sbi->discard_blks == 0)
1252 break;
1253 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1254 cpc.trim_end = end_segno;
1255 else
1256 cpc.trim_end = min_t(unsigned int,
1257 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001258 BATCHED_TRIM_SEGMENTS(sbi),
1259 sbi->segs_per_sec) - 1, end_segno);
1260
1261 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001262 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001263 mutex_unlock(&sbi->gc_mutex);
1264 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001265out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001266 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001267 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001268}
1269
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001270static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1271{
1272 struct curseg_info *curseg = CURSEG_I(sbi, type);
1273 if (curseg->next_blkoff < sbi->blocks_per_seg)
1274 return true;
1275 return false;
1276}
1277
1278static int __get_segment_type_2(struct page *page, enum page_type p_type)
1279{
1280 if (p_type == DATA)
1281 return CURSEG_HOT_DATA;
1282 else
1283 return CURSEG_HOT_NODE;
1284}
1285
1286static int __get_segment_type_4(struct page *page, enum page_type p_type)
1287{
1288 if (p_type == DATA) {
1289 struct inode *inode = page->mapping->host;
1290
1291 if (S_ISDIR(inode->i_mode))
1292 return CURSEG_HOT_DATA;
1293 else
1294 return CURSEG_COLD_DATA;
1295 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001296 if (IS_DNODE(page) && is_cold_node(page))
1297 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001298 else
1299 return CURSEG_COLD_NODE;
1300 }
1301}
1302
1303static int __get_segment_type_6(struct page *page, enum page_type p_type)
1304{
1305 if (p_type == DATA) {
1306 struct inode *inode = page->mapping->host;
1307
1308 if (S_ISDIR(inode->i_mode))
1309 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001310 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001311 return CURSEG_COLD_DATA;
1312 else
1313 return CURSEG_WARM_DATA;
1314 } else {
1315 if (IS_DNODE(page))
1316 return is_cold_node(page) ? CURSEG_WARM_NODE :
1317 CURSEG_HOT_NODE;
1318 else
1319 return CURSEG_COLD_NODE;
1320 }
1321}
1322
1323static int __get_segment_type(struct page *page, enum page_type p_type)
1324{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001325 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001326 case 2:
1327 return __get_segment_type_2(page, p_type);
1328 case 4:
1329 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001330 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001331 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001332 f2fs_bug_on(F2FS_P_SB(page),
1333 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001334 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001335}
1336
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001337void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1338 block_t old_blkaddr, block_t *new_blkaddr,
1339 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001340{
1341 struct sit_info *sit_i = SIT_I(sbi);
1342 struct curseg_info *curseg;
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001343 bool direct_io = (type == CURSEG_DIRECT_IO);
1344
1345 type = direct_io ? CURSEG_WARM_DATA : type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001346
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001347 curseg = CURSEG_I(sbi, type);
1348
1349 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001350 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001351
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001352 /* direct_io'ed data is aligned to the segment for better performance */
Jaegeuk Kim47e70ca2015-08-11 10:17:27 -07001353 if (direct_io && curseg->next_blkoff &&
1354 !has_not_enough_free_secs(sbi, 0))
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001355 __allocate_new_segments(sbi, type);
1356
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001357 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001358
1359 /*
1360 * __add_sum_entry should be resided under the curseg_mutex
1361 * because, this function updates a summary entry in the
1362 * current summary block.
1363 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001364 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001365
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001366 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001367
1368 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001369
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001370 if (!__has_curseg_space(sbi, type))
1371 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001372 /*
1373 * SIT information should be updated before segment allocation,
1374 * since SSR needs latest valid block information.
1375 */
1376 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001377
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001378 mutex_unlock(&sit_i->sentry_lock);
1379
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001380 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001381 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1382
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001383 mutex_unlock(&curseg->curseg_mutex);
1384}
1385
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001386static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001387{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001388 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001389
Chao Yu7a9d7542016-02-22 18:36:38 +08001390 allocate_data_block(fio->sbi, fio->page, fio->old_blkaddr,
1391 &fio->new_blkaddr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001392
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001393 /* writeout dirty page into bdev */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001394 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001395}
1396
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001397void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001398{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001399 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001400 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001401 .type = META,
Jaegeuk Kimcf04e8e2014-12-17 19:33:13 -08001402 .rw = WRITE_SYNC | REQ_META | REQ_PRIO,
Chao Yu7a9d7542016-02-22 18:36:38 +08001403 .old_blkaddr = page->index,
1404 .new_blkaddr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001405 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001406 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001407 };
1408
Chao Yu2b947002015-10-12 17:04:21 +08001409 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
1410 fio.rw &= ~REQ_META;
1411
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001412 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001413 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001414}
1415
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001416void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001417{
1418 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001419
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001420 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001421 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001422}
1423
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001424void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001425{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001426 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001427 struct f2fs_summary sum;
1428 struct node_info ni;
1429
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001430 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001431 get_node_info(sbi, dn->nid, &ni);
1432 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001433 do_write_page(&sum, fio);
Chao Yuf28b3432016-02-24 17:16:47 +08001434 f2fs_update_data_blkaddr(dn, fio->new_blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001435}
1436
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001437void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001438{
Chao Yu7a9d7542016-02-22 18:36:38 +08001439 fio->new_blkaddr = fio->old_blkaddr;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001440 stat_inc_inplace_blocks(fio->sbi);
1441 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001442}
1443
Chao Yu4356e482016-02-23 17:52:43 +08001444void __f2fs_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001445 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08001446 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001447{
1448 struct sit_info *sit_i = SIT_I(sbi);
1449 struct curseg_info *curseg;
1450 unsigned int segno, old_cursegno;
1451 struct seg_entry *se;
1452 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001453 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001454
1455 segno = GET_SEGNO(sbi, new_blkaddr);
1456 se = get_seg_entry(sbi, segno);
1457 type = se->type;
1458
Chao Yu19f106b2015-05-06 13:08:06 +08001459 if (!recover_curseg) {
1460 /* for recovery flow */
1461 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1462 if (old_blkaddr == NULL_ADDR)
1463 type = CURSEG_COLD_DATA;
1464 else
1465 type = CURSEG_WARM_DATA;
1466 }
1467 } else {
1468 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001469 type = CURSEG_WARM_DATA;
1470 }
Chao Yu19f106b2015-05-06 13:08:06 +08001471
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001472 curseg = CURSEG_I(sbi, type);
1473
1474 mutex_lock(&curseg->curseg_mutex);
1475 mutex_lock(&sit_i->sentry_lock);
1476
1477 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001478 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001479
1480 /* change the current segment */
1481 if (segno != curseg->segno) {
1482 curseg->next_segno = segno;
1483 change_curseg(sbi, type, true);
1484 }
1485
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001486 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001487 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001488
Chao Yu28bc1062016-02-06 14:40:34 +08001489 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001490 update_sit_entry(sbi, new_blkaddr, 1);
1491 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1492 update_sit_entry(sbi, old_blkaddr, -1);
1493
1494 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1495 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1496
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001497 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001498
Chao Yu19f106b2015-05-06 13:08:06 +08001499 if (recover_curseg) {
1500 if (old_cursegno != curseg->segno) {
1501 curseg->next_segno = old_cursegno;
1502 change_curseg(sbi, type, true);
1503 }
1504 curseg->next_blkoff = old_blkoff;
1505 }
1506
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001507 mutex_unlock(&sit_i->sentry_lock);
1508 mutex_unlock(&curseg->curseg_mutex);
1509}
1510
Chao Yu528e3452015-05-28 19:15:35 +08001511void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1512 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08001513 unsigned char version, bool recover_curseg,
1514 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08001515{
1516 struct f2fs_summary sum;
1517
1518 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1519
Chao Yu28bc1062016-02-06 14:40:34 +08001520 __f2fs_replace_block(sbi, &sum, old_addr, new_addr,
1521 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08001522
Chao Yuf28b3432016-02-24 17:16:47 +08001523 f2fs_update_data_blkaddr(dn, new_addr);
Chao Yu528e3452015-05-28 19:15:35 +08001524}
1525
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001526void f2fs_wait_on_page_writeback(struct page *page,
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001527 enum page_type type, bool ordered)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001528{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001529 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001530 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1531
Chao Yu0c3a5792016-01-18 18:28:11 +08001532 f2fs_submit_merged_bio_cond(sbi, NULL, page, 0, type, WRITE);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001533 if (ordered)
1534 wait_on_page_writeback(page);
1535 else
1536 wait_for_stable_page(page);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001537 }
1538}
1539
Chao Yu08b39fb2015-10-08 13:27:34 +08001540void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1541 block_t blkaddr)
1542{
1543 struct page *cpage;
1544
1545 if (blkaddr == NEW_ADDR)
1546 return;
1547
1548 f2fs_bug_on(sbi, blkaddr == NULL_ADDR);
1549
1550 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1551 if (cpage) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001552 f2fs_wait_on_page_writeback(cpage, DATA, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08001553 f2fs_put_page(cpage, 1);
1554 }
1555}
1556
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001557static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1558{
1559 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1560 struct curseg_info *seg_i;
1561 unsigned char *kaddr;
1562 struct page *page;
1563 block_t start;
1564 int i, j, offset;
1565
1566 start = start_sum_block(sbi);
1567
1568 page = get_meta_page(sbi, start++);
1569 kaddr = (unsigned char *)page_address(page);
1570
1571 /* Step 1: restore nat cache */
1572 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001573 memcpy(seg_i->journal, kaddr, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001574
1575 /* Step 2: restore sit cache */
1576 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001577 memcpy(seg_i->journal, kaddr + SUM_JOURNAL_SIZE, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001578 offset = 2 * SUM_JOURNAL_SIZE;
1579
1580 /* Step 3: restore summary entries */
1581 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1582 unsigned short blk_off;
1583 unsigned int segno;
1584
1585 seg_i = CURSEG_I(sbi, i);
1586 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1587 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1588 seg_i->next_segno = segno;
1589 reset_curseg(sbi, i, 0);
1590 seg_i->alloc_type = ckpt->alloc_type[i];
1591 seg_i->next_blkoff = blk_off;
1592
1593 if (seg_i->alloc_type == SSR)
1594 blk_off = sbi->blocks_per_seg;
1595
1596 for (j = 0; j < blk_off; j++) {
1597 struct f2fs_summary *s;
1598 s = (struct f2fs_summary *)(kaddr + offset);
1599 seg_i->sum_blk->entries[j] = *s;
1600 offset += SUMMARY_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001601 if (offset + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001602 SUM_FOOTER_SIZE)
1603 continue;
1604
1605 f2fs_put_page(page, 1);
1606 page = NULL;
1607
1608 page = get_meta_page(sbi, start++);
1609 kaddr = (unsigned char *)page_address(page);
1610 offset = 0;
1611 }
1612 }
1613 f2fs_put_page(page, 1);
1614 return 0;
1615}
1616
1617static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1618{
1619 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1620 struct f2fs_summary_block *sum;
1621 struct curseg_info *curseg;
1622 struct page *new;
1623 unsigned short blk_off;
1624 unsigned int segno = 0;
1625 block_t blk_addr = 0;
1626
1627 /* get segment number and block addr */
1628 if (IS_DATASEG(type)) {
1629 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1630 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1631 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001632 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001633 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1634 else
1635 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1636 } else {
1637 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1638 CURSEG_HOT_NODE]);
1639 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1640 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001641 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001642 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1643 type - CURSEG_HOT_NODE);
1644 else
1645 blk_addr = GET_SUM_BLOCK(sbi, segno);
1646 }
1647
1648 new = get_meta_page(sbi, blk_addr);
1649 sum = (struct f2fs_summary_block *)page_address(new);
1650
1651 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001652 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001653 struct f2fs_summary *ns = &sum->entries[0];
1654 int i;
1655 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1656 ns->version = 0;
1657 ns->ofs_in_node = 0;
1658 }
1659 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001660 int err;
1661
1662 err = restore_node_summary(sbi, segno, sum);
1663 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001664 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001665 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001666 }
1667 }
1668 }
1669
1670 /* set uncompleted segment to curseg */
1671 curseg = CURSEG_I(sbi, type);
1672 mutex_lock(&curseg->curseg_mutex);
Chao Yub7ad7512016-02-19 18:08:46 +08001673
1674 /* update journal info */
1675 down_write(&curseg->journal_rwsem);
1676 memcpy(curseg->journal, &sum->journal, SUM_JOURNAL_SIZE);
1677 up_write(&curseg->journal_rwsem);
1678
1679 memcpy(curseg->sum_blk->entries, sum->entries, SUM_ENTRY_SIZE);
1680 memcpy(&curseg->sum_blk->footer, &sum->footer, SUM_FOOTER_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001681 curseg->next_segno = segno;
1682 reset_curseg(sbi, type, 0);
1683 curseg->alloc_type = ckpt->alloc_type[type];
1684 curseg->next_blkoff = blk_off;
1685 mutex_unlock(&curseg->curseg_mutex);
1686 f2fs_put_page(new, 1);
1687 return 0;
1688}
1689
1690static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1691{
1692 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001693 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001694
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001695 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001696 int npages = npages_for_summary_flush(sbi, true);
1697
1698 if (npages >= 2)
1699 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001700 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001701
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001702 /* restore for compacted data summary */
1703 if (read_compacted_summaries(sbi))
1704 return -EINVAL;
1705 type = CURSEG_HOT_NODE;
1706 }
1707
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001708 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001709 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001710 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001711
Chao Yue4fc5fb2014-03-17 16:36:24 +08001712 for (; type <= CURSEG_COLD_NODE; type++) {
1713 err = read_normal_summaries(sbi, type);
1714 if (err)
1715 return err;
1716 }
1717
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001718 return 0;
1719}
1720
1721static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1722{
1723 struct page *page;
1724 unsigned char *kaddr;
1725 struct f2fs_summary *summary;
1726 struct curseg_info *seg_i;
1727 int written_size = 0;
1728 int i, j;
1729
1730 page = grab_meta_page(sbi, blkaddr++);
1731 kaddr = (unsigned char *)page_address(page);
1732
1733 /* Step 1: write nat cache */
1734 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001735 memcpy(kaddr, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001736 written_size += SUM_JOURNAL_SIZE;
1737
1738 /* Step 2: write sit cache */
1739 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001740 memcpy(kaddr + written_size, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001741 written_size += SUM_JOURNAL_SIZE;
1742
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001743 /* Step 3: write summary entries */
1744 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1745 unsigned short blkoff;
1746 seg_i = CURSEG_I(sbi, i);
1747 if (sbi->ckpt->alloc_type[i] == SSR)
1748 blkoff = sbi->blocks_per_seg;
1749 else
1750 blkoff = curseg_blkoff(sbi, i);
1751
1752 for (j = 0; j < blkoff; j++) {
1753 if (!page) {
1754 page = grab_meta_page(sbi, blkaddr++);
1755 kaddr = (unsigned char *)page_address(page);
1756 written_size = 0;
1757 }
1758 summary = (struct f2fs_summary *)(kaddr + written_size);
1759 *summary = seg_i->sum_blk->entries[j];
1760 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001761
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001762 if (written_size + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001763 SUM_FOOTER_SIZE)
1764 continue;
1765
Chao Yue8d61a72013-10-24 15:08:28 +08001766 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001767 f2fs_put_page(page, 1);
1768 page = NULL;
1769 }
1770 }
Chao Yue8d61a72013-10-24 15:08:28 +08001771 if (page) {
1772 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001773 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08001774 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001775}
1776
1777static void write_normal_summaries(struct f2fs_sb_info *sbi,
1778 block_t blkaddr, int type)
1779{
1780 int i, end;
1781 if (IS_DATASEG(type))
1782 end = type + NR_CURSEG_DATA_TYPE;
1783 else
1784 end = type + NR_CURSEG_NODE_TYPE;
1785
Chao Yub7ad7512016-02-19 18:08:46 +08001786 for (i = type; i < end; i++)
1787 write_current_sum_page(sbi, i, blkaddr + (i - type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001788}
1789
1790void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1791{
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001792 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001793 write_compacted_summaries(sbi, start_blk);
1794 else
1795 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1796}
1797
1798void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1799{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001800 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001801}
1802
Chao Yudfc08a12016-02-14 18:50:40 +08001803int lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001804 unsigned int val, int alloc)
1805{
1806 int i;
1807
1808 if (type == NAT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001809 for (i = 0; i < nats_in_cursum(journal); i++) {
1810 if (le32_to_cpu(nid_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001811 return i;
1812 }
Chao Yudfc08a12016-02-14 18:50:40 +08001813 if (alloc && __has_cursum_space(journal, 1, NAT_JOURNAL))
1814 return update_nats_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001815 } else if (type == SIT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08001816 for (i = 0; i < sits_in_cursum(journal); i++)
1817 if (le32_to_cpu(segno_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001818 return i;
Chao Yudfc08a12016-02-14 18:50:40 +08001819 if (alloc && __has_cursum_space(journal, 1, SIT_JOURNAL))
1820 return update_sits_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001821 }
1822 return -1;
1823}
1824
1825static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
1826 unsigned int segno)
1827{
Gu Zheng2cc22182014-10-20 17:45:49 +08001828 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001829}
1830
1831static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
1832 unsigned int start)
1833{
1834 struct sit_info *sit_i = SIT_I(sbi);
1835 struct page *src_page, *dst_page;
1836 pgoff_t src_off, dst_off;
1837 void *src_addr, *dst_addr;
1838
1839 src_off = current_sit_addr(sbi, start);
1840 dst_off = next_sit_addr(sbi, src_off);
1841
1842 /* get current sit block page without lock */
1843 src_page = get_meta_page(sbi, src_off);
1844 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001845 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001846
1847 src_addr = page_address(src_page);
1848 dst_addr = page_address(dst_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001849 memcpy(dst_addr, src_addr, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001850
1851 set_page_dirty(dst_page);
1852 f2fs_put_page(src_page, 1);
1853
1854 set_to_next_sit(sit_i, start);
1855
1856 return dst_page;
1857}
1858
Chao Yu184a5cd2014-09-04 18:13:01 +08001859static struct sit_entry_set *grab_sit_entry_set(void)
1860{
1861 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001862 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08001863
1864 ses->entry_cnt = 0;
1865 INIT_LIST_HEAD(&ses->set_list);
1866 return ses;
1867}
1868
1869static void release_sit_entry_set(struct sit_entry_set *ses)
1870{
1871 list_del(&ses->set_list);
1872 kmem_cache_free(sit_entry_set_slab, ses);
1873}
1874
1875static void adjust_sit_entry_set(struct sit_entry_set *ses,
1876 struct list_head *head)
1877{
1878 struct sit_entry_set *next = ses;
1879
1880 if (list_is_last(&ses->set_list, head))
1881 return;
1882
1883 list_for_each_entry_continue(next, head, set_list)
1884 if (ses->entry_cnt <= next->entry_cnt)
1885 break;
1886
1887 list_move_tail(&ses->set_list, &next->set_list);
1888}
1889
1890static void add_sit_entry(unsigned int segno, struct list_head *head)
1891{
1892 struct sit_entry_set *ses;
1893 unsigned int start_segno = START_SEGNO(segno);
1894
1895 list_for_each_entry(ses, head, set_list) {
1896 if (ses->start_segno == start_segno) {
1897 ses->entry_cnt++;
1898 adjust_sit_entry_set(ses, head);
1899 return;
1900 }
1901 }
1902
1903 ses = grab_sit_entry_set();
1904
1905 ses->start_segno = start_segno;
1906 ses->entry_cnt++;
1907 list_add(&ses->set_list, head);
1908}
1909
1910static void add_sits_in_set(struct f2fs_sb_info *sbi)
1911{
1912 struct f2fs_sm_info *sm_info = SM_I(sbi);
1913 struct list_head *set_list = &sm_info->sit_entry_set;
1914 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08001915 unsigned int segno;
1916
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001917 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08001918 add_sit_entry(segno, set_list);
1919}
1920
1921static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001922{
1923 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001924 struct f2fs_journal *journal = curseg->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001925 int i;
1926
Chao Yub7ad7512016-02-19 18:08:46 +08001927 down_write(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08001928 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yu184a5cd2014-09-04 18:13:01 +08001929 unsigned int segno;
1930 bool dirtied;
1931
Chao Yudfc08a12016-02-14 18:50:40 +08001932 segno = le32_to_cpu(segno_in_journal(journal, i));
Chao Yu184a5cd2014-09-04 18:13:01 +08001933 dirtied = __mark_sit_entry_dirty(sbi, segno);
1934
1935 if (!dirtied)
1936 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001937 }
Chao Yudfc08a12016-02-14 18:50:40 +08001938 update_sits_in_cursum(journal, -i);
Chao Yub7ad7512016-02-19 18:08:46 +08001939 up_write(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001940}
1941
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001942/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001943 * CP calls this function, which flushes SIT entries including sit_journal,
1944 * and moves prefree segs to free segs.
1945 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001946void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001947{
1948 struct sit_info *sit_i = SIT_I(sbi);
1949 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
1950 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001951 struct f2fs_journal *journal = curseg->journal;
Chao Yu184a5cd2014-09-04 18:13:01 +08001952 struct sit_entry_set *ses, *tmp;
1953 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08001954 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001955 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001956
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001957 mutex_lock(&sit_i->sentry_lock);
1958
Wanpeng Li2b11a742015-02-27 16:52:50 +08001959 if (!sit_i->dirty_sentries)
1960 goto out;
1961
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001962 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08001963 * add and account sit entries of dirty bitmap in sit entry
1964 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001965 */
Chao Yu184a5cd2014-09-04 18:13:01 +08001966 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001967
Chao Yu184a5cd2014-09-04 18:13:01 +08001968 /*
1969 * if there are no enough space in journal to store dirty sit
1970 * entries, remove all entries from journal and add and account
1971 * them in sit entry set.
1972 */
Chao Yudfc08a12016-02-14 18:50:40 +08001973 if (!__has_cursum_space(journal, sit_i->dirty_sentries, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08001974 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001975
Chao Yu184a5cd2014-09-04 18:13:01 +08001976 /*
1977 * there are two steps to flush sit entries:
1978 * #1, flush sit entries to journal in current cold data summary block.
1979 * #2, flush sit entries to sit page.
1980 */
1981 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07001982 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08001983 struct f2fs_sit_block *raw_sit = NULL;
1984 unsigned int start_segno = ses->start_segno;
1985 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001986 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08001987 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001988
Chao Yu184a5cd2014-09-04 18:13:01 +08001989 if (to_journal &&
Chao Yudfc08a12016-02-14 18:50:40 +08001990 !__has_cursum_space(journal, ses->entry_cnt, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08001991 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001992
Chao Yub7ad7512016-02-19 18:08:46 +08001993 if (to_journal) {
1994 down_write(&curseg->journal_rwsem);
1995 } else {
Chao Yu184a5cd2014-09-04 18:13:01 +08001996 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001997 raw_sit = page_address(page);
1998 }
1999
Chao Yu184a5cd2014-09-04 18:13:01 +08002000 /* flush dirty sit entries in region of current sit set */
2001 for_each_set_bit_from(segno, bitmap, end) {
2002 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002003
2004 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08002005
2006 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08002007 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002008 cpc->trim_start = segno;
2009 add_discard_addrs(sbi, cpc);
2010 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002011
2012 if (to_journal) {
Chao Yudfc08a12016-02-14 18:50:40 +08002013 offset = lookup_journal_in_cursum(journal,
Chao Yu184a5cd2014-09-04 18:13:01 +08002014 SIT_JOURNAL, segno, 1);
2015 f2fs_bug_on(sbi, offset < 0);
Chao Yudfc08a12016-02-14 18:50:40 +08002016 segno_in_journal(journal, offset) =
Chao Yu184a5cd2014-09-04 18:13:01 +08002017 cpu_to_le32(segno);
2018 seg_info_to_raw_sit(se,
Chao Yudfc08a12016-02-14 18:50:40 +08002019 &sit_in_journal(journal, offset));
Chao Yu184a5cd2014-09-04 18:13:01 +08002020 } else {
2021 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
2022 seg_info_to_raw_sit(se,
2023 &raw_sit->entries[sit_offset]);
2024 }
2025
2026 __clear_bit(segno, bitmap);
2027 sit_i->dirty_sentries--;
2028 ses->entry_cnt--;
2029 }
2030
Chao Yub7ad7512016-02-19 18:08:46 +08002031 if (to_journal)
2032 up_write(&curseg->journal_rwsem);
2033 else
Chao Yu184a5cd2014-09-04 18:13:01 +08002034 f2fs_put_page(page, 1);
2035
2036 f2fs_bug_on(sbi, ses->entry_cnt);
2037 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002038 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002039
2040 f2fs_bug_on(sbi, !list_empty(head));
2041 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08002042out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002043 if (cpc->reason == CP_DISCARD) {
2044 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
2045 add_discard_addrs(sbi, cpc);
2046 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002047 mutex_unlock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002048
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002049 set_prefree_as_free_segments(sbi);
2050}
2051
2052static int build_sit_info(struct f2fs_sb_info *sbi)
2053{
2054 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2055 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
2056 struct sit_info *sit_i;
2057 unsigned int sit_segs, start;
2058 char *src_bitmap, *dst_bitmap;
2059 unsigned int bitmap_size;
2060
2061 /* allocate memory for SIT information */
2062 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
2063 if (!sit_i)
2064 return -ENOMEM;
2065
2066 SM_I(sbi)->sit_info = sit_i;
2067
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002068 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
2069 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002070 if (!sit_i->sentries)
2071 return -ENOMEM;
2072
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002073 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002074 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002075 if (!sit_i->dirty_sentries_bitmap)
2076 return -ENOMEM;
2077
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002078 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002079 sit_i->sentries[start].cur_valid_map
2080 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2081 sit_i->sentries[start].ckpt_valid_map
2082 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002083 sit_i->sentries[start].discard_map
2084 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2085 if (!sit_i->sentries[start].cur_valid_map ||
2086 !sit_i->sentries[start].ckpt_valid_map ||
2087 !sit_i->sentries[start].discard_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002088 return -ENOMEM;
2089 }
2090
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002091 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2092 if (!sit_i->tmp_map)
2093 return -ENOMEM;
2094
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002095 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002096 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
2097 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002098 if (!sit_i->sec_entries)
2099 return -ENOMEM;
2100 }
2101
2102 /* get information related with SIT */
2103 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
2104
2105 /* setup SIT bitmap from ckeckpoint pack */
2106 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
2107 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
2108
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02002109 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002110 if (!dst_bitmap)
2111 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002112
2113 /* init SIT information */
2114 sit_i->s_ops = &default_salloc_ops;
2115
2116 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2117 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
2118 sit_i->written_valid_blocks = le64_to_cpu(ckpt->valid_block_count);
2119 sit_i->sit_bitmap = dst_bitmap;
2120 sit_i->bitmap_size = bitmap_size;
2121 sit_i->dirty_sentries = 0;
2122 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2123 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2124 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2125 mutex_init(&sit_i->sentry_lock);
2126 return 0;
2127}
2128
2129static int build_free_segmap(struct f2fs_sb_info *sbi)
2130{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002131 struct free_segmap_info *free_i;
2132 unsigned int bitmap_size, sec_bitmap_size;
2133
2134 /* allocate memory for free segmap information */
2135 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2136 if (!free_i)
2137 return -ENOMEM;
2138
2139 SM_I(sbi)->free_info = free_i;
2140
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002141 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002142 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002143 if (!free_i->free_segmap)
2144 return -ENOMEM;
2145
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002146 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002147 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002148 if (!free_i->free_secmap)
2149 return -ENOMEM;
2150
2151 /* set all segments as dirty temporarily */
2152 memset(free_i->free_segmap, 0xff, bitmap_size);
2153 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2154
2155 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002156 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002157 free_i->free_segments = 0;
2158 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002159 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002160 return 0;
2161}
2162
2163static int build_curseg(struct f2fs_sb_info *sbi)
2164{
Namjae Jeon1042d602012-12-01 10:56:13 +09002165 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002166 int i;
2167
Fabian Frederickb434bab2014-06-23 18:39:15 +02002168 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002169 if (!array)
2170 return -ENOMEM;
2171
2172 SM_I(sbi)->curseg_array = array;
2173
2174 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2175 mutex_init(&array[i].curseg_mutex);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002176 array[i].sum_blk = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002177 if (!array[i].sum_blk)
2178 return -ENOMEM;
Chao Yub7ad7512016-02-19 18:08:46 +08002179 init_rwsem(&array[i].journal_rwsem);
2180 array[i].journal = kzalloc(sizeof(struct f2fs_journal),
2181 GFP_KERNEL);
2182 if (!array[i].journal)
2183 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002184 array[i].segno = NULL_SEGNO;
2185 array[i].next_blkoff = 0;
2186 }
2187 return restore_curseg_summaries(sbi);
2188}
2189
2190static void build_sit_entries(struct f2fs_sb_info *sbi)
2191{
2192 struct sit_info *sit_i = SIT_I(sbi);
2193 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002194 struct f2fs_journal *journal = curseg->journal;
Chao Yu74de5932013-11-22 09:09:59 +08002195 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2196 unsigned int i, start, end;
2197 unsigned int readed, start_blk = 0;
Chao Yue9f5b8b2016-02-14 18:54:33 +08002198 int nrpages = MAX_BIO_BLOCKS(sbi) * 8;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002199
Chao Yu74de5932013-11-22 09:09:59 +08002200 do {
Chao Yu26879fb2015-10-12 17:05:59 +08002201 readed = ra_meta_pages(sbi, start_blk, nrpages, META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002202
Chao Yu74de5932013-11-22 09:09:59 +08002203 start = start_blk * sit_i->sents_per_block;
2204 end = (start_blk + readed) * sit_i->sents_per_block;
2205
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002206 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002207 struct seg_entry *se = &sit_i->sentries[start];
2208 struct f2fs_sit_block *sit_blk;
2209 struct f2fs_sit_entry sit;
2210 struct page *page;
2211
Chao Yub7ad7512016-02-19 18:08:46 +08002212 down_read(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08002213 for (i = 0; i < sits_in_cursum(journal); i++) {
2214 if (le32_to_cpu(segno_in_journal(journal, i))
Chris Fries6c311ec2014-01-17 14:44:39 -06002215 == start) {
Chao Yudfc08a12016-02-14 18:50:40 +08002216 sit = sit_in_journal(journal, i);
Chao Yub7ad7512016-02-19 18:08:46 +08002217 up_read(&curseg->journal_rwsem);
Chao Yu74de5932013-11-22 09:09:59 +08002218 goto got_it;
2219 }
2220 }
Chao Yub7ad7512016-02-19 18:08:46 +08002221 up_read(&curseg->journal_rwsem);
Chao Yu74de5932013-11-22 09:09:59 +08002222
2223 page = get_current_sit_page(sbi, start);
2224 sit_blk = (struct f2fs_sit_block *)page_address(page);
2225 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2226 f2fs_put_page(page, 1);
2227got_it:
2228 check_block_count(sbi, start, &sit);
2229 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002230
2231 /* build discard map only one time */
2232 memcpy(se->discard_map, se->cur_valid_map, SIT_VBLOCK_MAP_SIZE);
2233 sbi->discard_blks += sbi->blocks_per_seg - se->valid_blocks;
2234
Chao Yu74de5932013-11-22 09:09:59 +08002235 if (sbi->segs_per_sec > 1) {
2236 struct sec_entry *e = get_sec_entry(sbi, start);
2237 e->valid_blocks += se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002238 }
2239 }
Chao Yu74de5932013-11-22 09:09:59 +08002240 start_blk += readed;
2241 } while (start_blk < sit_blk_cnt);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002242}
2243
2244static void init_free_segmap(struct f2fs_sb_info *sbi)
2245{
2246 unsigned int start;
2247 int type;
2248
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002249 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002250 struct seg_entry *sentry = get_seg_entry(sbi, start);
2251 if (!sentry->valid_blocks)
2252 __set_free(sbi, start);
2253 }
2254
2255 /* set use the current segments */
2256 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2257 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2258 __set_test_and_inuse(sbi, curseg_t->segno);
2259 }
2260}
2261
2262static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2263{
2264 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2265 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002266 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002267 unsigned short valid_blocks;
2268
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002269 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002270 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002271 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2272 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002273 break;
2274 offset = segno + 1;
2275 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002276 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002277 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002278 if (valid_blocks > sbi->blocks_per_seg) {
2279 f2fs_bug_on(sbi, 1);
2280 continue;
2281 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002282 mutex_lock(&dirty_i->seglist_lock);
2283 __locate_dirty_segment(sbi, segno, DIRTY);
2284 mutex_unlock(&dirty_i->seglist_lock);
2285 }
2286}
2287
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002288static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002289{
2290 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002291 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002292
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002293 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002294 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002295 return -ENOMEM;
2296 return 0;
2297}
2298
2299static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2300{
2301 struct dirty_seglist_info *dirty_i;
2302 unsigned int bitmap_size, i;
2303
2304 /* allocate memory for dirty segments list information */
2305 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2306 if (!dirty_i)
2307 return -ENOMEM;
2308
2309 SM_I(sbi)->dirty_info = dirty_i;
2310 mutex_init(&dirty_i->seglist_lock);
2311
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002312 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002313
2314 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002315 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002316 if (!dirty_i->dirty_segmap[i])
2317 return -ENOMEM;
2318 }
2319
2320 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002321 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002322}
2323
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002324/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002325 * Update min, max modified time for cost-benefit GC algorithm
2326 */
2327static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2328{
2329 struct sit_info *sit_i = SIT_I(sbi);
2330 unsigned int segno;
2331
2332 mutex_lock(&sit_i->sentry_lock);
2333
2334 sit_i->min_mtime = LLONG_MAX;
2335
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002336 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002337 unsigned int i;
2338 unsigned long long mtime = 0;
2339
2340 for (i = 0; i < sbi->segs_per_sec; i++)
2341 mtime += get_seg_entry(sbi, segno + i)->mtime;
2342
2343 mtime = div_u64(mtime, sbi->segs_per_sec);
2344
2345 if (sit_i->min_mtime > mtime)
2346 sit_i->min_mtime = mtime;
2347 }
2348 sit_i->max_mtime = get_mtime(sbi);
2349 mutex_unlock(&sit_i->sentry_lock);
2350}
2351
2352int build_segment_manager(struct f2fs_sb_info *sbi)
2353{
2354 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2355 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002356 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002357 int err;
2358
2359 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2360 if (!sm_info)
2361 return -ENOMEM;
2362
2363 /* init sm info */
2364 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002365 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2366 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2367 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2368 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2369 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2370 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2371 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002372 sm_info->rec_prefree_segments = sm_info->main_segments *
2373 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim9b5f1362014-09-16 18:30:54 -07002374 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002375 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002376 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002377
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002378 INIT_LIST_HEAD(&sm_info->discard_list);
2379 sm_info->nr_discards = 0;
2380 sm_info->max_discards = 0;
2381
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002382 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2383
Chao Yu184a5cd2014-09-04 18:13:01 +08002384 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2385
Gu Zhengb270ad62014-04-11 17:49:55 +08002386 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002387 err = create_flush_cmd_control(sbi);
2388 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002389 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002390 }
2391
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002392 err = build_sit_info(sbi);
2393 if (err)
2394 return err;
2395 err = build_free_segmap(sbi);
2396 if (err)
2397 return err;
2398 err = build_curseg(sbi);
2399 if (err)
2400 return err;
2401
2402 /* reinit free segmap based on SIT */
2403 build_sit_entries(sbi);
2404
2405 init_free_segmap(sbi);
2406 err = build_dirty_segmap(sbi);
2407 if (err)
2408 return err;
2409
2410 init_min_max_mtime(sbi);
2411 return 0;
2412}
2413
2414static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2415 enum dirty_type dirty_type)
2416{
2417 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2418
2419 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002420 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002421 dirty_i->nr_dirty[dirty_type] = 0;
2422 mutex_unlock(&dirty_i->seglist_lock);
2423}
2424
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002425static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002426{
2427 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002428 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002429}
2430
2431static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2432{
2433 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2434 int i;
2435
2436 if (!dirty_i)
2437 return;
2438
2439 /* discard pre-free/dirty segments list */
2440 for (i = 0; i < NR_DIRTY_TYPE; i++)
2441 discard_dirty_segmap(sbi, i);
2442
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002443 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002444 SM_I(sbi)->dirty_info = NULL;
2445 kfree(dirty_i);
2446}
2447
2448static void destroy_curseg(struct f2fs_sb_info *sbi)
2449{
2450 struct curseg_info *array = SM_I(sbi)->curseg_array;
2451 int i;
2452
2453 if (!array)
2454 return;
2455 SM_I(sbi)->curseg_array = NULL;
Chao Yub7ad7512016-02-19 18:08:46 +08002456 for (i = 0; i < NR_CURSEG_TYPE; i++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002457 kfree(array[i].sum_blk);
Chao Yub7ad7512016-02-19 18:08:46 +08002458 kfree(array[i].journal);
2459 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002460 kfree(array);
2461}
2462
2463static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2464{
2465 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2466 if (!free_i)
2467 return;
2468 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002469 kvfree(free_i->free_segmap);
2470 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002471 kfree(free_i);
2472}
2473
2474static void destroy_sit_info(struct f2fs_sb_info *sbi)
2475{
2476 struct sit_info *sit_i = SIT_I(sbi);
2477 unsigned int start;
2478
2479 if (!sit_i)
2480 return;
2481
2482 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002483 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002484 kfree(sit_i->sentries[start].cur_valid_map);
2485 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002486 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002487 }
2488 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002489 kfree(sit_i->tmp_map);
2490
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002491 kvfree(sit_i->sentries);
2492 kvfree(sit_i->sec_entries);
2493 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002494
2495 SM_I(sbi)->sit_info = NULL;
2496 kfree(sit_i->sit_bitmap);
2497 kfree(sit_i);
2498}
2499
2500void destroy_segment_manager(struct f2fs_sb_info *sbi)
2501{
2502 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002503
Chao Yu3b03f722013-11-06 09:12:04 +08002504 if (!sm_info)
2505 return;
Gu Zheng2163d192014-04-27 14:21:33 +08002506 destroy_flush_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002507 destroy_dirty_segmap(sbi);
2508 destroy_curseg(sbi);
2509 destroy_free_segmap(sbi);
2510 destroy_sit_info(sbi);
2511 sbi->sm_info = NULL;
2512 kfree(sm_info);
2513}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002514
2515int __init create_segment_manager_caches(void)
2516{
2517 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002518 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002519 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002520 goto fail;
2521
2522 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002523 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002524 if (!sit_entry_set_slab)
2525 goto destory_discard_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002526
2527 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2528 sizeof(struct inmem_pages));
2529 if (!inmem_entry_slab)
2530 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002531 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002532
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002533destroy_sit_entry_set:
2534 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu184a5cd2014-09-04 18:13:01 +08002535destory_discard_entry:
2536 kmem_cache_destroy(discard_entry_slab);
2537fail:
2538 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002539}
2540
2541void destroy_segment_manager_caches(void)
2542{
Chao Yu184a5cd2014-09-04 18:13:01 +08002543 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002544 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002545 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002546}