blob: 5fa519f02860233a81cfbf5b536214bbf75dc186 [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
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700194int commit_inmem_pages(struct inode *inode, bool abort)
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700195{
196 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
197 struct f2fs_inode_info *fi = F2FS_I(inode);
198 struct inmem_pages *cur, *tmp;
199 bool submit_bio = false;
200 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -0700201 .sbi = sbi,
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700202 .type = DATA,
Jaegeuk Kim1e843712014-12-09 06:08:59 -0800203 .rw = WRITE_SYNC | REQ_PRIO,
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700204 .encrypted_page = NULL,
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700205 };
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700206 int err = 0;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700207
Jaegeuk Kim03418452014-11-21 16:37:40 -0800208 /*
209 * The abort is true only when f2fs_evict_inode is called.
210 * Basically, the f2fs_evict_inode doesn't produce any data writes, so
211 * that we don't need to call f2fs_balance_fs.
212 * Otherwise, f2fs_gc in f2fs_balance_fs can wait forever until this
213 * inode becomes free by iget_locked in f2fs_iget.
214 */
Jaegeuk Kim70c640b2014-12-10 13:59:33 -0800215 if (!abort) {
Jaegeuk Kim03418452014-11-21 16:37:40 -0800216 f2fs_balance_fs(sbi);
Jaegeuk Kim70c640b2014-12-10 13:59:33 -0800217 f2fs_lock_op(sbi);
218 }
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700219
220 mutex_lock(&fi->inmem_lock);
221 list_for_each_entry_safe(cur, tmp, &fi->inmem_pages, list) {
Chao Yudecd36b2015-08-07 18:42:09 +0800222 lock_page(cur->page);
Jaegeuk Kim70c640b2014-12-10 13:59:33 -0800223 if (!abort) {
Jaegeuk Kim70c640b2014-12-10 13:59:33 -0800224 if (cur->page->mapping == inode->i_mapping) {
Jaegeuk Kim6282adb2015-07-25 00:29:17 -0700225 set_page_dirty(cur->page);
Jaegeuk Kim70c640b2014-12-10 13:59:33 -0800226 f2fs_wait_on_page_writeback(cur->page, DATA);
227 if (clear_page_dirty_for_io(cur->page))
228 inode_dec_dirty_pages(inode);
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700229 trace_f2fs_commit_inmem_page(cur->page, INMEM);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -0700230 fio.page = cur->page;
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700231 err = do_write_data_page(&fio);
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700232 if (err) {
233 unlock_page(cur->page);
234 break;
235 }
Chao Yu7fee7402015-10-22 18:18:11 +0800236 clear_cold_data(cur->page);
Jaegeuk Kim2b246fb2015-10-21 19:00:31 -0700237 submit_bio = true;
Jaegeuk Kim70c640b2014-12-10 13:59:33 -0800238 }
Jaegeuk Kim70c640b2014-12-10 13:59:33 -0800239 } else {
Chao Yuf478f432015-11-13 18:27:35 +0800240 ClearPageUptodate(cur->page);
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700241 trace_f2fs_commit_inmem_page(cur->page, INMEM_DROP);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700242 }
Chao Yudecd36b2015-08-07 18:42:09 +0800243 set_page_private(cur->page, 0);
244 ClearPagePrivate(cur->page);
245 f2fs_put_page(cur->page, 1);
246
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700247 list_del(&cur->list);
248 kmem_cache_free(inmem_entry_slab, cur);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800249 dec_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700250 }
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700251 mutex_unlock(&fi->inmem_lock);
252
Jaegeuk Kim70c640b2014-12-10 13:59:33 -0800253 if (!abort) {
254 f2fs_unlock_op(sbi);
255 if (submit_bio)
256 f2fs_submit_merged_bio(sbi, DATA, WRITE);
257 }
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700258 return err;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700259}
260
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900261/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900262 * This function balances dirty node and dentry pages.
263 * In addition, it controls garbage collection.
264 */
265void f2fs_balance_fs(struct f2fs_sb_info *sbi)
266{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900267 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900268 * We should do GC or end up with checkpoint, if there are so many dirty
269 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900270 */
Jaegeuk Kim43727522013-02-04 15:11:17 +0900271 if (has_not_enough_free_secs(sbi, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900272 mutex_lock(&sbi->gc_mutex);
Chao Yud530d4d2015-10-05 22:22:44 +0800273 f2fs_gc(sbi, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900274 }
275}
276
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900277void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
278{
Chao Yu1dcc3362015-02-05 17:57:31 +0800279 /* try to shrink extent cache when there is no enough memory */
Jaegeuk Kim554df792015-06-19 13:41:23 -0700280 if (!available_free_memory(sbi, EXTENT_CACHE))
281 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800282
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700283 /* check the # of cached NAT entries */
284 if (!available_free_memory(sbi, NAT_ENTRIES))
285 try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
286
Chao Yu31696582015-07-28 18:33:46 +0800287 if (!available_free_memory(sbi, FREE_NIDS))
288 try_to_free_nids(sbi, NAT_ENTRY_PER_BLOCK * FREE_NID_PAGES);
289
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700290 /* checkpoint is the only way to shrink partial cached entries */
291 if (!available_free_memory(sbi, NAT_ENTRIES) ||
Jaegeuk Kime5e7ea32014-11-06 15:24:46 -0800292 excess_prefree_segs(sbi) ||
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700293 !available_free_memory(sbi, INO_ENTRIES) ||
294 jiffies > sbi->cp_expires)
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900295 f2fs_sync_fs(sbi->sb, true);
296}
297
Gu Zheng2163d192014-04-27 14:21:33 +0800298static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900299{
300 struct f2fs_sb_info *sbi = data;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800301 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
302 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900303repeat:
304 if (kthread_should_stop())
305 return 0;
306
Gu Zheng721bd4d2014-09-05 18:31:00 +0800307 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700308 struct bio *bio;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900309 struct flush_cmd *cmd, *next;
310 int ret;
311
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700312 bio = f2fs_bio_alloc(0);
313
Gu Zheng721bd4d2014-09-05 18:31:00 +0800314 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
315 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
316
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900317 bio->bi_bdev = sbi->sb->s_bdev;
318 ret = submit_bio_wait(WRITE_FLUSH, bio);
319
Gu Zheng721bd4d2014-09-05 18:31:00 +0800320 llist_for_each_entry_safe(cmd, next,
321 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900322 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900323 complete(&cmd->wait);
324 }
Gu Zhenga4ed23f2014-04-11 17:49:35 +0800325 bio_put(bio);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800326 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900327 }
328
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800329 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800330 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900331 goto repeat;
332}
333
334int f2fs_issue_flush(struct f2fs_sb_info *sbi)
335{
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800336 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800337 struct flush_cmd cmd;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900338
Jaegeuk Kim24a9ee02014-07-25 17:46:10 -0700339 trace_f2fs_issue_flush(sbi->sb, test_opt(sbi, NOBARRIER),
340 test_opt(sbi, FLUSH_MERGE));
341
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700342 if (test_opt(sbi, NOBARRIER))
343 return 0;
344
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700345 if (!test_opt(sbi, FLUSH_MERGE)) {
346 struct bio *bio = f2fs_bio_alloc(0);
347 int ret;
348
349 bio->bi_bdev = sbi->sb->s_bdev;
350 ret = submit_bio_wait(WRITE_FLUSH, bio);
351 bio_put(bio);
352 return ret;
353 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900354
Chao Yuadf8d902014-05-08 17:00:35 +0800355 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900356
Gu Zheng721bd4d2014-09-05 18:31:00 +0800357 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900358
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800359 if (!fcc->dispatch_list)
360 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900361
Chao Yuadf8d902014-05-08 17:00:35 +0800362 wait_for_completion(&cmd.wait);
363
364 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900365}
366
Gu Zheng2163d192014-04-27 14:21:33 +0800367int create_flush_cmd_control(struct f2fs_sb_info *sbi)
368{
369 dev_t dev = sbi->sb->s_bdev->bd_dev;
370 struct flush_cmd_control *fcc;
371 int err = 0;
372
373 fcc = kzalloc(sizeof(struct flush_cmd_control), GFP_KERNEL);
374 if (!fcc)
375 return -ENOMEM;
Gu Zheng2163d192014-04-27 14:21:33 +0800376 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800377 init_llist_head(&fcc->issue_list);
Chao Yu6b2920a2014-07-07 11:21:59 +0800378 SM_I(sbi)->cmd_control_info = fcc;
Gu Zheng2163d192014-04-27 14:21:33 +0800379 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
380 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
381 if (IS_ERR(fcc->f2fs_issue_flush)) {
382 err = PTR_ERR(fcc->f2fs_issue_flush);
383 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800384 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800385 return err;
386 }
Gu Zheng2163d192014-04-27 14:21:33 +0800387
388 return err;
389}
390
391void destroy_flush_cmd_control(struct f2fs_sb_info *sbi)
392{
Chao Yu6b2920a2014-07-07 11:21:59 +0800393 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800394
395 if (fcc && fcc->f2fs_issue_flush)
396 kthread_stop(fcc->f2fs_issue_flush);
397 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800398 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800399}
400
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900401static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
402 enum dirty_type dirty_type)
403{
404 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
405
406 /* need not be added */
407 if (IS_CURSEG(sbi, segno))
408 return;
409
410 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
411 dirty_i->nr_dirty[dirty_type]++;
412
413 if (dirty_type == DIRTY) {
414 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900415 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900416
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700417 if (unlikely(t >= DIRTY)) {
418 f2fs_bug_on(sbi, 1);
419 return;
420 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900421 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
422 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900423 }
424}
425
426static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
427 enum dirty_type dirty_type)
428{
429 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
430
431 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
432 dirty_i->nr_dirty[dirty_type]--;
433
434 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900435 struct seg_entry *sentry = get_seg_entry(sbi, segno);
436 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900437
Changman Lee4625d6a2013-10-25 17:31:57 +0900438 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
439 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900440
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900441 if (get_valid_blocks(sbi, segno, sbi->segs_per_sec) == 0)
442 clear_bit(GET_SECNO(sbi, segno),
443 dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900444 }
445}
446
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900447/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900448 * Should not occur error such as -ENOMEM.
449 * Adding dirty entry into seglist is not critical operation.
450 * If a given segment is one of current working segments, it won't be added.
451 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800452static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900453{
454 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
455 unsigned short valid_blocks;
456
457 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
458 return;
459
460 mutex_lock(&dirty_i->seglist_lock);
461
462 valid_blocks = get_valid_blocks(sbi, segno, 0);
463
464 if (valid_blocks == 0) {
465 __locate_dirty_segment(sbi, segno, PRE);
466 __remove_dirty_segment(sbi, segno, DIRTY);
467 } else if (valid_blocks < sbi->blocks_per_seg) {
468 __locate_dirty_segment(sbi, segno, DIRTY);
469 } else {
470 /* Recovery routine with SSR needs this */
471 __remove_dirty_segment(sbi, segno, DIRTY);
472 }
473
474 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900475}
476
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900477static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +0900478 block_t blkstart, block_t blklen)
479{
Chao Yu55cf9cb2014-09-15 18:01:10 +0800480 sector_t start = SECTOR_FROM_BLOCK(blkstart);
481 sector_t len = SECTOR_FROM_BLOCK(blklen);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700482 struct seg_entry *se;
483 unsigned int offset;
484 block_t i;
485
486 for (i = blkstart; i < blkstart + blklen; i++) {
487 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
488 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
489
490 if (!f2fs_test_and_set_bit(offset, se->discard_map))
491 sbi->discard_blks--;
492 }
Jaegeuk Kim1661d072013-11-12 17:01:00 +0900493 trace_f2fs_issue_discard(sbi->sb, blkstart, blklen);
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900494 return blkdev_issue_discard(sbi->sb->s_bdev, start, len, GFP_NOFS, 0);
495}
496
Chao Yue90c2d22015-07-28 18:36:47 +0800497bool discard_next_dnode(struct f2fs_sb_info *sbi, block_t blkaddr)
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900498{
Jaegeuk Kim40a02be2015-05-11 20:03:49 -0700499 int err = -ENOTSUPP;
500
501 if (test_opt(sbi, DISCARD)) {
502 struct seg_entry *se = get_seg_entry(sbi,
503 GET_SEGNO(sbi, blkaddr));
504 unsigned int offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
505
506 if (f2fs_test_bit(offset, se->discard_map))
Chao Yue90c2d22015-07-28 18:36:47 +0800507 return false;
Jaegeuk Kim40a02be2015-05-11 20:03:49 -0700508
509 err = f2fs_issue_discard(sbi, blkaddr, 1);
510 }
511
Chao Yue90c2d22015-07-28 18:36:47 +0800512 if (err) {
Chao Yu381722d2015-05-19 17:40:04 +0800513 update_meta_page(sbi, NULL, blkaddr);
Chao Yue90c2d22015-07-28 18:36:47 +0800514 return true;
515 }
516 return false;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900517}
518
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700519static void __add_discard_entry(struct f2fs_sb_info *sbi,
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700520 struct cp_control *cpc, struct seg_entry *se,
521 unsigned int start, unsigned int end)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900522{
523 struct list_head *head = &SM_I(sbi)->discard_list;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700524 struct discard_entry *new, *last;
525
526 if (!list_empty(head)) {
527 last = list_last_entry(head, struct discard_entry, list);
528 if (START_BLOCK(sbi, cpc->trim_start) + start ==
529 last->blkaddr + last->len) {
530 last->len += end - start;
531 goto done;
532 }
533 }
534
535 new = f2fs_kmem_cache_alloc(discard_entry_slab, GFP_NOFS);
536 INIT_LIST_HEAD(&new->list);
537 new->blkaddr = START_BLOCK(sbi, cpc->trim_start) + start;
538 new->len = end - start;
539 list_add_tail(&new->list, head);
540done:
541 SM_I(sbi)->nr_discards += end - start;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700542}
543
544static void add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc)
545{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900546 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
547 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700548 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900549 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
550 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700551 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800552 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900553 unsigned int start = 0, end = -1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700554 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900555 int i;
556
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700557 if (se->valid_blocks == max_blocks)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900558 return;
559
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700560 if (!force) {
561 if (!test_opt(sbi, DISCARD) || !se->valid_blocks ||
Dan Carpenter912a83b2015-05-14 11:52:28 +0300562 SM_I(sbi)->nr_discards >= SM_I(sbi)->max_discards)
563 return;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700564 }
565
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900566 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
567 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700568 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -0800569 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900570
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700571 while (force || SM_I(sbi)->nr_discards <= SM_I(sbi)->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900572 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
573 if (start >= max_blocks)
574 break;
575
576 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700577 __add_discard_entry(sbi, cpc, se, start, end);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900578 }
579}
580
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700581void release_discard_addrs(struct f2fs_sb_info *sbi)
582{
583 struct list_head *head = &(SM_I(sbi)->discard_list);
584 struct discard_entry *entry, *this;
585
586 /* drop caches */
587 list_for_each_entry_safe(entry, this, head, list) {
588 list_del(&entry->list);
589 kmem_cache_free(discard_entry_slab, entry);
590 }
591}
592
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900593/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900594 * Should call clear_prefree_segments after checkpoint is done.
595 */
596static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
597{
598 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +0800599 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900600
601 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700602 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900603 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900604 mutex_unlock(&dirty_i->seglist_lock);
605}
606
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700607void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900608{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900609 struct list_head *head = &(SM_I(sbi)->discard_list);
Chao Yu2d7b8222014-03-29 11:33:17 +0800610 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900611 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Changman Lee29e59c12013-11-11 09:24:37 +0900612 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +0900613 unsigned int start = 0, end = -1;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900614
615 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900616
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900617 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900618 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700619 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
620 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900621 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700622 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
623 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900624
Changman Lee29e59c12013-11-11 09:24:37 +0900625 for (i = start; i < end; i++)
626 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900627
Changman Lee29e59c12013-11-11 09:24:37 +0900628 dirty_i->nr_dirty[PRE] -= end - start;
629
630 if (!test_opt(sbi, DISCARD))
631 continue;
632
Jaegeuk Kim37208872013-11-12 16:55:17 +0900633 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
634 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900635 }
636 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900637
638 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800639 list_for_each_entry_safe(entry, this, head, list) {
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700640 if (cpc->reason == CP_DISCARD && entry->len < cpc->trim_minlen)
641 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900642 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700643 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700644skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900645 list_del(&entry->list);
646 SM_I(sbi)->nr_discards -= entry->len;
647 kmem_cache_free(discard_entry_slab, entry);
648 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900649}
650
Chao Yu184a5cd2014-09-04 18:13:01 +0800651static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900652{
653 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800654
655 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900656 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800657 return false;
658 }
659
660 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900661}
662
663static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
664 unsigned int segno, int modified)
665{
666 struct seg_entry *se = get_seg_entry(sbi, segno);
667 se->type = type;
668 if (modified)
669 __mark_sit_entry_dirty(sbi, segno);
670}
671
672static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
673{
674 struct seg_entry *se;
675 unsigned int segno, offset;
676 long int new_vblocks;
677
678 segno = GET_SEGNO(sbi, blkaddr);
679
680 se = get_seg_entry(sbi, segno);
681 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +0900682 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900683
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700684 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900685 (new_vblocks > sbi->blocks_per_seg)));
686
687 se->valid_blocks = new_vblocks;
688 se->mtime = get_mtime(sbi);
689 SIT_I(sbi)->max_mtime = se->mtime;
690
691 /* Update valid block bitmap */
692 if (del > 0) {
Gu Zheng52aca072014-10-20 17:45:51 +0800693 if (f2fs_test_and_set_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700694 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700695 if (!f2fs_test_and_set_bit(offset, se->discard_map))
696 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900697 } else {
Gu Zheng52aca072014-10-20 17:45:51 +0800698 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700699 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700700 if (f2fs_test_and_clear_bit(offset, se->discard_map))
701 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900702 }
703 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
704 se->ckpt_valid_blocks += del;
705
706 __mark_sit_entry_dirty(sbi, segno);
707
708 /* update total number of valid blocks to be written in ckpt area */
709 SIT_I(sbi)->written_valid_blocks += del;
710
711 if (sbi->segs_per_sec > 1)
712 get_sec_entry(sbi, segno)->valid_blocks += del;
713}
714
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900715void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900716{
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900717 update_sit_entry(sbi, new, 1);
718 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
719 update_sit_entry(sbi, old, -1);
720
721 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
722 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900723}
724
725void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
726{
727 unsigned int segno = GET_SEGNO(sbi, addr);
728 struct sit_info *sit_i = SIT_I(sbi);
729
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700730 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900731 if (addr == NEW_ADDR)
732 return;
733
734 /* add it into sit main buffer */
735 mutex_lock(&sit_i->sentry_lock);
736
737 update_sit_entry(sbi, addr, -1);
738
739 /* add it into dirty seglist */
740 locate_dirty_segment(sbi, segno);
741
742 mutex_unlock(&sit_i->sentry_lock);
743}
744
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -0700745bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
746{
747 struct sit_info *sit_i = SIT_I(sbi);
748 unsigned int segno, offset;
749 struct seg_entry *se;
750 bool is_cp = false;
751
752 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
753 return true;
754
755 mutex_lock(&sit_i->sentry_lock);
756
757 segno = GET_SEGNO(sbi, blkaddr);
758 se = get_seg_entry(sbi, segno);
759 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
760
761 if (f2fs_test_bit(offset, se->ckpt_valid_map))
762 is_cp = true;
763
764 mutex_unlock(&sit_i->sentry_lock);
765
766 return is_cp;
767}
768
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900769/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900770 * This function should be resided under the curseg_mutex lock
771 */
772static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +0800773 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900774{
775 struct curseg_info *curseg = CURSEG_I(sbi, type);
776 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +0800777 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900778 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900779}
780
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900781/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900782 * Calculate the number of current summary pages for writing
783 */
Chao Yu3fa06d72014-12-09 14:21:46 +0800784int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900785{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900786 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +0800787 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900788
789 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
790 if (sbi->ckpt->alloc_type[i] == SSR)
791 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +0800792 else {
793 if (for_ra)
794 valid_sum_count += le16_to_cpu(
795 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
796 else
797 valid_sum_count += curseg_blkoff(sbi, i);
798 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900799 }
800
Fan Li9a479382013-10-29 16:21:47 +0800801 sum_in_page = (PAGE_CACHE_SIZE - 2 * SUM_JOURNAL_SIZE -
802 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
803 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900804 return 1;
Fan Li9a479382013-10-29 16:21:47 +0800805 else if ((valid_sum_count - sum_in_page) <=
806 (PAGE_CACHE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900807 return 2;
808 return 3;
809}
810
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900811/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900812 * Caller should put this summary page
813 */
814struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
815{
816 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
817}
818
Chao Yu381722d2015-05-19 17:40:04 +0800819void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
820{
821 struct page *page = grab_meta_page(sbi, blk_addr);
822 void *dst = page_address(page);
823
824 if (src)
825 memcpy(dst, src, PAGE_CACHE_SIZE);
826 else
827 memset(dst, 0, PAGE_CACHE_SIZE);
828 set_page_dirty(page);
829 f2fs_put_page(page, 1);
830}
831
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900832static void write_sum_page(struct f2fs_sb_info *sbi,
833 struct f2fs_summary_block *sum_blk, block_t blk_addr)
834{
Chao Yu381722d2015-05-19 17:40:04 +0800835 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900836}
837
Jaegeuk Kim60374682013-03-31 13:58:51 +0900838static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
839{
840 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +0800841 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +0900842 struct free_segmap_info *free_i = FREE_I(sbi);
843
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700844 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +0800845 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +0900846 return 0;
847}
848
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900849/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900850 * Find a new segment from the free segments bitmap to right order
851 * This function should be returned with success, otherwise BUG
852 */
853static void get_new_segment(struct f2fs_sb_info *sbi,
854 unsigned int *newseg, bool new_sec, int dir)
855{
856 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900857 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700858 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900859 unsigned int hint = *newseg / sbi->segs_per_sec;
860 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
861 unsigned int left_start = hint;
862 bool init = true;
863 int go_left = 0;
864 int i;
865
Chao Yu1a118cc2015-02-11 18:20:38 +0800866 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900867
868 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
869 segno = find_next_zero_bit(free_i->free_segmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700870 MAIN_SEGS(sbi), *newseg + 1);
Jaegeuk Kim33afa7f2013-03-31 12:59:53 +0900871 if (segno - *newseg < sbi->segs_per_sec -
872 (*newseg % sbi->segs_per_sec))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900873 goto got_it;
874 }
875find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700876 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
877 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900878 if (dir == ALLOC_RIGHT) {
879 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700880 MAIN_SECS(sbi), 0);
881 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900882 } else {
883 go_left = 1;
884 left_start = hint - 1;
885 }
886 }
887 if (go_left == 0)
888 goto skip_left;
889
890 while (test_bit(left_start, free_i->free_secmap)) {
891 if (left_start > 0) {
892 left_start--;
893 continue;
894 }
895 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700896 MAIN_SECS(sbi), 0);
897 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900898 break;
899 }
900 secno = left_start;
901skip_left:
902 hint = secno;
903 segno = secno * sbi->segs_per_sec;
904 zoneno = secno / sbi->secs_per_zone;
905
906 /* give up on finding another zone */
907 if (!init)
908 goto got_it;
909 if (sbi->secs_per_zone == 1)
910 goto got_it;
911 if (zoneno == old_zoneno)
912 goto got_it;
913 if (dir == ALLOC_LEFT) {
914 if (!go_left && zoneno + 1 >= total_zones)
915 goto got_it;
916 if (go_left && zoneno == 0)
917 goto got_it;
918 }
919 for (i = 0; i < NR_CURSEG_TYPE; i++)
920 if (CURSEG_I(sbi, i)->zone == zoneno)
921 break;
922
923 if (i < NR_CURSEG_TYPE) {
924 /* zone is in user, try another */
925 if (go_left)
926 hint = zoneno * sbi->secs_per_zone - 1;
927 else if (zoneno + 1 >= total_zones)
928 hint = 0;
929 else
930 hint = (zoneno + 1) * sbi->secs_per_zone;
931 init = false;
932 goto find_other_zone;
933 }
934got_it:
935 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700936 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900937 __set_inuse(sbi, segno);
938 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +0800939 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900940}
941
942static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
943{
944 struct curseg_info *curseg = CURSEG_I(sbi, type);
945 struct summary_footer *sum_footer;
946
947 curseg->segno = curseg->next_segno;
948 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
949 curseg->next_blkoff = 0;
950 curseg->next_segno = NULL_SEGNO;
951
952 sum_footer = &(curseg->sum_blk->footer);
953 memset(sum_footer, 0, sizeof(struct summary_footer));
954 if (IS_DATASEG(type))
955 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
956 if (IS_NODESEG(type))
957 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
958 __set_sit_entry_type(sbi, type, curseg->segno, modified);
959}
960
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900961/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900962 * Allocate a current working segment.
963 * This function always allocates a free segment in LFS manner.
964 */
965static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
966{
967 struct curseg_info *curseg = CURSEG_I(sbi, type);
968 unsigned int segno = curseg->segno;
969 int dir = ALLOC_LEFT;
970
971 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +0800972 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900973 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
974 dir = ALLOC_RIGHT;
975
976 if (test_opt(sbi, NOHEAP))
977 dir = ALLOC_RIGHT;
978
979 get_new_segment(sbi, &segno, new_sec, dir);
980 curseg->next_segno = segno;
981 reset_curseg(sbi, type, 1);
982 curseg->alloc_type = LFS;
983}
984
985static void __next_free_blkoff(struct f2fs_sb_info *sbi,
986 struct curseg_info *seg, block_t start)
987{
988 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +0900989 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800990 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +0900991 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
992 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
993 int i, pos;
994
995 for (i = 0; i < entries; i++)
996 target_map[i] = ckpt_map[i] | cur_map[i];
997
998 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
999
1000 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001001}
1002
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001003/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001004 * If a segment is written by LFS manner, next block offset is just obtained
1005 * by increasing the current block offset. However, if a segment is written by
1006 * SSR manner, next block offset obtained by calling __next_free_blkoff
1007 */
1008static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1009 struct curseg_info *seg)
1010{
1011 if (seg->alloc_type == SSR)
1012 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1013 else
1014 seg->next_blkoff++;
1015}
1016
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001017/*
arter97e1c42042014-08-06 23:22:50 +09001018 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001019 * manner, so it should recover the existing segment information of valid blocks
1020 */
1021static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1022{
1023 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1024 struct curseg_info *curseg = CURSEG_I(sbi, type);
1025 unsigned int new_segno = curseg->next_segno;
1026 struct f2fs_summary_block *sum_node;
1027 struct page *sum_page;
1028
1029 write_sum_page(sbi, curseg->sum_blk,
1030 GET_SUM_BLOCK(sbi, curseg->segno));
1031 __set_test_and_inuse(sbi, new_segno);
1032
1033 mutex_lock(&dirty_i->seglist_lock);
1034 __remove_dirty_segment(sbi, new_segno, PRE);
1035 __remove_dirty_segment(sbi, new_segno, DIRTY);
1036 mutex_unlock(&dirty_i->seglist_lock);
1037
1038 reset_curseg(sbi, type, 1);
1039 curseg->alloc_type = SSR;
1040 __next_free_blkoff(sbi, curseg, 0);
1041
1042 if (reuse) {
1043 sum_page = get_sum_page(sbi, new_segno);
1044 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1045 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1046 f2fs_put_page(sum_page, 1);
1047 }
1048}
1049
Jaegeuk Kim43727522013-02-04 15:11:17 +09001050static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1051{
1052 struct curseg_info *curseg = CURSEG_I(sbi, type);
1053 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1054
1055 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0))
1056 return v_ops->get_victim(sbi,
1057 &(curseg)->next_segno, BG_GC, type, SSR);
1058
1059 /* For data segments, let's do SSR more intensively */
1060 for (; type >= CURSEG_HOT_DATA; type--)
1061 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1062 BG_GC, type, SSR))
1063 return 1;
1064 return 0;
1065}
1066
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001067/*
1068 * flush out current segment and replace it with new segment
1069 * This function should be returned with success, otherwise BUG
1070 */
1071static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1072 int type, bool force)
1073{
1074 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001075
Gu Zheng7b405272013-08-19 09:41:15 +08001076 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001077 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001078 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001079 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001080 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1081 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001082 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1083 change_curseg(sbi, type, true);
1084 else
1085 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001086
1087 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001088}
1089
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001090static void __allocate_new_segments(struct f2fs_sb_info *sbi, int type)
1091{
1092 struct curseg_info *curseg = CURSEG_I(sbi, type);
1093 unsigned int old_segno;
1094
1095 old_segno = curseg->segno;
1096 SIT_I(sbi)->s_ops->allocate_segment(sbi, type, true);
1097 locate_dirty_segment(sbi, old_segno);
1098}
1099
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001100void allocate_new_segments(struct f2fs_sb_info *sbi)
1101{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001102 int i;
1103
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001104 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++)
1105 __allocate_new_segments(sbi, i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001106}
1107
1108static const struct segment_allocation default_salloc_ops = {
1109 .allocate_segment = allocate_segment_by_default,
1110};
1111
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001112int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1113{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001114 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1115 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001116 unsigned int start_segno, end_segno;
1117 struct cp_control cpc;
1118
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001119 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001120 return -EINVAL;
1121
Jan Kara9bd27ae2014-10-21 14:07:33 +02001122 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001123 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001124 goto out;
1125
1126 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001127 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1128 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1129 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001130 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001131 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001132
1133 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001134 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1135 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001136
1137 if (sbi->discard_blks == 0)
1138 break;
1139 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1140 cpc.trim_end = end_segno;
1141 else
1142 cpc.trim_end = min_t(unsigned int,
1143 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001144 BATCHED_TRIM_SEGMENTS(sbi),
1145 sbi->segs_per_sec) - 1, end_segno);
1146
1147 mutex_lock(&sbi->gc_mutex);
1148 write_checkpoint(sbi, &cpc);
1149 mutex_unlock(&sbi->gc_mutex);
1150 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001151out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001152 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001153 return 0;
1154}
1155
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001156static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1157{
1158 struct curseg_info *curseg = CURSEG_I(sbi, type);
1159 if (curseg->next_blkoff < sbi->blocks_per_seg)
1160 return true;
1161 return false;
1162}
1163
1164static int __get_segment_type_2(struct page *page, enum page_type p_type)
1165{
1166 if (p_type == DATA)
1167 return CURSEG_HOT_DATA;
1168 else
1169 return CURSEG_HOT_NODE;
1170}
1171
1172static int __get_segment_type_4(struct page *page, enum page_type p_type)
1173{
1174 if (p_type == DATA) {
1175 struct inode *inode = page->mapping->host;
1176
1177 if (S_ISDIR(inode->i_mode))
1178 return CURSEG_HOT_DATA;
1179 else
1180 return CURSEG_COLD_DATA;
1181 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001182 if (IS_DNODE(page) && is_cold_node(page))
1183 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001184 else
1185 return CURSEG_COLD_NODE;
1186 }
1187}
1188
1189static int __get_segment_type_6(struct page *page, enum page_type p_type)
1190{
1191 if (p_type == DATA) {
1192 struct inode *inode = page->mapping->host;
1193
1194 if (S_ISDIR(inode->i_mode))
1195 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001196 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001197 return CURSEG_COLD_DATA;
1198 else
1199 return CURSEG_WARM_DATA;
1200 } else {
1201 if (IS_DNODE(page))
1202 return is_cold_node(page) ? CURSEG_WARM_NODE :
1203 CURSEG_HOT_NODE;
1204 else
1205 return CURSEG_COLD_NODE;
1206 }
1207}
1208
1209static int __get_segment_type(struct page *page, enum page_type p_type)
1210{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001211 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001212 case 2:
1213 return __get_segment_type_2(page, p_type);
1214 case 4:
1215 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001216 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001217 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001218 f2fs_bug_on(F2FS_P_SB(page),
1219 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001220 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001221}
1222
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001223void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1224 block_t old_blkaddr, block_t *new_blkaddr,
1225 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001226{
1227 struct sit_info *sit_i = SIT_I(sbi);
1228 struct curseg_info *curseg;
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001229 bool direct_io = (type == CURSEG_DIRECT_IO);
1230
1231 type = direct_io ? CURSEG_WARM_DATA : type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001232
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001233 curseg = CURSEG_I(sbi, type);
1234
1235 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001236 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001237
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001238 /* direct_io'ed data is aligned to the segment for better performance */
Jaegeuk Kim47e70ca2015-08-11 10:17:27 -07001239 if (direct_io && curseg->next_blkoff &&
1240 !has_not_enough_free_secs(sbi, 0))
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001241 __allocate_new_segments(sbi, type);
1242
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001243 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001244
1245 /*
1246 * __add_sum_entry should be resided under the curseg_mutex
1247 * because, this function updates a summary entry in the
1248 * current summary block.
1249 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001250 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001251
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001252 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001253
1254 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001255
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001256 if (!__has_curseg_space(sbi, type))
1257 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001258 /*
1259 * SIT information should be updated before segment allocation,
1260 * since SSR needs latest valid block information.
1261 */
1262 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001263
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001264 mutex_unlock(&sit_i->sentry_lock);
1265
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001266 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001267 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1268
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001269 mutex_unlock(&curseg->curseg_mutex);
1270}
1271
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001272static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001273{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001274 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001275
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001276 allocate_data_block(fio->sbi, fio->page, fio->blk_addr,
1277 &fio->blk_addr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001278
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001279 /* writeout dirty page into bdev */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001280 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001281}
1282
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001283void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001284{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001285 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001286 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001287 .type = META,
Jaegeuk Kimcf04e8e2014-12-17 19:33:13 -08001288 .rw = WRITE_SYNC | REQ_META | REQ_PRIO,
1289 .blk_addr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001290 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001291 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001292 };
1293
Chao Yu2b947002015-10-12 17:04:21 +08001294 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
1295 fio.rw &= ~REQ_META;
1296
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001297 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001298 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001299}
1300
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001301void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001302{
1303 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001304
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001305 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001306 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001307}
1308
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001309void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001310{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001311 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001312 struct f2fs_summary sum;
1313 struct node_info ni;
1314
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001315 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001316 get_node_info(sbi, dn->nid, &ni);
1317 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001318 do_write_page(&sum, fio);
Jaegeuk Kime1509cf2014-12-30 22:57:55 -08001319 dn->data_blkaddr = fio->blk_addr;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001320}
1321
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001322void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001323{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001324 stat_inc_inplace_blocks(fio->sbi);
1325 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001326}
1327
Chao Yu528e3452015-05-28 19:15:35 +08001328static void __f2fs_replace_block(struct f2fs_sb_info *sbi,
1329 struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001330 block_t old_blkaddr, block_t new_blkaddr,
1331 bool recover_curseg)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001332{
1333 struct sit_info *sit_i = SIT_I(sbi);
1334 struct curseg_info *curseg;
1335 unsigned int segno, old_cursegno;
1336 struct seg_entry *se;
1337 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001338 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001339
1340 segno = GET_SEGNO(sbi, new_blkaddr);
1341 se = get_seg_entry(sbi, segno);
1342 type = se->type;
1343
Chao Yu19f106b2015-05-06 13:08:06 +08001344 if (!recover_curseg) {
1345 /* for recovery flow */
1346 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1347 if (old_blkaddr == NULL_ADDR)
1348 type = CURSEG_COLD_DATA;
1349 else
1350 type = CURSEG_WARM_DATA;
1351 }
1352 } else {
1353 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001354 type = CURSEG_WARM_DATA;
1355 }
Chao Yu19f106b2015-05-06 13:08:06 +08001356
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001357 curseg = CURSEG_I(sbi, type);
1358
1359 mutex_lock(&curseg->curseg_mutex);
1360 mutex_lock(&sit_i->sentry_lock);
1361
1362 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001363 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001364
1365 /* change the current segment */
1366 if (segno != curseg->segno) {
1367 curseg->next_segno = segno;
1368 change_curseg(sbi, type, true);
1369 }
1370
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001371 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001372 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001373
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001374 if (!recover_curseg)
1375 update_sit_entry(sbi, new_blkaddr, 1);
1376 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1377 update_sit_entry(sbi, old_blkaddr, -1);
1378
1379 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1380 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1381
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001382 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001383
Chao Yu19f106b2015-05-06 13:08:06 +08001384 if (recover_curseg) {
1385 if (old_cursegno != curseg->segno) {
1386 curseg->next_segno = old_cursegno;
1387 change_curseg(sbi, type, true);
1388 }
1389 curseg->next_blkoff = old_blkoff;
1390 }
1391
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001392 mutex_unlock(&sit_i->sentry_lock);
1393 mutex_unlock(&curseg->curseg_mutex);
1394}
1395
Chao Yu528e3452015-05-28 19:15:35 +08001396void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1397 block_t old_addr, block_t new_addr,
1398 unsigned char version, bool recover_curseg)
1399{
1400 struct f2fs_summary sum;
1401
1402 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1403
1404 __f2fs_replace_block(sbi, &sum, old_addr, new_addr, recover_curseg);
1405
1406 dn->data_blkaddr = new_addr;
1407 set_data_blkaddr(dn);
1408 f2fs_update_extent_cache(dn);
1409}
1410
Chao Yudf0f8dc2014-03-22 14:57:23 +08001411static inline bool is_merged_page(struct f2fs_sb_info *sbi,
1412 struct page *page, enum page_type type)
1413{
1414 enum page_type btype = PAGE_TYPE_OF_BIO(type);
1415 struct f2fs_bio_info *io = &sbi->write_io[btype];
Chao Yudf0f8dc2014-03-22 14:57:23 +08001416 struct bio_vec *bvec;
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001417 struct page *target;
Chao Yudf0f8dc2014-03-22 14:57:23 +08001418 int i;
1419
1420 down_read(&io->io_rwsem);
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001421 if (!io->bio) {
1422 up_read(&io->io_rwsem);
1423 return false;
1424 }
Chao Yudf0f8dc2014-03-22 14:57:23 +08001425
Jaegeuk Kimce234472014-04-02 09:04:42 +09001426 bio_for_each_segment_all(bvec, io->bio, i) {
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001427
1428 if (bvec->bv_page->mapping) {
1429 target = bvec->bv_page;
1430 } else {
1431 struct f2fs_crypto_ctx *ctx;
1432
1433 /* encrypted page */
1434 ctx = (struct f2fs_crypto_ctx *)page_private(
1435 bvec->bv_page);
Jaegeuk Kimca40b032015-05-12 13:40:20 -07001436 target = ctx->w.control_page;
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001437 }
1438
1439 if (page == target) {
Chao Yudf0f8dc2014-03-22 14:57:23 +08001440 up_read(&io->io_rwsem);
1441 return true;
1442 }
1443 }
1444
Chao Yudf0f8dc2014-03-22 14:57:23 +08001445 up_read(&io->io_rwsem);
1446 return false;
1447}
1448
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001449void f2fs_wait_on_page_writeback(struct page *page,
Yuan Zhong5514f0a2014-01-10 07:26:14 +00001450 enum page_type type)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001451{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001452 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001453 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1454
Chao Yudf0f8dc2014-03-22 14:57:23 +08001455 if (is_merged_page(sbi, page, type))
1456 f2fs_submit_merged_bio(sbi, type, WRITE);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001457 wait_on_page_writeback(page);
1458 }
1459}
1460
Chao Yu08b39fb2015-10-08 13:27:34 +08001461void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1462 block_t blkaddr)
1463{
1464 struct page *cpage;
1465
1466 if (blkaddr == NEW_ADDR)
1467 return;
1468
1469 f2fs_bug_on(sbi, blkaddr == NULL_ADDR);
1470
1471 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1472 if (cpage) {
1473 f2fs_wait_on_page_writeback(cpage, DATA);
1474 f2fs_put_page(cpage, 1);
1475 }
1476}
1477
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001478static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1479{
1480 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1481 struct curseg_info *seg_i;
1482 unsigned char *kaddr;
1483 struct page *page;
1484 block_t start;
1485 int i, j, offset;
1486
1487 start = start_sum_block(sbi);
1488
1489 page = get_meta_page(sbi, start++);
1490 kaddr = (unsigned char *)page_address(page);
1491
1492 /* Step 1: restore nat cache */
1493 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
1494 memcpy(&seg_i->sum_blk->n_nats, kaddr, SUM_JOURNAL_SIZE);
1495
1496 /* Step 2: restore sit cache */
1497 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
1498 memcpy(&seg_i->sum_blk->n_sits, kaddr + SUM_JOURNAL_SIZE,
1499 SUM_JOURNAL_SIZE);
1500 offset = 2 * SUM_JOURNAL_SIZE;
1501
1502 /* Step 3: restore summary entries */
1503 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1504 unsigned short blk_off;
1505 unsigned int segno;
1506
1507 seg_i = CURSEG_I(sbi, i);
1508 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1509 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1510 seg_i->next_segno = segno;
1511 reset_curseg(sbi, i, 0);
1512 seg_i->alloc_type = ckpt->alloc_type[i];
1513 seg_i->next_blkoff = blk_off;
1514
1515 if (seg_i->alloc_type == SSR)
1516 blk_off = sbi->blocks_per_seg;
1517
1518 for (j = 0; j < blk_off; j++) {
1519 struct f2fs_summary *s;
1520 s = (struct f2fs_summary *)(kaddr + offset);
1521 seg_i->sum_blk->entries[j] = *s;
1522 offset += SUMMARY_SIZE;
1523 if (offset + SUMMARY_SIZE <= PAGE_CACHE_SIZE -
1524 SUM_FOOTER_SIZE)
1525 continue;
1526
1527 f2fs_put_page(page, 1);
1528 page = NULL;
1529
1530 page = get_meta_page(sbi, start++);
1531 kaddr = (unsigned char *)page_address(page);
1532 offset = 0;
1533 }
1534 }
1535 f2fs_put_page(page, 1);
1536 return 0;
1537}
1538
1539static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1540{
1541 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1542 struct f2fs_summary_block *sum;
1543 struct curseg_info *curseg;
1544 struct page *new;
1545 unsigned short blk_off;
1546 unsigned int segno = 0;
1547 block_t blk_addr = 0;
1548
1549 /* get segment number and block addr */
1550 if (IS_DATASEG(type)) {
1551 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1552 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1553 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001554 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001555 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1556 else
1557 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1558 } else {
1559 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1560 CURSEG_HOT_NODE]);
1561 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1562 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001563 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001564 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1565 type - CURSEG_HOT_NODE);
1566 else
1567 blk_addr = GET_SUM_BLOCK(sbi, segno);
1568 }
1569
1570 new = get_meta_page(sbi, blk_addr);
1571 sum = (struct f2fs_summary_block *)page_address(new);
1572
1573 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001574 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001575 struct f2fs_summary *ns = &sum->entries[0];
1576 int i;
1577 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1578 ns->version = 0;
1579 ns->ofs_in_node = 0;
1580 }
1581 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001582 int err;
1583
1584 err = restore_node_summary(sbi, segno, sum);
1585 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001586 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001587 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001588 }
1589 }
1590 }
1591
1592 /* set uncompleted segment to curseg */
1593 curseg = CURSEG_I(sbi, type);
1594 mutex_lock(&curseg->curseg_mutex);
1595 memcpy(curseg->sum_blk, sum, PAGE_CACHE_SIZE);
1596 curseg->next_segno = segno;
1597 reset_curseg(sbi, type, 0);
1598 curseg->alloc_type = ckpt->alloc_type[type];
1599 curseg->next_blkoff = blk_off;
1600 mutex_unlock(&curseg->curseg_mutex);
1601 f2fs_put_page(new, 1);
1602 return 0;
1603}
1604
1605static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1606{
1607 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001608 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001609
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001610 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001611 int npages = npages_for_summary_flush(sbi, true);
1612
1613 if (npages >= 2)
1614 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001615 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001616
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001617 /* restore for compacted data summary */
1618 if (read_compacted_summaries(sbi))
1619 return -EINVAL;
1620 type = CURSEG_HOT_NODE;
1621 }
1622
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001623 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001624 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001625 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001626
Chao Yue4fc5fb2014-03-17 16:36:24 +08001627 for (; type <= CURSEG_COLD_NODE; type++) {
1628 err = read_normal_summaries(sbi, type);
1629 if (err)
1630 return err;
1631 }
1632
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001633 return 0;
1634}
1635
1636static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1637{
1638 struct page *page;
1639 unsigned char *kaddr;
1640 struct f2fs_summary *summary;
1641 struct curseg_info *seg_i;
1642 int written_size = 0;
1643 int i, j;
1644
1645 page = grab_meta_page(sbi, blkaddr++);
1646 kaddr = (unsigned char *)page_address(page);
1647
1648 /* Step 1: write nat cache */
1649 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
1650 memcpy(kaddr, &seg_i->sum_blk->n_nats, SUM_JOURNAL_SIZE);
1651 written_size += SUM_JOURNAL_SIZE;
1652
1653 /* Step 2: write sit cache */
1654 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
1655 memcpy(kaddr + written_size, &seg_i->sum_blk->n_sits,
1656 SUM_JOURNAL_SIZE);
1657 written_size += SUM_JOURNAL_SIZE;
1658
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001659 /* Step 3: write summary entries */
1660 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1661 unsigned short blkoff;
1662 seg_i = CURSEG_I(sbi, i);
1663 if (sbi->ckpt->alloc_type[i] == SSR)
1664 blkoff = sbi->blocks_per_seg;
1665 else
1666 blkoff = curseg_blkoff(sbi, i);
1667
1668 for (j = 0; j < blkoff; j++) {
1669 if (!page) {
1670 page = grab_meta_page(sbi, blkaddr++);
1671 kaddr = (unsigned char *)page_address(page);
1672 written_size = 0;
1673 }
1674 summary = (struct f2fs_summary *)(kaddr + written_size);
1675 *summary = seg_i->sum_blk->entries[j];
1676 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001677
1678 if (written_size + SUMMARY_SIZE <= PAGE_CACHE_SIZE -
1679 SUM_FOOTER_SIZE)
1680 continue;
1681
Chao Yue8d61a72013-10-24 15:08:28 +08001682 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001683 f2fs_put_page(page, 1);
1684 page = NULL;
1685 }
1686 }
Chao Yue8d61a72013-10-24 15:08:28 +08001687 if (page) {
1688 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001689 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08001690 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001691}
1692
1693static void write_normal_summaries(struct f2fs_sb_info *sbi,
1694 block_t blkaddr, int type)
1695{
1696 int i, end;
1697 if (IS_DATASEG(type))
1698 end = type + NR_CURSEG_DATA_TYPE;
1699 else
1700 end = type + NR_CURSEG_NODE_TYPE;
1701
1702 for (i = type; i < end; i++) {
1703 struct curseg_info *sum = CURSEG_I(sbi, i);
1704 mutex_lock(&sum->curseg_mutex);
1705 write_sum_page(sbi, sum->sum_blk, blkaddr + (i - type));
1706 mutex_unlock(&sum->curseg_mutex);
1707 }
1708}
1709
1710void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1711{
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001712 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001713 write_compacted_summaries(sbi, start_blk);
1714 else
1715 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1716}
1717
1718void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1719{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001720 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001721}
1722
1723int lookup_journal_in_cursum(struct f2fs_summary_block *sum, int type,
1724 unsigned int val, int alloc)
1725{
1726 int i;
1727
1728 if (type == NAT_JOURNAL) {
1729 for (i = 0; i < nats_in_cursum(sum); i++) {
1730 if (le32_to_cpu(nid_in_journal(sum, i)) == val)
1731 return i;
1732 }
Chao Yu855639d2015-12-01 11:42:54 +08001733 if (alloc && __has_cursum_space(sum, 1, NAT_JOURNAL))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001734 return update_nats_in_cursum(sum, 1);
1735 } else if (type == SIT_JOURNAL) {
1736 for (i = 0; i < sits_in_cursum(sum); i++)
1737 if (le32_to_cpu(segno_in_journal(sum, i)) == val)
1738 return i;
Chao Yu855639d2015-12-01 11:42:54 +08001739 if (alloc && __has_cursum_space(sum, 1, SIT_JOURNAL))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001740 return update_sits_in_cursum(sum, 1);
1741 }
1742 return -1;
1743}
1744
1745static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
1746 unsigned int segno)
1747{
Gu Zheng2cc22182014-10-20 17:45:49 +08001748 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001749}
1750
1751static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
1752 unsigned int start)
1753{
1754 struct sit_info *sit_i = SIT_I(sbi);
1755 struct page *src_page, *dst_page;
1756 pgoff_t src_off, dst_off;
1757 void *src_addr, *dst_addr;
1758
1759 src_off = current_sit_addr(sbi, start);
1760 dst_off = next_sit_addr(sbi, src_off);
1761
1762 /* get current sit block page without lock */
1763 src_page = get_meta_page(sbi, src_off);
1764 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001765 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001766
1767 src_addr = page_address(src_page);
1768 dst_addr = page_address(dst_page);
1769 memcpy(dst_addr, src_addr, PAGE_CACHE_SIZE);
1770
1771 set_page_dirty(dst_page);
1772 f2fs_put_page(src_page, 1);
1773
1774 set_to_next_sit(sit_i, start);
1775
1776 return dst_page;
1777}
1778
Chao Yu184a5cd2014-09-04 18:13:01 +08001779static struct sit_entry_set *grab_sit_entry_set(void)
1780{
1781 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001782 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08001783
1784 ses->entry_cnt = 0;
1785 INIT_LIST_HEAD(&ses->set_list);
1786 return ses;
1787}
1788
1789static void release_sit_entry_set(struct sit_entry_set *ses)
1790{
1791 list_del(&ses->set_list);
1792 kmem_cache_free(sit_entry_set_slab, ses);
1793}
1794
1795static void adjust_sit_entry_set(struct sit_entry_set *ses,
1796 struct list_head *head)
1797{
1798 struct sit_entry_set *next = ses;
1799
1800 if (list_is_last(&ses->set_list, head))
1801 return;
1802
1803 list_for_each_entry_continue(next, head, set_list)
1804 if (ses->entry_cnt <= next->entry_cnt)
1805 break;
1806
1807 list_move_tail(&ses->set_list, &next->set_list);
1808}
1809
1810static void add_sit_entry(unsigned int segno, struct list_head *head)
1811{
1812 struct sit_entry_set *ses;
1813 unsigned int start_segno = START_SEGNO(segno);
1814
1815 list_for_each_entry(ses, head, set_list) {
1816 if (ses->start_segno == start_segno) {
1817 ses->entry_cnt++;
1818 adjust_sit_entry_set(ses, head);
1819 return;
1820 }
1821 }
1822
1823 ses = grab_sit_entry_set();
1824
1825 ses->start_segno = start_segno;
1826 ses->entry_cnt++;
1827 list_add(&ses->set_list, head);
1828}
1829
1830static void add_sits_in_set(struct f2fs_sb_info *sbi)
1831{
1832 struct f2fs_sm_info *sm_info = SM_I(sbi);
1833 struct list_head *set_list = &sm_info->sit_entry_set;
1834 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08001835 unsigned int segno;
1836
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001837 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08001838 add_sit_entry(segno, set_list);
1839}
1840
1841static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001842{
1843 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
1844 struct f2fs_summary_block *sum = curseg->sum_blk;
1845 int i;
1846
Chao Yu184a5cd2014-09-04 18:13:01 +08001847 for (i = sits_in_cursum(sum) - 1; i >= 0; i--) {
1848 unsigned int segno;
1849 bool dirtied;
1850
1851 segno = le32_to_cpu(segno_in_journal(sum, i));
1852 dirtied = __mark_sit_entry_dirty(sbi, segno);
1853
1854 if (!dirtied)
1855 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001856 }
Chao Yu184a5cd2014-09-04 18:13:01 +08001857 update_sits_in_cursum(sum, -sits_in_cursum(sum));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001858}
1859
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001860/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001861 * CP calls this function, which flushes SIT entries including sit_journal,
1862 * and moves prefree segs to free segs.
1863 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001864void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001865{
1866 struct sit_info *sit_i = SIT_I(sbi);
1867 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
1868 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
1869 struct f2fs_summary_block *sum = curseg->sum_blk;
Chao Yu184a5cd2014-09-04 18:13:01 +08001870 struct sit_entry_set *ses, *tmp;
1871 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08001872 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001873 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001874
1875 mutex_lock(&curseg->curseg_mutex);
1876 mutex_lock(&sit_i->sentry_lock);
1877
Wanpeng Li2b11a742015-02-27 16:52:50 +08001878 if (!sit_i->dirty_sentries)
1879 goto out;
1880
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001881 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08001882 * add and account sit entries of dirty bitmap in sit entry
1883 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001884 */
Chao Yu184a5cd2014-09-04 18:13:01 +08001885 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001886
Chao Yu184a5cd2014-09-04 18:13:01 +08001887 /*
1888 * if there are no enough space in journal to store dirty sit
1889 * entries, remove all entries from journal and add and account
1890 * them in sit entry set.
1891 */
1892 if (!__has_cursum_space(sum, sit_i->dirty_sentries, SIT_JOURNAL))
1893 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001894
Chao Yu184a5cd2014-09-04 18:13:01 +08001895 /*
1896 * there are two steps to flush sit entries:
1897 * #1, flush sit entries to journal in current cold data summary block.
1898 * #2, flush sit entries to sit page.
1899 */
1900 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07001901 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08001902 struct f2fs_sit_block *raw_sit = NULL;
1903 unsigned int start_segno = ses->start_segno;
1904 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001905 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08001906 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001907
Chao Yu184a5cd2014-09-04 18:13:01 +08001908 if (to_journal &&
1909 !__has_cursum_space(sum, ses->entry_cnt, SIT_JOURNAL))
1910 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001911
Chao Yu184a5cd2014-09-04 18:13:01 +08001912 if (!to_journal) {
1913 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001914 raw_sit = page_address(page);
1915 }
1916
Chao Yu184a5cd2014-09-04 18:13:01 +08001917 /* flush dirty sit entries in region of current sit set */
1918 for_each_set_bit_from(segno, bitmap, end) {
1919 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001920
1921 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08001922
1923 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08001924 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001925 cpc->trim_start = segno;
1926 add_discard_addrs(sbi, cpc);
1927 }
Chao Yu184a5cd2014-09-04 18:13:01 +08001928
1929 if (to_journal) {
1930 offset = lookup_journal_in_cursum(sum,
1931 SIT_JOURNAL, segno, 1);
1932 f2fs_bug_on(sbi, offset < 0);
1933 segno_in_journal(sum, offset) =
1934 cpu_to_le32(segno);
1935 seg_info_to_raw_sit(se,
1936 &sit_in_journal(sum, offset));
1937 } else {
1938 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
1939 seg_info_to_raw_sit(se,
1940 &raw_sit->entries[sit_offset]);
1941 }
1942
1943 __clear_bit(segno, bitmap);
1944 sit_i->dirty_sentries--;
1945 ses->entry_cnt--;
1946 }
1947
1948 if (!to_journal)
1949 f2fs_put_page(page, 1);
1950
1951 f2fs_bug_on(sbi, ses->entry_cnt);
1952 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001953 }
Chao Yu184a5cd2014-09-04 18:13:01 +08001954
1955 f2fs_bug_on(sbi, !list_empty(head));
1956 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08001957out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001958 if (cpc->reason == CP_DISCARD) {
1959 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
1960 add_discard_addrs(sbi, cpc);
1961 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001962 mutex_unlock(&sit_i->sentry_lock);
1963 mutex_unlock(&curseg->curseg_mutex);
1964
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001965 set_prefree_as_free_segments(sbi);
1966}
1967
1968static int build_sit_info(struct f2fs_sb_info *sbi)
1969{
1970 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
1971 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1972 struct sit_info *sit_i;
1973 unsigned int sit_segs, start;
1974 char *src_bitmap, *dst_bitmap;
1975 unsigned int bitmap_size;
1976
1977 /* allocate memory for SIT information */
1978 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
1979 if (!sit_i)
1980 return -ENOMEM;
1981
1982 SM_I(sbi)->sit_info = sit_i;
1983
Jaegeuk Kim39307a82015-09-22 13:50:47 -07001984 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
1985 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001986 if (!sit_i->sentries)
1987 return -ENOMEM;
1988
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001989 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07001990 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001991 if (!sit_i->dirty_sentries_bitmap)
1992 return -ENOMEM;
1993
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001994 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001995 sit_i->sentries[start].cur_valid_map
1996 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
1997 sit_i->sentries[start].ckpt_valid_map
1998 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001999 sit_i->sentries[start].discard_map
2000 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2001 if (!sit_i->sentries[start].cur_valid_map ||
2002 !sit_i->sentries[start].ckpt_valid_map ||
2003 !sit_i->sentries[start].discard_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002004 return -ENOMEM;
2005 }
2006
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002007 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2008 if (!sit_i->tmp_map)
2009 return -ENOMEM;
2010
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002011 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002012 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
2013 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002014 if (!sit_i->sec_entries)
2015 return -ENOMEM;
2016 }
2017
2018 /* get information related with SIT */
2019 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
2020
2021 /* setup SIT bitmap from ckeckpoint pack */
2022 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
2023 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
2024
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02002025 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002026 if (!dst_bitmap)
2027 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002028
2029 /* init SIT information */
2030 sit_i->s_ops = &default_salloc_ops;
2031
2032 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2033 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
2034 sit_i->written_valid_blocks = le64_to_cpu(ckpt->valid_block_count);
2035 sit_i->sit_bitmap = dst_bitmap;
2036 sit_i->bitmap_size = bitmap_size;
2037 sit_i->dirty_sentries = 0;
2038 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2039 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2040 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2041 mutex_init(&sit_i->sentry_lock);
2042 return 0;
2043}
2044
2045static int build_free_segmap(struct f2fs_sb_info *sbi)
2046{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002047 struct free_segmap_info *free_i;
2048 unsigned int bitmap_size, sec_bitmap_size;
2049
2050 /* allocate memory for free segmap information */
2051 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2052 if (!free_i)
2053 return -ENOMEM;
2054
2055 SM_I(sbi)->free_info = free_i;
2056
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002057 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002058 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002059 if (!free_i->free_segmap)
2060 return -ENOMEM;
2061
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002062 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002063 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002064 if (!free_i->free_secmap)
2065 return -ENOMEM;
2066
2067 /* set all segments as dirty temporarily */
2068 memset(free_i->free_segmap, 0xff, bitmap_size);
2069 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2070
2071 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002072 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002073 free_i->free_segments = 0;
2074 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002075 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002076 return 0;
2077}
2078
2079static int build_curseg(struct f2fs_sb_info *sbi)
2080{
Namjae Jeon1042d602012-12-01 10:56:13 +09002081 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002082 int i;
2083
Fabian Frederickb434bab2014-06-23 18:39:15 +02002084 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002085 if (!array)
2086 return -ENOMEM;
2087
2088 SM_I(sbi)->curseg_array = array;
2089
2090 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2091 mutex_init(&array[i].curseg_mutex);
2092 array[i].sum_blk = kzalloc(PAGE_CACHE_SIZE, GFP_KERNEL);
2093 if (!array[i].sum_blk)
2094 return -ENOMEM;
2095 array[i].segno = NULL_SEGNO;
2096 array[i].next_blkoff = 0;
2097 }
2098 return restore_curseg_summaries(sbi);
2099}
2100
2101static void build_sit_entries(struct f2fs_sb_info *sbi)
2102{
2103 struct sit_info *sit_i = SIT_I(sbi);
2104 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
2105 struct f2fs_summary_block *sum = curseg->sum_blk;
Chao Yu74de5932013-11-22 09:09:59 +08002106 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2107 unsigned int i, start, end;
2108 unsigned int readed, start_blk = 0;
Jaegeuk Kim90a893c2014-09-22 16:21:07 -07002109 int nrpages = MAX_BIO_BLOCKS(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002110
Chao Yu74de5932013-11-22 09:09:59 +08002111 do {
Chao Yu26879fb2015-10-12 17:05:59 +08002112 readed = ra_meta_pages(sbi, start_blk, nrpages, META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002113
Chao Yu74de5932013-11-22 09:09:59 +08002114 start = start_blk * sit_i->sents_per_block;
2115 end = (start_blk + readed) * sit_i->sents_per_block;
2116
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002117 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002118 struct seg_entry *se = &sit_i->sentries[start];
2119 struct f2fs_sit_block *sit_blk;
2120 struct f2fs_sit_entry sit;
2121 struct page *page;
2122
2123 mutex_lock(&curseg->curseg_mutex);
2124 for (i = 0; i < sits_in_cursum(sum); i++) {
Chris Fries6c311ec2014-01-17 14:44:39 -06002125 if (le32_to_cpu(segno_in_journal(sum, i))
2126 == start) {
Chao Yu74de5932013-11-22 09:09:59 +08002127 sit = sit_in_journal(sum, i);
2128 mutex_unlock(&curseg->curseg_mutex);
2129 goto got_it;
2130 }
2131 }
2132 mutex_unlock(&curseg->curseg_mutex);
2133
2134 page = get_current_sit_page(sbi, start);
2135 sit_blk = (struct f2fs_sit_block *)page_address(page);
2136 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2137 f2fs_put_page(page, 1);
2138got_it:
2139 check_block_count(sbi, start, &sit);
2140 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002141
2142 /* build discard map only one time */
2143 memcpy(se->discard_map, se->cur_valid_map, SIT_VBLOCK_MAP_SIZE);
2144 sbi->discard_blks += sbi->blocks_per_seg - se->valid_blocks;
2145
Chao Yu74de5932013-11-22 09:09:59 +08002146 if (sbi->segs_per_sec > 1) {
2147 struct sec_entry *e = get_sec_entry(sbi, start);
2148 e->valid_blocks += se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002149 }
2150 }
Chao Yu74de5932013-11-22 09:09:59 +08002151 start_blk += readed;
2152 } while (start_blk < sit_blk_cnt);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002153}
2154
2155static void init_free_segmap(struct f2fs_sb_info *sbi)
2156{
2157 unsigned int start;
2158 int type;
2159
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002160 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002161 struct seg_entry *sentry = get_seg_entry(sbi, start);
2162 if (!sentry->valid_blocks)
2163 __set_free(sbi, start);
2164 }
2165
2166 /* set use the current segments */
2167 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2168 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2169 __set_test_and_inuse(sbi, curseg_t->segno);
2170 }
2171}
2172
2173static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2174{
2175 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2176 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002177 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002178 unsigned short valid_blocks;
2179
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002180 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002181 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002182 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2183 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002184 break;
2185 offset = segno + 1;
2186 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002187 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002188 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002189 if (valid_blocks > sbi->blocks_per_seg) {
2190 f2fs_bug_on(sbi, 1);
2191 continue;
2192 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002193 mutex_lock(&dirty_i->seglist_lock);
2194 __locate_dirty_segment(sbi, segno, DIRTY);
2195 mutex_unlock(&dirty_i->seglist_lock);
2196 }
2197}
2198
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002199static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002200{
2201 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002202 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002203
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002204 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002205 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002206 return -ENOMEM;
2207 return 0;
2208}
2209
2210static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2211{
2212 struct dirty_seglist_info *dirty_i;
2213 unsigned int bitmap_size, i;
2214
2215 /* allocate memory for dirty segments list information */
2216 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2217 if (!dirty_i)
2218 return -ENOMEM;
2219
2220 SM_I(sbi)->dirty_info = dirty_i;
2221 mutex_init(&dirty_i->seglist_lock);
2222
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002223 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002224
2225 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002226 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002227 if (!dirty_i->dirty_segmap[i])
2228 return -ENOMEM;
2229 }
2230
2231 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002232 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002233}
2234
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002235/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002236 * Update min, max modified time for cost-benefit GC algorithm
2237 */
2238static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2239{
2240 struct sit_info *sit_i = SIT_I(sbi);
2241 unsigned int segno;
2242
2243 mutex_lock(&sit_i->sentry_lock);
2244
2245 sit_i->min_mtime = LLONG_MAX;
2246
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002247 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002248 unsigned int i;
2249 unsigned long long mtime = 0;
2250
2251 for (i = 0; i < sbi->segs_per_sec; i++)
2252 mtime += get_seg_entry(sbi, segno + i)->mtime;
2253
2254 mtime = div_u64(mtime, sbi->segs_per_sec);
2255
2256 if (sit_i->min_mtime > mtime)
2257 sit_i->min_mtime = mtime;
2258 }
2259 sit_i->max_mtime = get_mtime(sbi);
2260 mutex_unlock(&sit_i->sentry_lock);
2261}
2262
2263int build_segment_manager(struct f2fs_sb_info *sbi)
2264{
2265 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2266 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002267 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002268 int err;
2269
2270 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2271 if (!sm_info)
2272 return -ENOMEM;
2273
2274 /* init sm info */
2275 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002276 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2277 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2278 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2279 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2280 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2281 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2282 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002283 sm_info->rec_prefree_segments = sm_info->main_segments *
2284 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim9b5f1362014-09-16 18:30:54 -07002285 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002286 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002287 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002288
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002289 INIT_LIST_HEAD(&sm_info->discard_list);
2290 sm_info->nr_discards = 0;
2291 sm_info->max_discards = 0;
2292
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002293 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2294
Chao Yu184a5cd2014-09-04 18:13:01 +08002295 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2296
Gu Zhengb270ad62014-04-11 17:49:55 +08002297 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002298 err = create_flush_cmd_control(sbi);
2299 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002300 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002301 }
2302
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002303 err = build_sit_info(sbi);
2304 if (err)
2305 return err;
2306 err = build_free_segmap(sbi);
2307 if (err)
2308 return err;
2309 err = build_curseg(sbi);
2310 if (err)
2311 return err;
2312
2313 /* reinit free segmap based on SIT */
2314 build_sit_entries(sbi);
2315
2316 init_free_segmap(sbi);
2317 err = build_dirty_segmap(sbi);
2318 if (err)
2319 return err;
2320
2321 init_min_max_mtime(sbi);
2322 return 0;
2323}
2324
2325static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2326 enum dirty_type dirty_type)
2327{
2328 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2329
2330 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002331 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002332 dirty_i->nr_dirty[dirty_type] = 0;
2333 mutex_unlock(&dirty_i->seglist_lock);
2334}
2335
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002336static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002337{
2338 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002339 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002340}
2341
2342static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2343{
2344 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2345 int i;
2346
2347 if (!dirty_i)
2348 return;
2349
2350 /* discard pre-free/dirty segments list */
2351 for (i = 0; i < NR_DIRTY_TYPE; i++)
2352 discard_dirty_segmap(sbi, i);
2353
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002354 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002355 SM_I(sbi)->dirty_info = NULL;
2356 kfree(dirty_i);
2357}
2358
2359static void destroy_curseg(struct f2fs_sb_info *sbi)
2360{
2361 struct curseg_info *array = SM_I(sbi)->curseg_array;
2362 int i;
2363
2364 if (!array)
2365 return;
2366 SM_I(sbi)->curseg_array = NULL;
2367 for (i = 0; i < NR_CURSEG_TYPE; i++)
2368 kfree(array[i].sum_blk);
2369 kfree(array);
2370}
2371
2372static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2373{
2374 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2375 if (!free_i)
2376 return;
2377 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002378 kvfree(free_i->free_segmap);
2379 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002380 kfree(free_i);
2381}
2382
2383static void destroy_sit_info(struct f2fs_sb_info *sbi)
2384{
2385 struct sit_info *sit_i = SIT_I(sbi);
2386 unsigned int start;
2387
2388 if (!sit_i)
2389 return;
2390
2391 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002392 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002393 kfree(sit_i->sentries[start].cur_valid_map);
2394 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002395 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002396 }
2397 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002398 kfree(sit_i->tmp_map);
2399
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002400 kvfree(sit_i->sentries);
2401 kvfree(sit_i->sec_entries);
2402 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002403
2404 SM_I(sbi)->sit_info = NULL;
2405 kfree(sit_i->sit_bitmap);
2406 kfree(sit_i);
2407}
2408
2409void destroy_segment_manager(struct f2fs_sb_info *sbi)
2410{
2411 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002412
Chao Yu3b03f722013-11-06 09:12:04 +08002413 if (!sm_info)
2414 return;
Gu Zheng2163d192014-04-27 14:21:33 +08002415 destroy_flush_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002416 destroy_dirty_segmap(sbi);
2417 destroy_curseg(sbi);
2418 destroy_free_segmap(sbi);
2419 destroy_sit_info(sbi);
2420 sbi->sm_info = NULL;
2421 kfree(sm_info);
2422}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002423
2424int __init create_segment_manager_caches(void)
2425{
2426 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002427 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002428 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002429 goto fail;
2430
2431 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002432 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002433 if (!sit_entry_set_slab)
2434 goto destory_discard_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002435
2436 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2437 sizeof(struct inmem_pages));
2438 if (!inmem_entry_slab)
2439 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002440 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002441
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002442destroy_sit_entry_set:
2443 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu184a5cd2014-09-04 18:13:01 +08002444destory_discard_entry:
2445 kmem_cache_destroy(discard_entry_slab);
2446fail:
2447 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002448}
2449
2450void destroy_segment_manager_caches(void)
2451{
Chao Yu184a5cd2014-09-04 18:13:01 +08002452 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002453 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002454 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002455}