blob: 53baf4a420dcea7b4d0a006c1fbbb5ee85f546c6 [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,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700877 MAIN_SEGS(sbi), *newseg + 1);
Jaegeuk Kim33afa7f2013-03-31 12:59:53 +0900878 if (segno - *newseg < sbi->segs_per_sec -
879 (*newseg % sbi->segs_per_sec))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900880 goto got_it;
881 }
882find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700883 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
884 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900885 if (dir == ALLOC_RIGHT) {
886 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700887 MAIN_SECS(sbi), 0);
888 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900889 } else {
890 go_left = 1;
891 left_start = hint - 1;
892 }
893 }
894 if (go_left == 0)
895 goto skip_left;
896
897 while (test_bit(left_start, free_i->free_secmap)) {
898 if (left_start > 0) {
899 left_start--;
900 continue;
901 }
902 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700903 MAIN_SECS(sbi), 0);
904 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900905 break;
906 }
907 secno = left_start;
908skip_left:
909 hint = secno;
910 segno = secno * sbi->segs_per_sec;
911 zoneno = secno / sbi->secs_per_zone;
912
913 /* give up on finding another zone */
914 if (!init)
915 goto got_it;
916 if (sbi->secs_per_zone == 1)
917 goto got_it;
918 if (zoneno == old_zoneno)
919 goto got_it;
920 if (dir == ALLOC_LEFT) {
921 if (!go_left && zoneno + 1 >= total_zones)
922 goto got_it;
923 if (go_left && zoneno == 0)
924 goto got_it;
925 }
926 for (i = 0; i < NR_CURSEG_TYPE; i++)
927 if (CURSEG_I(sbi, i)->zone == zoneno)
928 break;
929
930 if (i < NR_CURSEG_TYPE) {
931 /* zone is in user, try another */
932 if (go_left)
933 hint = zoneno * sbi->secs_per_zone - 1;
934 else if (zoneno + 1 >= total_zones)
935 hint = 0;
936 else
937 hint = (zoneno + 1) * sbi->secs_per_zone;
938 init = false;
939 goto find_other_zone;
940 }
941got_it:
942 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700943 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900944 __set_inuse(sbi, segno);
945 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +0800946 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900947}
948
949static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
950{
951 struct curseg_info *curseg = CURSEG_I(sbi, type);
952 struct summary_footer *sum_footer;
953
954 curseg->segno = curseg->next_segno;
955 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
956 curseg->next_blkoff = 0;
957 curseg->next_segno = NULL_SEGNO;
958
959 sum_footer = &(curseg->sum_blk->footer);
960 memset(sum_footer, 0, sizeof(struct summary_footer));
961 if (IS_DATASEG(type))
962 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
963 if (IS_NODESEG(type))
964 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
965 __set_sit_entry_type(sbi, type, curseg->segno, modified);
966}
967
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900968/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900969 * Allocate a current working segment.
970 * This function always allocates a free segment in LFS manner.
971 */
972static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
973{
974 struct curseg_info *curseg = CURSEG_I(sbi, type);
975 unsigned int segno = curseg->segno;
976 int dir = ALLOC_LEFT;
977
978 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +0800979 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900980 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
981 dir = ALLOC_RIGHT;
982
983 if (test_opt(sbi, NOHEAP))
984 dir = ALLOC_RIGHT;
985
986 get_new_segment(sbi, &segno, new_sec, dir);
987 curseg->next_segno = segno;
988 reset_curseg(sbi, type, 1);
989 curseg->alloc_type = LFS;
990}
991
992static void __next_free_blkoff(struct f2fs_sb_info *sbi,
993 struct curseg_info *seg, block_t start)
994{
995 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +0900996 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800997 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +0900998 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
999 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1000 int i, pos;
1001
1002 for (i = 0; i < entries; i++)
1003 target_map[i] = ckpt_map[i] | cur_map[i];
1004
1005 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1006
1007 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001008}
1009
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001010/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001011 * If a segment is written by LFS manner, next block offset is just obtained
1012 * by increasing the current block offset. However, if a segment is written by
1013 * SSR manner, next block offset obtained by calling __next_free_blkoff
1014 */
1015static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1016 struct curseg_info *seg)
1017{
1018 if (seg->alloc_type == SSR)
1019 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1020 else
1021 seg->next_blkoff++;
1022}
1023
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001024/*
arter97e1c42042014-08-06 23:22:50 +09001025 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001026 * manner, so it should recover the existing segment information of valid blocks
1027 */
1028static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1029{
1030 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1031 struct curseg_info *curseg = CURSEG_I(sbi, type);
1032 unsigned int new_segno = curseg->next_segno;
1033 struct f2fs_summary_block *sum_node;
1034 struct page *sum_page;
1035
1036 write_sum_page(sbi, curseg->sum_blk,
1037 GET_SUM_BLOCK(sbi, curseg->segno));
1038 __set_test_and_inuse(sbi, new_segno);
1039
1040 mutex_lock(&dirty_i->seglist_lock);
1041 __remove_dirty_segment(sbi, new_segno, PRE);
1042 __remove_dirty_segment(sbi, new_segno, DIRTY);
1043 mutex_unlock(&dirty_i->seglist_lock);
1044
1045 reset_curseg(sbi, type, 1);
1046 curseg->alloc_type = SSR;
1047 __next_free_blkoff(sbi, curseg, 0);
1048
1049 if (reuse) {
1050 sum_page = get_sum_page(sbi, new_segno);
1051 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1052 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1053 f2fs_put_page(sum_page, 1);
1054 }
1055}
1056
Jaegeuk Kim43727522013-02-04 15:11:17 +09001057static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1058{
1059 struct curseg_info *curseg = CURSEG_I(sbi, type);
1060 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1061
1062 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0))
1063 return v_ops->get_victim(sbi,
1064 &(curseg)->next_segno, BG_GC, type, SSR);
1065
1066 /* For data segments, let's do SSR more intensively */
1067 for (; type >= CURSEG_HOT_DATA; type--)
1068 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1069 BG_GC, type, SSR))
1070 return 1;
1071 return 0;
1072}
1073
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001074/*
1075 * flush out current segment and replace it with new segment
1076 * This function should be returned with success, otherwise BUG
1077 */
1078static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1079 int type, bool force)
1080{
1081 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001082
Gu Zheng7b405272013-08-19 09:41:15 +08001083 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001084 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001085 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001086 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001087 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1088 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001089 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1090 change_curseg(sbi, type, true);
1091 else
1092 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001093
1094 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001095}
1096
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001097static void __allocate_new_segments(struct f2fs_sb_info *sbi, int type)
1098{
1099 struct curseg_info *curseg = CURSEG_I(sbi, type);
1100 unsigned int old_segno;
1101
1102 old_segno = curseg->segno;
1103 SIT_I(sbi)->s_ops->allocate_segment(sbi, type, true);
1104 locate_dirty_segment(sbi, old_segno);
1105}
1106
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001107void allocate_new_segments(struct f2fs_sb_info *sbi)
1108{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001109 int i;
1110
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001111 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++)
1112 __allocate_new_segments(sbi, i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001113}
1114
1115static const struct segment_allocation default_salloc_ops = {
1116 .allocate_segment = allocate_segment_by_default,
1117};
1118
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001119int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1120{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001121 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1122 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001123 unsigned int start_segno, end_segno;
1124 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001125 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001126
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001127 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001128 return -EINVAL;
1129
Jan Kara9bd27ae2014-10-21 14:07:33 +02001130 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001131 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001132 goto out;
1133
1134 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001135 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1136 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1137 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001138 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001139 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001140
1141 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001142 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1143 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001144
1145 if (sbi->discard_blks == 0)
1146 break;
1147 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1148 cpc.trim_end = end_segno;
1149 else
1150 cpc.trim_end = min_t(unsigned int,
1151 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001152 BATCHED_TRIM_SEGMENTS(sbi),
1153 sbi->segs_per_sec) - 1, end_segno);
1154
1155 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001156 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001157 mutex_unlock(&sbi->gc_mutex);
1158 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001159out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001160 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001161 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001162}
1163
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001164static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1165{
1166 struct curseg_info *curseg = CURSEG_I(sbi, type);
1167 if (curseg->next_blkoff < sbi->blocks_per_seg)
1168 return true;
1169 return false;
1170}
1171
1172static int __get_segment_type_2(struct page *page, enum page_type p_type)
1173{
1174 if (p_type == DATA)
1175 return CURSEG_HOT_DATA;
1176 else
1177 return CURSEG_HOT_NODE;
1178}
1179
1180static int __get_segment_type_4(struct page *page, enum page_type p_type)
1181{
1182 if (p_type == DATA) {
1183 struct inode *inode = page->mapping->host;
1184
1185 if (S_ISDIR(inode->i_mode))
1186 return CURSEG_HOT_DATA;
1187 else
1188 return CURSEG_COLD_DATA;
1189 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001190 if (IS_DNODE(page) && is_cold_node(page))
1191 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001192 else
1193 return CURSEG_COLD_NODE;
1194 }
1195}
1196
1197static int __get_segment_type_6(struct page *page, enum page_type p_type)
1198{
1199 if (p_type == DATA) {
1200 struct inode *inode = page->mapping->host;
1201
1202 if (S_ISDIR(inode->i_mode))
1203 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001204 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001205 return CURSEG_COLD_DATA;
1206 else
1207 return CURSEG_WARM_DATA;
1208 } else {
1209 if (IS_DNODE(page))
1210 return is_cold_node(page) ? CURSEG_WARM_NODE :
1211 CURSEG_HOT_NODE;
1212 else
1213 return CURSEG_COLD_NODE;
1214 }
1215}
1216
1217static int __get_segment_type(struct page *page, enum page_type p_type)
1218{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001219 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001220 case 2:
1221 return __get_segment_type_2(page, p_type);
1222 case 4:
1223 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001224 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001225 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001226 f2fs_bug_on(F2FS_P_SB(page),
1227 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001228 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001229}
1230
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001231void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1232 block_t old_blkaddr, block_t *new_blkaddr,
1233 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001234{
1235 struct sit_info *sit_i = SIT_I(sbi);
1236 struct curseg_info *curseg;
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001237 bool direct_io = (type == CURSEG_DIRECT_IO);
1238
1239 type = direct_io ? CURSEG_WARM_DATA : type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001240
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001241 curseg = CURSEG_I(sbi, type);
1242
1243 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001244 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001245
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001246 /* direct_io'ed data is aligned to the segment for better performance */
Jaegeuk Kim47e70ca2015-08-11 10:17:27 -07001247 if (direct_io && curseg->next_blkoff &&
1248 !has_not_enough_free_secs(sbi, 0))
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001249 __allocate_new_segments(sbi, type);
1250
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001251 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001252
1253 /*
1254 * __add_sum_entry should be resided under the curseg_mutex
1255 * because, this function updates a summary entry in the
1256 * current summary block.
1257 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001258 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001259
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001260 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001261
1262 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001263
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001264 if (!__has_curseg_space(sbi, type))
1265 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001266 /*
1267 * SIT information should be updated before segment allocation,
1268 * since SSR needs latest valid block information.
1269 */
1270 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001271
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001272 mutex_unlock(&sit_i->sentry_lock);
1273
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001274 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001275 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1276
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001277 mutex_unlock(&curseg->curseg_mutex);
1278}
1279
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001280static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001281{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001282 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001283
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001284 allocate_data_block(fio->sbi, fio->page, fio->blk_addr,
1285 &fio->blk_addr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001286
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001287 /* writeout dirty page into bdev */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001288 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001289}
1290
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001291void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001292{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001293 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001294 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001295 .type = META,
Jaegeuk Kimcf04e8e2014-12-17 19:33:13 -08001296 .rw = WRITE_SYNC | REQ_META | REQ_PRIO,
1297 .blk_addr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001298 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001299 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001300 };
1301
Chao Yu2b947002015-10-12 17:04:21 +08001302 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
1303 fio.rw &= ~REQ_META;
1304
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001305 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001306 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001307}
1308
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001309void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001310{
1311 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001312
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001313 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001314 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001315}
1316
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001317void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001318{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001319 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001320 struct f2fs_summary sum;
1321 struct node_info ni;
1322
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001323 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001324 get_node_info(sbi, dn->nid, &ni);
1325 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001326 do_write_page(&sum, fio);
Jaegeuk Kime1509cf2014-12-30 22:57:55 -08001327 dn->data_blkaddr = fio->blk_addr;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001328}
1329
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001330void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001331{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001332 stat_inc_inplace_blocks(fio->sbi);
1333 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001334}
1335
Chao Yu528e3452015-05-28 19:15:35 +08001336static void __f2fs_replace_block(struct f2fs_sb_info *sbi,
1337 struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001338 block_t old_blkaddr, block_t new_blkaddr,
1339 bool recover_curseg)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001340{
1341 struct sit_info *sit_i = SIT_I(sbi);
1342 struct curseg_info *curseg;
1343 unsigned int segno, old_cursegno;
1344 struct seg_entry *se;
1345 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001346 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001347
1348 segno = GET_SEGNO(sbi, new_blkaddr);
1349 se = get_seg_entry(sbi, segno);
1350 type = se->type;
1351
Chao Yu19f106b2015-05-06 13:08:06 +08001352 if (!recover_curseg) {
1353 /* for recovery flow */
1354 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1355 if (old_blkaddr == NULL_ADDR)
1356 type = CURSEG_COLD_DATA;
1357 else
1358 type = CURSEG_WARM_DATA;
1359 }
1360 } else {
1361 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001362 type = CURSEG_WARM_DATA;
1363 }
Chao Yu19f106b2015-05-06 13:08:06 +08001364
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001365 curseg = CURSEG_I(sbi, type);
1366
1367 mutex_lock(&curseg->curseg_mutex);
1368 mutex_lock(&sit_i->sentry_lock);
1369
1370 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001371 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001372
1373 /* change the current segment */
1374 if (segno != curseg->segno) {
1375 curseg->next_segno = segno;
1376 change_curseg(sbi, type, true);
1377 }
1378
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001379 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001380 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001381
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001382 if (!recover_curseg)
1383 update_sit_entry(sbi, new_blkaddr, 1);
1384 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1385 update_sit_entry(sbi, old_blkaddr, -1);
1386
1387 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1388 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1389
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001390 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001391
Chao Yu19f106b2015-05-06 13:08:06 +08001392 if (recover_curseg) {
1393 if (old_cursegno != curseg->segno) {
1394 curseg->next_segno = old_cursegno;
1395 change_curseg(sbi, type, true);
1396 }
1397 curseg->next_blkoff = old_blkoff;
1398 }
1399
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001400 mutex_unlock(&sit_i->sentry_lock);
1401 mutex_unlock(&curseg->curseg_mutex);
1402}
1403
Chao Yu528e3452015-05-28 19:15:35 +08001404void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1405 block_t old_addr, block_t new_addr,
1406 unsigned char version, bool recover_curseg)
1407{
1408 struct f2fs_summary sum;
1409
1410 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1411
1412 __f2fs_replace_block(sbi, &sum, old_addr, new_addr, recover_curseg);
1413
1414 dn->data_blkaddr = new_addr;
1415 set_data_blkaddr(dn);
1416 f2fs_update_extent_cache(dn);
1417}
1418
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001419void f2fs_wait_on_page_writeback(struct page *page,
Yuan Zhong5514f0a2014-01-10 07:26:14 +00001420 enum page_type type)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001421{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001422 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001423 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1424
Chao Yudf0f8dc2014-03-22 14:57:23 +08001425 if (is_merged_page(sbi, page, type))
1426 f2fs_submit_merged_bio(sbi, type, WRITE);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001427 wait_on_page_writeback(page);
1428 }
1429}
1430
Chao Yu08b39fb2015-10-08 13:27:34 +08001431void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1432 block_t blkaddr)
1433{
1434 struct page *cpage;
1435
1436 if (blkaddr == NEW_ADDR)
1437 return;
1438
1439 f2fs_bug_on(sbi, blkaddr == NULL_ADDR);
1440
1441 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1442 if (cpage) {
1443 f2fs_wait_on_page_writeback(cpage, DATA);
1444 f2fs_put_page(cpage, 1);
1445 }
1446}
1447
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001448static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1449{
1450 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1451 struct curseg_info *seg_i;
1452 unsigned char *kaddr;
1453 struct page *page;
1454 block_t start;
1455 int i, j, offset;
1456
1457 start = start_sum_block(sbi);
1458
1459 page = get_meta_page(sbi, start++);
1460 kaddr = (unsigned char *)page_address(page);
1461
1462 /* Step 1: restore nat cache */
1463 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
1464 memcpy(&seg_i->sum_blk->n_nats, kaddr, SUM_JOURNAL_SIZE);
1465
1466 /* Step 2: restore sit cache */
1467 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
1468 memcpy(&seg_i->sum_blk->n_sits, kaddr + SUM_JOURNAL_SIZE,
1469 SUM_JOURNAL_SIZE);
1470 offset = 2 * SUM_JOURNAL_SIZE;
1471
1472 /* Step 3: restore summary entries */
1473 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1474 unsigned short blk_off;
1475 unsigned int segno;
1476
1477 seg_i = CURSEG_I(sbi, i);
1478 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1479 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1480 seg_i->next_segno = segno;
1481 reset_curseg(sbi, i, 0);
1482 seg_i->alloc_type = ckpt->alloc_type[i];
1483 seg_i->next_blkoff = blk_off;
1484
1485 if (seg_i->alloc_type == SSR)
1486 blk_off = sbi->blocks_per_seg;
1487
1488 for (j = 0; j < blk_off; j++) {
1489 struct f2fs_summary *s;
1490 s = (struct f2fs_summary *)(kaddr + offset);
1491 seg_i->sum_blk->entries[j] = *s;
1492 offset += SUMMARY_SIZE;
1493 if (offset + SUMMARY_SIZE <= PAGE_CACHE_SIZE -
1494 SUM_FOOTER_SIZE)
1495 continue;
1496
1497 f2fs_put_page(page, 1);
1498 page = NULL;
1499
1500 page = get_meta_page(sbi, start++);
1501 kaddr = (unsigned char *)page_address(page);
1502 offset = 0;
1503 }
1504 }
1505 f2fs_put_page(page, 1);
1506 return 0;
1507}
1508
1509static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1510{
1511 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1512 struct f2fs_summary_block *sum;
1513 struct curseg_info *curseg;
1514 struct page *new;
1515 unsigned short blk_off;
1516 unsigned int segno = 0;
1517 block_t blk_addr = 0;
1518
1519 /* get segment number and block addr */
1520 if (IS_DATASEG(type)) {
1521 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1522 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1523 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001524 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001525 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1526 else
1527 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1528 } else {
1529 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1530 CURSEG_HOT_NODE]);
1531 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1532 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001533 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001534 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1535 type - CURSEG_HOT_NODE);
1536 else
1537 blk_addr = GET_SUM_BLOCK(sbi, segno);
1538 }
1539
1540 new = get_meta_page(sbi, blk_addr);
1541 sum = (struct f2fs_summary_block *)page_address(new);
1542
1543 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001544 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001545 struct f2fs_summary *ns = &sum->entries[0];
1546 int i;
1547 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1548 ns->version = 0;
1549 ns->ofs_in_node = 0;
1550 }
1551 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001552 int err;
1553
1554 err = restore_node_summary(sbi, segno, sum);
1555 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001556 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001557 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001558 }
1559 }
1560 }
1561
1562 /* set uncompleted segment to curseg */
1563 curseg = CURSEG_I(sbi, type);
1564 mutex_lock(&curseg->curseg_mutex);
1565 memcpy(curseg->sum_blk, sum, PAGE_CACHE_SIZE);
1566 curseg->next_segno = segno;
1567 reset_curseg(sbi, type, 0);
1568 curseg->alloc_type = ckpt->alloc_type[type];
1569 curseg->next_blkoff = blk_off;
1570 mutex_unlock(&curseg->curseg_mutex);
1571 f2fs_put_page(new, 1);
1572 return 0;
1573}
1574
1575static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1576{
1577 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001578 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001579
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001580 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001581 int npages = npages_for_summary_flush(sbi, true);
1582
1583 if (npages >= 2)
1584 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001585 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001586
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001587 /* restore for compacted data summary */
1588 if (read_compacted_summaries(sbi))
1589 return -EINVAL;
1590 type = CURSEG_HOT_NODE;
1591 }
1592
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001593 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001594 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001595 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001596
Chao Yue4fc5fb2014-03-17 16:36:24 +08001597 for (; type <= CURSEG_COLD_NODE; type++) {
1598 err = read_normal_summaries(sbi, type);
1599 if (err)
1600 return err;
1601 }
1602
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001603 return 0;
1604}
1605
1606static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1607{
1608 struct page *page;
1609 unsigned char *kaddr;
1610 struct f2fs_summary *summary;
1611 struct curseg_info *seg_i;
1612 int written_size = 0;
1613 int i, j;
1614
1615 page = grab_meta_page(sbi, blkaddr++);
1616 kaddr = (unsigned char *)page_address(page);
1617
1618 /* Step 1: write nat cache */
1619 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
1620 memcpy(kaddr, &seg_i->sum_blk->n_nats, SUM_JOURNAL_SIZE);
1621 written_size += SUM_JOURNAL_SIZE;
1622
1623 /* Step 2: write sit cache */
1624 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
1625 memcpy(kaddr + written_size, &seg_i->sum_blk->n_sits,
1626 SUM_JOURNAL_SIZE);
1627 written_size += SUM_JOURNAL_SIZE;
1628
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001629 /* Step 3: write summary entries */
1630 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1631 unsigned short blkoff;
1632 seg_i = CURSEG_I(sbi, i);
1633 if (sbi->ckpt->alloc_type[i] == SSR)
1634 blkoff = sbi->blocks_per_seg;
1635 else
1636 blkoff = curseg_blkoff(sbi, i);
1637
1638 for (j = 0; j < blkoff; j++) {
1639 if (!page) {
1640 page = grab_meta_page(sbi, blkaddr++);
1641 kaddr = (unsigned char *)page_address(page);
1642 written_size = 0;
1643 }
1644 summary = (struct f2fs_summary *)(kaddr + written_size);
1645 *summary = seg_i->sum_blk->entries[j];
1646 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001647
1648 if (written_size + SUMMARY_SIZE <= PAGE_CACHE_SIZE -
1649 SUM_FOOTER_SIZE)
1650 continue;
1651
Chao Yue8d61a72013-10-24 15:08:28 +08001652 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001653 f2fs_put_page(page, 1);
1654 page = NULL;
1655 }
1656 }
Chao Yue8d61a72013-10-24 15:08:28 +08001657 if (page) {
1658 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001659 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08001660 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001661}
1662
1663static void write_normal_summaries(struct f2fs_sb_info *sbi,
1664 block_t blkaddr, int type)
1665{
1666 int i, end;
1667 if (IS_DATASEG(type))
1668 end = type + NR_CURSEG_DATA_TYPE;
1669 else
1670 end = type + NR_CURSEG_NODE_TYPE;
1671
1672 for (i = type; i < end; i++) {
1673 struct curseg_info *sum = CURSEG_I(sbi, i);
1674 mutex_lock(&sum->curseg_mutex);
1675 write_sum_page(sbi, sum->sum_blk, blkaddr + (i - type));
1676 mutex_unlock(&sum->curseg_mutex);
1677 }
1678}
1679
1680void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1681{
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001682 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001683 write_compacted_summaries(sbi, start_blk);
1684 else
1685 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1686}
1687
1688void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1689{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001690 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001691}
1692
1693int lookup_journal_in_cursum(struct f2fs_summary_block *sum, int type,
1694 unsigned int val, int alloc)
1695{
1696 int i;
1697
1698 if (type == NAT_JOURNAL) {
1699 for (i = 0; i < nats_in_cursum(sum); i++) {
1700 if (le32_to_cpu(nid_in_journal(sum, i)) == val)
1701 return i;
1702 }
Chao Yu855639d2015-12-01 11:42:54 +08001703 if (alloc && __has_cursum_space(sum, 1, NAT_JOURNAL))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001704 return update_nats_in_cursum(sum, 1);
1705 } else if (type == SIT_JOURNAL) {
1706 for (i = 0; i < sits_in_cursum(sum); i++)
1707 if (le32_to_cpu(segno_in_journal(sum, i)) == val)
1708 return i;
Chao Yu855639d2015-12-01 11:42:54 +08001709 if (alloc && __has_cursum_space(sum, 1, SIT_JOURNAL))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001710 return update_sits_in_cursum(sum, 1);
1711 }
1712 return -1;
1713}
1714
1715static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
1716 unsigned int segno)
1717{
Gu Zheng2cc22182014-10-20 17:45:49 +08001718 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001719}
1720
1721static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
1722 unsigned int start)
1723{
1724 struct sit_info *sit_i = SIT_I(sbi);
1725 struct page *src_page, *dst_page;
1726 pgoff_t src_off, dst_off;
1727 void *src_addr, *dst_addr;
1728
1729 src_off = current_sit_addr(sbi, start);
1730 dst_off = next_sit_addr(sbi, src_off);
1731
1732 /* get current sit block page without lock */
1733 src_page = get_meta_page(sbi, src_off);
1734 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001735 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001736
1737 src_addr = page_address(src_page);
1738 dst_addr = page_address(dst_page);
1739 memcpy(dst_addr, src_addr, PAGE_CACHE_SIZE);
1740
1741 set_page_dirty(dst_page);
1742 f2fs_put_page(src_page, 1);
1743
1744 set_to_next_sit(sit_i, start);
1745
1746 return dst_page;
1747}
1748
Chao Yu184a5cd2014-09-04 18:13:01 +08001749static struct sit_entry_set *grab_sit_entry_set(void)
1750{
1751 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001752 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08001753
1754 ses->entry_cnt = 0;
1755 INIT_LIST_HEAD(&ses->set_list);
1756 return ses;
1757}
1758
1759static void release_sit_entry_set(struct sit_entry_set *ses)
1760{
1761 list_del(&ses->set_list);
1762 kmem_cache_free(sit_entry_set_slab, ses);
1763}
1764
1765static void adjust_sit_entry_set(struct sit_entry_set *ses,
1766 struct list_head *head)
1767{
1768 struct sit_entry_set *next = ses;
1769
1770 if (list_is_last(&ses->set_list, head))
1771 return;
1772
1773 list_for_each_entry_continue(next, head, set_list)
1774 if (ses->entry_cnt <= next->entry_cnt)
1775 break;
1776
1777 list_move_tail(&ses->set_list, &next->set_list);
1778}
1779
1780static void add_sit_entry(unsigned int segno, struct list_head *head)
1781{
1782 struct sit_entry_set *ses;
1783 unsigned int start_segno = START_SEGNO(segno);
1784
1785 list_for_each_entry(ses, head, set_list) {
1786 if (ses->start_segno == start_segno) {
1787 ses->entry_cnt++;
1788 adjust_sit_entry_set(ses, head);
1789 return;
1790 }
1791 }
1792
1793 ses = grab_sit_entry_set();
1794
1795 ses->start_segno = start_segno;
1796 ses->entry_cnt++;
1797 list_add(&ses->set_list, head);
1798}
1799
1800static void add_sits_in_set(struct f2fs_sb_info *sbi)
1801{
1802 struct f2fs_sm_info *sm_info = SM_I(sbi);
1803 struct list_head *set_list = &sm_info->sit_entry_set;
1804 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08001805 unsigned int segno;
1806
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001807 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08001808 add_sit_entry(segno, set_list);
1809}
1810
1811static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001812{
1813 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
1814 struct f2fs_summary_block *sum = curseg->sum_blk;
1815 int i;
1816
Chao Yu184a5cd2014-09-04 18:13:01 +08001817 for (i = sits_in_cursum(sum) - 1; i >= 0; i--) {
1818 unsigned int segno;
1819 bool dirtied;
1820
1821 segno = le32_to_cpu(segno_in_journal(sum, i));
1822 dirtied = __mark_sit_entry_dirty(sbi, segno);
1823
1824 if (!dirtied)
1825 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001826 }
Chao Yu184a5cd2014-09-04 18:13:01 +08001827 update_sits_in_cursum(sum, -sits_in_cursum(sum));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001828}
1829
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001830/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001831 * CP calls this function, which flushes SIT entries including sit_journal,
1832 * and moves prefree segs to free segs.
1833 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001834void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001835{
1836 struct sit_info *sit_i = SIT_I(sbi);
1837 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
1838 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
1839 struct f2fs_summary_block *sum = curseg->sum_blk;
Chao Yu184a5cd2014-09-04 18:13:01 +08001840 struct sit_entry_set *ses, *tmp;
1841 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08001842 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001843 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001844
1845 mutex_lock(&curseg->curseg_mutex);
1846 mutex_lock(&sit_i->sentry_lock);
1847
Wanpeng Li2b11a742015-02-27 16:52:50 +08001848 if (!sit_i->dirty_sentries)
1849 goto out;
1850
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001851 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08001852 * add and account sit entries of dirty bitmap in sit entry
1853 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001854 */
Chao Yu184a5cd2014-09-04 18:13:01 +08001855 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001856
Chao Yu184a5cd2014-09-04 18:13:01 +08001857 /*
1858 * if there are no enough space in journal to store dirty sit
1859 * entries, remove all entries from journal and add and account
1860 * them in sit entry set.
1861 */
1862 if (!__has_cursum_space(sum, sit_i->dirty_sentries, SIT_JOURNAL))
1863 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001864
Chao Yu184a5cd2014-09-04 18:13:01 +08001865 /*
1866 * there are two steps to flush sit entries:
1867 * #1, flush sit entries to journal in current cold data summary block.
1868 * #2, flush sit entries to sit page.
1869 */
1870 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07001871 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08001872 struct f2fs_sit_block *raw_sit = NULL;
1873 unsigned int start_segno = ses->start_segno;
1874 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001875 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08001876 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001877
Chao Yu184a5cd2014-09-04 18:13:01 +08001878 if (to_journal &&
1879 !__has_cursum_space(sum, ses->entry_cnt, SIT_JOURNAL))
1880 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001881
Chao Yu184a5cd2014-09-04 18:13:01 +08001882 if (!to_journal) {
1883 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001884 raw_sit = page_address(page);
1885 }
1886
Chao Yu184a5cd2014-09-04 18:13:01 +08001887 /* flush dirty sit entries in region of current sit set */
1888 for_each_set_bit_from(segno, bitmap, end) {
1889 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001890
1891 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08001892
1893 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08001894 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001895 cpc->trim_start = segno;
1896 add_discard_addrs(sbi, cpc);
1897 }
Chao Yu184a5cd2014-09-04 18:13:01 +08001898
1899 if (to_journal) {
1900 offset = lookup_journal_in_cursum(sum,
1901 SIT_JOURNAL, segno, 1);
1902 f2fs_bug_on(sbi, offset < 0);
1903 segno_in_journal(sum, offset) =
1904 cpu_to_le32(segno);
1905 seg_info_to_raw_sit(se,
1906 &sit_in_journal(sum, offset));
1907 } else {
1908 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
1909 seg_info_to_raw_sit(se,
1910 &raw_sit->entries[sit_offset]);
1911 }
1912
1913 __clear_bit(segno, bitmap);
1914 sit_i->dirty_sentries--;
1915 ses->entry_cnt--;
1916 }
1917
1918 if (!to_journal)
1919 f2fs_put_page(page, 1);
1920
1921 f2fs_bug_on(sbi, ses->entry_cnt);
1922 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001923 }
Chao Yu184a5cd2014-09-04 18:13:01 +08001924
1925 f2fs_bug_on(sbi, !list_empty(head));
1926 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08001927out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001928 if (cpc->reason == CP_DISCARD) {
1929 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
1930 add_discard_addrs(sbi, cpc);
1931 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001932 mutex_unlock(&sit_i->sentry_lock);
1933 mutex_unlock(&curseg->curseg_mutex);
1934
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001935 set_prefree_as_free_segments(sbi);
1936}
1937
1938static int build_sit_info(struct f2fs_sb_info *sbi)
1939{
1940 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
1941 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1942 struct sit_info *sit_i;
1943 unsigned int sit_segs, start;
1944 char *src_bitmap, *dst_bitmap;
1945 unsigned int bitmap_size;
1946
1947 /* allocate memory for SIT information */
1948 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
1949 if (!sit_i)
1950 return -ENOMEM;
1951
1952 SM_I(sbi)->sit_info = sit_i;
1953
Jaegeuk Kim39307a82015-09-22 13:50:47 -07001954 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
1955 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001956 if (!sit_i->sentries)
1957 return -ENOMEM;
1958
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001959 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07001960 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001961 if (!sit_i->dirty_sentries_bitmap)
1962 return -ENOMEM;
1963
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001964 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001965 sit_i->sentries[start].cur_valid_map
1966 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
1967 sit_i->sentries[start].ckpt_valid_map
1968 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001969 sit_i->sentries[start].discard_map
1970 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
1971 if (!sit_i->sentries[start].cur_valid_map ||
1972 !sit_i->sentries[start].ckpt_valid_map ||
1973 !sit_i->sentries[start].discard_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001974 return -ENOMEM;
1975 }
1976
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001977 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
1978 if (!sit_i->tmp_map)
1979 return -ENOMEM;
1980
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001981 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07001982 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
1983 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001984 if (!sit_i->sec_entries)
1985 return -ENOMEM;
1986 }
1987
1988 /* get information related with SIT */
1989 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
1990
1991 /* setup SIT bitmap from ckeckpoint pack */
1992 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
1993 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
1994
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02001995 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001996 if (!dst_bitmap)
1997 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001998
1999 /* init SIT information */
2000 sit_i->s_ops = &default_salloc_ops;
2001
2002 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2003 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
2004 sit_i->written_valid_blocks = le64_to_cpu(ckpt->valid_block_count);
2005 sit_i->sit_bitmap = dst_bitmap;
2006 sit_i->bitmap_size = bitmap_size;
2007 sit_i->dirty_sentries = 0;
2008 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2009 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2010 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2011 mutex_init(&sit_i->sentry_lock);
2012 return 0;
2013}
2014
2015static int build_free_segmap(struct f2fs_sb_info *sbi)
2016{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002017 struct free_segmap_info *free_i;
2018 unsigned int bitmap_size, sec_bitmap_size;
2019
2020 /* allocate memory for free segmap information */
2021 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2022 if (!free_i)
2023 return -ENOMEM;
2024
2025 SM_I(sbi)->free_info = free_i;
2026
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002027 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002028 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002029 if (!free_i->free_segmap)
2030 return -ENOMEM;
2031
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002032 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002033 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002034 if (!free_i->free_secmap)
2035 return -ENOMEM;
2036
2037 /* set all segments as dirty temporarily */
2038 memset(free_i->free_segmap, 0xff, bitmap_size);
2039 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2040
2041 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002042 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002043 free_i->free_segments = 0;
2044 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002045 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002046 return 0;
2047}
2048
2049static int build_curseg(struct f2fs_sb_info *sbi)
2050{
Namjae Jeon1042d602012-12-01 10:56:13 +09002051 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002052 int i;
2053
Fabian Frederickb434bab2014-06-23 18:39:15 +02002054 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002055 if (!array)
2056 return -ENOMEM;
2057
2058 SM_I(sbi)->curseg_array = array;
2059
2060 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2061 mutex_init(&array[i].curseg_mutex);
2062 array[i].sum_blk = kzalloc(PAGE_CACHE_SIZE, GFP_KERNEL);
2063 if (!array[i].sum_blk)
2064 return -ENOMEM;
2065 array[i].segno = NULL_SEGNO;
2066 array[i].next_blkoff = 0;
2067 }
2068 return restore_curseg_summaries(sbi);
2069}
2070
2071static void build_sit_entries(struct f2fs_sb_info *sbi)
2072{
2073 struct sit_info *sit_i = SIT_I(sbi);
2074 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
2075 struct f2fs_summary_block *sum = curseg->sum_blk;
Chao Yu74de5932013-11-22 09:09:59 +08002076 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2077 unsigned int i, start, end;
2078 unsigned int readed, start_blk = 0;
Jaegeuk Kim90a893c2014-09-22 16:21:07 -07002079 int nrpages = MAX_BIO_BLOCKS(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002080
Chao Yu74de5932013-11-22 09:09:59 +08002081 do {
Chao Yu26879fb2015-10-12 17:05:59 +08002082 readed = ra_meta_pages(sbi, start_blk, nrpages, META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002083
Chao Yu74de5932013-11-22 09:09:59 +08002084 start = start_blk * sit_i->sents_per_block;
2085 end = (start_blk + readed) * sit_i->sents_per_block;
2086
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002087 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002088 struct seg_entry *se = &sit_i->sentries[start];
2089 struct f2fs_sit_block *sit_blk;
2090 struct f2fs_sit_entry sit;
2091 struct page *page;
2092
2093 mutex_lock(&curseg->curseg_mutex);
2094 for (i = 0; i < sits_in_cursum(sum); i++) {
Chris Fries6c311ec2014-01-17 14:44:39 -06002095 if (le32_to_cpu(segno_in_journal(sum, i))
2096 == start) {
Chao Yu74de5932013-11-22 09:09:59 +08002097 sit = sit_in_journal(sum, i);
2098 mutex_unlock(&curseg->curseg_mutex);
2099 goto got_it;
2100 }
2101 }
2102 mutex_unlock(&curseg->curseg_mutex);
2103
2104 page = get_current_sit_page(sbi, start);
2105 sit_blk = (struct f2fs_sit_block *)page_address(page);
2106 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2107 f2fs_put_page(page, 1);
2108got_it:
2109 check_block_count(sbi, start, &sit);
2110 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002111
2112 /* build discard map only one time */
2113 memcpy(se->discard_map, se->cur_valid_map, SIT_VBLOCK_MAP_SIZE);
2114 sbi->discard_blks += sbi->blocks_per_seg - se->valid_blocks;
2115
Chao Yu74de5932013-11-22 09:09:59 +08002116 if (sbi->segs_per_sec > 1) {
2117 struct sec_entry *e = get_sec_entry(sbi, start);
2118 e->valid_blocks += se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002119 }
2120 }
Chao Yu74de5932013-11-22 09:09:59 +08002121 start_blk += readed;
2122 } while (start_blk < sit_blk_cnt);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002123}
2124
2125static void init_free_segmap(struct f2fs_sb_info *sbi)
2126{
2127 unsigned int start;
2128 int type;
2129
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002130 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002131 struct seg_entry *sentry = get_seg_entry(sbi, start);
2132 if (!sentry->valid_blocks)
2133 __set_free(sbi, start);
2134 }
2135
2136 /* set use the current segments */
2137 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2138 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2139 __set_test_and_inuse(sbi, curseg_t->segno);
2140 }
2141}
2142
2143static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2144{
2145 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2146 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002147 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002148 unsigned short valid_blocks;
2149
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002150 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002151 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002152 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2153 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002154 break;
2155 offset = segno + 1;
2156 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002157 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002158 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002159 if (valid_blocks > sbi->blocks_per_seg) {
2160 f2fs_bug_on(sbi, 1);
2161 continue;
2162 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002163 mutex_lock(&dirty_i->seglist_lock);
2164 __locate_dirty_segment(sbi, segno, DIRTY);
2165 mutex_unlock(&dirty_i->seglist_lock);
2166 }
2167}
2168
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002169static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002170{
2171 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002172 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002173
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002174 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002175 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002176 return -ENOMEM;
2177 return 0;
2178}
2179
2180static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2181{
2182 struct dirty_seglist_info *dirty_i;
2183 unsigned int bitmap_size, i;
2184
2185 /* allocate memory for dirty segments list information */
2186 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2187 if (!dirty_i)
2188 return -ENOMEM;
2189
2190 SM_I(sbi)->dirty_info = dirty_i;
2191 mutex_init(&dirty_i->seglist_lock);
2192
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002193 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002194
2195 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002196 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002197 if (!dirty_i->dirty_segmap[i])
2198 return -ENOMEM;
2199 }
2200
2201 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002202 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002203}
2204
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002205/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002206 * Update min, max modified time for cost-benefit GC algorithm
2207 */
2208static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2209{
2210 struct sit_info *sit_i = SIT_I(sbi);
2211 unsigned int segno;
2212
2213 mutex_lock(&sit_i->sentry_lock);
2214
2215 sit_i->min_mtime = LLONG_MAX;
2216
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002217 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002218 unsigned int i;
2219 unsigned long long mtime = 0;
2220
2221 for (i = 0; i < sbi->segs_per_sec; i++)
2222 mtime += get_seg_entry(sbi, segno + i)->mtime;
2223
2224 mtime = div_u64(mtime, sbi->segs_per_sec);
2225
2226 if (sit_i->min_mtime > mtime)
2227 sit_i->min_mtime = mtime;
2228 }
2229 sit_i->max_mtime = get_mtime(sbi);
2230 mutex_unlock(&sit_i->sentry_lock);
2231}
2232
2233int build_segment_manager(struct f2fs_sb_info *sbi)
2234{
2235 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2236 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002237 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002238 int err;
2239
2240 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2241 if (!sm_info)
2242 return -ENOMEM;
2243
2244 /* init sm info */
2245 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002246 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2247 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2248 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2249 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2250 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2251 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2252 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002253 sm_info->rec_prefree_segments = sm_info->main_segments *
2254 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim9b5f1362014-09-16 18:30:54 -07002255 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002256 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002257 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002258
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002259 INIT_LIST_HEAD(&sm_info->discard_list);
2260 sm_info->nr_discards = 0;
2261 sm_info->max_discards = 0;
2262
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002263 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2264
Chao Yu184a5cd2014-09-04 18:13:01 +08002265 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2266
Gu Zhengb270ad62014-04-11 17:49:55 +08002267 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002268 err = create_flush_cmd_control(sbi);
2269 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002270 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002271 }
2272
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002273 err = build_sit_info(sbi);
2274 if (err)
2275 return err;
2276 err = build_free_segmap(sbi);
2277 if (err)
2278 return err;
2279 err = build_curseg(sbi);
2280 if (err)
2281 return err;
2282
2283 /* reinit free segmap based on SIT */
2284 build_sit_entries(sbi);
2285
2286 init_free_segmap(sbi);
2287 err = build_dirty_segmap(sbi);
2288 if (err)
2289 return err;
2290
2291 init_min_max_mtime(sbi);
2292 return 0;
2293}
2294
2295static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2296 enum dirty_type dirty_type)
2297{
2298 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2299
2300 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002301 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002302 dirty_i->nr_dirty[dirty_type] = 0;
2303 mutex_unlock(&dirty_i->seglist_lock);
2304}
2305
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002306static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002307{
2308 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002309 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002310}
2311
2312static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2313{
2314 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2315 int i;
2316
2317 if (!dirty_i)
2318 return;
2319
2320 /* discard pre-free/dirty segments list */
2321 for (i = 0; i < NR_DIRTY_TYPE; i++)
2322 discard_dirty_segmap(sbi, i);
2323
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002324 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002325 SM_I(sbi)->dirty_info = NULL;
2326 kfree(dirty_i);
2327}
2328
2329static void destroy_curseg(struct f2fs_sb_info *sbi)
2330{
2331 struct curseg_info *array = SM_I(sbi)->curseg_array;
2332 int i;
2333
2334 if (!array)
2335 return;
2336 SM_I(sbi)->curseg_array = NULL;
2337 for (i = 0; i < NR_CURSEG_TYPE; i++)
2338 kfree(array[i].sum_blk);
2339 kfree(array);
2340}
2341
2342static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2343{
2344 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2345 if (!free_i)
2346 return;
2347 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002348 kvfree(free_i->free_segmap);
2349 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002350 kfree(free_i);
2351}
2352
2353static void destroy_sit_info(struct f2fs_sb_info *sbi)
2354{
2355 struct sit_info *sit_i = SIT_I(sbi);
2356 unsigned int start;
2357
2358 if (!sit_i)
2359 return;
2360
2361 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002362 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002363 kfree(sit_i->sentries[start].cur_valid_map);
2364 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002365 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002366 }
2367 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002368 kfree(sit_i->tmp_map);
2369
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002370 kvfree(sit_i->sentries);
2371 kvfree(sit_i->sec_entries);
2372 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002373
2374 SM_I(sbi)->sit_info = NULL;
2375 kfree(sit_i->sit_bitmap);
2376 kfree(sit_i);
2377}
2378
2379void destroy_segment_manager(struct f2fs_sb_info *sbi)
2380{
2381 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002382
Chao Yu3b03f722013-11-06 09:12:04 +08002383 if (!sm_info)
2384 return;
Gu Zheng2163d192014-04-27 14:21:33 +08002385 destroy_flush_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002386 destroy_dirty_segmap(sbi);
2387 destroy_curseg(sbi);
2388 destroy_free_segmap(sbi);
2389 destroy_sit_info(sbi);
2390 sbi->sm_info = NULL;
2391 kfree(sm_info);
2392}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002393
2394int __init create_segment_manager_caches(void)
2395{
2396 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002397 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002398 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002399 goto fail;
2400
2401 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002402 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002403 if (!sit_entry_set_slab)
2404 goto destory_discard_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002405
2406 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2407 sizeof(struct inmem_pages));
2408 if (!inmem_entry_slab)
2409 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002410 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002411
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002412destroy_sit_entry_set:
2413 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu184a5cd2014-09-04 18:13:01 +08002414destory_discard_entry:
2415 kmem_cache_destroy(discard_entry_slab);
2416fail:
2417 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002418}
2419
2420void destroy_segment_manager_caches(void)
2421{
Chao Yu184a5cd2014-09-04 18:13:01 +08002422 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002423 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002424 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002425}