blob: ad5da895260a20d8dda181bdf8b3e2341e689b56 [file] [log] [blame]
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002 * fs/f2fs/segment.c
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/fs.h>
12#include <linux/f2fs_fs.h>
13#include <linux/bio.h>
14#include <linux/blkdev.h>
Geert Uytterhoeven690e4a32012-12-19 22:19:30 +010015#include <linux/prefetch.h>
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +090016#include <linux/kthread.h>
Chao Yu74de5932013-11-22 09:09:59 +080017#include <linux/swap.h>
Jaegeuk Kim60b99b42015-10-05 14:49:57 -070018#include <linux/timer.h>
Jaegeuk Kim351df4b2012-11-02 17:09:16 +090019
20#include "f2fs.h"
21#include "segment.h"
22#include "node.h"
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -080023#include "trace.h"
Namjae Jeon6ec178d2013-04-23 17:51:43 +090024#include <trace/events/f2fs.h>
Jaegeuk Kim351df4b2012-11-02 17:09:16 +090025
Changman Lee9a7f1432013-11-15 10:42:51 +090026#define __reverse_ffz(x) __reverse_ffs(~(x))
27
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090028static struct kmem_cache *discard_entry_slab;
Chao Yu184a5cd2014-09-04 18:13:01 +080029static struct kmem_cache *sit_entry_set_slab;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -070030static struct kmem_cache *inmem_entry_slab;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090031
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070032static unsigned long __reverse_ulong(unsigned char *str)
33{
34 unsigned long tmp = 0;
35 int shift = 24, idx = 0;
36
37#if BITS_PER_LONG == 64
38 shift = 56;
39#endif
40 while (shift >= 0) {
41 tmp |= (unsigned long)str[idx++] << shift;
42 shift -= BITS_PER_BYTE;
43 }
44 return tmp;
45}
46
Changman Lee9a7f1432013-11-15 10:42:51 +090047/*
48 * __reverse_ffs is copied from include/asm-generic/bitops/__ffs.h since
49 * MSB and LSB are reversed in a byte by f2fs_set_bit.
50 */
51static inline unsigned long __reverse_ffs(unsigned long word)
52{
53 int num = 0;
54
55#if BITS_PER_LONG == 64
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070056 if ((word & 0xffffffff00000000UL) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090057 num += 32;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070058 else
Changman Lee9a7f1432013-11-15 10:42:51 +090059 word >>= 32;
Changman Lee9a7f1432013-11-15 10:42:51 +090060#endif
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070061 if ((word & 0xffff0000) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090062 num += 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070063 else
Changman Lee9a7f1432013-11-15 10:42:51 +090064 word >>= 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070065
66 if ((word & 0xff00) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090067 num += 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070068 else
Changman Lee9a7f1432013-11-15 10:42:51 +090069 word >>= 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070070
Changman Lee9a7f1432013-11-15 10:42:51 +090071 if ((word & 0xf0) == 0)
72 num += 4;
73 else
74 word >>= 4;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070075
Changman Lee9a7f1432013-11-15 10:42:51 +090076 if ((word & 0xc) == 0)
77 num += 2;
78 else
79 word >>= 2;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070080
Changman Lee9a7f1432013-11-15 10:42:51 +090081 if ((word & 0x2) == 0)
82 num += 1;
83 return num;
84}
85
86/*
arter97e1c42042014-08-06 23:22:50 +090087 * __find_rev_next(_zero)_bit is copied from lib/find_next_bit.c because
Changman Lee9a7f1432013-11-15 10:42:51 +090088 * f2fs_set_bit makes MSB and LSB reversed in a byte.
Fan Li692223d2015-11-12 08:43:04 +080089 * @size must be integral times of unsigned long.
Changman Lee9a7f1432013-11-15 10:42:51 +090090 * Example:
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070091 * MSB <--> LSB
92 * f2fs_set_bit(0, bitmap) => 1000 0000
93 * f2fs_set_bit(7, bitmap) => 0000 0001
Changman Lee9a7f1432013-11-15 10:42:51 +090094 */
95static unsigned long __find_rev_next_bit(const unsigned long *addr,
96 unsigned long size, unsigned long offset)
97{
98 const unsigned long *p = addr + BIT_WORD(offset);
Fan Li692223d2015-11-12 08:43:04 +080099 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900100 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900101
102 if (offset >= size)
103 return size;
104
Fan Li692223d2015-11-12 08:43:04 +0800105 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900106 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900107
Fan Li692223d2015-11-12 08:43:04 +0800108 while (1) {
109 if (*p == 0)
110 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700111
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700112 tmp = __reverse_ulong((unsigned char *)p);
Fan Li692223d2015-11-12 08:43:04 +0800113
114 tmp &= ~0UL >> offset;
115 if (size < BITS_PER_LONG)
116 tmp &= (~0UL << (BITS_PER_LONG - size));
Changman Lee9a7f1432013-11-15 10:42:51 +0900117 if (tmp)
Fan Li692223d2015-11-12 08:43:04 +0800118 goto found;
119pass:
120 if (size <= BITS_PER_LONG)
121 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900122 size -= BITS_PER_LONG;
Fan Li692223d2015-11-12 08:43:04 +0800123 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700124 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900125 }
Fan Li692223d2015-11-12 08:43:04 +0800126 return result;
127found:
128 return result - size + __reverse_ffs(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900129}
130
131static unsigned long __find_rev_next_zero_bit(const unsigned long *addr,
132 unsigned long size, unsigned long offset)
133{
134 const unsigned long *p = addr + BIT_WORD(offset);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800135 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900136 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900137
138 if (offset >= size)
139 return size;
140
Jaegeuk Kim80609442015-12-04 16:51:13 -0800141 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900142 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900143
Jaegeuk Kim80609442015-12-04 16:51:13 -0800144 while (1) {
145 if (*p == ~0UL)
146 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700147
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700148 tmp = __reverse_ulong((unsigned char *)p);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800149
150 if (offset)
151 tmp |= ~0UL << (BITS_PER_LONG - offset);
152 if (size < BITS_PER_LONG)
153 tmp |= ~0UL >> size;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700154 if (tmp != ~0UL)
Jaegeuk Kim80609442015-12-04 16:51:13 -0800155 goto found;
156pass:
157 if (size <= BITS_PER_LONG)
158 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900159 size -= BITS_PER_LONG;
Jaegeuk Kim80609442015-12-04 16:51:13 -0800160 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700161 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900162 }
Jaegeuk Kim80609442015-12-04 16:51:13 -0800163 return result;
164found:
165 return result - size + __reverse_ffz(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900166}
167
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700168void register_inmem_page(struct inode *inode, struct page *page)
169{
170 struct f2fs_inode_info *fi = F2FS_I(inode);
171 struct inmem_pages *new;
Jaegeuk Kim9be32d72014-12-05 10:39:49 -0800172
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -0800173 f2fs_trace_pid(page);
Jaegeuk Kim0722b102014-12-05 11:58:02 -0800174
Chao Yudecd36b2015-08-07 18:42:09 +0800175 set_page_private(page, (unsigned long)ATOMIC_WRITTEN_PAGE);
176 SetPagePrivate(page);
177
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700178 new = f2fs_kmem_cache_alloc(inmem_entry_slab, GFP_NOFS);
179
180 /* add atomic page indices to the list */
181 new->page = page;
182 INIT_LIST_HEAD(&new->list);
Chao Yudecd36b2015-08-07 18:42:09 +0800183
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700184 /* increase reference count with clean state */
185 mutex_lock(&fi->inmem_lock);
186 get_page(page);
187 list_add_tail(&new->list, &fi->inmem_pages);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800188 inc_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700189 mutex_unlock(&fi->inmem_lock);
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700190
191 trace_f2fs_register_inmem_page(page, INMEM);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700192}
193
Chao Yu28bc1062016-02-06 14:40:34 +0800194static int __revoke_inmem_pages(struct inode *inode,
195 struct list_head *head, bool drop, bool recover)
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700196{
Chao Yu28bc1062016-02-06 14:40:34 +0800197 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700198 struct inmem_pages *cur, *tmp;
Chao Yu28bc1062016-02-06 14:40:34 +0800199 int err = 0;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700200
Chao Yu29b96b52016-02-06 14:38:29 +0800201 list_for_each_entry_safe(cur, tmp, head, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800202 struct page *page = cur->page;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700203
Chao Yu28bc1062016-02-06 14:40:34 +0800204 if (drop)
205 trace_f2fs_commit_inmem_page(page, INMEM_DROP);
206
207 lock_page(page);
208
209 if (recover) {
210 struct dnode_of_data dn;
211 struct node_info ni;
212
213 trace_f2fs_commit_inmem_page(page, INMEM_REVOKE);
214
215 set_new_dnode(&dn, inode, NULL, NULL, 0);
216 if (get_dnode_of_data(&dn, page->index, LOOKUP_NODE)) {
217 err = -EAGAIN;
218 goto next;
219 }
220 get_node_info(sbi, dn.nid, &ni);
221 f2fs_replace_block(sbi, &dn, dn.data_blkaddr,
222 cur->old_addr, ni.version, true, true);
223 f2fs_put_dnode(&dn);
224 }
225next:
226 ClearPageUptodate(page);
227 set_page_private(page, 0);
228 ClearPageUptodate(page);
229 f2fs_put_page(page, 1);
Chao Yudecd36b2015-08-07 18:42:09 +0800230
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700231 list_del(&cur->list);
232 kmem_cache_free(inmem_entry_slab, cur);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800233 dec_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700234 }
Chao Yu28bc1062016-02-06 14:40:34 +0800235 return err;
Chao Yu29b96b52016-02-06 14:38:29 +0800236}
237
238void drop_inmem_pages(struct inode *inode)
239{
240 struct f2fs_inode_info *fi = F2FS_I(inode);
241
242 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800243 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
Chao Yu29b96b52016-02-06 14:38:29 +0800244 mutex_unlock(&fi->inmem_lock);
245}
246
Chao Yu28bc1062016-02-06 14:40:34 +0800247static int __commit_inmem_pages(struct inode *inode,
248 struct list_head *revoke_list)
Chao Yu29b96b52016-02-06 14:38:29 +0800249{
250 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
251 struct f2fs_inode_info *fi = F2FS_I(inode);
252 struct inmem_pages *cur, *tmp;
253 struct f2fs_io_info fio = {
254 .sbi = sbi,
255 .type = DATA,
256 .rw = WRITE_SYNC | REQ_PRIO,
257 .encrypted_page = NULL,
258 };
259 bool submit_bio = false;
260 int err = 0;
261
262 list_for_each_entry_safe(cur, tmp, &fi->inmem_pages, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800263 struct page *page = cur->page;
264
265 lock_page(page);
266 if (page->mapping == inode->i_mapping) {
267 trace_f2fs_commit_inmem_page(page, INMEM);
268
269 set_page_dirty(page);
270 f2fs_wait_on_page_writeback(page, DATA, true);
271 if (clear_page_dirty_for_io(page))
Chao Yu29b96b52016-02-06 14:38:29 +0800272 inode_dec_dirty_pages(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800273
274 fio.page = page;
Chao Yu29b96b52016-02-06 14:38:29 +0800275 err = do_write_data_page(&fio);
276 if (err) {
Chao Yu28bc1062016-02-06 14:40:34 +0800277 unlock_page(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800278 break;
279 }
Chao Yu28bc1062016-02-06 14:40:34 +0800280
281 /* record old blkaddr for revoking */
282 cur->old_addr = fio.old_blkaddr;
283
284 clear_cold_data(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800285 submit_bio = true;
286 }
Chao Yu28bc1062016-02-06 14:40:34 +0800287 unlock_page(page);
288 list_move_tail(&cur->list, revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800289 }
290
291 if (submit_bio)
292 f2fs_submit_merged_bio_cond(sbi, inode, NULL, 0, DATA, WRITE);
Chao Yu28bc1062016-02-06 14:40:34 +0800293
294 if (!err)
295 __revoke_inmem_pages(inode, revoke_list, false, false);
296
Chao Yu29b96b52016-02-06 14:38:29 +0800297 return err;
298}
299
300int commit_inmem_pages(struct inode *inode)
301{
302 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
303 struct f2fs_inode_info *fi = F2FS_I(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800304 struct list_head revoke_list;
305 int err;
Chao Yu29b96b52016-02-06 14:38:29 +0800306
Chao Yu28bc1062016-02-06 14:40:34 +0800307 INIT_LIST_HEAD(&revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800308 f2fs_balance_fs(sbi, true);
309 f2fs_lock_op(sbi);
310
311 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800312 err = __commit_inmem_pages(inode, &revoke_list);
313 if (err) {
314 int ret;
315 /*
316 * try to revoke all committed pages, but still we could fail
317 * due to no memory or other reason, if that happened, EAGAIN
318 * will be returned, which means in such case, transaction is
319 * already not integrity, caller should use journal to do the
320 * recovery or rewrite & commit last transaction. For other
321 * error number, revoking was done by filesystem itself.
322 */
323 ret = __revoke_inmem_pages(inode, &revoke_list, false, true);
324 if (ret)
325 err = ret;
326
327 /* drop all uncommitted pages */
328 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
329 }
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700330 mutex_unlock(&fi->inmem_lock);
331
Chao Yu29b96b52016-02-06 14:38:29 +0800332 f2fs_unlock_op(sbi);
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700333 return err;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700334}
335
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900336/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900337 * This function balances dirty node and dentry pages.
338 * In addition, it controls garbage collection.
339 */
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800340void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900341{
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800342 if (!need)
343 return;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900344 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900345 * We should do GC or end up with checkpoint, if there are so many dirty
346 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900347 */
Jaegeuk Kim43727522013-02-04 15:11:17 +0900348 if (has_not_enough_free_secs(sbi, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900349 mutex_lock(&sbi->gc_mutex);
Chao Yud530d4d2015-10-05 22:22:44 +0800350 f2fs_gc(sbi, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900351 }
352}
353
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900354void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
355{
Chao Yu1dcc3362015-02-05 17:57:31 +0800356 /* try to shrink extent cache when there is no enough memory */
Jaegeuk Kim554df792015-06-19 13:41:23 -0700357 if (!available_free_memory(sbi, EXTENT_CACHE))
358 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800359
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700360 /* check the # of cached NAT entries */
361 if (!available_free_memory(sbi, NAT_ENTRIES))
362 try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
363
Chao Yu31696582015-07-28 18:33:46 +0800364 if (!available_free_memory(sbi, FREE_NIDS))
365 try_to_free_nids(sbi, NAT_ENTRY_PER_BLOCK * FREE_NID_PAGES);
366
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700367 /* checkpoint is the only way to shrink partial cached entries */
368 if (!available_free_memory(sbi, NAT_ENTRIES) ||
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700369 !available_free_memory(sbi, INO_ENTRIES) ||
Chao Yu7d768d22016-01-18 18:31:18 +0800370 excess_prefree_segs(sbi) ||
371 excess_dirty_nats(sbi) ||
Jaegeuk Kimd0239e12016-01-08 16:57:48 -0800372 (is_idle(sbi) && f2fs_time_over(sbi, CP_TIME))) {
Chao Yu36b35a02015-12-17 17:13:28 +0800373 if (test_opt(sbi, DATA_FLUSH))
374 sync_dirty_inodes(sbi, FILE_INODE);
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900375 f2fs_sync_fs(sbi->sb, true);
Jaegeuk Kim42190d22016-01-09 13:45:17 -0800376 stat_inc_bg_cp_count(sbi->stat_info);
Chao Yu36b35a02015-12-17 17:13:28 +0800377 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900378}
379
Gu Zheng2163d192014-04-27 14:21:33 +0800380static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900381{
382 struct f2fs_sb_info *sbi = data;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800383 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
384 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900385repeat:
386 if (kthread_should_stop())
387 return 0;
388
Gu Zheng721bd4d2014-09-05 18:31:00 +0800389 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700390 struct bio *bio;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900391 struct flush_cmd *cmd, *next;
392 int ret;
393
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700394 bio = f2fs_bio_alloc(0);
395
Gu Zheng721bd4d2014-09-05 18:31:00 +0800396 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
397 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
398
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900399 bio->bi_bdev = sbi->sb->s_bdev;
400 ret = submit_bio_wait(WRITE_FLUSH, bio);
401
Gu Zheng721bd4d2014-09-05 18:31:00 +0800402 llist_for_each_entry_safe(cmd, next,
403 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900404 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900405 complete(&cmd->wait);
406 }
Gu Zhenga4ed23f2014-04-11 17:49:35 +0800407 bio_put(bio);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800408 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900409 }
410
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800411 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800412 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900413 goto repeat;
414}
415
416int f2fs_issue_flush(struct f2fs_sb_info *sbi)
417{
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800418 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800419 struct flush_cmd cmd;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900420
Jaegeuk Kim24a9ee02014-07-25 17:46:10 -0700421 trace_f2fs_issue_flush(sbi->sb, test_opt(sbi, NOBARRIER),
422 test_opt(sbi, FLUSH_MERGE));
423
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700424 if (test_opt(sbi, NOBARRIER))
425 return 0;
426
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700427 if (!test_opt(sbi, FLUSH_MERGE)) {
428 struct bio *bio = f2fs_bio_alloc(0);
429 int ret;
430
431 bio->bi_bdev = sbi->sb->s_bdev;
432 ret = submit_bio_wait(WRITE_FLUSH, bio);
433 bio_put(bio);
434 return ret;
435 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900436
Chao Yuadf8d902014-05-08 17:00:35 +0800437 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900438
Gu Zheng721bd4d2014-09-05 18:31:00 +0800439 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900440
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800441 if (!fcc->dispatch_list)
442 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900443
Chao Yuadf8d902014-05-08 17:00:35 +0800444 wait_for_completion(&cmd.wait);
445
446 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900447}
448
Gu Zheng2163d192014-04-27 14:21:33 +0800449int create_flush_cmd_control(struct f2fs_sb_info *sbi)
450{
451 dev_t dev = sbi->sb->s_bdev->bd_dev;
452 struct flush_cmd_control *fcc;
453 int err = 0;
454
455 fcc = kzalloc(sizeof(struct flush_cmd_control), GFP_KERNEL);
456 if (!fcc)
457 return -ENOMEM;
Gu Zheng2163d192014-04-27 14:21:33 +0800458 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800459 init_llist_head(&fcc->issue_list);
Chao Yu6b2920a2014-07-07 11:21:59 +0800460 SM_I(sbi)->cmd_control_info = fcc;
Gu Zheng2163d192014-04-27 14:21:33 +0800461 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
462 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
463 if (IS_ERR(fcc->f2fs_issue_flush)) {
464 err = PTR_ERR(fcc->f2fs_issue_flush);
465 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800466 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800467 return err;
468 }
Gu Zheng2163d192014-04-27 14:21:33 +0800469
470 return err;
471}
472
473void destroy_flush_cmd_control(struct f2fs_sb_info *sbi)
474{
Chao Yu6b2920a2014-07-07 11:21:59 +0800475 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800476
477 if (fcc && fcc->f2fs_issue_flush)
478 kthread_stop(fcc->f2fs_issue_flush);
479 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800480 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800481}
482
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900483static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
484 enum dirty_type dirty_type)
485{
486 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
487
488 /* need not be added */
489 if (IS_CURSEG(sbi, segno))
490 return;
491
492 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
493 dirty_i->nr_dirty[dirty_type]++;
494
495 if (dirty_type == DIRTY) {
496 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900497 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900498
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700499 if (unlikely(t >= DIRTY)) {
500 f2fs_bug_on(sbi, 1);
501 return;
502 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900503 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
504 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900505 }
506}
507
508static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
509 enum dirty_type dirty_type)
510{
511 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
512
513 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
514 dirty_i->nr_dirty[dirty_type]--;
515
516 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900517 struct seg_entry *sentry = get_seg_entry(sbi, segno);
518 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900519
Changman Lee4625d6a2013-10-25 17:31:57 +0900520 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
521 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900522
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900523 if (get_valid_blocks(sbi, segno, sbi->segs_per_sec) == 0)
524 clear_bit(GET_SECNO(sbi, segno),
525 dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900526 }
527}
528
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900529/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900530 * Should not occur error such as -ENOMEM.
531 * Adding dirty entry into seglist is not critical operation.
532 * If a given segment is one of current working segments, it won't be added.
533 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800534static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900535{
536 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
537 unsigned short valid_blocks;
538
539 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
540 return;
541
542 mutex_lock(&dirty_i->seglist_lock);
543
544 valid_blocks = get_valid_blocks(sbi, segno, 0);
545
546 if (valid_blocks == 0) {
547 __locate_dirty_segment(sbi, segno, PRE);
548 __remove_dirty_segment(sbi, segno, DIRTY);
549 } else if (valid_blocks < sbi->blocks_per_seg) {
550 __locate_dirty_segment(sbi, segno, DIRTY);
551 } else {
552 /* Recovery routine with SSR needs this */
553 __remove_dirty_segment(sbi, segno, DIRTY);
554 }
555
556 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900557}
558
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900559static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +0900560 block_t blkstart, block_t blklen)
561{
Chao Yu55cf9cb2014-09-15 18:01:10 +0800562 sector_t start = SECTOR_FROM_BLOCK(blkstart);
563 sector_t len = SECTOR_FROM_BLOCK(blklen);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700564 struct seg_entry *se;
565 unsigned int offset;
566 block_t i;
567
568 for (i = blkstart; i < blkstart + blklen; i++) {
569 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
570 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
571
572 if (!f2fs_test_and_set_bit(offset, se->discard_map))
573 sbi->discard_blks--;
574 }
Jaegeuk Kim1661d072013-11-12 17:01:00 +0900575 trace_f2fs_issue_discard(sbi->sb, blkstart, blklen);
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900576 return blkdev_issue_discard(sbi->sb->s_bdev, start, len, GFP_NOFS, 0);
577}
578
Chao Yue90c2d22015-07-28 18:36:47 +0800579bool discard_next_dnode(struct f2fs_sb_info *sbi, block_t blkaddr)
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900580{
Jaegeuk Kim60b286c2016-02-09 10:24:31 -0800581 int err = -EOPNOTSUPP;
Jaegeuk Kim40a02be2015-05-11 20:03:49 -0700582
583 if (test_opt(sbi, DISCARD)) {
584 struct seg_entry *se = get_seg_entry(sbi,
585 GET_SEGNO(sbi, blkaddr));
586 unsigned int offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
587
588 if (f2fs_test_bit(offset, se->discard_map))
Chao Yue90c2d22015-07-28 18:36:47 +0800589 return false;
Jaegeuk Kim40a02be2015-05-11 20:03:49 -0700590
591 err = f2fs_issue_discard(sbi, blkaddr, 1);
592 }
593
Chao Yue90c2d22015-07-28 18:36:47 +0800594 if (err) {
Chao Yu381722d2015-05-19 17:40:04 +0800595 update_meta_page(sbi, NULL, blkaddr);
Chao Yue90c2d22015-07-28 18:36:47 +0800596 return true;
597 }
598 return false;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900599}
600
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700601static void __add_discard_entry(struct f2fs_sb_info *sbi,
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700602 struct cp_control *cpc, struct seg_entry *se,
603 unsigned int start, unsigned int end)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900604{
605 struct list_head *head = &SM_I(sbi)->discard_list;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700606 struct discard_entry *new, *last;
607
608 if (!list_empty(head)) {
609 last = list_last_entry(head, struct discard_entry, list);
610 if (START_BLOCK(sbi, cpc->trim_start) + start ==
611 last->blkaddr + last->len) {
612 last->len += end - start;
613 goto done;
614 }
615 }
616
617 new = f2fs_kmem_cache_alloc(discard_entry_slab, GFP_NOFS);
618 INIT_LIST_HEAD(&new->list);
619 new->blkaddr = START_BLOCK(sbi, cpc->trim_start) + start;
620 new->len = end - start;
621 list_add_tail(&new->list, head);
622done:
623 SM_I(sbi)->nr_discards += end - start;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700624}
625
626static void add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc)
627{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900628 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
629 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700630 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900631 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
632 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700633 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800634 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900635 unsigned int start = 0, end = -1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700636 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900637 int i;
638
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700639 if (se->valid_blocks == max_blocks)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900640 return;
641
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700642 if (!force) {
643 if (!test_opt(sbi, DISCARD) || !se->valid_blocks ||
Dan Carpenter912a83b2015-05-14 11:52:28 +0300644 SM_I(sbi)->nr_discards >= SM_I(sbi)->max_discards)
645 return;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700646 }
647
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900648 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
649 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700650 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -0800651 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900652
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700653 while (force || SM_I(sbi)->nr_discards <= SM_I(sbi)->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900654 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
655 if (start >= max_blocks)
656 break;
657
658 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700659 __add_discard_entry(sbi, cpc, se, start, end);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900660 }
661}
662
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700663void release_discard_addrs(struct f2fs_sb_info *sbi)
664{
665 struct list_head *head = &(SM_I(sbi)->discard_list);
666 struct discard_entry *entry, *this;
667
668 /* drop caches */
669 list_for_each_entry_safe(entry, this, head, list) {
670 list_del(&entry->list);
671 kmem_cache_free(discard_entry_slab, entry);
672 }
673}
674
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900675/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900676 * Should call clear_prefree_segments after checkpoint is done.
677 */
678static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
679{
680 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +0800681 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900682
683 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700684 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900685 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900686 mutex_unlock(&dirty_i->seglist_lock);
687}
688
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700689void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900690{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900691 struct list_head *head = &(SM_I(sbi)->discard_list);
Chao Yu2d7b8222014-03-29 11:33:17 +0800692 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900693 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Changman Lee29e59c12013-11-11 09:24:37 +0900694 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +0900695 unsigned int start = 0, end = -1;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900696
697 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900698
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900699 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900700 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700701 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
702 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900703 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700704 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
705 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900706
Changman Lee29e59c12013-11-11 09:24:37 +0900707 for (i = start; i < end; i++)
708 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900709
Changman Lee29e59c12013-11-11 09:24:37 +0900710 dirty_i->nr_dirty[PRE] -= end - start;
711
712 if (!test_opt(sbi, DISCARD))
713 continue;
714
Jaegeuk Kim37208872013-11-12 16:55:17 +0900715 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
716 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900717 }
718 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900719
720 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800721 list_for_each_entry_safe(entry, this, head, list) {
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700722 if (cpc->reason == CP_DISCARD && entry->len < cpc->trim_minlen)
723 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900724 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700725 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700726skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900727 list_del(&entry->list);
728 SM_I(sbi)->nr_discards -= entry->len;
729 kmem_cache_free(discard_entry_slab, entry);
730 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900731}
732
Chao Yu184a5cd2014-09-04 18:13:01 +0800733static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900734{
735 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800736
737 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900738 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800739 return false;
740 }
741
742 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900743}
744
745static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
746 unsigned int segno, int modified)
747{
748 struct seg_entry *se = get_seg_entry(sbi, segno);
749 se->type = type;
750 if (modified)
751 __mark_sit_entry_dirty(sbi, segno);
752}
753
754static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
755{
756 struct seg_entry *se;
757 unsigned int segno, offset;
758 long int new_vblocks;
759
760 segno = GET_SEGNO(sbi, blkaddr);
761
762 se = get_seg_entry(sbi, segno);
763 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +0900764 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900765
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700766 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900767 (new_vblocks > sbi->blocks_per_seg)));
768
769 se->valid_blocks = new_vblocks;
770 se->mtime = get_mtime(sbi);
771 SIT_I(sbi)->max_mtime = se->mtime;
772
773 /* Update valid block bitmap */
774 if (del > 0) {
Gu Zheng52aca072014-10-20 17:45:51 +0800775 if (f2fs_test_and_set_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700776 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700777 if (!f2fs_test_and_set_bit(offset, se->discard_map))
778 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900779 } else {
Gu Zheng52aca072014-10-20 17:45:51 +0800780 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700781 f2fs_bug_on(sbi, 1);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700782 if (f2fs_test_and_clear_bit(offset, se->discard_map))
783 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900784 }
785 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
786 se->ckpt_valid_blocks += del;
787
788 __mark_sit_entry_dirty(sbi, segno);
789
790 /* update total number of valid blocks to be written in ckpt area */
791 SIT_I(sbi)->written_valid_blocks += del;
792
793 if (sbi->segs_per_sec > 1)
794 get_sec_entry(sbi, segno)->valid_blocks += del;
795}
796
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900797void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900798{
Jaegeuk Kim5e443812014-01-28 12:22:14 +0900799 update_sit_entry(sbi, new, 1);
800 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
801 update_sit_entry(sbi, old, -1);
802
803 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
804 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900805}
806
807void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
808{
809 unsigned int segno = GET_SEGNO(sbi, addr);
810 struct sit_info *sit_i = SIT_I(sbi);
811
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700812 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900813 if (addr == NEW_ADDR)
814 return;
815
816 /* add it into sit main buffer */
817 mutex_lock(&sit_i->sentry_lock);
818
819 update_sit_entry(sbi, addr, -1);
820
821 /* add it into dirty seglist */
822 locate_dirty_segment(sbi, segno);
823
824 mutex_unlock(&sit_i->sentry_lock);
825}
826
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -0700827bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
828{
829 struct sit_info *sit_i = SIT_I(sbi);
830 unsigned int segno, offset;
831 struct seg_entry *se;
832 bool is_cp = false;
833
834 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
835 return true;
836
837 mutex_lock(&sit_i->sentry_lock);
838
839 segno = GET_SEGNO(sbi, blkaddr);
840 se = get_seg_entry(sbi, segno);
841 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
842
843 if (f2fs_test_bit(offset, se->ckpt_valid_map))
844 is_cp = true;
845
846 mutex_unlock(&sit_i->sentry_lock);
847
848 return is_cp;
849}
850
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900851/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900852 * This function should be resided under the curseg_mutex lock
853 */
854static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +0800855 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900856{
857 struct curseg_info *curseg = CURSEG_I(sbi, type);
858 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +0800859 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900860 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900861}
862
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900863/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900864 * Calculate the number of current summary pages for writing
865 */
Chao Yu3fa06d72014-12-09 14:21:46 +0800866int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900867{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900868 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +0800869 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900870
871 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
872 if (sbi->ckpt->alloc_type[i] == SSR)
873 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +0800874 else {
875 if (for_ra)
876 valid_sum_count += le16_to_cpu(
877 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
878 else
879 valid_sum_count += curseg_blkoff(sbi, i);
880 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900881 }
882
Fan Li9a479382013-10-29 16:21:47 +0800883 sum_in_page = (PAGE_CACHE_SIZE - 2 * SUM_JOURNAL_SIZE -
884 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
885 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900886 return 1;
Fan Li9a479382013-10-29 16:21:47 +0800887 else if ((valid_sum_count - sum_in_page) <=
888 (PAGE_CACHE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900889 return 2;
890 return 3;
891}
892
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900893/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900894 * Caller should put this summary page
895 */
896struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
897{
898 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
899}
900
Chao Yu381722d2015-05-19 17:40:04 +0800901void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
902{
903 struct page *page = grab_meta_page(sbi, blk_addr);
904 void *dst = page_address(page);
905
906 if (src)
907 memcpy(dst, src, PAGE_CACHE_SIZE);
908 else
909 memset(dst, 0, PAGE_CACHE_SIZE);
910 set_page_dirty(page);
911 f2fs_put_page(page, 1);
912}
913
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900914static void write_sum_page(struct f2fs_sb_info *sbi,
915 struct f2fs_summary_block *sum_blk, block_t blk_addr)
916{
Chao Yu381722d2015-05-19 17:40:04 +0800917 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900918}
919
Jaegeuk Kim60374682013-03-31 13:58:51 +0900920static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
921{
922 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +0800923 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +0900924 struct free_segmap_info *free_i = FREE_I(sbi);
925
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700926 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +0800927 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +0900928 return 0;
929}
930
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900931/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900932 * Find a new segment from the free segments bitmap to right order
933 * This function should be returned with success, otherwise BUG
934 */
935static void get_new_segment(struct f2fs_sb_info *sbi,
936 unsigned int *newseg, bool new_sec, int dir)
937{
938 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900939 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700940 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900941 unsigned int hint = *newseg / sbi->segs_per_sec;
942 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
943 unsigned int left_start = hint;
944 bool init = true;
945 int go_left = 0;
946 int i;
947
Chao Yu1a118cc2015-02-11 18:20:38 +0800948 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900949
950 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
951 segno = find_next_zero_bit(free_i->free_segmap,
Chao Yu0ab14352016-01-22 17:42:06 +0800952 (hint + 1) * sbi->segs_per_sec, *newseg + 1);
953 if (segno < (hint + 1) * sbi->segs_per_sec)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900954 goto got_it;
955 }
956find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700957 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
958 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900959 if (dir == ALLOC_RIGHT) {
960 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700961 MAIN_SECS(sbi), 0);
962 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900963 } else {
964 go_left = 1;
965 left_start = hint - 1;
966 }
967 }
968 if (go_left == 0)
969 goto skip_left;
970
971 while (test_bit(left_start, free_i->free_secmap)) {
972 if (left_start > 0) {
973 left_start--;
974 continue;
975 }
976 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700977 MAIN_SECS(sbi), 0);
978 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900979 break;
980 }
981 secno = left_start;
982skip_left:
983 hint = secno;
984 segno = secno * sbi->segs_per_sec;
985 zoneno = secno / sbi->secs_per_zone;
986
987 /* give up on finding another zone */
988 if (!init)
989 goto got_it;
990 if (sbi->secs_per_zone == 1)
991 goto got_it;
992 if (zoneno == old_zoneno)
993 goto got_it;
994 if (dir == ALLOC_LEFT) {
995 if (!go_left && zoneno + 1 >= total_zones)
996 goto got_it;
997 if (go_left && zoneno == 0)
998 goto got_it;
999 }
1000 for (i = 0; i < NR_CURSEG_TYPE; i++)
1001 if (CURSEG_I(sbi, i)->zone == zoneno)
1002 break;
1003
1004 if (i < NR_CURSEG_TYPE) {
1005 /* zone is in user, try another */
1006 if (go_left)
1007 hint = zoneno * sbi->secs_per_zone - 1;
1008 else if (zoneno + 1 >= total_zones)
1009 hint = 0;
1010 else
1011 hint = (zoneno + 1) * sbi->secs_per_zone;
1012 init = false;
1013 goto find_other_zone;
1014 }
1015got_it:
1016 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001017 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001018 __set_inuse(sbi, segno);
1019 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08001020 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001021}
1022
1023static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
1024{
1025 struct curseg_info *curseg = CURSEG_I(sbi, type);
1026 struct summary_footer *sum_footer;
1027
1028 curseg->segno = curseg->next_segno;
1029 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
1030 curseg->next_blkoff = 0;
1031 curseg->next_segno = NULL_SEGNO;
1032
1033 sum_footer = &(curseg->sum_blk->footer);
1034 memset(sum_footer, 0, sizeof(struct summary_footer));
1035 if (IS_DATASEG(type))
1036 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
1037 if (IS_NODESEG(type))
1038 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
1039 __set_sit_entry_type(sbi, type, curseg->segno, modified);
1040}
1041
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001042/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001043 * Allocate a current working segment.
1044 * This function always allocates a free segment in LFS manner.
1045 */
1046static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
1047{
1048 struct curseg_info *curseg = CURSEG_I(sbi, type);
1049 unsigned int segno = curseg->segno;
1050 int dir = ALLOC_LEFT;
1051
1052 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08001053 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001054 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
1055 dir = ALLOC_RIGHT;
1056
1057 if (test_opt(sbi, NOHEAP))
1058 dir = ALLOC_RIGHT;
1059
1060 get_new_segment(sbi, &segno, new_sec, dir);
1061 curseg->next_segno = segno;
1062 reset_curseg(sbi, type, 1);
1063 curseg->alloc_type = LFS;
1064}
1065
1066static void __next_free_blkoff(struct f2fs_sb_info *sbi,
1067 struct curseg_info *seg, block_t start)
1068{
1069 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09001070 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001071 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09001072 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
1073 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1074 int i, pos;
1075
1076 for (i = 0; i < entries; i++)
1077 target_map[i] = ckpt_map[i] | cur_map[i];
1078
1079 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1080
1081 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001082}
1083
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001084/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001085 * If a segment is written by LFS manner, next block offset is just obtained
1086 * by increasing the current block offset. However, if a segment is written by
1087 * SSR manner, next block offset obtained by calling __next_free_blkoff
1088 */
1089static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1090 struct curseg_info *seg)
1091{
1092 if (seg->alloc_type == SSR)
1093 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1094 else
1095 seg->next_blkoff++;
1096}
1097
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001098/*
arter97e1c42042014-08-06 23:22:50 +09001099 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001100 * manner, so it should recover the existing segment information of valid blocks
1101 */
1102static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1103{
1104 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1105 struct curseg_info *curseg = CURSEG_I(sbi, type);
1106 unsigned int new_segno = curseg->next_segno;
1107 struct f2fs_summary_block *sum_node;
1108 struct page *sum_page;
1109
1110 write_sum_page(sbi, curseg->sum_blk,
1111 GET_SUM_BLOCK(sbi, curseg->segno));
1112 __set_test_and_inuse(sbi, new_segno);
1113
1114 mutex_lock(&dirty_i->seglist_lock);
1115 __remove_dirty_segment(sbi, new_segno, PRE);
1116 __remove_dirty_segment(sbi, new_segno, DIRTY);
1117 mutex_unlock(&dirty_i->seglist_lock);
1118
1119 reset_curseg(sbi, type, 1);
1120 curseg->alloc_type = SSR;
1121 __next_free_blkoff(sbi, curseg, 0);
1122
1123 if (reuse) {
1124 sum_page = get_sum_page(sbi, new_segno);
1125 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1126 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1127 f2fs_put_page(sum_page, 1);
1128 }
1129}
1130
Jaegeuk Kim43727522013-02-04 15:11:17 +09001131static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1132{
1133 struct curseg_info *curseg = CURSEG_I(sbi, type);
1134 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1135
1136 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0))
1137 return v_ops->get_victim(sbi,
1138 &(curseg)->next_segno, BG_GC, type, SSR);
1139
1140 /* For data segments, let's do SSR more intensively */
1141 for (; type >= CURSEG_HOT_DATA; type--)
1142 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1143 BG_GC, type, SSR))
1144 return 1;
1145 return 0;
1146}
1147
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001148/*
1149 * flush out current segment and replace it with new segment
1150 * This function should be returned with success, otherwise BUG
1151 */
1152static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1153 int type, bool force)
1154{
1155 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001156
Gu Zheng7b405272013-08-19 09:41:15 +08001157 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001158 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001159 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001160 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001161 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1162 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001163 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1164 change_curseg(sbi, type, true);
1165 else
1166 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001167
1168 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001169}
1170
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001171static void __allocate_new_segments(struct f2fs_sb_info *sbi, int type)
1172{
1173 struct curseg_info *curseg = CURSEG_I(sbi, type);
1174 unsigned int old_segno;
1175
1176 old_segno = curseg->segno;
1177 SIT_I(sbi)->s_ops->allocate_segment(sbi, type, true);
1178 locate_dirty_segment(sbi, old_segno);
1179}
1180
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001181void allocate_new_segments(struct f2fs_sb_info *sbi)
1182{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001183 int i;
1184
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001185 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++)
1186 __allocate_new_segments(sbi, i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001187}
1188
1189static const struct segment_allocation default_salloc_ops = {
1190 .allocate_segment = allocate_segment_by_default,
1191};
1192
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001193int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1194{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001195 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1196 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001197 unsigned int start_segno, end_segno;
1198 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001199 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001200
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001201 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001202 return -EINVAL;
1203
Jan Kara9bd27ae2014-10-21 14:07:33 +02001204 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001205 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001206 goto out;
1207
1208 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001209 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1210 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1211 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001212 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001213 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001214
1215 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001216 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1217 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001218
1219 if (sbi->discard_blks == 0)
1220 break;
1221 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1222 cpc.trim_end = end_segno;
1223 else
1224 cpc.trim_end = min_t(unsigned int,
1225 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001226 BATCHED_TRIM_SEGMENTS(sbi),
1227 sbi->segs_per_sec) - 1, end_segno);
1228
1229 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001230 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001231 mutex_unlock(&sbi->gc_mutex);
1232 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001233out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001234 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001235 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001236}
1237
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001238static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1239{
1240 struct curseg_info *curseg = CURSEG_I(sbi, type);
1241 if (curseg->next_blkoff < sbi->blocks_per_seg)
1242 return true;
1243 return false;
1244}
1245
1246static int __get_segment_type_2(struct page *page, enum page_type p_type)
1247{
1248 if (p_type == DATA)
1249 return CURSEG_HOT_DATA;
1250 else
1251 return CURSEG_HOT_NODE;
1252}
1253
1254static int __get_segment_type_4(struct page *page, enum page_type p_type)
1255{
1256 if (p_type == DATA) {
1257 struct inode *inode = page->mapping->host;
1258
1259 if (S_ISDIR(inode->i_mode))
1260 return CURSEG_HOT_DATA;
1261 else
1262 return CURSEG_COLD_DATA;
1263 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001264 if (IS_DNODE(page) && is_cold_node(page))
1265 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001266 else
1267 return CURSEG_COLD_NODE;
1268 }
1269}
1270
1271static int __get_segment_type_6(struct page *page, enum page_type p_type)
1272{
1273 if (p_type == DATA) {
1274 struct inode *inode = page->mapping->host;
1275
1276 if (S_ISDIR(inode->i_mode))
1277 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001278 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001279 return CURSEG_COLD_DATA;
1280 else
1281 return CURSEG_WARM_DATA;
1282 } else {
1283 if (IS_DNODE(page))
1284 return is_cold_node(page) ? CURSEG_WARM_NODE :
1285 CURSEG_HOT_NODE;
1286 else
1287 return CURSEG_COLD_NODE;
1288 }
1289}
1290
1291static int __get_segment_type(struct page *page, enum page_type p_type)
1292{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001293 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001294 case 2:
1295 return __get_segment_type_2(page, p_type);
1296 case 4:
1297 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001298 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001299 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001300 f2fs_bug_on(F2FS_P_SB(page),
1301 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001302 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001303}
1304
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001305void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1306 block_t old_blkaddr, block_t *new_blkaddr,
1307 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001308{
1309 struct sit_info *sit_i = SIT_I(sbi);
1310 struct curseg_info *curseg;
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001311 bool direct_io = (type == CURSEG_DIRECT_IO);
1312
1313 type = direct_io ? CURSEG_WARM_DATA : type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001314
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001315 curseg = CURSEG_I(sbi, type);
1316
1317 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001318 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001319
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001320 /* direct_io'ed data is aligned to the segment for better performance */
Jaegeuk Kim47e70ca2015-08-11 10:17:27 -07001321 if (direct_io && curseg->next_blkoff &&
1322 !has_not_enough_free_secs(sbi, 0))
Jaegeuk Kim38aa0882015-01-05 16:02:20 -08001323 __allocate_new_segments(sbi, type);
1324
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001325 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001326
1327 /*
1328 * __add_sum_entry should be resided under the curseg_mutex
1329 * because, this function updates a summary entry in the
1330 * current summary block.
1331 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001332 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001333
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001334 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001335
1336 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001337
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001338 if (!__has_curseg_space(sbi, type))
1339 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001340 /*
1341 * SIT information should be updated before segment allocation,
1342 * since SSR needs latest valid block information.
1343 */
1344 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001345
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001346 mutex_unlock(&sit_i->sentry_lock);
1347
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001348 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001349 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1350
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001351 mutex_unlock(&curseg->curseg_mutex);
1352}
1353
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001354static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001355{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001356 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001357
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001358 allocate_data_block(fio->sbi, fio->page, fio->blk_addr,
1359 &fio->blk_addr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001360
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001361 /* writeout dirty page into bdev */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001362 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001363}
1364
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001365void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001366{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001367 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001368 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001369 .type = META,
Jaegeuk Kimcf04e8e2014-12-17 19:33:13 -08001370 .rw = WRITE_SYNC | REQ_META | REQ_PRIO,
1371 .blk_addr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001372 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001373 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001374 };
1375
Chao Yu2b947002015-10-12 17:04:21 +08001376 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
1377 fio.rw &= ~REQ_META;
1378
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001379 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001380 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001381}
1382
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001383void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001384{
1385 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001386
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001387 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001388 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001389}
1390
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001391void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001392{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001393 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001394 struct f2fs_summary sum;
1395 struct node_info ni;
1396
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001397 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001398 get_node_info(sbi, dn->nid, &ni);
1399 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001400 do_write_page(&sum, fio);
Jaegeuk Kime1509cf2014-12-30 22:57:55 -08001401 dn->data_blkaddr = fio->blk_addr;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001402}
1403
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001404void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001405{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001406 stat_inc_inplace_blocks(fio->sbi);
1407 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001408}
1409
Chao Yu528e3452015-05-28 19:15:35 +08001410static void __f2fs_replace_block(struct f2fs_sb_info *sbi,
1411 struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001412 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08001413 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001414{
1415 struct sit_info *sit_i = SIT_I(sbi);
1416 struct curseg_info *curseg;
1417 unsigned int segno, old_cursegno;
1418 struct seg_entry *se;
1419 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001420 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001421
1422 segno = GET_SEGNO(sbi, new_blkaddr);
1423 se = get_seg_entry(sbi, segno);
1424 type = se->type;
1425
Chao Yu19f106b2015-05-06 13:08:06 +08001426 if (!recover_curseg) {
1427 /* for recovery flow */
1428 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1429 if (old_blkaddr == NULL_ADDR)
1430 type = CURSEG_COLD_DATA;
1431 else
1432 type = CURSEG_WARM_DATA;
1433 }
1434 } else {
1435 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001436 type = CURSEG_WARM_DATA;
1437 }
Chao Yu19f106b2015-05-06 13:08:06 +08001438
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001439 curseg = CURSEG_I(sbi, type);
1440
1441 mutex_lock(&curseg->curseg_mutex);
1442 mutex_lock(&sit_i->sentry_lock);
1443
1444 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001445 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001446
1447 /* change the current segment */
1448 if (segno != curseg->segno) {
1449 curseg->next_segno = segno;
1450 change_curseg(sbi, type, true);
1451 }
1452
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001453 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001454 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001455
Chao Yu28bc1062016-02-06 14:40:34 +08001456 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001457 update_sit_entry(sbi, new_blkaddr, 1);
1458 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1459 update_sit_entry(sbi, old_blkaddr, -1);
1460
1461 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1462 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1463
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001464 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001465
Chao Yu19f106b2015-05-06 13:08:06 +08001466 if (recover_curseg) {
1467 if (old_cursegno != curseg->segno) {
1468 curseg->next_segno = old_cursegno;
1469 change_curseg(sbi, type, true);
1470 }
1471 curseg->next_blkoff = old_blkoff;
1472 }
1473
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001474 mutex_unlock(&sit_i->sentry_lock);
1475 mutex_unlock(&curseg->curseg_mutex);
1476}
1477
Chao Yu528e3452015-05-28 19:15:35 +08001478void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1479 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08001480 unsigned char version, bool recover_curseg,
1481 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08001482{
1483 struct f2fs_summary sum;
1484
1485 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1486
Chao Yu28bc1062016-02-06 14:40:34 +08001487 __f2fs_replace_block(sbi, &sum, old_addr, new_addr,
1488 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08001489
1490 dn->data_blkaddr = new_addr;
1491 set_data_blkaddr(dn);
1492 f2fs_update_extent_cache(dn);
1493}
1494
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001495void f2fs_wait_on_page_writeback(struct page *page,
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001496 enum page_type type, bool ordered)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001497{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001498 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001499 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1500
Chao Yu0c3a5792016-01-18 18:28:11 +08001501 f2fs_submit_merged_bio_cond(sbi, NULL, page, 0, type, WRITE);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001502 if (ordered)
1503 wait_on_page_writeback(page);
1504 else
1505 wait_for_stable_page(page);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001506 }
1507}
1508
Chao Yu08b39fb2015-10-08 13:27:34 +08001509void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1510 block_t blkaddr)
1511{
1512 struct page *cpage;
1513
1514 if (blkaddr == NEW_ADDR)
1515 return;
1516
1517 f2fs_bug_on(sbi, blkaddr == NULL_ADDR);
1518
1519 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1520 if (cpage) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001521 f2fs_wait_on_page_writeback(cpage, DATA, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08001522 f2fs_put_page(cpage, 1);
1523 }
1524}
1525
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001526static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1527{
1528 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1529 struct curseg_info *seg_i;
1530 unsigned char *kaddr;
1531 struct page *page;
1532 block_t start;
1533 int i, j, offset;
1534
1535 start = start_sum_block(sbi);
1536
1537 page = get_meta_page(sbi, start++);
1538 kaddr = (unsigned char *)page_address(page);
1539
1540 /* Step 1: restore nat cache */
1541 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
1542 memcpy(&seg_i->sum_blk->n_nats, kaddr, SUM_JOURNAL_SIZE);
1543
1544 /* Step 2: restore sit cache */
1545 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
1546 memcpy(&seg_i->sum_blk->n_sits, kaddr + SUM_JOURNAL_SIZE,
1547 SUM_JOURNAL_SIZE);
1548 offset = 2 * SUM_JOURNAL_SIZE;
1549
1550 /* Step 3: restore summary entries */
1551 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1552 unsigned short blk_off;
1553 unsigned int segno;
1554
1555 seg_i = CURSEG_I(sbi, i);
1556 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1557 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1558 seg_i->next_segno = segno;
1559 reset_curseg(sbi, i, 0);
1560 seg_i->alloc_type = ckpt->alloc_type[i];
1561 seg_i->next_blkoff = blk_off;
1562
1563 if (seg_i->alloc_type == SSR)
1564 blk_off = sbi->blocks_per_seg;
1565
1566 for (j = 0; j < blk_off; j++) {
1567 struct f2fs_summary *s;
1568 s = (struct f2fs_summary *)(kaddr + offset);
1569 seg_i->sum_blk->entries[j] = *s;
1570 offset += SUMMARY_SIZE;
1571 if (offset + SUMMARY_SIZE <= PAGE_CACHE_SIZE -
1572 SUM_FOOTER_SIZE)
1573 continue;
1574
1575 f2fs_put_page(page, 1);
1576 page = NULL;
1577
1578 page = get_meta_page(sbi, start++);
1579 kaddr = (unsigned char *)page_address(page);
1580 offset = 0;
1581 }
1582 }
1583 f2fs_put_page(page, 1);
1584 return 0;
1585}
1586
1587static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1588{
1589 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1590 struct f2fs_summary_block *sum;
1591 struct curseg_info *curseg;
1592 struct page *new;
1593 unsigned short blk_off;
1594 unsigned int segno = 0;
1595 block_t blk_addr = 0;
1596
1597 /* get segment number and block addr */
1598 if (IS_DATASEG(type)) {
1599 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1600 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1601 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001602 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001603 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1604 else
1605 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1606 } else {
1607 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1608 CURSEG_HOT_NODE]);
1609 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1610 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001611 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001612 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1613 type - CURSEG_HOT_NODE);
1614 else
1615 blk_addr = GET_SUM_BLOCK(sbi, segno);
1616 }
1617
1618 new = get_meta_page(sbi, blk_addr);
1619 sum = (struct f2fs_summary_block *)page_address(new);
1620
1621 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001622 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001623 struct f2fs_summary *ns = &sum->entries[0];
1624 int i;
1625 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1626 ns->version = 0;
1627 ns->ofs_in_node = 0;
1628 }
1629 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001630 int err;
1631
1632 err = restore_node_summary(sbi, segno, sum);
1633 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001634 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001635 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001636 }
1637 }
1638 }
1639
1640 /* set uncompleted segment to curseg */
1641 curseg = CURSEG_I(sbi, type);
1642 mutex_lock(&curseg->curseg_mutex);
1643 memcpy(curseg->sum_blk, sum, PAGE_CACHE_SIZE);
1644 curseg->next_segno = segno;
1645 reset_curseg(sbi, type, 0);
1646 curseg->alloc_type = ckpt->alloc_type[type];
1647 curseg->next_blkoff = blk_off;
1648 mutex_unlock(&curseg->curseg_mutex);
1649 f2fs_put_page(new, 1);
1650 return 0;
1651}
1652
1653static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1654{
1655 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001656 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001657
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001658 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001659 int npages = npages_for_summary_flush(sbi, true);
1660
1661 if (npages >= 2)
1662 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001663 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001664
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001665 /* restore for compacted data summary */
1666 if (read_compacted_summaries(sbi))
1667 return -EINVAL;
1668 type = CURSEG_HOT_NODE;
1669 }
1670
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001671 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001672 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001673 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001674
Chao Yue4fc5fb2014-03-17 16:36:24 +08001675 for (; type <= CURSEG_COLD_NODE; type++) {
1676 err = read_normal_summaries(sbi, type);
1677 if (err)
1678 return err;
1679 }
1680
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001681 return 0;
1682}
1683
1684static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1685{
1686 struct page *page;
1687 unsigned char *kaddr;
1688 struct f2fs_summary *summary;
1689 struct curseg_info *seg_i;
1690 int written_size = 0;
1691 int i, j;
1692
1693 page = grab_meta_page(sbi, blkaddr++);
1694 kaddr = (unsigned char *)page_address(page);
1695
1696 /* Step 1: write nat cache */
1697 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
1698 memcpy(kaddr, &seg_i->sum_blk->n_nats, SUM_JOURNAL_SIZE);
1699 written_size += SUM_JOURNAL_SIZE;
1700
1701 /* Step 2: write sit cache */
1702 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
1703 memcpy(kaddr + written_size, &seg_i->sum_blk->n_sits,
1704 SUM_JOURNAL_SIZE);
1705 written_size += SUM_JOURNAL_SIZE;
1706
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001707 /* Step 3: write summary entries */
1708 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1709 unsigned short blkoff;
1710 seg_i = CURSEG_I(sbi, i);
1711 if (sbi->ckpt->alloc_type[i] == SSR)
1712 blkoff = sbi->blocks_per_seg;
1713 else
1714 blkoff = curseg_blkoff(sbi, i);
1715
1716 for (j = 0; j < blkoff; j++) {
1717 if (!page) {
1718 page = grab_meta_page(sbi, blkaddr++);
1719 kaddr = (unsigned char *)page_address(page);
1720 written_size = 0;
1721 }
1722 summary = (struct f2fs_summary *)(kaddr + written_size);
1723 *summary = seg_i->sum_blk->entries[j];
1724 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001725
1726 if (written_size + SUMMARY_SIZE <= PAGE_CACHE_SIZE -
1727 SUM_FOOTER_SIZE)
1728 continue;
1729
Chao Yue8d61a72013-10-24 15:08:28 +08001730 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001731 f2fs_put_page(page, 1);
1732 page = NULL;
1733 }
1734 }
Chao Yue8d61a72013-10-24 15:08:28 +08001735 if (page) {
1736 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001737 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08001738 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001739}
1740
1741static void write_normal_summaries(struct f2fs_sb_info *sbi,
1742 block_t blkaddr, int type)
1743{
1744 int i, end;
1745 if (IS_DATASEG(type))
1746 end = type + NR_CURSEG_DATA_TYPE;
1747 else
1748 end = type + NR_CURSEG_NODE_TYPE;
1749
1750 for (i = type; i < end; i++) {
1751 struct curseg_info *sum = CURSEG_I(sbi, i);
1752 mutex_lock(&sum->curseg_mutex);
1753 write_sum_page(sbi, sum->sum_blk, blkaddr + (i - type));
1754 mutex_unlock(&sum->curseg_mutex);
1755 }
1756}
1757
1758void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1759{
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001760 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001761 write_compacted_summaries(sbi, start_blk);
1762 else
1763 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1764}
1765
1766void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1767{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001768 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001769}
1770
1771int lookup_journal_in_cursum(struct f2fs_summary_block *sum, int type,
1772 unsigned int val, int alloc)
1773{
1774 int i;
1775
1776 if (type == NAT_JOURNAL) {
1777 for (i = 0; i < nats_in_cursum(sum); i++) {
1778 if (le32_to_cpu(nid_in_journal(sum, i)) == val)
1779 return i;
1780 }
Chao Yu855639d2015-12-01 11:42:54 +08001781 if (alloc && __has_cursum_space(sum, 1, NAT_JOURNAL))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001782 return update_nats_in_cursum(sum, 1);
1783 } else if (type == SIT_JOURNAL) {
1784 for (i = 0; i < sits_in_cursum(sum); i++)
1785 if (le32_to_cpu(segno_in_journal(sum, i)) == val)
1786 return i;
Chao Yu855639d2015-12-01 11:42:54 +08001787 if (alloc && __has_cursum_space(sum, 1, SIT_JOURNAL))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001788 return update_sits_in_cursum(sum, 1);
1789 }
1790 return -1;
1791}
1792
1793static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
1794 unsigned int segno)
1795{
Gu Zheng2cc22182014-10-20 17:45:49 +08001796 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001797}
1798
1799static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
1800 unsigned int start)
1801{
1802 struct sit_info *sit_i = SIT_I(sbi);
1803 struct page *src_page, *dst_page;
1804 pgoff_t src_off, dst_off;
1805 void *src_addr, *dst_addr;
1806
1807 src_off = current_sit_addr(sbi, start);
1808 dst_off = next_sit_addr(sbi, src_off);
1809
1810 /* get current sit block page without lock */
1811 src_page = get_meta_page(sbi, src_off);
1812 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001813 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001814
1815 src_addr = page_address(src_page);
1816 dst_addr = page_address(dst_page);
1817 memcpy(dst_addr, src_addr, PAGE_CACHE_SIZE);
1818
1819 set_page_dirty(dst_page);
1820 f2fs_put_page(src_page, 1);
1821
1822 set_to_next_sit(sit_i, start);
1823
1824 return dst_page;
1825}
1826
Chao Yu184a5cd2014-09-04 18:13:01 +08001827static struct sit_entry_set *grab_sit_entry_set(void)
1828{
1829 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07001830 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08001831
1832 ses->entry_cnt = 0;
1833 INIT_LIST_HEAD(&ses->set_list);
1834 return ses;
1835}
1836
1837static void release_sit_entry_set(struct sit_entry_set *ses)
1838{
1839 list_del(&ses->set_list);
1840 kmem_cache_free(sit_entry_set_slab, ses);
1841}
1842
1843static void adjust_sit_entry_set(struct sit_entry_set *ses,
1844 struct list_head *head)
1845{
1846 struct sit_entry_set *next = ses;
1847
1848 if (list_is_last(&ses->set_list, head))
1849 return;
1850
1851 list_for_each_entry_continue(next, head, set_list)
1852 if (ses->entry_cnt <= next->entry_cnt)
1853 break;
1854
1855 list_move_tail(&ses->set_list, &next->set_list);
1856}
1857
1858static void add_sit_entry(unsigned int segno, struct list_head *head)
1859{
1860 struct sit_entry_set *ses;
1861 unsigned int start_segno = START_SEGNO(segno);
1862
1863 list_for_each_entry(ses, head, set_list) {
1864 if (ses->start_segno == start_segno) {
1865 ses->entry_cnt++;
1866 adjust_sit_entry_set(ses, head);
1867 return;
1868 }
1869 }
1870
1871 ses = grab_sit_entry_set();
1872
1873 ses->start_segno = start_segno;
1874 ses->entry_cnt++;
1875 list_add(&ses->set_list, head);
1876}
1877
1878static void add_sits_in_set(struct f2fs_sb_info *sbi)
1879{
1880 struct f2fs_sm_info *sm_info = SM_I(sbi);
1881 struct list_head *set_list = &sm_info->sit_entry_set;
1882 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08001883 unsigned int segno;
1884
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001885 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08001886 add_sit_entry(segno, set_list);
1887}
1888
1889static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001890{
1891 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
1892 struct f2fs_summary_block *sum = curseg->sum_blk;
1893 int i;
1894
Chao Yu184a5cd2014-09-04 18:13:01 +08001895 for (i = sits_in_cursum(sum) - 1; i >= 0; i--) {
1896 unsigned int segno;
1897 bool dirtied;
1898
1899 segno = le32_to_cpu(segno_in_journal(sum, i));
1900 dirtied = __mark_sit_entry_dirty(sbi, segno);
1901
1902 if (!dirtied)
1903 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001904 }
Chao Yu184a5cd2014-09-04 18:13:01 +08001905 update_sits_in_cursum(sum, -sits_in_cursum(sum));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001906}
1907
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001908/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001909 * CP calls this function, which flushes SIT entries including sit_journal,
1910 * and moves prefree segs to free segs.
1911 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001912void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001913{
1914 struct sit_info *sit_i = SIT_I(sbi);
1915 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
1916 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
1917 struct f2fs_summary_block *sum = curseg->sum_blk;
Chao Yu184a5cd2014-09-04 18:13:01 +08001918 struct sit_entry_set *ses, *tmp;
1919 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08001920 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001921 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001922
1923 mutex_lock(&curseg->curseg_mutex);
1924 mutex_lock(&sit_i->sentry_lock);
1925
Wanpeng Li2b11a742015-02-27 16:52:50 +08001926 if (!sit_i->dirty_sentries)
1927 goto out;
1928
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001929 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08001930 * add and account sit entries of dirty bitmap in sit entry
1931 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001932 */
Chao Yu184a5cd2014-09-04 18:13:01 +08001933 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001934
Chao Yu184a5cd2014-09-04 18:13:01 +08001935 /*
1936 * if there are no enough space in journal to store dirty sit
1937 * entries, remove all entries from journal and add and account
1938 * them in sit entry set.
1939 */
1940 if (!__has_cursum_space(sum, sit_i->dirty_sentries, SIT_JOURNAL))
1941 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001942
Chao Yu184a5cd2014-09-04 18:13:01 +08001943 /*
1944 * there are two steps to flush sit entries:
1945 * #1, flush sit entries to journal in current cold data summary block.
1946 * #2, flush sit entries to sit page.
1947 */
1948 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07001949 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08001950 struct f2fs_sit_block *raw_sit = NULL;
1951 unsigned int start_segno = ses->start_segno;
1952 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001953 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08001954 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001955
Chao Yu184a5cd2014-09-04 18:13:01 +08001956 if (to_journal &&
1957 !__has_cursum_space(sum, ses->entry_cnt, SIT_JOURNAL))
1958 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001959
Chao Yu184a5cd2014-09-04 18:13:01 +08001960 if (!to_journal) {
1961 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001962 raw_sit = page_address(page);
1963 }
1964
Chao Yu184a5cd2014-09-04 18:13:01 +08001965 /* flush dirty sit entries in region of current sit set */
1966 for_each_set_bit_from(segno, bitmap, end) {
1967 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001968
1969 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08001970
1971 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08001972 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001973 cpc->trim_start = segno;
1974 add_discard_addrs(sbi, cpc);
1975 }
Chao Yu184a5cd2014-09-04 18:13:01 +08001976
1977 if (to_journal) {
1978 offset = lookup_journal_in_cursum(sum,
1979 SIT_JOURNAL, segno, 1);
1980 f2fs_bug_on(sbi, offset < 0);
1981 segno_in_journal(sum, offset) =
1982 cpu_to_le32(segno);
1983 seg_info_to_raw_sit(se,
1984 &sit_in_journal(sum, offset));
1985 } else {
1986 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
1987 seg_info_to_raw_sit(se,
1988 &raw_sit->entries[sit_offset]);
1989 }
1990
1991 __clear_bit(segno, bitmap);
1992 sit_i->dirty_sentries--;
1993 ses->entry_cnt--;
1994 }
1995
1996 if (!to_journal)
1997 f2fs_put_page(page, 1);
1998
1999 f2fs_bug_on(sbi, ses->entry_cnt);
2000 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002001 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002002
2003 f2fs_bug_on(sbi, !list_empty(head));
2004 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08002005out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002006 if (cpc->reason == CP_DISCARD) {
2007 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
2008 add_discard_addrs(sbi, cpc);
2009 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002010 mutex_unlock(&sit_i->sentry_lock);
2011 mutex_unlock(&curseg->curseg_mutex);
2012
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002013 set_prefree_as_free_segments(sbi);
2014}
2015
2016static int build_sit_info(struct f2fs_sb_info *sbi)
2017{
2018 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2019 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
2020 struct sit_info *sit_i;
2021 unsigned int sit_segs, start;
2022 char *src_bitmap, *dst_bitmap;
2023 unsigned int bitmap_size;
2024
2025 /* allocate memory for SIT information */
2026 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
2027 if (!sit_i)
2028 return -ENOMEM;
2029
2030 SM_I(sbi)->sit_info = sit_i;
2031
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002032 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
2033 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002034 if (!sit_i->sentries)
2035 return -ENOMEM;
2036
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002037 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002038 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002039 if (!sit_i->dirty_sentries_bitmap)
2040 return -ENOMEM;
2041
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002042 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002043 sit_i->sentries[start].cur_valid_map
2044 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2045 sit_i->sentries[start].ckpt_valid_map
2046 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002047 sit_i->sentries[start].discard_map
2048 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2049 if (!sit_i->sentries[start].cur_valid_map ||
2050 !sit_i->sentries[start].ckpt_valid_map ||
2051 !sit_i->sentries[start].discard_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002052 return -ENOMEM;
2053 }
2054
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002055 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2056 if (!sit_i->tmp_map)
2057 return -ENOMEM;
2058
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002059 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002060 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
2061 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002062 if (!sit_i->sec_entries)
2063 return -ENOMEM;
2064 }
2065
2066 /* get information related with SIT */
2067 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
2068
2069 /* setup SIT bitmap from ckeckpoint pack */
2070 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
2071 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
2072
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02002073 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002074 if (!dst_bitmap)
2075 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002076
2077 /* init SIT information */
2078 sit_i->s_ops = &default_salloc_ops;
2079
2080 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2081 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
2082 sit_i->written_valid_blocks = le64_to_cpu(ckpt->valid_block_count);
2083 sit_i->sit_bitmap = dst_bitmap;
2084 sit_i->bitmap_size = bitmap_size;
2085 sit_i->dirty_sentries = 0;
2086 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2087 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2088 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2089 mutex_init(&sit_i->sentry_lock);
2090 return 0;
2091}
2092
2093static int build_free_segmap(struct f2fs_sb_info *sbi)
2094{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002095 struct free_segmap_info *free_i;
2096 unsigned int bitmap_size, sec_bitmap_size;
2097
2098 /* allocate memory for free segmap information */
2099 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2100 if (!free_i)
2101 return -ENOMEM;
2102
2103 SM_I(sbi)->free_info = free_i;
2104
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002105 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002106 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002107 if (!free_i->free_segmap)
2108 return -ENOMEM;
2109
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002110 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002111 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002112 if (!free_i->free_secmap)
2113 return -ENOMEM;
2114
2115 /* set all segments as dirty temporarily */
2116 memset(free_i->free_segmap, 0xff, bitmap_size);
2117 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2118
2119 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002120 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002121 free_i->free_segments = 0;
2122 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002123 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002124 return 0;
2125}
2126
2127static int build_curseg(struct f2fs_sb_info *sbi)
2128{
Namjae Jeon1042d602012-12-01 10:56:13 +09002129 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002130 int i;
2131
Fabian Frederickb434bab2014-06-23 18:39:15 +02002132 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002133 if (!array)
2134 return -ENOMEM;
2135
2136 SM_I(sbi)->curseg_array = array;
2137
2138 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2139 mutex_init(&array[i].curseg_mutex);
2140 array[i].sum_blk = kzalloc(PAGE_CACHE_SIZE, GFP_KERNEL);
2141 if (!array[i].sum_blk)
2142 return -ENOMEM;
2143 array[i].segno = NULL_SEGNO;
2144 array[i].next_blkoff = 0;
2145 }
2146 return restore_curseg_summaries(sbi);
2147}
2148
2149static void build_sit_entries(struct f2fs_sb_info *sbi)
2150{
2151 struct sit_info *sit_i = SIT_I(sbi);
2152 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
2153 struct f2fs_summary_block *sum = curseg->sum_blk;
Chao Yu74de5932013-11-22 09:09:59 +08002154 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2155 unsigned int i, start, end;
2156 unsigned int readed, start_blk = 0;
Jaegeuk Kim90a893c2014-09-22 16:21:07 -07002157 int nrpages = MAX_BIO_BLOCKS(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002158
Chao Yu74de5932013-11-22 09:09:59 +08002159 do {
Chao Yu26879fb2015-10-12 17:05:59 +08002160 readed = ra_meta_pages(sbi, start_blk, nrpages, META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002161
Chao Yu74de5932013-11-22 09:09:59 +08002162 start = start_blk * sit_i->sents_per_block;
2163 end = (start_blk + readed) * sit_i->sents_per_block;
2164
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002165 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002166 struct seg_entry *se = &sit_i->sentries[start];
2167 struct f2fs_sit_block *sit_blk;
2168 struct f2fs_sit_entry sit;
2169 struct page *page;
2170
2171 mutex_lock(&curseg->curseg_mutex);
2172 for (i = 0; i < sits_in_cursum(sum); i++) {
Chris Fries6c311ec2014-01-17 14:44:39 -06002173 if (le32_to_cpu(segno_in_journal(sum, i))
2174 == start) {
Chao Yu74de5932013-11-22 09:09:59 +08002175 sit = sit_in_journal(sum, i);
2176 mutex_unlock(&curseg->curseg_mutex);
2177 goto got_it;
2178 }
2179 }
2180 mutex_unlock(&curseg->curseg_mutex);
2181
2182 page = get_current_sit_page(sbi, start);
2183 sit_blk = (struct f2fs_sit_block *)page_address(page);
2184 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2185 f2fs_put_page(page, 1);
2186got_it:
2187 check_block_count(sbi, start, &sit);
2188 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002189
2190 /* build discard map only one time */
2191 memcpy(se->discard_map, se->cur_valid_map, SIT_VBLOCK_MAP_SIZE);
2192 sbi->discard_blks += sbi->blocks_per_seg - se->valid_blocks;
2193
Chao Yu74de5932013-11-22 09:09:59 +08002194 if (sbi->segs_per_sec > 1) {
2195 struct sec_entry *e = get_sec_entry(sbi, start);
2196 e->valid_blocks += se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002197 }
2198 }
Chao Yu74de5932013-11-22 09:09:59 +08002199 start_blk += readed;
2200 } while (start_blk < sit_blk_cnt);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002201}
2202
2203static void init_free_segmap(struct f2fs_sb_info *sbi)
2204{
2205 unsigned int start;
2206 int type;
2207
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002208 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002209 struct seg_entry *sentry = get_seg_entry(sbi, start);
2210 if (!sentry->valid_blocks)
2211 __set_free(sbi, start);
2212 }
2213
2214 /* set use the current segments */
2215 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2216 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2217 __set_test_and_inuse(sbi, curseg_t->segno);
2218 }
2219}
2220
2221static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2222{
2223 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2224 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002225 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002226 unsigned short valid_blocks;
2227
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002228 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002229 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002230 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2231 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002232 break;
2233 offset = segno + 1;
2234 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002235 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002236 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002237 if (valid_blocks > sbi->blocks_per_seg) {
2238 f2fs_bug_on(sbi, 1);
2239 continue;
2240 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002241 mutex_lock(&dirty_i->seglist_lock);
2242 __locate_dirty_segment(sbi, segno, DIRTY);
2243 mutex_unlock(&dirty_i->seglist_lock);
2244 }
2245}
2246
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002247static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002248{
2249 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002250 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002251
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002252 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002253 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002254 return -ENOMEM;
2255 return 0;
2256}
2257
2258static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2259{
2260 struct dirty_seglist_info *dirty_i;
2261 unsigned int bitmap_size, i;
2262
2263 /* allocate memory for dirty segments list information */
2264 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2265 if (!dirty_i)
2266 return -ENOMEM;
2267
2268 SM_I(sbi)->dirty_info = dirty_i;
2269 mutex_init(&dirty_i->seglist_lock);
2270
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002271 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002272
2273 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002274 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002275 if (!dirty_i->dirty_segmap[i])
2276 return -ENOMEM;
2277 }
2278
2279 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002280 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002281}
2282
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002283/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002284 * Update min, max modified time for cost-benefit GC algorithm
2285 */
2286static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2287{
2288 struct sit_info *sit_i = SIT_I(sbi);
2289 unsigned int segno;
2290
2291 mutex_lock(&sit_i->sentry_lock);
2292
2293 sit_i->min_mtime = LLONG_MAX;
2294
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002295 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002296 unsigned int i;
2297 unsigned long long mtime = 0;
2298
2299 for (i = 0; i < sbi->segs_per_sec; i++)
2300 mtime += get_seg_entry(sbi, segno + i)->mtime;
2301
2302 mtime = div_u64(mtime, sbi->segs_per_sec);
2303
2304 if (sit_i->min_mtime > mtime)
2305 sit_i->min_mtime = mtime;
2306 }
2307 sit_i->max_mtime = get_mtime(sbi);
2308 mutex_unlock(&sit_i->sentry_lock);
2309}
2310
2311int build_segment_manager(struct f2fs_sb_info *sbi)
2312{
2313 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2314 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002315 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002316 int err;
2317
2318 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2319 if (!sm_info)
2320 return -ENOMEM;
2321
2322 /* init sm info */
2323 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002324 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2325 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2326 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2327 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2328 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2329 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2330 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002331 sm_info->rec_prefree_segments = sm_info->main_segments *
2332 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim9b5f1362014-09-16 18:30:54 -07002333 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002334 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002335 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002336
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002337 INIT_LIST_HEAD(&sm_info->discard_list);
2338 sm_info->nr_discards = 0;
2339 sm_info->max_discards = 0;
2340
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002341 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2342
Chao Yu184a5cd2014-09-04 18:13:01 +08002343 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2344
Gu Zhengb270ad62014-04-11 17:49:55 +08002345 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002346 err = create_flush_cmd_control(sbi);
2347 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002348 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002349 }
2350
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002351 err = build_sit_info(sbi);
2352 if (err)
2353 return err;
2354 err = build_free_segmap(sbi);
2355 if (err)
2356 return err;
2357 err = build_curseg(sbi);
2358 if (err)
2359 return err;
2360
2361 /* reinit free segmap based on SIT */
2362 build_sit_entries(sbi);
2363
2364 init_free_segmap(sbi);
2365 err = build_dirty_segmap(sbi);
2366 if (err)
2367 return err;
2368
2369 init_min_max_mtime(sbi);
2370 return 0;
2371}
2372
2373static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2374 enum dirty_type dirty_type)
2375{
2376 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2377
2378 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002379 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002380 dirty_i->nr_dirty[dirty_type] = 0;
2381 mutex_unlock(&dirty_i->seglist_lock);
2382}
2383
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002384static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002385{
2386 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002387 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002388}
2389
2390static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2391{
2392 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2393 int i;
2394
2395 if (!dirty_i)
2396 return;
2397
2398 /* discard pre-free/dirty segments list */
2399 for (i = 0; i < NR_DIRTY_TYPE; i++)
2400 discard_dirty_segmap(sbi, i);
2401
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002402 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002403 SM_I(sbi)->dirty_info = NULL;
2404 kfree(dirty_i);
2405}
2406
2407static void destroy_curseg(struct f2fs_sb_info *sbi)
2408{
2409 struct curseg_info *array = SM_I(sbi)->curseg_array;
2410 int i;
2411
2412 if (!array)
2413 return;
2414 SM_I(sbi)->curseg_array = NULL;
2415 for (i = 0; i < NR_CURSEG_TYPE; i++)
2416 kfree(array[i].sum_blk);
2417 kfree(array);
2418}
2419
2420static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2421{
2422 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2423 if (!free_i)
2424 return;
2425 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002426 kvfree(free_i->free_segmap);
2427 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002428 kfree(free_i);
2429}
2430
2431static void destroy_sit_info(struct f2fs_sb_info *sbi)
2432{
2433 struct sit_info *sit_i = SIT_I(sbi);
2434 unsigned int start;
2435
2436 if (!sit_i)
2437 return;
2438
2439 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002440 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002441 kfree(sit_i->sentries[start].cur_valid_map);
2442 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002443 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002444 }
2445 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002446 kfree(sit_i->tmp_map);
2447
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002448 kvfree(sit_i->sentries);
2449 kvfree(sit_i->sec_entries);
2450 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002451
2452 SM_I(sbi)->sit_info = NULL;
2453 kfree(sit_i->sit_bitmap);
2454 kfree(sit_i);
2455}
2456
2457void destroy_segment_manager(struct f2fs_sb_info *sbi)
2458{
2459 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002460
Chao Yu3b03f722013-11-06 09:12:04 +08002461 if (!sm_info)
2462 return;
Gu Zheng2163d192014-04-27 14:21:33 +08002463 destroy_flush_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002464 destroy_dirty_segmap(sbi);
2465 destroy_curseg(sbi);
2466 destroy_free_segmap(sbi);
2467 destroy_sit_info(sbi);
2468 sbi->sm_info = NULL;
2469 kfree(sm_info);
2470}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002471
2472int __init create_segment_manager_caches(void)
2473{
2474 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002475 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002476 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002477 goto fail;
2478
2479 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002480 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002481 if (!sit_entry_set_slab)
2482 goto destory_discard_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002483
2484 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2485 sizeof(struct inmem_pages));
2486 if (!inmem_entry_slab)
2487 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002488 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002489
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002490destroy_sit_entry_set:
2491 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu184a5cd2014-09-04 18:13:01 +08002492destory_discard_entry:
2493 kmem_cache_destroy(discard_entry_slab);
2494fail:
2495 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002496}
2497
2498void destroy_segment_manager_caches(void)
2499{
Chao Yu184a5cd2014-09-04 18:13:01 +08002500 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002501 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002502 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002503}