blob: 9e327606752617c0e50152d6cd1f6ec05754e425 [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 Kim2c4db1a2016-01-07 14:15:04 -0800216 f2fs_balance_fs(sbi, true);
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 */
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800265void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900266{
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800267 if (!need)
268 return;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900269 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900270 * We should do GC or end up with checkpoint, if there are so many dirty
271 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900272 */
Jaegeuk Kim43727522013-02-04 15:11:17 +0900273 if (has_not_enough_free_secs(sbi, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900274 mutex_lock(&sbi->gc_mutex);
Chao Yud530d4d2015-10-05 22:22:44 +0800275 f2fs_gc(sbi, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900276 }
277}
278
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900279void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
280{
Chao Yu1dcc3362015-02-05 17:57:31 +0800281 /* try to shrink extent cache when there is no enough memory */
Jaegeuk Kim554df792015-06-19 13:41:23 -0700282 if (!available_free_memory(sbi, EXTENT_CACHE))
283 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800284
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700285 /* check the # of cached NAT entries */
286 if (!available_free_memory(sbi, NAT_ENTRIES))
287 try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
288
Chao Yu31696582015-07-28 18:33:46 +0800289 if (!available_free_memory(sbi, FREE_NIDS))
290 try_to_free_nids(sbi, NAT_ENTRY_PER_BLOCK * FREE_NID_PAGES);
291
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700292 /* checkpoint is the only way to shrink partial cached entries */
293 if (!available_free_memory(sbi, NAT_ENTRIES) ||
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700294 !available_free_memory(sbi, INO_ENTRIES) ||
Chao Yu7d768d22016-01-18 18:31:18 +0800295 excess_prefree_segs(sbi) ||
296 excess_dirty_nats(sbi) ||
Jaegeuk Kimd0239e12016-01-08 16:57:48 -0800297 (is_idle(sbi) && f2fs_time_over(sbi, CP_TIME))) {
Chao Yu36b35a02015-12-17 17:13:28 +0800298 if (test_opt(sbi, DATA_FLUSH))
299 sync_dirty_inodes(sbi, FILE_INODE);
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900300 f2fs_sync_fs(sbi->sb, true);
Jaegeuk Kim42190d22016-01-09 13:45:17 -0800301 stat_inc_bg_cp_count(sbi->stat_info);
Chao Yu36b35a02015-12-17 17:13:28 +0800302 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900303}
304
Gu Zheng2163d192014-04-27 14:21:33 +0800305static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900306{
307 struct f2fs_sb_info *sbi = data;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800308 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
309 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900310repeat:
311 if (kthread_should_stop())
312 return 0;
313
Gu Zheng721bd4d2014-09-05 18:31:00 +0800314 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700315 struct bio *bio;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900316 struct flush_cmd *cmd, *next;
317 int ret;
318
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700319 bio = f2fs_bio_alloc(0);
320
Gu Zheng721bd4d2014-09-05 18:31:00 +0800321 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
322 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
323
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900324 bio->bi_bdev = sbi->sb->s_bdev;
325 ret = submit_bio_wait(WRITE_FLUSH, bio);
326
Gu Zheng721bd4d2014-09-05 18:31:00 +0800327 llist_for_each_entry_safe(cmd, next,
328 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900329 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900330 complete(&cmd->wait);
331 }
Gu Zhenga4ed23f2014-04-11 17:49:35 +0800332 bio_put(bio);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800333 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900334 }
335
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800336 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800337 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900338 goto repeat;
339}
340
341int f2fs_issue_flush(struct f2fs_sb_info *sbi)
342{
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800343 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800344 struct flush_cmd cmd;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900345
Jaegeuk Kim24a9ee02014-07-25 17:46:10 -0700346 trace_f2fs_issue_flush(sbi->sb, test_opt(sbi, NOBARRIER),
347 test_opt(sbi, FLUSH_MERGE));
348
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700349 if (test_opt(sbi, NOBARRIER))
350 return 0;
351
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700352 if (!test_opt(sbi, FLUSH_MERGE)) {
353 struct bio *bio = f2fs_bio_alloc(0);
354 int ret;
355
356 bio->bi_bdev = sbi->sb->s_bdev;
357 ret = submit_bio_wait(WRITE_FLUSH, bio);
358 bio_put(bio);
359 return ret;
360 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900361
Chao Yuadf8d902014-05-08 17:00:35 +0800362 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900363
Gu Zheng721bd4d2014-09-05 18:31:00 +0800364 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900365
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800366 if (!fcc->dispatch_list)
367 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900368
Chao Yuadf8d902014-05-08 17:00:35 +0800369 wait_for_completion(&cmd.wait);
370
371 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900372}
373
Gu Zheng2163d192014-04-27 14:21:33 +0800374int create_flush_cmd_control(struct f2fs_sb_info *sbi)
375{
376 dev_t dev = sbi->sb->s_bdev->bd_dev;
377 struct flush_cmd_control *fcc;
378 int err = 0;
379
380 fcc = kzalloc(sizeof(struct flush_cmd_control), GFP_KERNEL);
381 if (!fcc)
382 return -ENOMEM;
Gu Zheng2163d192014-04-27 14:21:33 +0800383 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800384 init_llist_head(&fcc->issue_list);
Chao Yu6b2920a2014-07-07 11:21:59 +0800385 SM_I(sbi)->cmd_control_info = fcc;
Gu Zheng2163d192014-04-27 14:21:33 +0800386 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
387 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
388 if (IS_ERR(fcc->f2fs_issue_flush)) {
389 err = PTR_ERR(fcc->f2fs_issue_flush);
390 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800391 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800392 return err;
393 }
Gu Zheng2163d192014-04-27 14:21:33 +0800394
395 return err;
396}
397
398void destroy_flush_cmd_control(struct f2fs_sb_info *sbi)
399{
Chao Yu6b2920a2014-07-07 11:21:59 +0800400 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800401
402 if (fcc && fcc->f2fs_issue_flush)
403 kthread_stop(fcc->f2fs_issue_flush);
404 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800405 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800406}
407
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900408static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
409 enum dirty_type dirty_type)
410{
411 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
412
413 /* need not be added */
414 if (IS_CURSEG(sbi, segno))
415 return;
416
417 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
418 dirty_i->nr_dirty[dirty_type]++;
419
420 if (dirty_type == DIRTY) {
421 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900422 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900423
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700424 if (unlikely(t >= DIRTY)) {
425 f2fs_bug_on(sbi, 1);
426 return;
427 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900428 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
429 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900430 }
431}
432
433static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
434 enum dirty_type dirty_type)
435{
436 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
437
438 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
439 dirty_i->nr_dirty[dirty_type]--;
440
441 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900442 struct seg_entry *sentry = get_seg_entry(sbi, segno);
443 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900444
Changman Lee4625d6a2013-10-25 17:31:57 +0900445 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
446 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900447
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900448 if (get_valid_blocks(sbi, segno, sbi->segs_per_sec) == 0)
449 clear_bit(GET_SECNO(sbi, segno),
450 dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900451 }
452}
453
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900454/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900455 * Should not occur error such as -ENOMEM.
456 * Adding dirty entry into seglist is not critical operation.
457 * If a given segment is one of current working segments, it won't be added.
458 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800459static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900460{
461 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
462 unsigned short valid_blocks;
463
464 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
465 return;
466
467 mutex_lock(&dirty_i->seglist_lock);
468
469 valid_blocks = get_valid_blocks(sbi, segno, 0);
470
471 if (valid_blocks == 0) {
472 __locate_dirty_segment(sbi, segno, PRE);
473 __remove_dirty_segment(sbi, segno, DIRTY);
474 } else if (valid_blocks < sbi->blocks_per_seg) {
475 __locate_dirty_segment(sbi, segno, DIRTY);
476 } else {
477 /* Recovery routine with SSR needs this */
478 __remove_dirty_segment(sbi, segno, DIRTY);
479 }
480
481 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900482}
483
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900484static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +0900485 block_t blkstart, block_t blklen)
486{
Chao Yu55cf9cb2014-09-15 18:01:10 +0800487 sector_t start = SECTOR_FROM_BLOCK(blkstart);
488 sector_t len = SECTOR_FROM_BLOCK(blklen);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700489 struct seg_entry *se;
490 unsigned int offset;
491 block_t i;
492
493 for (i = blkstart; i < blkstart + blklen; i++) {
494 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
495 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
496
497 if (!f2fs_test_and_set_bit(offset, se->discard_map))
498 sbi->discard_blks--;
499 }
Jaegeuk Kim1661d072013-11-12 17:01:00 +0900500 trace_f2fs_issue_discard(sbi->sb, blkstart, blklen);
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900501 return blkdev_issue_discard(sbi->sb->s_bdev, start, len, GFP_NOFS, 0);
502}
503
Chao Yue90c2d22015-07-28 18:36:47 +0800504bool discard_next_dnode(struct f2fs_sb_info *sbi, block_t blkaddr)
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900505{
Jaegeuk Kim40a02be2015-05-11 20:03:49 -0700506 int err = -ENOTSUPP;
507
508 if (test_opt(sbi, DISCARD)) {
509 struct seg_entry *se = get_seg_entry(sbi,
510 GET_SEGNO(sbi, blkaddr));
511 unsigned int offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
512
513 if (f2fs_test_bit(offset, se->discard_map))
Chao Yue90c2d22015-07-28 18:36:47 +0800514 return false;
Jaegeuk Kim40a02be2015-05-11 20:03:49 -0700515
516 err = f2fs_issue_discard(sbi, blkaddr, 1);
517 }
518
Chao Yue90c2d22015-07-28 18:36:47 +0800519 if (err) {
Chao Yu381722d2015-05-19 17:40:04 +0800520 update_meta_page(sbi, NULL, blkaddr);
Chao Yue90c2d22015-07-28 18:36:47 +0800521 return true;
522 }
523 return false;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900524}
525
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700526static void __add_discard_entry(struct f2fs_sb_info *sbi,
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700527 struct cp_control *cpc, struct seg_entry *se,
528 unsigned int start, unsigned int end)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900529{
530 struct list_head *head = &SM_I(sbi)->discard_list;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700531 struct discard_entry *new, *last;
532
533 if (!list_empty(head)) {
534 last = list_last_entry(head, struct discard_entry, list);
535 if (START_BLOCK(sbi, cpc->trim_start) + start ==
536 last->blkaddr + last->len) {
537 last->len += end - start;
538 goto done;
539 }
540 }
541
542 new = f2fs_kmem_cache_alloc(discard_entry_slab, GFP_NOFS);
543 INIT_LIST_HEAD(&new->list);
544 new->blkaddr = START_BLOCK(sbi, cpc->trim_start) + start;
545 new->len = end - start;
546 list_add_tail(&new->list, head);
547done:
548 SM_I(sbi)->nr_discards += end - start;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700549}
550
551static void add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc)
552{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900553 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
554 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700555 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900556 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
557 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700558 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800559 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900560 unsigned int start = 0, end = -1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700561 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900562 int i;
563
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700564 if (se->valid_blocks == max_blocks)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900565 return;
566
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700567 if (!force) {
568 if (!test_opt(sbi, DISCARD) || !se->valid_blocks ||
Dan Carpenter912a83b2015-05-14 11:52:28 +0300569 SM_I(sbi)->nr_discards >= SM_I(sbi)->max_discards)
570 return;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700571 }
572
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900573 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
574 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700575 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -0800576 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900577
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700578 while (force || SM_I(sbi)->nr_discards <= SM_I(sbi)->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900579 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
580 if (start >= max_blocks)
581 break;
582
583 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700584 __add_discard_entry(sbi, cpc, se, start, end);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900585 }
586}
587
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700588void release_discard_addrs(struct f2fs_sb_info *sbi)
589{
590 struct list_head *head = &(SM_I(sbi)->discard_list);
591 struct discard_entry *entry, *this;
592
593 /* drop caches */
594 list_for_each_entry_safe(entry, this, head, list) {
595 list_del(&entry->list);
596 kmem_cache_free(discard_entry_slab, entry);
597 }
598}
599
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900600/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900601 * Should call clear_prefree_segments after checkpoint is done.
602 */
603static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
604{
605 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +0800606 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900607
608 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700609 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900610 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900611 mutex_unlock(&dirty_i->seglist_lock);
612}
613
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700614void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900615{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900616 struct list_head *head = &(SM_I(sbi)->discard_list);
Chao Yu2d7b8222014-03-29 11:33:17 +0800617 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900618 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Changman Lee29e59c12013-11-11 09:24:37 +0900619 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +0900620 unsigned int start = 0, end = -1;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900621
622 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900623
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900624 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900625 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700626 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
627 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900628 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700629 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
630 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900631
Changman Lee29e59c12013-11-11 09:24:37 +0900632 for (i = start; i < end; i++)
633 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900634
Changman Lee29e59c12013-11-11 09:24:37 +0900635 dirty_i->nr_dirty[PRE] -= end - start;
636
637 if (!test_opt(sbi, DISCARD))
638 continue;
639
Jaegeuk Kim37208872013-11-12 16:55:17 +0900640 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
641 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900642 }
643 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900644
645 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800646 list_for_each_entry_safe(entry, this, head, list) {
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700647 if (cpc->reason == CP_DISCARD && entry->len < cpc->trim_minlen)
648 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900649 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700650 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700651skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900652 list_del(&entry->list);
653 SM_I(sbi)->nr_discards -= entry->len;
654 kmem_cache_free(discard_entry_slab, entry);
655 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900656}
657
Chao Yu184a5cd2014-09-04 18:13:01 +0800658static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900659{
660 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800661
662 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900663 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800664 return false;
665 }
666
667 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900668}
669
670static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
671 unsigned int segno, int modified)
672{
673 struct seg_entry *se = get_seg_entry(sbi, segno);
674 se->type = type;
675 if (modified)
676 __mark_sit_entry_dirty(sbi, segno);
677}
678
679static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
680{
681 struct seg_entry *se;
682 unsigned int segno, offset;
683 long int new_vblocks;
684
685 segno = GET_SEGNO(sbi, blkaddr);
686
687 se = get_seg_entry(sbi, segno);
688 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +0900689 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900690
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700691 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900692 (new_vblocks > sbi->blocks_per_seg)));
693
694 se->valid_blocks = new_vblocks;
695 se->mtime = get_mtime(sbi);
696 SIT_I(sbi)->max_mtime = se->mtime;
697
698 /* Update valid block bitmap */
699 if (del > 0) {
Gu Zheng52aca072014-10-20 17:45:51 +0800700 if (f2fs_test_and_set_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700701 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700702 if (!f2fs_test_and_set_bit(offset, se->discard_map))
703 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900704 } else {
Gu Zheng52aca072014-10-20 17:45:51 +0800705 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700706 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700707 if (f2fs_test_and_clear_bit(offset, se->discard_map))
708 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900709 }
710 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
711 se->ckpt_valid_blocks += del;
712
713 __mark_sit_entry_dirty(sbi, segno);
714
715 /* update total number of valid blocks to be written in ckpt area */
716 SIT_I(sbi)->written_valid_blocks += del;
717
718 if (sbi->segs_per_sec > 1)
719 get_sec_entry(sbi, segno)->valid_blocks += del;
720}
721
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900722void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900723{
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900724 update_sit_entry(sbi, new, 1);
725 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
726 update_sit_entry(sbi, old, -1);
727
728 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
729 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900730}
731
732void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
733{
734 unsigned int segno = GET_SEGNO(sbi, addr);
735 struct sit_info *sit_i = SIT_I(sbi);
736
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700737 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900738 if (addr == NEW_ADDR)
739 return;
740
741 /* add it into sit main buffer */
742 mutex_lock(&sit_i->sentry_lock);
743
744 update_sit_entry(sbi, addr, -1);
745
746 /* add it into dirty seglist */
747 locate_dirty_segment(sbi, segno);
748
749 mutex_unlock(&sit_i->sentry_lock);
750}
751
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -0700752bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
753{
754 struct sit_info *sit_i = SIT_I(sbi);
755 unsigned int segno, offset;
756 struct seg_entry *se;
757 bool is_cp = false;
758
759 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
760 return true;
761
762 mutex_lock(&sit_i->sentry_lock);
763
764 segno = GET_SEGNO(sbi, blkaddr);
765 se = get_seg_entry(sbi, segno);
766 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
767
768 if (f2fs_test_bit(offset, se->ckpt_valid_map))
769 is_cp = true;
770
771 mutex_unlock(&sit_i->sentry_lock);
772
773 return is_cp;
774}
775
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900776/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900777 * This function should be resided under the curseg_mutex lock
778 */
779static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +0800780 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900781{
782 struct curseg_info *curseg = CURSEG_I(sbi, type);
783 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +0800784 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900785 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900786}
787
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900788/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900789 * Calculate the number of current summary pages for writing
790 */
Chao Yu3fa06d72014-12-09 14:21:46 +0800791int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900792{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900793 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +0800794 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900795
796 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
797 if (sbi->ckpt->alloc_type[i] == SSR)
798 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +0800799 else {
800 if (for_ra)
801 valid_sum_count += le16_to_cpu(
802 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
803 else
804 valid_sum_count += curseg_blkoff(sbi, i);
805 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900806 }
807
Fan Li9a479382013-10-29 16:21:47 +0800808 sum_in_page = (PAGE_CACHE_SIZE - 2 * SUM_JOURNAL_SIZE -
809 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
810 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900811 return 1;
Fan Li9a479382013-10-29 16:21:47 +0800812 else if ((valid_sum_count - sum_in_page) <=
813 (PAGE_CACHE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900814 return 2;
815 return 3;
816}
817
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900818/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900819 * Caller should put this summary page
820 */
821struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
822{
823 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
824}
825
Chao Yu381722d2015-05-19 17:40:04 +0800826void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
827{
828 struct page *page = grab_meta_page(sbi, blk_addr);
829 void *dst = page_address(page);
830
831 if (src)
832 memcpy(dst, src, PAGE_CACHE_SIZE);
833 else
834 memset(dst, 0, PAGE_CACHE_SIZE);
835 set_page_dirty(page);
836 f2fs_put_page(page, 1);
837}
838
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900839static void write_sum_page(struct f2fs_sb_info *sbi,
840 struct f2fs_summary_block *sum_blk, block_t blk_addr)
841{
Chao Yu381722d2015-05-19 17:40:04 +0800842 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900843}
844
Jaegeuk Kim60374682013-03-31 13:58:51 +0900845static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
846{
847 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +0800848 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +0900849 struct free_segmap_info *free_i = FREE_I(sbi);
850
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700851 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +0800852 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +0900853 return 0;
854}
855
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900856/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900857 * Find a new segment from the free segments bitmap to right order
858 * This function should be returned with success, otherwise BUG
859 */
860static void get_new_segment(struct f2fs_sb_info *sbi,
861 unsigned int *newseg, bool new_sec, int dir)
862{
863 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900864 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700865 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900866 unsigned int hint = *newseg / sbi->segs_per_sec;
867 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
868 unsigned int left_start = hint;
869 bool init = true;
870 int go_left = 0;
871 int i;
872
Chao Yu1a118cc2015-02-11 18:20:38 +0800873 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900874
875 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
876 segno = find_next_zero_bit(free_i->free_segmap,
Chao Yu0ab14352016-01-22 17:42:06 +0800877 (hint + 1) * sbi->segs_per_sec, *newseg + 1);
878 if (segno < (hint + 1) * sbi->segs_per_sec)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900879 goto got_it;
880 }
881find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700882 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
883 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900884 if (dir == ALLOC_RIGHT) {
885 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700886 MAIN_SECS(sbi), 0);
887 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900888 } else {
889 go_left = 1;
890 left_start = hint - 1;
891 }
892 }
893 if (go_left == 0)
894 goto skip_left;
895
896 while (test_bit(left_start, free_i->free_secmap)) {
897 if (left_start > 0) {
898 left_start--;
899 continue;
900 }
901 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700902 MAIN_SECS(sbi), 0);
903 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900904 break;
905 }
906 secno = left_start;
907skip_left:
908 hint = secno;
909 segno = secno * sbi->segs_per_sec;
910 zoneno = secno / sbi->secs_per_zone;
911
912 /* give up on finding another zone */
913 if (!init)
914 goto got_it;
915 if (sbi->secs_per_zone == 1)
916 goto got_it;
917 if (zoneno == old_zoneno)
918 goto got_it;
919 if (dir == ALLOC_LEFT) {
920 if (!go_left && zoneno + 1 >= total_zones)
921 goto got_it;
922 if (go_left && zoneno == 0)
923 goto got_it;
924 }
925 for (i = 0; i < NR_CURSEG_TYPE; i++)
926 if (CURSEG_I(sbi, i)->zone == zoneno)
927 break;
928
929 if (i < NR_CURSEG_TYPE) {
930 /* zone is in user, try another */
931 if (go_left)
932 hint = zoneno * sbi->secs_per_zone - 1;
933 else if (zoneno + 1 >= total_zones)
934 hint = 0;
935 else
936 hint = (zoneno + 1) * sbi->secs_per_zone;
937 init = false;
938 goto find_other_zone;
939 }
940got_it:
941 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700942 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900943 __set_inuse(sbi, segno);
944 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +0800945 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900946}
947
948static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
949{
950 struct curseg_info *curseg = CURSEG_I(sbi, type);
951 struct summary_footer *sum_footer;
952
953 curseg->segno = curseg->next_segno;
954 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
955 curseg->next_blkoff = 0;
956 curseg->next_segno = NULL_SEGNO;
957
958 sum_footer = &(curseg->sum_blk->footer);
959 memset(sum_footer, 0, sizeof(struct summary_footer));
960 if (IS_DATASEG(type))
961 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
962 if (IS_NODESEG(type))
963 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
964 __set_sit_entry_type(sbi, type, curseg->segno, modified);
965}
966
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900967/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900968 * Allocate a current working segment.
969 * This function always allocates a free segment in LFS manner.
970 */
971static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
972{
973 struct curseg_info *curseg = CURSEG_I(sbi, type);
974 unsigned int segno = curseg->segno;
975 int dir = ALLOC_LEFT;
976
977 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +0800978 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900979 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
980 dir = ALLOC_RIGHT;
981
982 if (test_opt(sbi, NOHEAP))
983 dir = ALLOC_RIGHT;
984
985 get_new_segment(sbi, &segno, new_sec, dir);
986 curseg->next_segno = segno;
987 reset_curseg(sbi, type, 1);
988 curseg->alloc_type = LFS;
989}
990
991static void __next_free_blkoff(struct f2fs_sb_info *sbi,
992 struct curseg_info *seg, block_t start)
993{
994 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +0900995 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800996 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +0900997 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
998 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
999 int i, pos;
1000
1001 for (i = 0; i < entries; i++)
1002 target_map[i] = ckpt_map[i] | cur_map[i];
1003
1004 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1005
1006 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001007}
1008
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001009/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001010 * If a segment is written by LFS manner, next block offset is just obtained
1011 * by increasing the current block offset. However, if a segment is written by
1012 * SSR manner, next block offset obtained by calling __next_free_blkoff
1013 */
1014static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1015 struct curseg_info *seg)
1016{
1017 if (seg->alloc_type == SSR)
1018 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1019 else
1020 seg->next_blkoff++;
1021}
1022
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001023/*
arter97e1c42042014-08-06 23:22:50 +09001024 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001025 * manner, so it should recover the existing segment information of valid blocks
1026 */
1027static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1028{
1029 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1030 struct curseg_info *curseg = CURSEG_I(sbi, type);
1031 unsigned int new_segno = curseg->next_segno;
1032 struct f2fs_summary_block *sum_node;
1033 struct page *sum_page;
1034
1035 write_sum_page(sbi, curseg->sum_blk,
1036 GET_SUM_BLOCK(sbi, curseg->segno));
1037 __set_test_and_inuse(sbi, new_segno);
1038
1039 mutex_lock(&dirty_i->seglist_lock);
1040 __remove_dirty_segment(sbi, new_segno, PRE);
1041 __remove_dirty_segment(sbi, new_segno, DIRTY);
1042 mutex_unlock(&dirty_i->seglist_lock);
1043
1044 reset_curseg(sbi, type, 1);
1045 curseg->alloc_type = SSR;
1046 __next_free_blkoff(sbi, curseg, 0);
1047
1048 if (reuse) {
1049 sum_page = get_sum_page(sbi, new_segno);
1050 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1051 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1052 f2fs_put_page(sum_page, 1);
1053 }
1054}
1055
Jaegeuk Kim43727522013-02-04 15:11:17 +09001056static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1057{
1058 struct curseg_info *curseg = CURSEG_I(sbi, type);
1059 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1060
1061 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0))
1062 return v_ops->get_victim(sbi,
1063 &(curseg)->next_segno, BG_GC, type, SSR);
1064
1065 /* For data segments, let's do SSR more intensively */
1066 for (; type >= CURSEG_HOT_DATA; type--)
1067 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1068 BG_GC, type, SSR))
1069 return 1;
1070 return 0;
1071}
1072
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001073/*
1074 * flush out current segment and replace it with new segment
1075 * This function should be returned with success, otherwise BUG
1076 */
1077static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1078 int type, bool force)
1079{
1080 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001081
Gu Zheng7b405272013-08-19 09:41:15 +08001082 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001083 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001084 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001085 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001086 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1087 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001088 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1089 change_curseg(sbi, type, true);
1090 else
1091 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001092
1093 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001094}
1095
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001096static void __allocate_new_segments(struct f2fs_sb_info *sbi, int type)
1097{
1098 struct curseg_info *curseg = CURSEG_I(sbi, type);
1099 unsigned int old_segno;
1100
1101 old_segno = curseg->segno;
1102 SIT_I(sbi)->s_ops->allocate_segment(sbi, type, true);
1103 locate_dirty_segment(sbi, old_segno);
1104}
1105
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001106void allocate_new_segments(struct f2fs_sb_info *sbi)
1107{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001108 int i;
1109
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001110 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++)
1111 __allocate_new_segments(sbi, i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001112}
1113
1114static const struct segment_allocation default_salloc_ops = {
1115 .allocate_segment = allocate_segment_by_default,
1116};
1117
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001118int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1119{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001120 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1121 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001122 unsigned int start_segno, end_segno;
1123 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001124 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001125
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001126 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001127 return -EINVAL;
1128
Jan Kara9bd27ae2014-10-21 14:07:33 +02001129 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001130 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001131 goto out;
1132
1133 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001134 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1135 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1136 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001137 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001138 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001139
1140 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001141 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1142 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001143
1144 if (sbi->discard_blks == 0)
1145 break;
1146 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1147 cpc.trim_end = end_segno;
1148 else
1149 cpc.trim_end = min_t(unsigned int,
1150 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001151 BATCHED_TRIM_SEGMENTS(sbi),
1152 sbi->segs_per_sec) - 1, end_segno);
1153
1154 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001155 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001156 mutex_unlock(&sbi->gc_mutex);
1157 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001158out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001159 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001160 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001161}
1162
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001163static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1164{
1165 struct curseg_info *curseg = CURSEG_I(sbi, type);
1166 if (curseg->next_blkoff < sbi->blocks_per_seg)
1167 return true;
1168 return false;
1169}
1170
1171static int __get_segment_type_2(struct page *page, enum page_type p_type)
1172{
1173 if (p_type == DATA)
1174 return CURSEG_HOT_DATA;
1175 else
1176 return CURSEG_HOT_NODE;
1177}
1178
1179static int __get_segment_type_4(struct page *page, enum page_type p_type)
1180{
1181 if (p_type == DATA) {
1182 struct inode *inode = page->mapping->host;
1183
1184 if (S_ISDIR(inode->i_mode))
1185 return CURSEG_HOT_DATA;
1186 else
1187 return CURSEG_COLD_DATA;
1188 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001189 if (IS_DNODE(page) && is_cold_node(page))
1190 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001191 else
1192 return CURSEG_COLD_NODE;
1193 }
1194}
1195
1196static int __get_segment_type_6(struct page *page, enum page_type p_type)
1197{
1198 if (p_type == DATA) {
1199 struct inode *inode = page->mapping->host;
1200
1201 if (S_ISDIR(inode->i_mode))
1202 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001203 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001204 return CURSEG_COLD_DATA;
1205 else
1206 return CURSEG_WARM_DATA;
1207 } else {
1208 if (IS_DNODE(page))
1209 return is_cold_node(page) ? CURSEG_WARM_NODE :
1210 CURSEG_HOT_NODE;
1211 else
1212 return CURSEG_COLD_NODE;
1213 }
1214}
1215
1216static int __get_segment_type(struct page *page, enum page_type p_type)
1217{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001218 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001219 case 2:
1220 return __get_segment_type_2(page, p_type);
1221 case 4:
1222 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001223 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001224 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001225 f2fs_bug_on(F2FS_P_SB(page),
1226 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001227 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001228}
1229
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001230void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1231 block_t old_blkaddr, block_t *new_blkaddr,
1232 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001233{
1234 struct sit_info *sit_i = SIT_I(sbi);
1235 struct curseg_info *curseg;
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001236 bool direct_io = (type == CURSEG_DIRECT_IO);
1237
1238 type = direct_io ? CURSEG_WARM_DATA : type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001239
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001240 curseg = CURSEG_I(sbi, type);
1241
1242 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001243 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001244
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001245 /* direct_io'ed data is aligned to the segment for better performance */
Jaegeuk Kim47e70ca2015-08-11 10:17:27 -07001246 if (direct_io && curseg->next_blkoff &&
1247 !has_not_enough_free_secs(sbi, 0))
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001248 __allocate_new_segments(sbi, type);
1249
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001250 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001251
1252 /*
1253 * __add_sum_entry should be resided under the curseg_mutex
1254 * because, this function updates a summary entry in the
1255 * current summary block.
1256 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001257 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001258
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001259 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001260
1261 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001262
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001263 if (!__has_curseg_space(sbi, type))
1264 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001265 /*
1266 * SIT information should be updated before segment allocation,
1267 * since SSR needs latest valid block information.
1268 */
1269 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001270
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001271 mutex_unlock(&sit_i->sentry_lock);
1272
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001273 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001274 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1275
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001276 mutex_unlock(&curseg->curseg_mutex);
1277}
1278
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001279static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001280{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001281 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001282
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001283 allocate_data_block(fio->sbi, fio->page, fio->blk_addr,
1284 &fio->blk_addr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001285
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001286 /* writeout dirty page into bdev */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001287 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001288}
1289
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001290void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001291{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001292 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001293 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001294 .type = META,
Jaegeuk Kimcf04e8e2014-12-17 19:33:13 -08001295 .rw = WRITE_SYNC | REQ_META | REQ_PRIO,
1296 .blk_addr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001297 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001298 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001299 };
1300
Chao Yu2b947002015-10-12 17:04:21 +08001301 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
1302 fio.rw &= ~REQ_META;
1303
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001304 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001305 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001306}
1307
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001308void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001309{
1310 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001311
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001312 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001313 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001314}
1315
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001316void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001317{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001318 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001319 struct f2fs_summary sum;
1320 struct node_info ni;
1321
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001322 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001323 get_node_info(sbi, dn->nid, &ni);
1324 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001325 do_write_page(&sum, fio);
Jaegeuk Kime1509cf2014-12-30 22:57:55 -08001326 dn->data_blkaddr = fio->blk_addr;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001327}
1328
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001329void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001330{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001331 stat_inc_inplace_blocks(fio->sbi);
1332 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001333}
1334
Chao Yu528e3452015-05-28 19:15:35 +08001335static void __f2fs_replace_block(struct f2fs_sb_info *sbi,
1336 struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001337 block_t old_blkaddr, block_t new_blkaddr,
1338 bool recover_curseg)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001339{
1340 struct sit_info *sit_i = SIT_I(sbi);
1341 struct curseg_info *curseg;
1342 unsigned int segno, old_cursegno;
1343 struct seg_entry *se;
1344 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001345 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001346
1347 segno = GET_SEGNO(sbi, new_blkaddr);
1348 se = get_seg_entry(sbi, segno);
1349 type = se->type;
1350
Chao Yu19f106b2015-05-06 13:08:06 +08001351 if (!recover_curseg) {
1352 /* for recovery flow */
1353 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1354 if (old_blkaddr == NULL_ADDR)
1355 type = CURSEG_COLD_DATA;
1356 else
1357 type = CURSEG_WARM_DATA;
1358 }
1359 } else {
1360 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001361 type = CURSEG_WARM_DATA;
1362 }
Chao Yu19f106b2015-05-06 13:08:06 +08001363
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001364 curseg = CURSEG_I(sbi, type);
1365
1366 mutex_lock(&curseg->curseg_mutex);
1367 mutex_lock(&sit_i->sentry_lock);
1368
1369 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001370 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001371
1372 /* change the current segment */
1373 if (segno != curseg->segno) {
1374 curseg->next_segno = segno;
1375 change_curseg(sbi, type, true);
1376 }
1377
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001378 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001379 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001380
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001381 if (!recover_curseg)
1382 update_sit_entry(sbi, new_blkaddr, 1);
1383 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1384 update_sit_entry(sbi, old_blkaddr, -1);
1385
1386 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1387 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1388
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001389 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001390
Chao Yu19f106b2015-05-06 13:08:06 +08001391 if (recover_curseg) {
1392 if (old_cursegno != curseg->segno) {
1393 curseg->next_segno = old_cursegno;
1394 change_curseg(sbi, type, true);
1395 }
1396 curseg->next_blkoff = old_blkoff;
1397 }
1398
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001399 mutex_unlock(&sit_i->sentry_lock);
1400 mutex_unlock(&curseg->curseg_mutex);
1401}
1402
Chao Yu528e3452015-05-28 19:15:35 +08001403void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1404 block_t old_addr, block_t new_addr,
1405 unsigned char version, bool recover_curseg)
1406{
1407 struct f2fs_summary sum;
1408
1409 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1410
1411 __f2fs_replace_block(sbi, &sum, old_addr, new_addr, recover_curseg);
1412
1413 dn->data_blkaddr = new_addr;
1414 set_data_blkaddr(dn);
1415 f2fs_update_extent_cache(dn);
1416}
1417
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001418void f2fs_wait_on_page_writeback(struct page *page,
Yuan Zhong5514f0a2014-01-10 07:26:14 +00001419 enum page_type type)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001420{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001421 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001422 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1423
Chao Yudf0f8dc2014-03-22 14:57:23 +08001424 if (is_merged_page(sbi, page, type))
1425 f2fs_submit_merged_bio(sbi, type, WRITE);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001426 wait_on_page_writeback(page);
1427 }
1428}
1429
Chao Yu08b39fb2015-10-08 13:27:34 +08001430void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1431 block_t blkaddr)
1432{
1433 struct page *cpage;
1434
1435 if (blkaddr == NEW_ADDR)
1436 return;
1437
1438 f2fs_bug_on(sbi, blkaddr == NULL_ADDR);
1439
1440 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1441 if (cpage) {
1442 f2fs_wait_on_page_writeback(cpage, DATA);
1443 f2fs_put_page(cpage, 1);
1444 }
1445}
1446
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001447static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1448{
1449 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1450 struct curseg_info *seg_i;
1451 unsigned char *kaddr;
1452 struct page *page;
1453 block_t start;
1454 int i, j, offset;
1455
1456 start = start_sum_block(sbi);
1457
1458 page = get_meta_page(sbi, start++);
1459 kaddr = (unsigned char *)page_address(page);
1460
1461 /* Step 1: restore nat cache */
1462 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
1463 memcpy(&seg_i->sum_blk->n_nats, kaddr, SUM_JOURNAL_SIZE);
1464
1465 /* Step 2: restore sit cache */
1466 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
1467 memcpy(&seg_i->sum_blk->n_sits, kaddr + SUM_JOURNAL_SIZE,
1468 SUM_JOURNAL_SIZE);
1469 offset = 2 * SUM_JOURNAL_SIZE;
1470
1471 /* Step 3: restore summary entries */
1472 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1473 unsigned short blk_off;
1474 unsigned int segno;
1475
1476 seg_i = CURSEG_I(sbi, i);
1477 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1478 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1479 seg_i->next_segno = segno;
1480 reset_curseg(sbi, i, 0);
1481 seg_i->alloc_type = ckpt->alloc_type[i];
1482 seg_i->next_blkoff = blk_off;
1483
1484 if (seg_i->alloc_type == SSR)
1485 blk_off = sbi->blocks_per_seg;
1486
1487 for (j = 0; j < blk_off; j++) {
1488 struct f2fs_summary *s;
1489 s = (struct f2fs_summary *)(kaddr + offset);
1490 seg_i->sum_blk->entries[j] = *s;
1491 offset += SUMMARY_SIZE;
1492 if (offset + SUMMARY_SIZE <= PAGE_CACHE_SIZE -
1493 SUM_FOOTER_SIZE)
1494 continue;
1495
1496 f2fs_put_page(page, 1);
1497 page = NULL;
1498
1499 page = get_meta_page(sbi, start++);
1500 kaddr = (unsigned char *)page_address(page);
1501 offset = 0;
1502 }
1503 }
1504 f2fs_put_page(page, 1);
1505 return 0;
1506}
1507
1508static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1509{
1510 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1511 struct f2fs_summary_block *sum;
1512 struct curseg_info *curseg;
1513 struct page *new;
1514 unsigned short blk_off;
1515 unsigned int segno = 0;
1516 block_t blk_addr = 0;
1517
1518 /* get segment number and block addr */
1519 if (IS_DATASEG(type)) {
1520 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1521 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1522 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001523 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001524 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1525 else
1526 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1527 } else {
1528 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1529 CURSEG_HOT_NODE]);
1530 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1531 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001532 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001533 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1534 type - CURSEG_HOT_NODE);
1535 else
1536 blk_addr = GET_SUM_BLOCK(sbi, segno);
1537 }
1538
1539 new = get_meta_page(sbi, blk_addr);
1540 sum = (struct f2fs_summary_block *)page_address(new);
1541
1542 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001543 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001544 struct f2fs_summary *ns = &sum->entries[0];
1545 int i;
1546 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1547 ns->version = 0;
1548 ns->ofs_in_node = 0;
1549 }
1550 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001551 int err;
1552
1553 err = restore_node_summary(sbi, segno, sum);
1554 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001555 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001556 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001557 }
1558 }
1559 }
1560
1561 /* set uncompleted segment to curseg */
1562 curseg = CURSEG_I(sbi, type);
1563 mutex_lock(&curseg->curseg_mutex);
1564 memcpy(curseg->sum_blk, sum, PAGE_CACHE_SIZE);
1565 curseg->next_segno = segno;
1566 reset_curseg(sbi, type, 0);
1567 curseg->alloc_type = ckpt->alloc_type[type];
1568 curseg->next_blkoff = blk_off;
1569 mutex_unlock(&curseg->curseg_mutex);
1570 f2fs_put_page(new, 1);
1571 return 0;
1572}
1573
1574static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1575{
1576 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001577 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001578
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001579 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001580 int npages = npages_for_summary_flush(sbi, true);
1581
1582 if (npages >= 2)
1583 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001584 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001585
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001586 /* restore for compacted data summary */
1587 if (read_compacted_summaries(sbi))
1588 return -EINVAL;
1589 type = CURSEG_HOT_NODE;
1590 }
1591
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001592 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001593 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001594 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001595
Chao Yue4fc5fb2014-03-17 16:36:24 +08001596 for (; type <= CURSEG_COLD_NODE; type++) {
1597 err = read_normal_summaries(sbi, type);
1598 if (err)
1599 return err;
1600 }
1601
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001602 return 0;
1603}
1604
1605static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1606{
1607 struct page *page;
1608 unsigned char *kaddr;
1609 struct f2fs_summary *summary;
1610 struct curseg_info *seg_i;
1611 int written_size = 0;
1612 int i, j;
1613
1614 page = grab_meta_page(sbi, blkaddr++);
1615 kaddr = (unsigned char *)page_address(page);
1616
1617 /* Step 1: write nat cache */
1618 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
1619 memcpy(kaddr, &seg_i->sum_blk->n_nats, SUM_JOURNAL_SIZE);
1620 written_size += SUM_JOURNAL_SIZE;
1621
1622 /* Step 2: write sit cache */
1623 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
1624 memcpy(kaddr + written_size, &seg_i->sum_blk->n_sits,
1625 SUM_JOURNAL_SIZE);
1626 written_size += SUM_JOURNAL_SIZE;
1627
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001628 /* Step 3: write summary entries */
1629 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1630 unsigned short blkoff;
1631 seg_i = CURSEG_I(sbi, i);
1632 if (sbi->ckpt->alloc_type[i] == SSR)
1633 blkoff = sbi->blocks_per_seg;
1634 else
1635 blkoff = curseg_blkoff(sbi, i);
1636
1637 for (j = 0; j < blkoff; j++) {
1638 if (!page) {
1639 page = grab_meta_page(sbi, blkaddr++);
1640 kaddr = (unsigned char *)page_address(page);
1641 written_size = 0;
1642 }
1643 summary = (struct f2fs_summary *)(kaddr + written_size);
1644 *summary = seg_i->sum_blk->entries[j];
1645 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001646
1647 if (written_size + SUMMARY_SIZE <= PAGE_CACHE_SIZE -
1648 SUM_FOOTER_SIZE)
1649 continue;
1650
Chao Yue8d61a72013-10-24 15:08:28 +08001651 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001652 f2fs_put_page(page, 1);
1653 page = NULL;
1654 }
1655 }
Chao Yue8d61a72013-10-24 15:08:28 +08001656 if (page) {
1657 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001658 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08001659 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001660}
1661
1662static void write_normal_summaries(struct f2fs_sb_info *sbi,
1663 block_t blkaddr, int type)
1664{
1665 int i, end;
1666 if (IS_DATASEG(type))
1667 end = type + NR_CURSEG_DATA_TYPE;
1668 else
1669 end = type + NR_CURSEG_NODE_TYPE;
1670
1671 for (i = type; i < end; i++) {
1672 struct curseg_info *sum = CURSEG_I(sbi, i);
1673 mutex_lock(&sum->curseg_mutex);
1674 write_sum_page(sbi, sum->sum_blk, blkaddr + (i - type));
1675 mutex_unlock(&sum->curseg_mutex);
1676 }
1677}
1678
1679void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1680{
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001681 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001682 write_compacted_summaries(sbi, start_blk);
1683 else
1684 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1685}
1686
1687void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1688{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001689 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001690}
1691
1692int lookup_journal_in_cursum(struct f2fs_summary_block *sum, int type,
1693 unsigned int val, int alloc)
1694{
1695 int i;
1696
1697 if (type == NAT_JOURNAL) {
1698 for (i = 0; i < nats_in_cursum(sum); i++) {
1699 if (le32_to_cpu(nid_in_journal(sum, i)) == val)
1700 return i;
1701 }
Chao Yu855639d2015-12-01 11:42:54 +08001702 if (alloc && __has_cursum_space(sum, 1, NAT_JOURNAL))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001703 return update_nats_in_cursum(sum, 1);
1704 } else if (type == SIT_JOURNAL) {
1705 for (i = 0; i < sits_in_cursum(sum); i++)
1706 if (le32_to_cpu(segno_in_journal(sum, i)) == val)
1707 return i;
Chao Yu855639d2015-12-01 11:42:54 +08001708 if (alloc && __has_cursum_space(sum, 1, SIT_JOURNAL))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001709 return update_sits_in_cursum(sum, 1);
1710 }
1711 return -1;
1712}
1713
1714static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
1715 unsigned int segno)
1716{
Gu Zheng2cc22182014-10-20 17:45:49 +08001717 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001718}
1719
1720static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
1721 unsigned int start)
1722{
1723 struct sit_info *sit_i = SIT_I(sbi);
1724 struct page *src_page, *dst_page;
1725 pgoff_t src_off, dst_off;
1726 void *src_addr, *dst_addr;
1727
1728 src_off = current_sit_addr(sbi, start);
1729 dst_off = next_sit_addr(sbi, src_off);
1730
1731 /* get current sit block page without lock */
1732 src_page = get_meta_page(sbi, src_off);
1733 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001734 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001735
1736 src_addr = page_address(src_page);
1737 dst_addr = page_address(dst_page);
1738 memcpy(dst_addr, src_addr, PAGE_CACHE_SIZE);
1739
1740 set_page_dirty(dst_page);
1741 f2fs_put_page(src_page, 1);
1742
1743 set_to_next_sit(sit_i, start);
1744
1745 return dst_page;
1746}
1747
Chao Yu184a5cd2014-09-04 18:13:01 +08001748static struct sit_entry_set *grab_sit_entry_set(void)
1749{
1750 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001751 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08001752
1753 ses->entry_cnt = 0;
1754 INIT_LIST_HEAD(&ses->set_list);
1755 return ses;
1756}
1757
1758static void release_sit_entry_set(struct sit_entry_set *ses)
1759{
1760 list_del(&ses->set_list);
1761 kmem_cache_free(sit_entry_set_slab, ses);
1762}
1763
1764static void adjust_sit_entry_set(struct sit_entry_set *ses,
1765 struct list_head *head)
1766{
1767 struct sit_entry_set *next = ses;
1768
1769 if (list_is_last(&ses->set_list, head))
1770 return;
1771
1772 list_for_each_entry_continue(next, head, set_list)
1773 if (ses->entry_cnt <= next->entry_cnt)
1774 break;
1775
1776 list_move_tail(&ses->set_list, &next->set_list);
1777}
1778
1779static void add_sit_entry(unsigned int segno, struct list_head *head)
1780{
1781 struct sit_entry_set *ses;
1782 unsigned int start_segno = START_SEGNO(segno);
1783
1784 list_for_each_entry(ses, head, set_list) {
1785 if (ses->start_segno == start_segno) {
1786 ses->entry_cnt++;
1787 adjust_sit_entry_set(ses, head);
1788 return;
1789 }
1790 }
1791
1792 ses = grab_sit_entry_set();
1793
1794 ses->start_segno = start_segno;
1795 ses->entry_cnt++;
1796 list_add(&ses->set_list, head);
1797}
1798
1799static void add_sits_in_set(struct f2fs_sb_info *sbi)
1800{
1801 struct f2fs_sm_info *sm_info = SM_I(sbi);
1802 struct list_head *set_list = &sm_info->sit_entry_set;
1803 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08001804 unsigned int segno;
1805
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001806 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08001807 add_sit_entry(segno, set_list);
1808}
1809
1810static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001811{
1812 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
1813 struct f2fs_summary_block *sum = curseg->sum_blk;
1814 int i;
1815
Chao Yu184a5cd2014-09-04 18:13:01 +08001816 for (i = sits_in_cursum(sum) - 1; i >= 0; i--) {
1817 unsigned int segno;
1818 bool dirtied;
1819
1820 segno = le32_to_cpu(segno_in_journal(sum, i));
1821 dirtied = __mark_sit_entry_dirty(sbi, segno);
1822
1823 if (!dirtied)
1824 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001825 }
Chao Yu184a5cd2014-09-04 18:13:01 +08001826 update_sits_in_cursum(sum, -sits_in_cursum(sum));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001827}
1828
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001829/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001830 * CP calls this function, which flushes SIT entries including sit_journal,
1831 * and moves prefree segs to free segs.
1832 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001833void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001834{
1835 struct sit_info *sit_i = SIT_I(sbi);
1836 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
1837 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
1838 struct f2fs_summary_block *sum = curseg->sum_blk;
Chao Yu184a5cd2014-09-04 18:13:01 +08001839 struct sit_entry_set *ses, *tmp;
1840 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08001841 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001842 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001843
1844 mutex_lock(&curseg->curseg_mutex);
1845 mutex_lock(&sit_i->sentry_lock);
1846
Wanpeng Li2b11a742015-02-27 16:52:50 +08001847 if (!sit_i->dirty_sentries)
1848 goto out;
1849
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001850 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08001851 * add and account sit entries of dirty bitmap in sit entry
1852 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001853 */
Chao Yu184a5cd2014-09-04 18:13:01 +08001854 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001855
Chao Yu184a5cd2014-09-04 18:13:01 +08001856 /*
1857 * if there are no enough space in journal to store dirty sit
1858 * entries, remove all entries from journal and add and account
1859 * them in sit entry set.
1860 */
1861 if (!__has_cursum_space(sum, sit_i->dirty_sentries, SIT_JOURNAL))
1862 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001863
Chao Yu184a5cd2014-09-04 18:13:01 +08001864 /*
1865 * there are two steps to flush sit entries:
1866 * #1, flush sit entries to journal in current cold data summary block.
1867 * #2, flush sit entries to sit page.
1868 */
1869 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07001870 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08001871 struct f2fs_sit_block *raw_sit = NULL;
1872 unsigned int start_segno = ses->start_segno;
1873 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001874 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08001875 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001876
Chao Yu184a5cd2014-09-04 18:13:01 +08001877 if (to_journal &&
1878 !__has_cursum_space(sum, ses->entry_cnt, SIT_JOURNAL))
1879 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001880
Chao Yu184a5cd2014-09-04 18:13:01 +08001881 if (!to_journal) {
1882 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001883 raw_sit = page_address(page);
1884 }
1885
Chao Yu184a5cd2014-09-04 18:13:01 +08001886 /* flush dirty sit entries in region of current sit set */
1887 for_each_set_bit_from(segno, bitmap, end) {
1888 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001889
1890 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08001891
1892 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08001893 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001894 cpc->trim_start = segno;
1895 add_discard_addrs(sbi, cpc);
1896 }
Chao Yu184a5cd2014-09-04 18:13:01 +08001897
1898 if (to_journal) {
1899 offset = lookup_journal_in_cursum(sum,
1900 SIT_JOURNAL, segno, 1);
1901 f2fs_bug_on(sbi, offset < 0);
1902 segno_in_journal(sum, offset) =
1903 cpu_to_le32(segno);
1904 seg_info_to_raw_sit(se,
1905 &sit_in_journal(sum, offset));
1906 } else {
1907 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
1908 seg_info_to_raw_sit(se,
1909 &raw_sit->entries[sit_offset]);
1910 }
1911
1912 __clear_bit(segno, bitmap);
1913 sit_i->dirty_sentries--;
1914 ses->entry_cnt--;
1915 }
1916
1917 if (!to_journal)
1918 f2fs_put_page(page, 1);
1919
1920 f2fs_bug_on(sbi, ses->entry_cnt);
1921 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001922 }
Chao Yu184a5cd2014-09-04 18:13:01 +08001923
1924 f2fs_bug_on(sbi, !list_empty(head));
1925 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08001926out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001927 if (cpc->reason == CP_DISCARD) {
1928 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
1929 add_discard_addrs(sbi, cpc);
1930 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001931 mutex_unlock(&sit_i->sentry_lock);
1932 mutex_unlock(&curseg->curseg_mutex);
1933
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001934 set_prefree_as_free_segments(sbi);
1935}
1936
1937static int build_sit_info(struct f2fs_sb_info *sbi)
1938{
1939 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
1940 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1941 struct sit_info *sit_i;
1942 unsigned int sit_segs, start;
1943 char *src_bitmap, *dst_bitmap;
1944 unsigned int bitmap_size;
1945
1946 /* allocate memory for SIT information */
1947 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
1948 if (!sit_i)
1949 return -ENOMEM;
1950
1951 SM_I(sbi)->sit_info = sit_i;
1952
Jaegeuk Kim39307a82015-09-22 13:50:47 -07001953 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
1954 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001955 if (!sit_i->sentries)
1956 return -ENOMEM;
1957
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001958 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07001959 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001960 if (!sit_i->dirty_sentries_bitmap)
1961 return -ENOMEM;
1962
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001963 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001964 sit_i->sentries[start].cur_valid_map
1965 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
1966 sit_i->sentries[start].ckpt_valid_map
1967 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001968 sit_i->sentries[start].discard_map
1969 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
1970 if (!sit_i->sentries[start].cur_valid_map ||
1971 !sit_i->sentries[start].ckpt_valid_map ||
1972 !sit_i->sentries[start].discard_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001973 return -ENOMEM;
1974 }
1975
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001976 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
1977 if (!sit_i->tmp_map)
1978 return -ENOMEM;
1979
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001980 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07001981 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
1982 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001983 if (!sit_i->sec_entries)
1984 return -ENOMEM;
1985 }
1986
1987 /* get information related with SIT */
1988 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
1989
1990 /* setup SIT bitmap from ckeckpoint pack */
1991 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
1992 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
1993
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02001994 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001995 if (!dst_bitmap)
1996 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001997
1998 /* init SIT information */
1999 sit_i->s_ops = &default_salloc_ops;
2000
2001 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2002 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
2003 sit_i->written_valid_blocks = le64_to_cpu(ckpt->valid_block_count);
2004 sit_i->sit_bitmap = dst_bitmap;
2005 sit_i->bitmap_size = bitmap_size;
2006 sit_i->dirty_sentries = 0;
2007 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2008 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2009 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2010 mutex_init(&sit_i->sentry_lock);
2011 return 0;
2012}
2013
2014static int build_free_segmap(struct f2fs_sb_info *sbi)
2015{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002016 struct free_segmap_info *free_i;
2017 unsigned int bitmap_size, sec_bitmap_size;
2018
2019 /* allocate memory for free segmap information */
2020 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2021 if (!free_i)
2022 return -ENOMEM;
2023
2024 SM_I(sbi)->free_info = free_i;
2025
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002026 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002027 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002028 if (!free_i->free_segmap)
2029 return -ENOMEM;
2030
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002031 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002032 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002033 if (!free_i->free_secmap)
2034 return -ENOMEM;
2035
2036 /* set all segments as dirty temporarily */
2037 memset(free_i->free_segmap, 0xff, bitmap_size);
2038 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2039
2040 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002041 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002042 free_i->free_segments = 0;
2043 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002044 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002045 return 0;
2046}
2047
2048static int build_curseg(struct f2fs_sb_info *sbi)
2049{
Namjae Jeon1042d602012-12-01 10:56:13 +09002050 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002051 int i;
2052
Fabian Frederickb434bab2014-06-23 18:39:15 +02002053 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002054 if (!array)
2055 return -ENOMEM;
2056
2057 SM_I(sbi)->curseg_array = array;
2058
2059 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2060 mutex_init(&array[i].curseg_mutex);
2061 array[i].sum_blk = kzalloc(PAGE_CACHE_SIZE, GFP_KERNEL);
2062 if (!array[i].sum_blk)
2063 return -ENOMEM;
2064 array[i].segno = NULL_SEGNO;
2065 array[i].next_blkoff = 0;
2066 }
2067 return restore_curseg_summaries(sbi);
2068}
2069
2070static void build_sit_entries(struct f2fs_sb_info *sbi)
2071{
2072 struct sit_info *sit_i = SIT_I(sbi);
2073 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
2074 struct f2fs_summary_block *sum = curseg->sum_blk;
Chao Yu74de5932013-11-22 09:09:59 +08002075 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2076 unsigned int i, start, end;
2077 unsigned int readed, start_blk = 0;
Jaegeuk Kim90a893c2014-09-22 16:21:07 -07002078 int nrpages = MAX_BIO_BLOCKS(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002079
Chao Yu74de5932013-11-22 09:09:59 +08002080 do {
Chao Yu26879fb2015-10-12 17:05:59 +08002081 readed = ra_meta_pages(sbi, start_blk, nrpages, META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002082
Chao Yu74de5932013-11-22 09:09:59 +08002083 start = start_blk * sit_i->sents_per_block;
2084 end = (start_blk + readed) * sit_i->sents_per_block;
2085
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002086 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002087 struct seg_entry *se = &sit_i->sentries[start];
2088 struct f2fs_sit_block *sit_blk;
2089 struct f2fs_sit_entry sit;
2090 struct page *page;
2091
2092 mutex_lock(&curseg->curseg_mutex);
2093 for (i = 0; i < sits_in_cursum(sum); i++) {
Chris Fries6c311ec2014-01-17 14:44:39 -06002094 if (le32_to_cpu(segno_in_journal(sum, i))
2095 == start) {
Chao Yu74de5932013-11-22 09:09:59 +08002096 sit = sit_in_journal(sum, i);
2097 mutex_unlock(&curseg->curseg_mutex);
2098 goto got_it;
2099 }
2100 }
2101 mutex_unlock(&curseg->curseg_mutex);
2102
2103 page = get_current_sit_page(sbi, start);
2104 sit_blk = (struct f2fs_sit_block *)page_address(page);
2105 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2106 f2fs_put_page(page, 1);
2107got_it:
2108 check_block_count(sbi, start, &sit);
2109 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002110
2111 /* build discard map only one time */
2112 memcpy(se->discard_map, se->cur_valid_map, SIT_VBLOCK_MAP_SIZE);
2113 sbi->discard_blks += sbi->blocks_per_seg - se->valid_blocks;
2114
Chao Yu74de5932013-11-22 09:09:59 +08002115 if (sbi->segs_per_sec > 1) {
2116 struct sec_entry *e = get_sec_entry(sbi, start);
2117 e->valid_blocks += se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002118 }
2119 }
Chao Yu74de5932013-11-22 09:09:59 +08002120 start_blk += readed;
2121 } while (start_blk < sit_blk_cnt);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002122}
2123
2124static void init_free_segmap(struct f2fs_sb_info *sbi)
2125{
2126 unsigned int start;
2127 int type;
2128
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002129 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002130 struct seg_entry *sentry = get_seg_entry(sbi, start);
2131 if (!sentry->valid_blocks)
2132 __set_free(sbi, start);
2133 }
2134
2135 /* set use the current segments */
2136 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2137 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2138 __set_test_and_inuse(sbi, curseg_t->segno);
2139 }
2140}
2141
2142static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2143{
2144 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2145 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002146 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002147 unsigned short valid_blocks;
2148
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002149 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002150 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002151 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2152 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002153 break;
2154 offset = segno + 1;
2155 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002156 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002157 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002158 if (valid_blocks > sbi->blocks_per_seg) {
2159 f2fs_bug_on(sbi, 1);
2160 continue;
2161 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002162 mutex_lock(&dirty_i->seglist_lock);
2163 __locate_dirty_segment(sbi, segno, DIRTY);
2164 mutex_unlock(&dirty_i->seglist_lock);
2165 }
2166}
2167
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002168static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002169{
2170 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002171 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002172
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002173 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002174 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002175 return -ENOMEM;
2176 return 0;
2177}
2178
2179static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2180{
2181 struct dirty_seglist_info *dirty_i;
2182 unsigned int bitmap_size, i;
2183
2184 /* allocate memory for dirty segments list information */
2185 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2186 if (!dirty_i)
2187 return -ENOMEM;
2188
2189 SM_I(sbi)->dirty_info = dirty_i;
2190 mutex_init(&dirty_i->seglist_lock);
2191
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002192 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002193
2194 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002195 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002196 if (!dirty_i->dirty_segmap[i])
2197 return -ENOMEM;
2198 }
2199
2200 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002201 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002202}
2203
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002204/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002205 * Update min, max modified time for cost-benefit GC algorithm
2206 */
2207static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2208{
2209 struct sit_info *sit_i = SIT_I(sbi);
2210 unsigned int segno;
2211
2212 mutex_lock(&sit_i->sentry_lock);
2213
2214 sit_i->min_mtime = LLONG_MAX;
2215
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002216 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002217 unsigned int i;
2218 unsigned long long mtime = 0;
2219
2220 for (i = 0; i < sbi->segs_per_sec; i++)
2221 mtime += get_seg_entry(sbi, segno + i)->mtime;
2222
2223 mtime = div_u64(mtime, sbi->segs_per_sec);
2224
2225 if (sit_i->min_mtime > mtime)
2226 sit_i->min_mtime = mtime;
2227 }
2228 sit_i->max_mtime = get_mtime(sbi);
2229 mutex_unlock(&sit_i->sentry_lock);
2230}
2231
2232int build_segment_manager(struct f2fs_sb_info *sbi)
2233{
2234 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2235 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002236 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002237 int err;
2238
2239 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2240 if (!sm_info)
2241 return -ENOMEM;
2242
2243 /* init sm info */
2244 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002245 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2246 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2247 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2248 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2249 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2250 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2251 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002252 sm_info->rec_prefree_segments = sm_info->main_segments *
2253 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim9b5f1362014-09-16 18:30:54 -07002254 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002255 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002256 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002257
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002258 INIT_LIST_HEAD(&sm_info->discard_list);
2259 sm_info->nr_discards = 0;
2260 sm_info->max_discards = 0;
2261
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002262 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2263
Chao Yu184a5cd2014-09-04 18:13:01 +08002264 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2265
Gu Zhengb270ad62014-04-11 17:49:55 +08002266 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002267 err = create_flush_cmd_control(sbi);
2268 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002269 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002270 }
2271
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002272 err = build_sit_info(sbi);
2273 if (err)
2274 return err;
2275 err = build_free_segmap(sbi);
2276 if (err)
2277 return err;
2278 err = build_curseg(sbi);
2279 if (err)
2280 return err;
2281
2282 /* reinit free segmap based on SIT */
2283 build_sit_entries(sbi);
2284
2285 init_free_segmap(sbi);
2286 err = build_dirty_segmap(sbi);
2287 if (err)
2288 return err;
2289
2290 init_min_max_mtime(sbi);
2291 return 0;
2292}
2293
2294static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2295 enum dirty_type dirty_type)
2296{
2297 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2298
2299 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002300 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002301 dirty_i->nr_dirty[dirty_type] = 0;
2302 mutex_unlock(&dirty_i->seglist_lock);
2303}
2304
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002305static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002306{
2307 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002308 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002309}
2310
2311static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2312{
2313 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2314 int i;
2315
2316 if (!dirty_i)
2317 return;
2318
2319 /* discard pre-free/dirty segments list */
2320 for (i = 0; i < NR_DIRTY_TYPE; i++)
2321 discard_dirty_segmap(sbi, i);
2322
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002323 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002324 SM_I(sbi)->dirty_info = NULL;
2325 kfree(dirty_i);
2326}
2327
2328static void destroy_curseg(struct f2fs_sb_info *sbi)
2329{
2330 struct curseg_info *array = SM_I(sbi)->curseg_array;
2331 int i;
2332
2333 if (!array)
2334 return;
2335 SM_I(sbi)->curseg_array = NULL;
2336 for (i = 0; i < NR_CURSEG_TYPE; i++)
2337 kfree(array[i].sum_blk);
2338 kfree(array);
2339}
2340
2341static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2342{
2343 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2344 if (!free_i)
2345 return;
2346 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002347 kvfree(free_i->free_segmap);
2348 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002349 kfree(free_i);
2350}
2351
2352static void destroy_sit_info(struct f2fs_sb_info *sbi)
2353{
2354 struct sit_info *sit_i = SIT_I(sbi);
2355 unsigned int start;
2356
2357 if (!sit_i)
2358 return;
2359
2360 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002361 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002362 kfree(sit_i->sentries[start].cur_valid_map);
2363 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002364 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002365 }
2366 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002367 kfree(sit_i->tmp_map);
2368
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002369 kvfree(sit_i->sentries);
2370 kvfree(sit_i->sec_entries);
2371 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002372
2373 SM_I(sbi)->sit_info = NULL;
2374 kfree(sit_i->sit_bitmap);
2375 kfree(sit_i);
2376}
2377
2378void destroy_segment_manager(struct f2fs_sb_info *sbi)
2379{
2380 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002381
Chao Yu3b03f722013-11-06 09:12:04 +08002382 if (!sm_info)
2383 return;
Gu Zheng2163d192014-04-27 14:21:33 +08002384 destroy_flush_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002385 destroy_dirty_segmap(sbi);
2386 destroy_curseg(sbi);
2387 destroy_free_segmap(sbi);
2388 destroy_sit_info(sbi);
2389 sbi->sm_info = NULL;
2390 kfree(sm_info);
2391}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002392
2393int __init create_segment_manager_caches(void)
2394{
2395 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002396 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002397 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002398 goto fail;
2399
2400 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002401 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002402 if (!sit_entry_set_slab)
2403 goto destory_discard_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002404
2405 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2406 sizeof(struct inmem_pages));
2407 if (!inmem_entry_slab)
2408 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002409 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002410
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002411destroy_sit_entry_set:
2412 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu184a5cd2014-09-04 18:13:01 +08002413destory_discard_entry:
2414 kmem_cache_destroy(discard_entry_slab);
2415fail:
2416 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002417}
2418
2419void destroy_segment_manager_caches(void)
2420{
Chao Yu184a5cd2014-09-04 18:13:01 +08002421 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002422 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002423 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002424}