blob: 808cb68008529ece832de3a2f48a98cf14af710a [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>
Damien Le Moalf46e88092016-10-28 17:45:06 +090019#include <linux/timer.h>
Jaegeuk Kim351df4b2012-11-02 17:09:16 +090020
21#include "f2fs.h"
22#include "segment.h"
23#include "node.h"
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -080024#include "trace.h"
Namjae Jeon6ec178d2013-04-23 17:51:43 +090025#include <trace/events/f2fs.h>
Jaegeuk Kim351df4b2012-11-02 17:09:16 +090026
Changman Lee9a7f1432013-11-15 10:42:51 +090027#define __reverse_ffz(x) __reverse_ffs(~(x))
28
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090029static struct kmem_cache *discard_entry_slab;
Chao Yu275b66b2016-08-29 23:58:34 +080030static struct kmem_cache *bio_entry_slab;
Chao Yu184a5cd2014-09-04 18:13:01 +080031static struct kmem_cache *sit_entry_set_slab;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -070032static struct kmem_cache *inmem_entry_slab;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090033
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070034static unsigned long __reverse_ulong(unsigned char *str)
35{
36 unsigned long tmp = 0;
37 int shift = 24, idx = 0;
38
39#if BITS_PER_LONG == 64
40 shift = 56;
41#endif
42 while (shift >= 0) {
43 tmp |= (unsigned long)str[idx++] << shift;
44 shift -= BITS_PER_BYTE;
45 }
46 return tmp;
47}
48
Changman Lee9a7f1432013-11-15 10:42:51 +090049/*
50 * __reverse_ffs is copied from include/asm-generic/bitops/__ffs.h since
51 * MSB and LSB are reversed in a byte by f2fs_set_bit.
52 */
53static inline unsigned long __reverse_ffs(unsigned long word)
54{
55 int num = 0;
56
57#if BITS_PER_LONG == 64
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070058 if ((word & 0xffffffff00000000UL) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090059 num += 32;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070060 else
Changman Lee9a7f1432013-11-15 10:42:51 +090061 word >>= 32;
Changman Lee9a7f1432013-11-15 10:42:51 +090062#endif
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070063 if ((word & 0xffff0000) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090064 num += 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070065 else
Changman Lee9a7f1432013-11-15 10:42:51 +090066 word >>= 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070067
68 if ((word & 0xff00) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090069 num += 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070070 else
Changman Lee9a7f1432013-11-15 10:42:51 +090071 word >>= 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070072
Changman Lee9a7f1432013-11-15 10:42:51 +090073 if ((word & 0xf0) == 0)
74 num += 4;
75 else
76 word >>= 4;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070077
Changman Lee9a7f1432013-11-15 10:42:51 +090078 if ((word & 0xc) == 0)
79 num += 2;
80 else
81 word >>= 2;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070082
Changman Lee9a7f1432013-11-15 10:42:51 +090083 if ((word & 0x2) == 0)
84 num += 1;
85 return num;
86}
87
88/*
arter97e1c42042014-08-06 23:22:50 +090089 * __find_rev_next(_zero)_bit is copied from lib/find_next_bit.c because
Changman Lee9a7f1432013-11-15 10:42:51 +090090 * f2fs_set_bit makes MSB and LSB reversed in a byte.
Fan Li692223d2015-11-12 08:43:04 +080091 * @size must be integral times of unsigned long.
Changman Lee9a7f1432013-11-15 10:42:51 +090092 * Example:
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070093 * MSB <--> LSB
94 * f2fs_set_bit(0, bitmap) => 1000 0000
95 * f2fs_set_bit(7, bitmap) => 0000 0001
Changman Lee9a7f1432013-11-15 10:42:51 +090096 */
97static unsigned long __find_rev_next_bit(const unsigned long *addr,
98 unsigned long size, unsigned long offset)
99{
100 const unsigned long *p = addr + BIT_WORD(offset);
Fan Li692223d2015-11-12 08:43:04 +0800101 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900102 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900103
104 if (offset >= size)
105 return size;
106
Fan Li692223d2015-11-12 08:43:04 +0800107 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900108 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900109
Fan Li692223d2015-11-12 08:43:04 +0800110 while (1) {
111 if (*p == 0)
112 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700113
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700114 tmp = __reverse_ulong((unsigned char *)p);
Fan Li692223d2015-11-12 08:43:04 +0800115
116 tmp &= ~0UL >> offset;
117 if (size < BITS_PER_LONG)
118 tmp &= (~0UL << (BITS_PER_LONG - size));
Changman Lee9a7f1432013-11-15 10:42:51 +0900119 if (tmp)
Fan Li692223d2015-11-12 08:43:04 +0800120 goto found;
121pass:
122 if (size <= BITS_PER_LONG)
123 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900124 size -= BITS_PER_LONG;
Fan Li692223d2015-11-12 08:43:04 +0800125 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700126 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900127 }
Fan Li692223d2015-11-12 08:43:04 +0800128 return result;
129found:
130 return result - size + __reverse_ffs(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900131}
132
133static unsigned long __find_rev_next_zero_bit(const unsigned long *addr,
134 unsigned long size, unsigned long offset)
135{
136 const unsigned long *p = addr + BIT_WORD(offset);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800137 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900138 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900139
140 if (offset >= size)
141 return size;
142
Jaegeuk Kim80609442015-12-04 16:51:13 -0800143 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900144 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900145
Jaegeuk Kim80609442015-12-04 16:51:13 -0800146 while (1) {
147 if (*p == ~0UL)
148 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700149
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700150 tmp = __reverse_ulong((unsigned char *)p);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800151
152 if (offset)
153 tmp |= ~0UL << (BITS_PER_LONG - offset);
154 if (size < BITS_PER_LONG)
155 tmp |= ~0UL >> size;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700156 if (tmp != ~0UL)
Jaegeuk Kim80609442015-12-04 16:51:13 -0800157 goto found;
158pass:
159 if (size <= BITS_PER_LONG)
160 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900161 size -= BITS_PER_LONG;
Jaegeuk Kim80609442015-12-04 16:51:13 -0800162 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700163 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900164 }
Jaegeuk Kim80609442015-12-04 16:51:13 -0800165 return result;
166found:
167 return result - size + __reverse_ffz(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900168}
169
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700170void register_inmem_page(struct inode *inode, struct page *page)
171{
172 struct f2fs_inode_info *fi = F2FS_I(inode);
173 struct inmem_pages *new;
Jaegeuk Kim9be32d72014-12-05 10:39:49 -0800174
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -0800175 f2fs_trace_pid(page);
Jaegeuk Kim0722b102014-12-05 11:58:02 -0800176
Chao Yudecd36b2015-08-07 18:42:09 +0800177 set_page_private(page, (unsigned long)ATOMIC_WRITTEN_PAGE);
178 SetPagePrivate(page);
179
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700180 new = f2fs_kmem_cache_alloc(inmem_entry_slab, GFP_NOFS);
181
182 /* add atomic page indices to the list */
183 new->page = page;
184 INIT_LIST_HEAD(&new->list);
Chao Yudecd36b2015-08-07 18:42:09 +0800185
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700186 /* increase reference count with clean state */
187 mutex_lock(&fi->inmem_lock);
188 get_page(page);
189 list_add_tail(&new->list, &fi->inmem_pages);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800190 inc_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700191 mutex_unlock(&fi->inmem_lock);
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700192
193 trace_f2fs_register_inmem_page(page, INMEM);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700194}
195
Chao Yu28bc1062016-02-06 14:40:34 +0800196static int __revoke_inmem_pages(struct inode *inode,
197 struct list_head *head, bool drop, bool recover)
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700198{
Chao Yu28bc1062016-02-06 14:40:34 +0800199 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700200 struct inmem_pages *cur, *tmp;
Chao Yu28bc1062016-02-06 14:40:34 +0800201 int err = 0;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700202
Chao Yu29b96b52016-02-06 14:38:29 +0800203 list_for_each_entry_safe(cur, tmp, head, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800204 struct page *page = cur->page;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700205
Chao Yu28bc1062016-02-06 14:40:34 +0800206 if (drop)
207 trace_f2fs_commit_inmem_page(page, INMEM_DROP);
208
209 lock_page(page);
210
211 if (recover) {
212 struct dnode_of_data dn;
213 struct node_info ni;
214
215 trace_f2fs_commit_inmem_page(page, INMEM_REVOKE);
216
217 set_new_dnode(&dn, inode, NULL, NULL, 0);
218 if (get_dnode_of_data(&dn, page->index, LOOKUP_NODE)) {
219 err = -EAGAIN;
220 goto next;
221 }
222 get_node_info(sbi, dn.nid, &ni);
223 f2fs_replace_block(sbi, &dn, dn.data_blkaddr,
224 cur->old_addr, ni.version, true, true);
225 f2fs_put_dnode(&dn);
226 }
227next:
Jaegeuk Kim63c52d72016-04-12 14:11:03 -0700228 /* we don't need to invalidate this in the sccessful status */
229 if (drop || recover)
230 ClearPageUptodate(page);
Chao Yu28bc1062016-02-06 14:40:34 +0800231 set_page_private(page, 0);
Chao Yuc81ced02016-04-29 20:13:36 +0800232 ClearPagePrivate(page);
Chao Yu28bc1062016-02-06 14:40:34 +0800233 f2fs_put_page(page, 1);
Chao Yudecd36b2015-08-07 18:42:09 +0800234
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700235 list_del(&cur->list);
236 kmem_cache_free(inmem_entry_slab, cur);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800237 dec_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700238 }
Chao Yu28bc1062016-02-06 14:40:34 +0800239 return err;
Chao Yu29b96b52016-02-06 14:38:29 +0800240}
241
242void drop_inmem_pages(struct inode *inode)
243{
244 struct f2fs_inode_info *fi = F2FS_I(inode);
245
Jaegeuk Kim91942322016-05-20 10:13:22 -0700246 clear_inode_flag(inode, FI_ATOMIC_FILE);
Jaegeuk Kim26dc3d42016-04-11 13:15:10 -0700247
Chao Yu29b96b52016-02-06 14:38:29 +0800248 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800249 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
Chao Yu29b96b52016-02-06 14:38:29 +0800250 mutex_unlock(&fi->inmem_lock);
251}
252
Chao Yu28bc1062016-02-06 14:40:34 +0800253static int __commit_inmem_pages(struct inode *inode,
254 struct list_head *revoke_list)
Chao Yu29b96b52016-02-06 14:38:29 +0800255{
256 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
257 struct f2fs_inode_info *fi = F2FS_I(inode);
258 struct inmem_pages *cur, *tmp;
259 struct f2fs_io_info fio = {
260 .sbi = sbi,
261 .type = DATA,
Mike Christie04d328d2016-06-05 14:31:55 -0500262 .op = REQ_OP_WRITE,
263 .op_flags = WRITE_SYNC | REQ_PRIO,
Chao Yu29b96b52016-02-06 14:38:29 +0800264 .encrypted_page = NULL,
265 };
266 bool submit_bio = false;
267 int err = 0;
268
269 list_for_each_entry_safe(cur, tmp, &fi->inmem_pages, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800270 struct page *page = cur->page;
271
272 lock_page(page);
273 if (page->mapping == inode->i_mapping) {
274 trace_f2fs_commit_inmem_page(page, INMEM);
275
276 set_page_dirty(page);
277 f2fs_wait_on_page_writeback(page, DATA, true);
Chao Yu933439c2016-10-11 22:57:01 +0800278 if (clear_page_dirty_for_io(page)) {
Chao Yu29b96b52016-02-06 14:38:29 +0800279 inode_dec_dirty_pages(inode);
Chao Yu933439c2016-10-11 22:57:01 +0800280 remove_dirty_inode(inode);
281 }
Chao Yu28bc1062016-02-06 14:40:34 +0800282
283 fio.page = page;
Chao Yu29b96b52016-02-06 14:38:29 +0800284 err = do_write_data_page(&fio);
285 if (err) {
Chao Yu28bc1062016-02-06 14:40:34 +0800286 unlock_page(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800287 break;
288 }
Chao Yu28bc1062016-02-06 14:40:34 +0800289
290 /* record old blkaddr for revoking */
291 cur->old_addr = fio.old_blkaddr;
292
293 clear_cold_data(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800294 submit_bio = true;
295 }
Chao Yu28bc1062016-02-06 14:40:34 +0800296 unlock_page(page);
297 list_move_tail(&cur->list, revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800298 }
299
300 if (submit_bio)
301 f2fs_submit_merged_bio_cond(sbi, inode, NULL, 0, DATA, WRITE);
Chao Yu28bc1062016-02-06 14:40:34 +0800302
303 if (!err)
304 __revoke_inmem_pages(inode, revoke_list, false, false);
305
Chao Yu29b96b52016-02-06 14:38:29 +0800306 return err;
307}
308
309int commit_inmem_pages(struct inode *inode)
310{
311 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
312 struct f2fs_inode_info *fi = F2FS_I(inode);
Chao Yu28bc1062016-02-06 14:40:34 +0800313 struct list_head revoke_list;
314 int err;
Chao Yu29b96b52016-02-06 14:38:29 +0800315
Chao Yu28bc1062016-02-06 14:40:34 +0800316 INIT_LIST_HEAD(&revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800317 f2fs_balance_fs(sbi, true);
318 f2fs_lock_op(sbi);
319
320 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800321 err = __commit_inmem_pages(inode, &revoke_list);
322 if (err) {
323 int ret;
324 /*
325 * try to revoke all committed pages, but still we could fail
326 * due to no memory or other reason, if that happened, EAGAIN
327 * will be returned, which means in such case, transaction is
328 * already not integrity, caller should use journal to do the
329 * recovery or rewrite & commit last transaction. For other
330 * error number, revoking was done by filesystem itself.
331 */
332 ret = __revoke_inmem_pages(inode, &revoke_list, false, true);
333 if (ret)
334 err = ret;
335
336 /* drop all uncommitted pages */
337 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
338 }
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700339 mutex_unlock(&fi->inmem_lock);
340
Chao Yu29b96b52016-02-06 14:38:29 +0800341 f2fs_unlock_op(sbi);
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700342 return err;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700343}
344
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900345/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900346 * This function balances dirty node and dentry pages.
347 * In addition, it controls garbage collection.
348 */
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800349void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900350{
Chao Yu0f348022016-09-26 19:45:55 +0800351#ifdef CONFIG_F2FS_FAULT_INJECTION
352 if (time_to_inject(sbi, FAULT_CHECKPOINT))
353 f2fs_stop_checkpoint(sbi, false);
354#endif
355
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800356 if (!need)
357 return;
Jaegeuk Kime589c2c2016-06-02 15:24:24 -0700358
359 /* balance_fs_bg is able to be pending */
360 if (excess_cached_nats(sbi))
361 f2fs_balance_fs_bg(sbi);
362
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900363 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900364 * We should do GC or end up with checkpoint, if there are so many dirty
365 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900366 */
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700367 if (has_not_enough_free_secs(sbi, 0, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900368 mutex_lock(&sbi->gc_mutex);
Jaegeuk Kim7702bdb2016-11-14 17:38:35 -0800369 f2fs_gc(sbi, false, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900370 }
371}
372
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900373void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
374{
Chao Yu1dcc3362015-02-05 17:57:31 +0800375 /* try to shrink extent cache when there is no enough memory */
Jaegeuk Kim554df792015-06-19 13:41:23 -0700376 if (!available_free_memory(sbi, EXTENT_CACHE))
377 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800378
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700379 /* check the # of cached NAT entries */
380 if (!available_free_memory(sbi, NAT_ENTRIES))
381 try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
382
Chao Yu31696582015-07-28 18:33:46 +0800383 if (!available_free_memory(sbi, FREE_NIDS))
Jaegeuk Kimad4edb82016-06-16 16:41:49 -0700384 try_to_free_nids(sbi, MAX_FREE_NIDS);
385 else
Chao Yu3a2ad562016-10-11 22:31:35 +0800386 build_free_nids(sbi, false);
Chao Yu31696582015-07-28 18:33:46 +0800387
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700388 /* checkpoint is the only way to shrink partial cached entries */
389 if (!available_free_memory(sbi, NAT_ENTRIES) ||
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700390 !available_free_memory(sbi, INO_ENTRIES) ||
Chao Yu7d768d22016-01-18 18:31:18 +0800391 excess_prefree_segs(sbi) ||
392 excess_dirty_nats(sbi) ||
Jaegeuk Kimd0239e12016-01-08 16:57:48 -0800393 (is_idle(sbi) && f2fs_time_over(sbi, CP_TIME))) {
Chao Yue9f5b8b2016-02-14 18:54:33 +0800394 if (test_opt(sbi, DATA_FLUSH)) {
395 struct blk_plug plug;
396
397 blk_start_plug(&plug);
Chao Yu36b35a02015-12-17 17:13:28 +0800398 sync_dirty_inodes(sbi, FILE_INODE);
Chao Yue9f5b8b2016-02-14 18:54:33 +0800399 blk_finish_plug(&plug);
400 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900401 f2fs_sync_fs(sbi->sb, true);
Jaegeuk Kim42190d22016-01-09 13:45:17 -0800402 stat_inc_bg_cp_count(sbi->stat_info);
Chao Yu36b35a02015-12-17 17:13:28 +0800403 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900404}
405
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700406static int __submit_flush_wait(struct block_device *bdev)
407{
408 struct bio *bio = f2fs_bio_alloc(0);
409 int ret;
410
411 bio_set_op_attrs(bio, REQ_OP_WRITE, WRITE_FLUSH);
412 bio->bi_bdev = bdev;
413 ret = submit_bio_wait(bio);
414 bio_put(bio);
415 return ret;
416}
417
418static int submit_flush_wait(struct f2fs_sb_info *sbi)
419{
420 int ret = __submit_flush_wait(sbi->sb->s_bdev);
421 int i;
422
423 if (sbi->s_ndevs && !ret) {
424 for (i = 1; i < sbi->s_ndevs; i++) {
425 ret = __submit_flush_wait(FDEV(i).bdev);
426 if (ret)
427 break;
428 }
429 }
430 return ret;
431}
432
Gu Zheng2163d192014-04-27 14:21:33 +0800433static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900434{
435 struct f2fs_sb_info *sbi = data;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800436 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
437 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900438repeat:
439 if (kthread_should_stop())
440 return 0;
441
Gu Zheng721bd4d2014-09-05 18:31:00 +0800442 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900443 struct flush_cmd *cmd, *next;
444 int ret;
445
Gu Zheng721bd4d2014-09-05 18:31:00 +0800446 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
447 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
448
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700449 ret = submit_flush_wait(sbi);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800450 llist_for_each_entry_safe(cmd, next,
451 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900452 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900453 complete(&cmd->wait);
454 }
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800455 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900456 }
457
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800458 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800459 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900460 goto repeat;
461}
462
463int f2fs_issue_flush(struct f2fs_sb_info *sbi)
464{
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800465 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800466 struct flush_cmd cmd;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900467
Jaegeuk Kim24a9ee02014-07-25 17:46:10 -0700468 trace_f2fs_issue_flush(sbi->sb, test_opt(sbi, NOBARRIER),
469 test_opt(sbi, FLUSH_MERGE));
470
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700471 if (test_opt(sbi, NOBARRIER))
472 return 0;
473
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700474 if (!test_opt(sbi, FLUSH_MERGE) || !atomic_read(&fcc->submit_flush)) {
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700475 int ret;
476
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700477 atomic_inc(&fcc->submit_flush);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700478 ret = submit_flush_wait(sbi);
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700479 atomic_dec(&fcc->submit_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700480 return ret;
481 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900482
Chao Yuadf8d902014-05-08 17:00:35 +0800483 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900484
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700485 atomic_inc(&fcc->submit_flush);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800486 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900487
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800488 if (!fcc->dispatch_list)
489 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900490
Chao Yuadf8d902014-05-08 17:00:35 +0800491 wait_for_completion(&cmd.wait);
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700492 atomic_dec(&fcc->submit_flush);
Chao Yuadf8d902014-05-08 17:00:35 +0800493
494 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900495}
496
Gu Zheng2163d192014-04-27 14:21:33 +0800497int create_flush_cmd_control(struct f2fs_sb_info *sbi)
498{
499 dev_t dev = sbi->sb->s_bdev->bd_dev;
500 struct flush_cmd_control *fcc;
501 int err = 0;
502
503 fcc = kzalloc(sizeof(struct flush_cmd_control), GFP_KERNEL);
504 if (!fcc)
505 return -ENOMEM;
Jaegeuk Kim0a87f662016-05-23 12:04:56 -0700506 atomic_set(&fcc->submit_flush, 0);
Gu Zheng2163d192014-04-27 14:21:33 +0800507 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800508 init_llist_head(&fcc->issue_list);
Chao Yu6b2920a2014-07-07 11:21:59 +0800509 SM_I(sbi)->cmd_control_info = fcc;
Gu Zheng2163d192014-04-27 14:21:33 +0800510 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
511 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
512 if (IS_ERR(fcc->f2fs_issue_flush)) {
513 err = PTR_ERR(fcc->f2fs_issue_flush);
514 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800515 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800516 return err;
517 }
Gu Zheng2163d192014-04-27 14:21:33 +0800518
519 return err;
520}
521
522void destroy_flush_cmd_control(struct f2fs_sb_info *sbi)
523{
Chao Yu6b2920a2014-07-07 11:21:59 +0800524 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800525
526 if (fcc && fcc->f2fs_issue_flush)
527 kthread_stop(fcc->f2fs_issue_flush);
528 kfree(fcc);
Chao Yu6b2920a2014-07-07 11:21:59 +0800529 SM_I(sbi)->cmd_control_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800530}
531
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900532static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
533 enum dirty_type dirty_type)
534{
535 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
536
537 /* need not be added */
538 if (IS_CURSEG(sbi, segno))
539 return;
540
541 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
542 dirty_i->nr_dirty[dirty_type]++;
543
544 if (dirty_type == DIRTY) {
545 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900546 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900547
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700548 if (unlikely(t >= DIRTY)) {
549 f2fs_bug_on(sbi, 1);
550 return;
551 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900552 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
553 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900554 }
555}
556
557static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
558 enum dirty_type dirty_type)
559{
560 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
561
562 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
563 dirty_i->nr_dirty[dirty_type]--;
564
565 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900566 struct seg_entry *sentry = get_seg_entry(sbi, segno);
567 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900568
Changman Lee4625d6a2013-10-25 17:31:57 +0900569 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
570 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900571
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900572 if (get_valid_blocks(sbi, segno, sbi->segs_per_sec) == 0)
573 clear_bit(GET_SECNO(sbi, segno),
574 dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900575 }
576}
577
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900578/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900579 * Should not occur error such as -ENOMEM.
580 * Adding dirty entry into seglist is not critical operation.
581 * If a given segment is one of current working segments, it won't be added.
582 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800583static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900584{
585 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
586 unsigned short valid_blocks;
587
588 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
589 return;
590
591 mutex_lock(&dirty_i->seglist_lock);
592
593 valid_blocks = get_valid_blocks(sbi, segno, 0);
594
595 if (valid_blocks == 0) {
596 __locate_dirty_segment(sbi, segno, PRE);
597 __remove_dirty_segment(sbi, segno, DIRTY);
598 } else if (valid_blocks < sbi->blocks_per_seg) {
599 __locate_dirty_segment(sbi, segno, DIRTY);
600 } else {
601 /* Recovery routine with SSR needs this */
602 __remove_dirty_segment(sbi, segno, DIRTY);
603 }
604
605 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900606}
607
Chao Yu275b66b2016-08-29 23:58:34 +0800608static struct bio_entry *__add_bio_entry(struct f2fs_sb_info *sbi,
609 struct bio *bio)
610{
611 struct list_head *wait_list = &(SM_I(sbi)->wait_list);
612 struct bio_entry *be = f2fs_kmem_cache_alloc(bio_entry_slab, GFP_NOFS);
613
614 INIT_LIST_HEAD(&be->list);
615 be->bio = bio;
616 init_completion(&be->event);
617 list_add_tail(&be->list, wait_list);
618
619 return be;
620}
621
622void f2fs_wait_all_discard_bio(struct f2fs_sb_info *sbi)
623{
624 struct list_head *wait_list = &(SM_I(sbi)->wait_list);
625 struct bio_entry *be, *tmp;
626
627 list_for_each_entry_safe(be, tmp, wait_list, list) {
628 struct bio *bio = be->bio;
629 int err;
630
631 wait_for_completion_io(&be->event);
632 err = be->error;
633 if (err == -EOPNOTSUPP)
634 err = 0;
635
636 if (err)
637 f2fs_msg(sbi->sb, KERN_INFO,
638 "Issue discard failed, ret: %d", err);
639
640 bio_put(bio);
641 list_del(&be->list);
642 kmem_cache_free(bio_entry_slab, be);
643 }
644}
645
646static void f2fs_submit_bio_wait_endio(struct bio *bio)
647{
648 struct bio_entry *be = (struct bio_entry *)bio->bi_private;
649
650 be->error = bio->bi_error;
651 complete(&be->event);
652}
653
654/* this function is copied from blkdev_issue_discard from block/blk-lib.c */
Damien Le Moalf46e88092016-10-28 17:45:06 +0900655static int __f2fs_issue_discard_async(struct f2fs_sb_info *sbi,
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700656 struct block_device *bdev, block_t blkstart, block_t blklen)
Chao Yu275b66b2016-08-29 23:58:34 +0800657{
Chao Yu275b66b2016-08-29 23:58:34 +0800658 struct bio *bio = NULL;
659 int err;
660
Damien Le Moalf46e88092016-10-28 17:45:06 +0900661 trace_f2fs_issue_discard(sbi->sb, blkstart, blklen);
662
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700663 if (sbi->s_ndevs) {
664 int devi = f2fs_target_device_index(sbi, blkstart);
665
666 blkstart -= FDEV(devi).start_blk;
667 }
Damien Le Moalf46e88092016-10-28 17:45:06 +0900668 err = __blkdev_issue_discard(bdev,
669 SECTOR_FROM_BLOCK(blkstart),
670 SECTOR_FROM_BLOCK(blklen),
671 GFP_NOFS, 0, &bio);
Chao Yu275b66b2016-08-29 23:58:34 +0800672 if (!err && bio) {
673 struct bio_entry *be = __add_bio_entry(sbi, bio);
674
675 bio->bi_private = be;
676 bio->bi_end_io = f2fs_submit_bio_wait_endio;
677 bio->bi_opf |= REQ_SYNC;
678 submit_bio(bio);
679 }
680
681 return err;
682}
683
Damien Le Moalf46e88092016-10-28 17:45:06 +0900684#ifdef CONFIG_BLK_DEV_ZONED
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700685static int __f2fs_issue_discard_zone(struct f2fs_sb_info *sbi,
686 struct block_device *bdev, block_t blkstart, block_t blklen)
Damien Le Moalf46e88092016-10-28 17:45:06 +0900687{
Damien Le Moalf46e88092016-10-28 17:45:06 +0900688 sector_t nr_sects = SECTOR_FROM_BLOCK(blklen);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700689 sector_t sector;
690 int devi = 0;
Damien Le Moalf46e88092016-10-28 17:45:06 +0900691
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700692 if (sbi->s_ndevs) {
693 devi = f2fs_target_device_index(sbi, blkstart);
694 blkstart -= FDEV(devi).start_blk;
695 }
696 sector = SECTOR_FROM_BLOCK(blkstart);
697
698 if (sector % bdev_zone_size(bdev) || nr_sects != bdev_zone_size(bdev)) {
Damien Le Moalf46e88092016-10-28 17:45:06 +0900699 f2fs_msg(sbi->sb, KERN_INFO,
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700700 "(%d) %s: Unaligned discard attempted (block %x + %x)",
701 devi, sbi->s_ndevs ? FDEV(devi).path: "",
702 blkstart, blklen);
Damien Le Moalf46e88092016-10-28 17:45:06 +0900703 return -EIO;
704 }
705
706 /*
707 * We need to know the type of the zone: for conventional zones,
708 * use regular discard if the drive supports it. For sequential
709 * zones, reset the zone write pointer.
710 */
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700711 switch (get_blkz_type(sbi, bdev, blkstart)) {
Damien Le Moalf46e88092016-10-28 17:45:06 +0900712
713 case BLK_ZONE_TYPE_CONVENTIONAL:
714 if (!blk_queue_discard(bdev_get_queue(bdev)))
715 return 0;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700716 return __f2fs_issue_discard_async(sbi, bdev, blkstart, blklen);
Damien Le Moalf46e88092016-10-28 17:45:06 +0900717 case BLK_ZONE_TYPE_SEQWRITE_REQ:
718 case BLK_ZONE_TYPE_SEQWRITE_PREF:
Damien Le Moal126606c2016-10-28 17:45:07 +0900719 trace_f2fs_issue_reset_zone(sbi->sb, blkstart);
Damien Le Moalf46e88092016-10-28 17:45:06 +0900720 return blkdev_reset_zones(bdev, sector,
721 nr_sects, GFP_NOFS);
722 default:
723 /* Unknown zone type: broken device ? */
724 return -EIO;
725 }
726}
727#endif
728
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700729static int __issue_discard_async(struct f2fs_sb_info *sbi,
730 struct block_device *bdev, block_t blkstart, block_t blklen)
731{
732#ifdef CONFIG_BLK_DEV_ZONED
733 if (f2fs_sb_mounted_blkzoned(sbi->sb) &&
734 bdev_zoned_model(bdev) != BLK_ZONED_NONE)
735 return __f2fs_issue_discard_zone(sbi, bdev, blkstart, blklen);
736#endif
737 return __f2fs_issue_discard_async(sbi, bdev, blkstart, blklen);
738}
739
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900740static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +0900741 block_t blkstart, block_t blklen)
742{
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700743 sector_t start = blkstart, len = 0;
744 struct block_device *bdev;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700745 struct seg_entry *se;
746 unsigned int offset;
747 block_t i;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700748 int err = 0;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700749
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700750 bdev = f2fs_target_device(sbi, blkstart, NULL);
751
752 for (i = blkstart; i < blkstart + blklen; i++, len++) {
753 if (i != start) {
754 struct block_device *bdev2 =
755 f2fs_target_device(sbi, i, NULL);
756
757 if (bdev2 != bdev) {
758 err = __issue_discard_async(sbi, bdev,
759 start, len);
760 if (err)
761 return err;
762 bdev = bdev2;
763 start = i;
764 len = 0;
765 }
766 }
767
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700768 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
769 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
770
771 if (!f2fs_test_and_set_bit(offset, se->discard_map))
772 sbi->discard_blks--;
773 }
Damien Le Moalf46e88092016-10-28 17:45:06 +0900774
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700775 if (len)
776 err = __issue_discard_async(sbi, bdev, start, len);
777 return err;
Jaegeuk Kim1e87a782014-04-15 13:57:55 +0900778}
779
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700780static void __add_discard_entry(struct f2fs_sb_info *sbi,
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700781 struct cp_control *cpc, struct seg_entry *se,
782 unsigned int start, unsigned int end)
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900783{
784 struct list_head *head = &SM_I(sbi)->discard_list;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700785 struct discard_entry *new, *last;
786
787 if (!list_empty(head)) {
788 last = list_last_entry(head, struct discard_entry, list);
789 if (START_BLOCK(sbi, cpc->trim_start) + start ==
790 last->blkaddr + last->len) {
791 last->len += end - start;
792 goto done;
793 }
794 }
795
796 new = f2fs_kmem_cache_alloc(discard_entry_slab, GFP_NOFS);
797 INIT_LIST_HEAD(&new->list);
798 new->blkaddr = START_BLOCK(sbi, cpc->trim_start) + start;
799 new->len = end - start;
800 list_add_tail(&new->list, head);
801done:
802 SM_I(sbi)->nr_discards += end - start;
Jaegeuk Kimadf49832014-10-28 22:27:59 -0700803}
804
805static void add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc)
806{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900807 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
808 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700809 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900810 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
811 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700812 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800813 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900814 unsigned int start = 0, end = -1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700815 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900816 int i;
817
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700818 if (se->valid_blocks == max_blocks || !f2fs_discard_en(sbi))
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900819 return;
820
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700821 if (!force) {
822 if (!test_opt(sbi, DISCARD) || !se->valid_blocks ||
Dan Carpenter912a83b2015-05-14 11:52:28 +0300823 SM_I(sbi)->nr_discards >= SM_I(sbi)->max_discards)
824 return;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700825 }
826
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900827 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
828 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700829 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -0800830 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900831
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700832 while (force || SM_I(sbi)->nr_discards <= SM_I(sbi)->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900833 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
834 if (start >= max_blocks)
835 break;
836
837 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Yunlei Hec7b41e12016-07-07 12:13:33 +0800838 if (force && start && end != max_blocks
839 && (end - start) < cpc->trim_minlen)
840 continue;
841
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700842 __add_discard_entry(sbi, cpc, se, start, end);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900843 }
844}
845
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700846void release_discard_addrs(struct f2fs_sb_info *sbi)
847{
848 struct list_head *head = &(SM_I(sbi)->discard_list);
849 struct discard_entry *entry, *this;
850
851 /* drop caches */
852 list_for_each_entry_safe(entry, this, head, list) {
853 list_del(&entry->list);
854 kmem_cache_free(discard_entry_slab, entry);
855 }
856}
857
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900858/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900859 * Should call clear_prefree_segments after checkpoint is done.
860 */
861static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
862{
863 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +0800864 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900865
866 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700867 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900868 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900869 mutex_unlock(&dirty_i->seglist_lock);
870}
871
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700872void clear_prefree_segments(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900873{
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900874 struct list_head *head = &(SM_I(sbi)->discard_list);
Chao Yu2d7b8222014-03-29 11:33:17 +0800875 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900876 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yu275b66b2016-08-29 23:58:34 +0800877 struct blk_plug plug;
Changman Lee29e59c12013-11-11 09:24:37 +0900878 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +0900879 unsigned int start = 0, end = -1;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700880 unsigned int secno, start_segno;
Chao Yuc24a0fd2016-07-07 22:46:55 +0800881 bool force = (cpc->reason == CP_DISCARD);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900882
Chao Yu275b66b2016-08-29 23:58:34 +0800883 blk_start_plug(&plug);
884
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900885 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +0900886
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900887 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +0900888 int i;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700889 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
890 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900891 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700892 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
893 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900894
Changman Lee29e59c12013-11-11 09:24:37 +0900895 for (i = start; i < end; i++)
896 clear_bit(i, prefree_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900897
Changman Lee29e59c12013-11-11 09:24:37 +0900898 dirty_i->nr_dirty[PRE] -= end - start;
899
Chao Yuc24a0fd2016-07-07 22:46:55 +0800900 if (force || !test_opt(sbi, DISCARD))
Changman Lee29e59c12013-11-11 09:24:37 +0900901 continue;
902
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700903 if (!test_opt(sbi, LFS) || sbi->segs_per_sec == 1) {
904 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
Jaegeuk Kim37208872013-11-12 16:55:17 +0900905 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700906 continue;
907 }
908next:
909 secno = GET_SECNO(sbi, start);
910 start_segno = secno * sbi->segs_per_sec;
911 if (!IS_CURSEC(sbi, secno) &&
912 !get_valid_blocks(sbi, start, sbi->segs_per_sec))
913 f2fs_issue_discard(sbi, START_BLOCK(sbi, start_segno),
914 sbi->segs_per_sec << sbi->log_blocks_per_seg);
915
916 start = start_segno + sbi->segs_per_sec;
917 if (start < end)
918 goto next;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900919 }
920 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900921
922 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +0800923 list_for_each_entry_safe(entry, this, head, list) {
Chao Yuc24a0fd2016-07-07 22:46:55 +0800924 if (force && entry->len < cpc->trim_minlen)
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700925 goto skip;
Jaegeuk Kim37208872013-11-12 16:55:17 +0900926 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
Jaegeuk Kimf56aa1c2015-06-02 15:48:20 -0700927 cpc->trimmed += entry->len;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -0700928skip:
Jaegeuk Kimb2955552013-11-12 14:49:56 +0900929 list_del(&entry->list);
930 SM_I(sbi)->nr_discards -= entry->len;
931 kmem_cache_free(discard_entry_slab, entry);
932 }
Chao Yu275b66b2016-08-29 23:58:34 +0800933
934 blk_finish_plug(&plug);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900935}
936
Chao Yu184a5cd2014-09-04 18:13:01 +0800937static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900938{
939 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +0800940
941 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900942 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +0800943 return false;
944 }
945
946 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900947}
948
949static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
950 unsigned int segno, int modified)
951{
952 struct seg_entry *se = get_seg_entry(sbi, segno);
953 se->type = type;
954 if (modified)
955 __mark_sit_entry_dirty(sbi, segno);
956}
957
958static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
959{
960 struct seg_entry *se;
961 unsigned int segno, offset;
962 long int new_vblocks;
963
964 segno = GET_SEGNO(sbi, blkaddr);
965
966 se = get_seg_entry(sbi, segno);
967 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +0900968 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900969
Jaegeuk Kim9850cf42014-09-02 15:52:58 -0700970 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900971 (new_vblocks > sbi->blocks_per_seg)));
972
973 se->valid_blocks = new_vblocks;
974 se->mtime = get_mtime(sbi);
975 SIT_I(sbi)->max_mtime = se->mtime;
976
977 /* Update valid block bitmap */
978 if (del > 0) {
Gu Zheng52aca072014-10-20 17:45:51 +0800979 if (f2fs_test_and_set_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700980 f2fs_bug_on(sbi, 1);
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700981 if (f2fs_discard_en(sbi) &&
982 !f2fs_test_and_set_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700983 sbi->discard_blks--;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900984 } else {
Gu Zheng52aca072014-10-20 17:45:51 +0800985 if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map))
Jaegeuk Kim05796762014-09-02 16:05:00 -0700986 f2fs_bug_on(sbi, 1);
Jaegeuk Kim3e025742016-08-02 10:56:40 -0700987 if (f2fs_discard_en(sbi) &&
988 f2fs_test_and_clear_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700989 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900990 }
991 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
992 se->ckpt_valid_blocks += del;
993
994 __mark_sit_entry_dirty(sbi, segno);
995
996 /* update total number of valid blocks to be written in ckpt area */
997 SIT_I(sbi)->written_valid_blocks += del;
998
999 if (sbi->segs_per_sec > 1)
1000 get_sec_entry(sbi, segno)->valid_blocks += del;
1001}
1002
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001003void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001004{
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001005 update_sit_entry(sbi, new, 1);
1006 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
1007 update_sit_entry(sbi, old, -1);
1008
1009 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
1010 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001011}
1012
1013void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
1014{
1015 unsigned int segno = GET_SEGNO(sbi, addr);
1016 struct sit_info *sit_i = SIT_I(sbi);
1017
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001018 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001019 if (addr == NEW_ADDR)
1020 return;
1021
1022 /* add it into sit main buffer */
1023 mutex_lock(&sit_i->sentry_lock);
1024
1025 update_sit_entry(sbi, addr, -1);
1026
1027 /* add it into dirty seglist */
1028 locate_dirty_segment(sbi, segno);
1029
1030 mutex_unlock(&sit_i->sentry_lock);
1031}
1032
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001033bool is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
1034{
1035 struct sit_info *sit_i = SIT_I(sbi);
1036 unsigned int segno, offset;
1037 struct seg_entry *se;
1038 bool is_cp = false;
1039
1040 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
1041 return true;
1042
1043 mutex_lock(&sit_i->sentry_lock);
1044
1045 segno = GET_SEGNO(sbi, blkaddr);
1046 se = get_seg_entry(sbi, segno);
1047 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
1048
1049 if (f2fs_test_bit(offset, se->ckpt_valid_map))
1050 is_cp = true;
1051
1052 mutex_unlock(&sit_i->sentry_lock);
1053
1054 return is_cp;
1055}
1056
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001057/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001058 * This function should be resided under the curseg_mutex lock
1059 */
1060static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +08001061 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001062{
1063 struct curseg_info *curseg = CURSEG_I(sbi, type);
1064 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +08001065 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001066 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001067}
1068
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001069/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001070 * Calculate the number of current summary pages for writing
1071 */
Chao Yu3fa06d72014-12-09 14:21:46 +08001072int npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001073{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001074 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +08001075 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001076
1077 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1078 if (sbi->ckpt->alloc_type[i] == SSR)
1079 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +08001080 else {
1081 if (for_ra)
1082 valid_sum_count += le16_to_cpu(
1083 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
1084 else
1085 valid_sum_count += curseg_blkoff(sbi, i);
1086 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001087 }
1088
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001089 sum_in_page = (PAGE_SIZE - 2 * SUM_JOURNAL_SIZE -
Fan Li9a479382013-10-29 16:21:47 +08001090 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
1091 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001092 return 1;
Fan Li9a479382013-10-29 16:21:47 +08001093 else if ((valid_sum_count - sum_in_page) <=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001094 (PAGE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001095 return 2;
1096 return 3;
1097}
1098
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001099/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001100 * Caller should put this summary page
1101 */
1102struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
1103{
1104 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
1105}
1106
Chao Yu381722d2015-05-19 17:40:04 +08001107void update_meta_page(struct f2fs_sb_info *sbi, void *src, block_t blk_addr)
1108{
1109 struct page *page = grab_meta_page(sbi, blk_addr);
1110 void *dst = page_address(page);
1111
1112 if (src)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001113 memcpy(dst, src, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +08001114 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001115 memset(dst, 0, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +08001116 set_page_dirty(page);
1117 f2fs_put_page(page, 1);
1118}
1119
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001120static void write_sum_page(struct f2fs_sb_info *sbi,
1121 struct f2fs_summary_block *sum_blk, block_t blk_addr)
1122{
Chao Yu381722d2015-05-19 17:40:04 +08001123 update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001124}
1125
Chao Yub7ad7512016-02-19 18:08:46 +08001126static void write_current_sum_page(struct f2fs_sb_info *sbi,
1127 int type, block_t blk_addr)
1128{
1129 struct curseg_info *curseg = CURSEG_I(sbi, type);
1130 struct page *page = grab_meta_page(sbi, blk_addr);
1131 struct f2fs_summary_block *src = curseg->sum_blk;
1132 struct f2fs_summary_block *dst;
1133
1134 dst = (struct f2fs_summary_block *)page_address(page);
1135
1136 mutex_lock(&curseg->curseg_mutex);
1137
1138 down_read(&curseg->journal_rwsem);
1139 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE);
1140 up_read(&curseg->journal_rwsem);
1141
1142 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE);
1143 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE);
1144
1145 mutex_unlock(&curseg->curseg_mutex);
1146
1147 set_page_dirty(page);
1148 f2fs_put_page(page, 1);
1149}
1150
Jaegeuk Kim60374682013-03-31 13:58:51 +09001151static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
1152{
1153 struct curseg_info *curseg = CURSEG_I(sbi, type);
Haicheng Li81fb5e82013-05-14 18:20:28 +08001154 unsigned int segno = curseg->segno + 1;
Jaegeuk Kim60374682013-03-31 13:58:51 +09001155 struct free_segmap_info *free_i = FREE_I(sbi);
1156
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001157 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
Haicheng Li81fb5e82013-05-14 18:20:28 +08001158 return !test_bit(segno, free_i->free_segmap);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001159 return 0;
1160}
1161
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001162/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001163 * Find a new segment from the free segments bitmap to right order
1164 * This function should be returned with success, otherwise BUG
1165 */
1166static void get_new_segment(struct f2fs_sb_info *sbi,
1167 unsigned int *newseg, bool new_sec, int dir)
1168{
1169 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001170 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001171 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001172 unsigned int hint = *newseg / sbi->segs_per_sec;
1173 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
1174 unsigned int left_start = hint;
1175 bool init = true;
1176 int go_left = 0;
1177 int i;
1178
Chao Yu1a118cc2015-02-11 18:20:38 +08001179 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001180
1181 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
1182 segno = find_next_zero_bit(free_i->free_segmap,
Chao Yu0ab14352016-01-22 17:42:06 +08001183 (hint + 1) * sbi->segs_per_sec, *newseg + 1);
1184 if (segno < (hint + 1) * sbi->segs_per_sec)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001185 goto got_it;
1186 }
1187find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001188 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
1189 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001190 if (dir == ALLOC_RIGHT) {
1191 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001192 MAIN_SECS(sbi), 0);
1193 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001194 } else {
1195 go_left = 1;
1196 left_start = hint - 1;
1197 }
1198 }
1199 if (go_left == 0)
1200 goto skip_left;
1201
1202 while (test_bit(left_start, free_i->free_secmap)) {
1203 if (left_start > 0) {
1204 left_start--;
1205 continue;
1206 }
1207 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001208 MAIN_SECS(sbi), 0);
1209 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001210 break;
1211 }
1212 secno = left_start;
1213skip_left:
1214 hint = secno;
1215 segno = secno * sbi->segs_per_sec;
1216 zoneno = secno / sbi->secs_per_zone;
1217
1218 /* give up on finding another zone */
1219 if (!init)
1220 goto got_it;
1221 if (sbi->secs_per_zone == 1)
1222 goto got_it;
1223 if (zoneno == old_zoneno)
1224 goto got_it;
1225 if (dir == ALLOC_LEFT) {
1226 if (!go_left && zoneno + 1 >= total_zones)
1227 goto got_it;
1228 if (go_left && zoneno == 0)
1229 goto got_it;
1230 }
1231 for (i = 0; i < NR_CURSEG_TYPE; i++)
1232 if (CURSEG_I(sbi, i)->zone == zoneno)
1233 break;
1234
1235 if (i < NR_CURSEG_TYPE) {
1236 /* zone is in user, try another */
1237 if (go_left)
1238 hint = zoneno * sbi->secs_per_zone - 1;
1239 else if (zoneno + 1 >= total_zones)
1240 hint = 0;
1241 else
1242 hint = (zoneno + 1) * sbi->secs_per_zone;
1243 init = false;
1244 goto find_other_zone;
1245 }
1246got_it:
1247 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001248 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001249 __set_inuse(sbi, segno);
1250 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08001251 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001252}
1253
1254static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
1255{
1256 struct curseg_info *curseg = CURSEG_I(sbi, type);
1257 struct summary_footer *sum_footer;
1258
1259 curseg->segno = curseg->next_segno;
1260 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
1261 curseg->next_blkoff = 0;
1262 curseg->next_segno = NULL_SEGNO;
1263
1264 sum_footer = &(curseg->sum_blk->footer);
1265 memset(sum_footer, 0, sizeof(struct summary_footer));
1266 if (IS_DATASEG(type))
1267 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
1268 if (IS_NODESEG(type))
1269 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
1270 __set_sit_entry_type(sbi, type, curseg->segno, modified);
1271}
1272
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001273/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001274 * Allocate a current working segment.
1275 * This function always allocates a free segment in LFS manner.
1276 */
1277static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
1278{
1279 struct curseg_info *curseg = CURSEG_I(sbi, type);
1280 unsigned int segno = curseg->segno;
1281 int dir = ALLOC_LEFT;
1282
1283 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08001284 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001285 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
1286 dir = ALLOC_RIGHT;
1287
1288 if (test_opt(sbi, NOHEAP))
1289 dir = ALLOC_RIGHT;
1290
1291 get_new_segment(sbi, &segno, new_sec, dir);
1292 curseg->next_segno = segno;
1293 reset_curseg(sbi, type, 1);
1294 curseg->alloc_type = LFS;
1295}
1296
1297static void __next_free_blkoff(struct f2fs_sb_info *sbi,
1298 struct curseg_info *seg, block_t start)
1299{
1300 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09001301 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001302 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09001303 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
1304 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1305 int i, pos;
1306
1307 for (i = 0; i < entries; i++)
1308 target_map[i] = ckpt_map[i] | cur_map[i];
1309
1310 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
1311
1312 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001313}
1314
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001315/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001316 * If a segment is written by LFS manner, next block offset is just obtained
1317 * by increasing the current block offset. However, if a segment is written by
1318 * SSR manner, next block offset obtained by calling __next_free_blkoff
1319 */
1320static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
1321 struct curseg_info *seg)
1322{
1323 if (seg->alloc_type == SSR)
1324 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
1325 else
1326 seg->next_blkoff++;
1327}
1328
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001329/*
arter97e1c42042014-08-06 23:22:50 +09001330 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001331 * manner, so it should recover the existing segment information of valid blocks
1332 */
1333static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
1334{
1335 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1336 struct curseg_info *curseg = CURSEG_I(sbi, type);
1337 unsigned int new_segno = curseg->next_segno;
1338 struct f2fs_summary_block *sum_node;
1339 struct page *sum_page;
1340
1341 write_sum_page(sbi, curseg->sum_blk,
1342 GET_SUM_BLOCK(sbi, curseg->segno));
1343 __set_test_and_inuse(sbi, new_segno);
1344
1345 mutex_lock(&dirty_i->seglist_lock);
1346 __remove_dirty_segment(sbi, new_segno, PRE);
1347 __remove_dirty_segment(sbi, new_segno, DIRTY);
1348 mutex_unlock(&dirty_i->seglist_lock);
1349
1350 reset_curseg(sbi, type, 1);
1351 curseg->alloc_type = SSR;
1352 __next_free_blkoff(sbi, curseg, 0);
1353
1354 if (reuse) {
1355 sum_page = get_sum_page(sbi, new_segno);
1356 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
1357 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
1358 f2fs_put_page(sum_page, 1);
1359 }
1360}
1361
Jaegeuk Kim43727522013-02-04 15:11:17 +09001362static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
1363{
1364 struct curseg_info *curseg = CURSEG_I(sbi, type);
1365 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
1366
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -07001367 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0, 0))
Jaegeuk Kim43727522013-02-04 15:11:17 +09001368 return v_ops->get_victim(sbi,
1369 &(curseg)->next_segno, BG_GC, type, SSR);
1370
1371 /* For data segments, let's do SSR more intensively */
1372 for (; type >= CURSEG_HOT_DATA; type--)
1373 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
1374 BG_GC, type, SSR))
1375 return 1;
1376 return 0;
1377}
1378
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001379/*
1380 * flush out current segment and replace it with new segment
1381 * This function should be returned with success, otherwise BUG
1382 */
1383static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
1384 int type, bool force)
1385{
1386 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001387
Gu Zheng7b405272013-08-19 09:41:15 +08001388 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001389 new_curseg(sbi, type, true);
Gu Zheng7b405272013-08-19 09:41:15 +08001390 else if (type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001391 new_curseg(sbi, type, false);
Jaegeuk Kim60374682013-03-31 13:58:51 +09001392 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
1393 new_curseg(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001394 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
1395 change_curseg(sbi, type, true);
1396 else
1397 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001398
1399 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001400}
1401
1402void allocate_new_segments(struct f2fs_sb_info *sbi)
1403{
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08001404 struct curseg_info *curseg;
1405 unsigned int old_segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001406 int i;
1407
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001408 if (test_opt(sbi, LFS))
1409 return;
1410
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08001411 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1412 curseg = CURSEG_I(sbi, i);
1413 old_segno = curseg->segno;
1414 SIT_I(sbi)->s_ops->allocate_segment(sbi, i, true);
1415 locate_dirty_segment(sbi, old_segno);
1416 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001417}
1418
1419static const struct segment_allocation default_salloc_ops = {
1420 .allocate_segment = allocate_segment_by_default,
1421};
1422
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001423int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
1424{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001425 __u64 start = F2FS_BYTES_TO_BLK(range->start);
1426 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001427 unsigned int start_segno, end_segno;
1428 struct cp_control cpc;
Chao Yuc34f42e2015-12-23 17:50:30 +08001429 int err = 0;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001430
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001431 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001432 return -EINVAL;
1433
Jan Kara9bd27ae2014-10-21 14:07:33 +02001434 cpc.trimmed = 0;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001435 if (end <= MAIN_BLKADDR(sbi))
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001436 goto out;
1437
Yunlei Heed214a12016-09-01 10:14:39 +08001438 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
1439 f2fs_msg(sbi->sb, KERN_WARNING,
1440 "Found FS corruption, run fsck to fix.");
1441 goto out;
1442 }
1443
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001444 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001445 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
1446 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
1447 GET_SEGNO(sbi, end);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001448 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001449 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001450
1451 /* do checkpoint to issue discard commands safely */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001452 for (; start_segno <= end_segno; start_segno = cpc.trim_end + 1) {
1453 cpc.trim_start = start_segno;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001454
1455 if (sbi->discard_blks == 0)
1456 break;
1457 else if (sbi->discard_blks < BATCHED_TRIM_BLOCKS(sbi))
1458 cpc.trim_end = end_segno;
1459 else
1460 cpc.trim_end = min_t(unsigned int,
1461 rounddown(start_segno +
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001462 BATCHED_TRIM_SEGMENTS(sbi),
1463 sbi->segs_per_sec) - 1, end_segno);
1464
1465 mutex_lock(&sbi->gc_mutex);
Chao Yuc34f42e2015-12-23 17:50:30 +08001466 err = write_checkpoint(sbi, &cpc);
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001467 mutex_unlock(&sbi->gc_mutex);
Chao Yue9328352016-08-21 23:21:29 +08001468 if (err)
1469 break;
Chao Yu74fa5f32016-08-21 23:21:30 +08001470
1471 schedule();
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08001472 }
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001473out:
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08001474 range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08001475 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001476}
1477
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001478static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
1479{
1480 struct curseg_info *curseg = CURSEG_I(sbi, type);
1481 if (curseg->next_blkoff < sbi->blocks_per_seg)
1482 return true;
1483 return false;
1484}
1485
1486static int __get_segment_type_2(struct page *page, enum page_type p_type)
1487{
1488 if (p_type == DATA)
1489 return CURSEG_HOT_DATA;
1490 else
1491 return CURSEG_HOT_NODE;
1492}
1493
1494static int __get_segment_type_4(struct page *page, enum page_type p_type)
1495{
1496 if (p_type == DATA) {
1497 struct inode *inode = page->mapping->host;
1498
1499 if (S_ISDIR(inode->i_mode))
1500 return CURSEG_HOT_DATA;
1501 else
1502 return CURSEG_COLD_DATA;
1503 } else {
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08001504 if (IS_DNODE(page) && is_cold_node(page))
1505 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001506 else
1507 return CURSEG_COLD_NODE;
1508 }
1509}
1510
1511static int __get_segment_type_6(struct page *page, enum page_type p_type)
1512{
1513 if (p_type == DATA) {
1514 struct inode *inode = page->mapping->host;
1515
1516 if (S_ISDIR(inode->i_mode))
1517 return CURSEG_HOT_DATA;
Jaegeuk Kim354a3392013-06-14 08:52:35 +09001518 else if (is_cold_data(page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001519 return CURSEG_COLD_DATA;
1520 else
1521 return CURSEG_WARM_DATA;
1522 } else {
1523 if (IS_DNODE(page))
1524 return is_cold_node(page) ? CURSEG_WARM_NODE :
1525 CURSEG_HOT_NODE;
1526 else
1527 return CURSEG_COLD_NODE;
1528 }
1529}
1530
1531static int __get_segment_type(struct page *page, enum page_type p_type)
1532{
Jaegeuk Kim40813632014-09-02 15:31:18 -07001533 switch (F2FS_P_SB(page)->active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001534 case 2:
1535 return __get_segment_type_2(page, p_type);
1536 case 4:
1537 return __get_segment_type_4(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001538 }
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001539 /* NR_CURSEG_TYPE(6) logs by default */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001540 f2fs_bug_on(F2FS_P_SB(page),
1541 F2FS_P_SB(page)->active_logs != NR_CURSEG_TYPE);
Jaegeuk Kim12a67142012-12-21 11:47:05 +09001542 return __get_segment_type_6(page, p_type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001543}
1544
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001545void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
1546 block_t old_blkaddr, block_t *new_blkaddr,
1547 struct f2fs_summary *sum, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001548{
1549 struct sit_info *sit_i = SIT_I(sbi);
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08001550 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001551
1552 mutex_lock(&curseg->curseg_mutex);
Jaegeuk Kim21cb1d92015-03-11 13:42:48 -04001553 mutex_lock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001554
1555 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001556
1557 /*
1558 * __add_sum_entry should be resided under the curseg_mutex
1559 * because, this function updates a summary entry in the
1560 * current summary block.
1561 */
Haicheng Lie79efe32013-06-13 16:59:27 +08001562 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001563
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001564 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09001565
1566 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001567
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001568 if (!__has_curseg_space(sbi, type))
1569 sit_i->s_ops->allocate_segment(sbi, type, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001570 /*
1571 * SIT information should be updated before segment allocation,
1572 * since SSR needs latest valid block information.
1573 */
1574 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
Jaegeuk Kim5e443812014-01-28 12:22:14 +09001575
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001576 mutex_unlock(&sit_i->sentry_lock);
1577
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001578 if (page && IS_NODESEG(type))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001579 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1580
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001581 mutex_unlock(&curseg->curseg_mutex);
1582}
1583
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001584static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001585{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001586 int type = __get_segment_type(fio->page, fio->type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001587
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001588 if (fio->type == NODE || fio->type == DATA)
1589 mutex_lock(&fio->sbi->wio_mutex[fio->type]);
1590
Chao Yu7a9d7542016-02-22 18:36:38 +08001591 allocate_data_block(fio->sbi, fio->page, fio->old_blkaddr,
1592 &fio->new_blkaddr, sum, type);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09001593
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001594 /* writeout dirty page into bdev */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001595 f2fs_submit_page_mbio(fio);
Jaegeuk Kim7dfeaa32016-06-04 14:21:28 -07001596
1597 if (fio->type == NODE || fio->type == DATA)
1598 mutex_unlock(&fio->sbi->wio_mutex[fio->type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001599}
1600
Jaegeuk Kim577e3492013-01-24 19:56:11 +09001601void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001602{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001603 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001604 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001605 .type = META,
Mike Christie04d328d2016-06-05 14:31:55 -05001606 .op = REQ_OP_WRITE,
1607 .op_flags = WRITE_SYNC | REQ_META | REQ_PRIO,
Chao Yu7a9d7542016-02-22 18:36:38 +08001608 .old_blkaddr = page->index,
1609 .new_blkaddr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001610 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001611 .encrypted_page = NULL,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001612 };
1613
Chao Yu2b947002015-10-12 17:04:21 +08001614 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
Mike Christie04d328d2016-06-05 14:31:55 -05001615 fio.op_flags &= ~REQ_META;
Chao Yu2b947002015-10-12 17:04:21 +08001616
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001617 set_page_writeback(page);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001618 f2fs_submit_page_mbio(&fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001619}
1620
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001621void write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001622{
1623 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001624
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001625 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001626 do_write_page(&sum, fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001627}
1628
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001629void write_data_page(struct dnode_of_data *dn, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001630{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001631 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001632 struct f2fs_summary sum;
1633 struct node_info ni;
1634
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001635 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001636 get_node_info(sbi, dn->nid, &ni);
1637 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001638 do_write_page(&sum, fio);
Chao Yuf28b3432016-02-24 17:16:47 +08001639 f2fs_update_data_blkaddr(dn, fio->new_blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001640}
1641
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001642void rewrite_data_page(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001643{
Chao Yu7a9d7542016-02-22 18:36:38 +08001644 fio->new_blkaddr = fio->old_blkaddr;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001645 stat_inc_inplace_blocks(fio->sbi);
1646 f2fs_submit_page_mbio(fio);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001647}
1648
Chao Yu4356e482016-02-23 17:52:43 +08001649void __f2fs_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08001650 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08001651 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001652{
1653 struct sit_info *sit_i = SIT_I(sbi);
1654 struct curseg_info *curseg;
1655 unsigned int segno, old_cursegno;
1656 struct seg_entry *se;
1657 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08001658 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001659
1660 segno = GET_SEGNO(sbi, new_blkaddr);
1661 se = get_seg_entry(sbi, segno);
1662 type = se->type;
1663
Chao Yu19f106b2015-05-06 13:08:06 +08001664 if (!recover_curseg) {
1665 /* for recovery flow */
1666 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1667 if (old_blkaddr == NULL_ADDR)
1668 type = CURSEG_COLD_DATA;
1669 else
1670 type = CURSEG_WARM_DATA;
1671 }
1672 } else {
1673 if (!IS_CURSEG(sbi, segno))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001674 type = CURSEG_WARM_DATA;
1675 }
Chao Yu19f106b2015-05-06 13:08:06 +08001676
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001677 curseg = CURSEG_I(sbi, type);
1678
1679 mutex_lock(&curseg->curseg_mutex);
1680 mutex_lock(&sit_i->sentry_lock);
1681
1682 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08001683 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001684
1685 /* change the current segment */
1686 if (segno != curseg->segno) {
1687 curseg->next_segno = segno;
1688 change_curseg(sbi, type, true);
1689 }
1690
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001691 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08001692 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001693
Chao Yu28bc1062016-02-06 14:40:34 +08001694 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07001695 update_sit_entry(sbi, new_blkaddr, 1);
1696 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
1697 update_sit_entry(sbi, old_blkaddr, -1);
1698
1699 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
1700 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
1701
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001702 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001703
Chao Yu19f106b2015-05-06 13:08:06 +08001704 if (recover_curseg) {
1705 if (old_cursegno != curseg->segno) {
1706 curseg->next_segno = old_cursegno;
1707 change_curseg(sbi, type, true);
1708 }
1709 curseg->next_blkoff = old_blkoff;
1710 }
1711
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001712 mutex_unlock(&sit_i->sentry_lock);
1713 mutex_unlock(&curseg->curseg_mutex);
1714}
1715
Chao Yu528e3452015-05-28 19:15:35 +08001716void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
1717 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08001718 unsigned char version, bool recover_curseg,
1719 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08001720{
1721 struct f2fs_summary sum;
1722
1723 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
1724
Chao Yu28bc1062016-02-06 14:40:34 +08001725 __f2fs_replace_block(sbi, &sum, old_addr, new_addr,
1726 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08001727
Chao Yuf28b3432016-02-24 17:16:47 +08001728 f2fs_update_data_blkaddr(dn, new_addr);
Chao Yu528e3452015-05-28 19:15:35 +08001729}
1730
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001731void f2fs_wait_on_page_writeback(struct page *page,
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001732 enum page_type type, bool ordered)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001733{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001734 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07001735 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1736
Chao Yu0c3a5792016-01-18 18:28:11 +08001737 f2fs_submit_merged_bio_cond(sbi, NULL, page, 0, type, WRITE);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001738 if (ordered)
1739 wait_on_page_writeback(page);
1740 else
1741 wait_for_stable_page(page);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09001742 }
1743}
1744
Chao Yu08b39fb2015-10-08 13:27:34 +08001745void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *sbi,
1746 block_t blkaddr)
1747{
1748 struct page *cpage;
1749
Yunlei He5d4c0af2016-09-18 08:16:56 +08001750 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
Chao Yu08b39fb2015-10-08 13:27:34 +08001751 return;
1752
Chao Yu08b39fb2015-10-08 13:27:34 +08001753 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
1754 if (cpage) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08001755 f2fs_wait_on_page_writeback(cpage, DATA, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08001756 f2fs_put_page(cpage, 1);
1757 }
1758}
1759
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001760static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1761{
1762 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1763 struct curseg_info *seg_i;
1764 unsigned char *kaddr;
1765 struct page *page;
1766 block_t start;
1767 int i, j, offset;
1768
1769 start = start_sum_block(sbi);
1770
1771 page = get_meta_page(sbi, start++);
1772 kaddr = (unsigned char *)page_address(page);
1773
1774 /* Step 1: restore nat cache */
1775 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001776 memcpy(seg_i->journal, kaddr, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001777
1778 /* Step 2: restore sit cache */
1779 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001780 memcpy(seg_i->journal, kaddr + SUM_JOURNAL_SIZE, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001781 offset = 2 * SUM_JOURNAL_SIZE;
1782
1783 /* Step 3: restore summary entries */
1784 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1785 unsigned short blk_off;
1786 unsigned int segno;
1787
1788 seg_i = CURSEG_I(sbi, i);
1789 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1790 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1791 seg_i->next_segno = segno;
1792 reset_curseg(sbi, i, 0);
1793 seg_i->alloc_type = ckpt->alloc_type[i];
1794 seg_i->next_blkoff = blk_off;
1795
1796 if (seg_i->alloc_type == SSR)
1797 blk_off = sbi->blocks_per_seg;
1798
1799 for (j = 0; j < blk_off; j++) {
1800 struct f2fs_summary *s;
1801 s = (struct f2fs_summary *)(kaddr + offset);
1802 seg_i->sum_blk->entries[j] = *s;
1803 offset += SUMMARY_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001804 if (offset + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001805 SUM_FOOTER_SIZE)
1806 continue;
1807
1808 f2fs_put_page(page, 1);
1809 page = NULL;
1810
1811 page = get_meta_page(sbi, start++);
1812 kaddr = (unsigned char *)page_address(page);
1813 offset = 0;
1814 }
1815 }
1816 f2fs_put_page(page, 1);
1817 return 0;
1818}
1819
1820static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1821{
1822 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1823 struct f2fs_summary_block *sum;
1824 struct curseg_info *curseg;
1825 struct page *new;
1826 unsigned short blk_off;
1827 unsigned int segno = 0;
1828 block_t blk_addr = 0;
1829
1830 /* get segment number and block addr */
1831 if (IS_DATASEG(type)) {
1832 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1833 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1834 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001835 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001836 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1837 else
1838 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1839 } else {
1840 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1841 CURSEG_HOT_NODE]);
1842 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1843 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001844 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001845 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1846 type - CURSEG_HOT_NODE);
1847 else
1848 blk_addr = GET_SUM_BLOCK(sbi, segno);
1849 }
1850
1851 new = get_meta_page(sbi, blk_addr);
1852 sum = (struct f2fs_summary_block *)page_address(new);
1853
1854 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001855 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001856 struct f2fs_summary *ns = &sum->entries[0];
1857 int i;
1858 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1859 ns->version = 0;
1860 ns->ofs_in_node = 0;
1861 }
1862 } else {
Gu Zhengd6537882014-03-07 18:43:36 +08001863 int err;
1864
1865 err = restore_node_summary(sbi, segno, sum);
1866 if (err) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001867 f2fs_put_page(new, 1);
Gu Zhengd6537882014-03-07 18:43:36 +08001868 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001869 }
1870 }
1871 }
1872
1873 /* set uncompleted segment to curseg */
1874 curseg = CURSEG_I(sbi, type);
1875 mutex_lock(&curseg->curseg_mutex);
Chao Yub7ad7512016-02-19 18:08:46 +08001876
1877 /* update journal info */
1878 down_write(&curseg->journal_rwsem);
1879 memcpy(curseg->journal, &sum->journal, SUM_JOURNAL_SIZE);
1880 up_write(&curseg->journal_rwsem);
1881
1882 memcpy(curseg->sum_blk->entries, sum->entries, SUM_ENTRY_SIZE);
1883 memcpy(&curseg->sum_blk->footer, &sum->footer, SUM_FOOTER_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001884 curseg->next_segno = segno;
1885 reset_curseg(sbi, type, 0);
1886 curseg->alloc_type = ckpt->alloc_type[type];
1887 curseg->next_blkoff = blk_off;
1888 mutex_unlock(&curseg->curseg_mutex);
1889 f2fs_put_page(new, 1);
1890 return 0;
1891}
1892
1893static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1894{
1895 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08001896 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001897
Chao Yuaaec2b12016-09-20 11:04:18 +08001898 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG)) {
Chao Yu3fa06d72014-12-09 14:21:46 +08001899 int npages = npages_for_summary_flush(sbi, true);
1900
1901 if (npages >= 2)
1902 ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08001903 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001904
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001905 /* restore for compacted data summary */
1906 if (read_compacted_summaries(sbi))
1907 return -EINVAL;
1908 type = CURSEG_HOT_NODE;
1909 }
1910
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001911 if (__exist_node_summaries(sbi))
Chao Yu3fa06d72014-12-09 14:21:46 +08001912 ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08001913 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08001914
Chao Yue4fc5fb2014-03-17 16:36:24 +08001915 for (; type <= CURSEG_COLD_NODE; type++) {
1916 err = read_normal_summaries(sbi, type);
1917 if (err)
1918 return err;
1919 }
1920
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001921 return 0;
1922}
1923
1924static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1925{
1926 struct page *page;
1927 unsigned char *kaddr;
1928 struct f2fs_summary *summary;
1929 struct curseg_info *seg_i;
1930 int written_size = 0;
1931 int i, j;
1932
1933 page = grab_meta_page(sbi, blkaddr++);
1934 kaddr = (unsigned char *)page_address(page);
1935
1936 /* Step 1: write nat cache */
1937 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001938 memcpy(kaddr, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001939 written_size += SUM_JOURNAL_SIZE;
1940
1941 /* Step 2: write sit cache */
1942 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08001943 memcpy(kaddr + written_size, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001944 written_size += SUM_JOURNAL_SIZE;
1945
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001946 /* Step 3: write summary entries */
1947 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1948 unsigned short blkoff;
1949 seg_i = CURSEG_I(sbi, i);
1950 if (sbi->ckpt->alloc_type[i] == SSR)
1951 blkoff = sbi->blocks_per_seg;
1952 else
1953 blkoff = curseg_blkoff(sbi, i);
1954
1955 for (j = 0; j < blkoff; j++) {
1956 if (!page) {
1957 page = grab_meta_page(sbi, blkaddr++);
1958 kaddr = (unsigned char *)page_address(page);
1959 written_size = 0;
1960 }
1961 summary = (struct f2fs_summary *)(kaddr + written_size);
1962 *summary = seg_i->sum_blk->entries[j];
1963 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001964
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001965 if (written_size + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001966 SUM_FOOTER_SIZE)
1967 continue;
1968
Chao Yue8d61a72013-10-24 15:08:28 +08001969 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001970 f2fs_put_page(page, 1);
1971 page = NULL;
1972 }
1973 }
Chao Yue8d61a72013-10-24 15:08:28 +08001974 if (page) {
1975 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001976 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08001977 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001978}
1979
1980static void write_normal_summaries(struct f2fs_sb_info *sbi,
1981 block_t blkaddr, int type)
1982{
1983 int i, end;
1984 if (IS_DATASEG(type))
1985 end = type + NR_CURSEG_DATA_TYPE;
1986 else
1987 end = type + NR_CURSEG_NODE_TYPE;
1988
Chao Yub7ad7512016-02-19 18:08:46 +08001989 for (i = type; i < end; i++)
1990 write_current_sum_page(sbi, i, blkaddr + (i - type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001991}
1992
1993void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1994{
Chao Yuaaec2b12016-09-20 11:04:18 +08001995 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001996 write_compacted_summaries(sbi, start_blk);
1997 else
1998 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1999}
2000
2001void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
2002{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08002003 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002004}
2005
Chao Yudfc08a12016-02-14 18:50:40 +08002006int lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002007 unsigned int val, int alloc)
2008{
2009 int i;
2010
2011 if (type == NAT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08002012 for (i = 0; i < nats_in_cursum(journal); i++) {
2013 if (le32_to_cpu(nid_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002014 return i;
2015 }
Chao Yudfc08a12016-02-14 18:50:40 +08002016 if (alloc && __has_cursum_space(journal, 1, NAT_JOURNAL))
2017 return update_nats_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002018 } else if (type == SIT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08002019 for (i = 0; i < sits_in_cursum(journal); i++)
2020 if (le32_to_cpu(segno_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002021 return i;
Chao Yudfc08a12016-02-14 18:50:40 +08002022 if (alloc && __has_cursum_space(journal, 1, SIT_JOURNAL))
2023 return update_sits_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002024 }
2025 return -1;
2026}
2027
2028static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
2029 unsigned int segno)
2030{
Gu Zheng2cc22182014-10-20 17:45:49 +08002031 return get_meta_page(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002032}
2033
2034static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
2035 unsigned int start)
2036{
2037 struct sit_info *sit_i = SIT_I(sbi);
2038 struct page *src_page, *dst_page;
2039 pgoff_t src_off, dst_off;
2040 void *src_addr, *dst_addr;
2041
2042 src_off = current_sit_addr(sbi, start);
2043 dst_off = next_sit_addr(sbi, src_off);
2044
2045 /* get current sit block page without lock */
2046 src_page = get_meta_page(sbi, src_off);
2047 dst_page = grab_meta_page(sbi, dst_off);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07002048 f2fs_bug_on(sbi, PageDirty(src_page));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002049
2050 src_addr = page_address(src_page);
2051 dst_addr = page_address(dst_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002052 memcpy(dst_addr, src_addr, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002053
2054 set_page_dirty(dst_page);
2055 f2fs_put_page(src_page, 1);
2056
2057 set_to_next_sit(sit_i, start);
2058
2059 return dst_page;
2060}
2061
Chao Yu184a5cd2014-09-04 18:13:01 +08002062static struct sit_entry_set *grab_sit_entry_set(void)
2063{
2064 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07002065 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08002066
2067 ses->entry_cnt = 0;
2068 INIT_LIST_HEAD(&ses->set_list);
2069 return ses;
2070}
2071
2072static void release_sit_entry_set(struct sit_entry_set *ses)
2073{
2074 list_del(&ses->set_list);
2075 kmem_cache_free(sit_entry_set_slab, ses);
2076}
2077
2078static void adjust_sit_entry_set(struct sit_entry_set *ses,
2079 struct list_head *head)
2080{
2081 struct sit_entry_set *next = ses;
2082
2083 if (list_is_last(&ses->set_list, head))
2084 return;
2085
2086 list_for_each_entry_continue(next, head, set_list)
2087 if (ses->entry_cnt <= next->entry_cnt)
2088 break;
2089
2090 list_move_tail(&ses->set_list, &next->set_list);
2091}
2092
2093static void add_sit_entry(unsigned int segno, struct list_head *head)
2094{
2095 struct sit_entry_set *ses;
2096 unsigned int start_segno = START_SEGNO(segno);
2097
2098 list_for_each_entry(ses, head, set_list) {
2099 if (ses->start_segno == start_segno) {
2100 ses->entry_cnt++;
2101 adjust_sit_entry_set(ses, head);
2102 return;
2103 }
2104 }
2105
2106 ses = grab_sit_entry_set();
2107
2108 ses->start_segno = start_segno;
2109 ses->entry_cnt++;
2110 list_add(&ses->set_list, head);
2111}
2112
2113static void add_sits_in_set(struct f2fs_sb_info *sbi)
2114{
2115 struct f2fs_sm_info *sm_info = SM_I(sbi);
2116 struct list_head *set_list = &sm_info->sit_entry_set;
2117 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08002118 unsigned int segno;
2119
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002120 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08002121 add_sit_entry(segno, set_list);
2122}
2123
2124static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002125{
2126 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002127 struct f2fs_journal *journal = curseg->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002128 int i;
2129
Chao Yub7ad7512016-02-19 18:08:46 +08002130 down_write(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08002131 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yu184a5cd2014-09-04 18:13:01 +08002132 unsigned int segno;
2133 bool dirtied;
2134
Chao Yudfc08a12016-02-14 18:50:40 +08002135 segno = le32_to_cpu(segno_in_journal(journal, i));
Chao Yu184a5cd2014-09-04 18:13:01 +08002136 dirtied = __mark_sit_entry_dirty(sbi, segno);
2137
2138 if (!dirtied)
2139 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002140 }
Chao Yudfc08a12016-02-14 18:50:40 +08002141 update_sits_in_cursum(journal, -i);
Chao Yub7ad7512016-02-19 18:08:46 +08002142 up_write(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002143}
2144
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002145/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002146 * CP calls this function, which flushes SIT entries including sit_journal,
2147 * and moves prefree segs to free segs.
2148 */
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002149void flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002150{
2151 struct sit_info *sit_i = SIT_I(sbi);
2152 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
2153 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002154 struct f2fs_journal *journal = curseg->journal;
Chao Yu184a5cd2014-09-04 18:13:01 +08002155 struct sit_entry_set *ses, *tmp;
2156 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08002157 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002158 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002159
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002160 mutex_lock(&sit_i->sentry_lock);
2161
Wanpeng Li2b11a742015-02-27 16:52:50 +08002162 if (!sit_i->dirty_sentries)
2163 goto out;
2164
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002165 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08002166 * add and account sit entries of dirty bitmap in sit entry
2167 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002168 */
Chao Yu184a5cd2014-09-04 18:13:01 +08002169 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002170
Chao Yu184a5cd2014-09-04 18:13:01 +08002171 /*
2172 * if there are no enough space in journal to store dirty sit
2173 * entries, remove all entries from journal and add and account
2174 * them in sit entry set.
2175 */
Chao Yudfc08a12016-02-14 18:50:40 +08002176 if (!__has_cursum_space(journal, sit_i->dirty_sentries, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002177 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002178
Chao Yu184a5cd2014-09-04 18:13:01 +08002179 /*
2180 * there are two steps to flush sit entries:
2181 * #1, flush sit entries to journal in current cold data summary block.
2182 * #2, flush sit entries to sit page.
2183 */
2184 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07002185 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08002186 struct f2fs_sit_block *raw_sit = NULL;
2187 unsigned int start_segno = ses->start_segno;
2188 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002189 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08002190 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09002191
Chao Yu184a5cd2014-09-04 18:13:01 +08002192 if (to_journal &&
Chao Yudfc08a12016-02-14 18:50:40 +08002193 !__has_cursum_space(journal, ses->entry_cnt, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08002194 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002195
Chao Yub7ad7512016-02-19 18:08:46 +08002196 if (to_journal) {
2197 down_write(&curseg->journal_rwsem);
2198 } else {
Chao Yu184a5cd2014-09-04 18:13:01 +08002199 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002200 raw_sit = page_address(page);
2201 }
2202
Chao Yu184a5cd2014-09-04 18:13:01 +08002203 /* flush dirty sit entries in region of current sit set */
2204 for_each_set_bit_from(segno, bitmap, end) {
2205 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002206
2207 se = get_seg_entry(sbi, segno);
Chao Yu184a5cd2014-09-04 18:13:01 +08002208
2209 /* add discard candidates */
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08002210 if (cpc->reason != CP_DISCARD) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002211 cpc->trim_start = segno;
2212 add_discard_addrs(sbi, cpc);
2213 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002214
2215 if (to_journal) {
Chao Yudfc08a12016-02-14 18:50:40 +08002216 offset = lookup_journal_in_cursum(journal,
Chao Yu184a5cd2014-09-04 18:13:01 +08002217 SIT_JOURNAL, segno, 1);
2218 f2fs_bug_on(sbi, offset < 0);
Chao Yudfc08a12016-02-14 18:50:40 +08002219 segno_in_journal(journal, offset) =
Chao Yu184a5cd2014-09-04 18:13:01 +08002220 cpu_to_le32(segno);
2221 seg_info_to_raw_sit(se,
Chao Yudfc08a12016-02-14 18:50:40 +08002222 &sit_in_journal(journal, offset));
Chao Yu184a5cd2014-09-04 18:13:01 +08002223 } else {
2224 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
2225 seg_info_to_raw_sit(se,
2226 &raw_sit->entries[sit_offset]);
2227 }
2228
2229 __clear_bit(segno, bitmap);
2230 sit_i->dirty_sentries--;
2231 ses->entry_cnt--;
2232 }
2233
Chao Yub7ad7512016-02-19 18:08:46 +08002234 if (to_journal)
2235 up_write(&curseg->journal_rwsem);
2236 else
Chao Yu184a5cd2014-09-04 18:13:01 +08002237 f2fs_put_page(page, 1);
2238
2239 f2fs_bug_on(sbi, ses->entry_cnt);
2240 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002241 }
Chao Yu184a5cd2014-09-04 18:13:01 +08002242
2243 f2fs_bug_on(sbi, !list_empty(head));
2244 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08002245out:
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002246 if (cpc->reason == CP_DISCARD) {
2247 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
2248 add_discard_addrs(sbi, cpc);
2249 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002250 mutex_unlock(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002251
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002252 set_prefree_as_free_segments(sbi);
2253}
2254
2255static int build_sit_info(struct f2fs_sb_info *sbi)
2256{
2257 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002258 struct sit_info *sit_i;
2259 unsigned int sit_segs, start;
2260 char *src_bitmap, *dst_bitmap;
2261 unsigned int bitmap_size;
2262
2263 /* allocate memory for SIT information */
2264 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
2265 if (!sit_i)
2266 return -ENOMEM;
2267
2268 SM_I(sbi)->sit_info = sit_i;
2269
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002270 sit_i->sentries = f2fs_kvzalloc(MAIN_SEGS(sbi) *
2271 sizeof(struct seg_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002272 if (!sit_i->sentries)
2273 return -ENOMEM;
2274
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002275 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002276 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002277 if (!sit_i->dirty_sentries_bitmap)
2278 return -ENOMEM;
2279
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002280 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002281 sit_i->sentries[start].cur_valid_map
2282 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2283 sit_i->sentries[start].ckpt_valid_map
2284 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002285 if (!sit_i->sentries[start].cur_valid_map ||
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002286 !sit_i->sentries[start].ckpt_valid_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002287 return -ENOMEM;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002288
2289 if (f2fs_discard_en(sbi)) {
2290 sit_i->sentries[start].discard_map
2291 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2292 if (!sit_i->sentries[start].discard_map)
2293 return -ENOMEM;
2294 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002295 }
2296
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002297 sit_i->tmp_map = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
2298 if (!sit_i->tmp_map)
2299 return -ENOMEM;
2300
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002301 if (sbi->segs_per_sec > 1) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002302 sit_i->sec_entries = f2fs_kvzalloc(MAIN_SECS(sbi) *
2303 sizeof(struct sec_entry), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002304 if (!sit_i->sec_entries)
2305 return -ENOMEM;
2306 }
2307
2308 /* get information related with SIT */
2309 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
2310
2311 /* setup SIT bitmap from ckeckpoint pack */
2312 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
2313 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
2314
Alexandru Gheorghiu79b57932013-03-28 02:24:53 +02002315 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002316 if (!dst_bitmap)
2317 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002318
2319 /* init SIT information */
2320 sit_i->s_ops = &default_salloc_ops;
2321
2322 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
2323 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
Jaegeuk Kimc79b7ff2016-11-14 18:20:10 -08002324 sit_i->written_valid_blocks = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002325 sit_i->sit_bitmap = dst_bitmap;
2326 sit_i->bitmap_size = bitmap_size;
2327 sit_i->dirty_sentries = 0;
2328 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
2329 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
2330 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
2331 mutex_init(&sit_i->sentry_lock);
2332 return 0;
2333}
2334
2335static int build_free_segmap(struct f2fs_sb_info *sbi)
2336{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002337 struct free_segmap_info *free_i;
2338 unsigned int bitmap_size, sec_bitmap_size;
2339
2340 /* allocate memory for free segmap information */
2341 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
2342 if (!free_i)
2343 return -ENOMEM;
2344
2345 SM_I(sbi)->free_info = free_i;
2346
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002347 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002348 free_i->free_segmap = f2fs_kvmalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002349 if (!free_i->free_segmap)
2350 return -ENOMEM;
2351
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002352 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002353 free_i->free_secmap = f2fs_kvmalloc(sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002354 if (!free_i->free_secmap)
2355 return -ENOMEM;
2356
2357 /* set all segments as dirty temporarily */
2358 memset(free_i->free_segmap, 0xff, bitmap_size);
2359 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
2360
2361 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002362 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002363 free_i->free_segments = 0;
2364 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08002365 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002366 return 0;
2367}
2368
2369static int build_curseg(struct f2fs_sb_info *sbi)
2370{
Namjae Jeon1042d602012-12-01 10:56:13 +09002371 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002372 int i;
2373
Fabian Frederickb434bab2014-06-23 18:39:15 +02002374 array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002375 if (!array)
2376 return -ENOMEM;
2377
2378 SM_I(sbi)->curseg_array = array;
2379
2380 for (i = 0; i < NR_CURSEG_TYPE; i++) {
2381 mutex_init(&array[i].curseg_mutex);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002382 array[i].sum_blk = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002383 if (!array[i].sum_blk)
2384 return -ENOMEM;
Chao Yub7ad7512016-02-19 18:08:46 +08002385 init_rwsem(&array[i].journal_rwsem);
2386 array[i].journal = kzalloc(sizeof(struct f2fs_journal),
2387 GFP_KERNEL);
2388 if (!array[i].journal)
2389 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002390 array[i].segno = NULL_SEGNO;
2391 array[i].next_blkoff = 0;
2392 }
2393 return restore_curseg_summaries(sbi);
2394}
2395
2396static void build_sit_entries(struct f2fs_sb_info *sbi)
2397{
2398 struct sit_info *sit_i = SIT_I(sbi);
2399 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08002400 struct f2fs_journal *journal = curseg->journal;
Yunlei He9c094042016-09-24 12:29:18 +08002401 struct seg_entry *se;
2402 struct f2fs_sit_entry sit;
Chao Yu74de5932013-11-22 09:09:59 +08002403 int sit_blk_cnt = SIT_BLK_CNT(sbi);
2404 unsigned int i, start, end;
2405 unsigned int readed, start_blk = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002406
Chao Yu74de5932013-11-22 09:09:59 +08002407 do {
Jaegeuk Kim664ba972016-10-18 11:07:45 -07002408 readed = ra_meta_pages(sbi, start_blk, BIO_MAX_PAGES,
2409 META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002410
Chao Yu74de5932013-11-22 09:09:59 +08002411 start = start_blk * sit_i->sents_per_block;
2412 end = (start_blk + readed) * sit_i->sents_per_block;
2413
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002414 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08002415 struct f2fs_sit_block *sit_blk;
Chao Yu74de5932013-11-22 09:09:59 +08002416 struct page *page;
2417
Yunlei He9c094042016-09-24 12:29:18 +08002418 se = &sit_i->sentries[start];
Chao Yu74de5932013-11-22 09:09:59 +08002419 page = get_current_sit_page(sbi, start);
2420 sit_blk = (struct f2fs_sit_block *)page_address(page);
2421 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
2422 f2fs_put_page(page, 1);
Chao Yud600af232016-08-19 23:13:47 +08002423
Chao Yu74de5932013-11-22 09:09:59 +08002424 check_block_count(sbi, start, &sit);
2425 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002426
2427 /* build discard map only one time */
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002428 if (f2fs_discard_en(sbi)) {
2429 memcpy(se->discard_map, se->cur_valid_map,
2430 SIT_VBLOCK_MAP_SIZE);
2431 sbi->discard_blks += sbi->blocks_per_seg -
2432 se->valid_blocks;
2433 }
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002434
Chao Yud600af232016-08-19 23:13:47 +08002435 if (sbi->segs_per_sec > 1)
2436 get_sec_entry(sbi, start)->valid_blocks +=
2437 se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002438 }
Chao Yu74de5932013-11-22 09:09:59 +08002439 start_blk += readed;
2440 } while (start_blk < sit_blk_cnt);
Chao Yud600af232016-08-19 23:13:47 +08002441
2442 down_read(&curseg->journal_rwsem);
2443 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yud600af232016-08-19 23:13:47 +08002444 unsigned int old_valid_blocks;
2445
2446 start = le32_to_cpu(segno_in_journal(journal, i));
2447 se = &sit_i->sentries[start];
2448 sit = sit_in_journal(journal, i);
2449
2450 old_valid_blocks = se->valid_blocks;
2451
2452 check_block_count(sbi, start, &sit);
2453 seg_info_from_raw_sit(se, &sit);
2454
2455 if (f2fs_discard_en(sbi)) {
2456 memcpy(se->discard_map, se->cur_valid_map,
2457 SIT_VBLOCK_MAP_SIZE);
2458 sbi->discard_blks += old_valid_blocks -
2459 se->valid_blocks;
2460 }
2461
2462 if (sbi->segs_per_sec > 1)
2463 get_sec_entry(sbi, start)->valid_blocks +=
2464 se->valid_blocks - old_valid_blocks;
2465 }
2466 up_read(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002467}
2468
2469static void init_free_segmap(struct f2fs_sb_info *sbi)
2470{
2471 unsigned int start;
2472 int type;
2473
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002474 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002475 struct seg_entry *sentry = get_seg_entry(sbi, start);
2476 if (!sentry->valid_blocks)
2477 __set_free(sbi, start);
Jaegeuk Kimc79b7ff2016-11-14 18:20:10 -08002478 else
2479 SIT_I(sbi)->written_valid_blocks +=
2480 sentry->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002481 }
2482
2483 /* set use the current segments */
2484 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
2485 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
2486 __set_test_and_inuse(sbi, curseg_t->segno);
2487 }
2488}
2489
2490static void init_dirty_segmap(struct f2fs_sb_info *sbi)
2491{
2492 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2493 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002494 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002495 unsigned short valid_blocks;
2496
Namjae Jeon8736fbf2013-06-16 09:49:11 +09002497 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002498 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002499 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
2500 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002501 break;
2502 offset = segno + 1;
2503 valid_blocks = get_valid_blocks(sbi, segno, 0);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002504 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002505 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07002506 if (valid_blocks > sbi->blocks_per_seg) {
2507 f2fs_bug_on(sbi, 1);
2508 continue;
2509 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002510 mutex_lock(&dirty_i->seglist_lock);
2511 __locate_dirty_segment(sbi, segno, DIRTY);
2512 mutex_unlock(&dirty_i->seglist_lock);
2513 }
2514}
2515
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002516static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002517{
2518 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002519 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002520
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002521 dirty_i->victim_secmap = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002522 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002523 return -ENOMEM;
2524 return 0;
2525}
2526
2527static int build_dirty_segmap(struct f2fs_sb_info *sbi)
2528{
2529 struct dirty_seglist_info *dirty_i;
2530 unsigned int bitmap_size, i;
2531
2532 /* allocate memory for dirty segments list information */
2533 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
2534 if (!dirty_i)
2535 return -ENOMEM;
2536
2537 SM_I(sbi)->dirty_info = dirty_i;
2538 mutex_init(&dirty_i->seglist_lock);
2539
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002540 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002541
2542 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002543 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002544 if (!dirty_i->dirty_segmap[i])
2545 return -ENOMEM;
2546 }
2547
2548 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002549 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002550}
2551
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002552/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002553 * Update min, max modified time for cost-benefit GC algorithm
2554 */
2555static void init_min_max_mtime(struct f2fs_sb_info *sbi)
2556{
2557 struct sit_info *sit_i = SIT_I(sbi);
2558 unsigned int segno;
2559
2560 mutex_lock(&sit_i->sentry_lock);
2561
2562 sit_i->min_mtime = LLONG_MAX;
2563
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002564 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002565 unsigned int i;
2566 unsigned long long mtime = 0;
2567
2568 for (i = 0; i < sbi->segs_per_sec; i++)
2569 mtime += get_seg_entry(sbi, segno + i)->mtime;
2570
2571 mtime = div_u64(mtime, sbi->segs_per_sec);
2572
2573 if (sit_i->min_mtime > mtime)
2574 sit_i->min_mtime = mtime;
2575 }
2576 sit_i->max_mtime = get_mtime(sbi);
2577 mutex_unlock(&sit_i->sentry_lock);
2578}
2579
2580int build_segment_manager(struct f2fs_sb_info *sbi)
2581{
2582 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2583 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09002584 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002585 int err;
2586
2587 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
2588 if (!sm_info)
2589 return -ENOMEM;
2590
2591 /* init sm info */
2592 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002593 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2594 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2595 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
2596 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
2597 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
2598 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
2599 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09002600 sm_info->rec_prefree_segments = sm_info->main_segments *
2601 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim44a83492016-07-13 18:23:35 -07002602 if (sm_info->rec_prefree_segments > DEF_MAX_RECLAIM_PREFREE_SEGMENTS)
2603 sm_info->rec_prefree_segments = DEF_MAX_RECLAIM_PREFREE_SEGMENTS;
2604
Jaegeuk Kim52763a42016-06-13 09:47:48 -07002605 if (!test_opt(sbi, LFS))
2606 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09002607 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07002608 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002609
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002610 INIT_LIST_HEAD(&sm_info->discard_list);
Chao Yu275b66b2016-08-29 23:58:34 +08002611 INIT_LIST_HEAD(&sm_info->wait_list);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002612 sm_info->nr_discards = 0;
2613 sm_info->max_discards = 0;
2614
Jaegeuk Kimbba681c2015-01-26 17:41:23 -08002615 sm_info->trim_sections = DEF_BATCHED_TRIM_SECTIONS;
2616
Chao Yu184a5cd2014-09-04 18:13:01 +08002617 INIT_LIST_HEAD(&sm_info->sit_entry_set);
2618
Gu Zhengb270ad62014-04-11 17:49:55 +08002619 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
Gu Zheng2163d192014-04-27 14:21:33 +08002620 err = create_flush_cmd_control(sbi);
2621 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002622 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09002623 }
2624
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002625 err = build_sit_info(sbi);
2626 if (err)
2627 return err;
2628 err = build_free_segmap(sbi);
2629 if (err)
2630 return err;
2631 err = build_curseg(sbi);
2632 if (err)
2633 return err;
2634
2635 /* reinit free segmap based on SIT */
2636 build_sit_entries(sbi);
2637
2638 init_free_segmap(sbi);
2639 err = build_dirty_segmap(sbi);
2640 if (err)
2641 return err;
2642
2643 init_min_max_mtime(sbi);
2644 return 0;
2645}
2646
2647static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
2648 enum dirty_type dirty_type)
2649{
2650 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2651
2652 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002653 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002654 dirty_i->nr_dirty[dirty_type] = 0;
2655 mutex_unlock(&dirty_i->seglist_lock);
2656}
2657
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002658static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002659{
2660 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002661 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002662}
2663
2664static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
2665{
2666 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2667 int i;
2668
2669 if (!dirty_i)
2670 return;
2671
2672 /* discard pre-free/dirty segments list */
2673 for (i = 0; i < NR_DIRTY_TYPE; i++)
2674 discard_dirty_segmap(sbi, i);
2675
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09002676 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002677 SM_I(sbi)->dirty_info = NULL;
2678 kfree(dirty_i);
2679}
2680
2681static void destroy_curseg(struct f2fs_sb_info *sbi)
2682{
2683 struct curseg_info *array = SM_I(sbi)->curseg_array;
2684 int i;
2685
2686 if (!array)
2687 return;
2688 SM_I(sbi)->curseg_array = NULL;
Chao Yub7ad7512016-02-19 18:08:46 +08002689 for (i = 0; i < NR_CURSEG_TYPE; i++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002690 kfree(array[i].sum_blk);
Chao Yub7ad7512016-02-19 18:08:46 +08002691 kfree(array[i].journal);
2692 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002693 kfree(array);
2694}
2695
2696static void destroy_free_segmap(struct f2fs_sb_info *sbi)
2697{
2698 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
2699 if (!free_i)
2700 return;
2701 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002702 kvfree(free_i->free_segmap);
2703 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002704 kfree(free_i);
2705}
2706
2707static void destroy_sit_info(struct f2fs_sb_info *sbi)
2708{
2709 struct sit_info *sit_i = SIT_I(sbi);
2710 unsigned int start;
2711
2712 if (!sit_i)
2713 return;
2714
2715 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002716 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002717 kfree(sit_i->sentries[start].cur_valid_map);
2718 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002719 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002720 }
2721 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002722 kfree(sit_i->tmp_map);
2723
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002724 kvfree(sit_i->sentries);
2725 kvfree(sit_i->sec_entries);
2726 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002727
2728 SM_I(sbi)->sit_info = NULL;
2729 kfree(sit_i->sit_bitmap);
2730 kfree(sit_i);
2731}
2732
2733void destroy_segment_manager(struct f2fs_sb_info *sbi)
2734{
2735 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08002736
Chao Yu3b03f722013-11-06 09:12:04 +08002737 if (!sm_info)
2738 return;
Gu Zheng2163d192014-04-27 14:21:33 +08002739 destroy_flush_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002740 destroy_dirty_segmap(sbi);
2741 destroy_curseg(sbi);
2742 destroy_free_segmap(sbi);
2743 destroy_sit_info(sbi);
2744 sbi->sm_info = NULL;
2745 kfree(sm_info);
2746}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002747
2748int __init create_segment_manager_caches(void)
2749{
2750 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08002751 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002752 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08002753 goto fail;
2754
Chao Yu275b66b2016-08-29 23:58:34 +08002755 bio_entry_slab = f2fs_kmem_cache_create("bio_entry",
2756 sizeof(struct bio_entry));
2757 if (!bio_entry_slab)
Chao Yu6ab2a302016-09-05 12:28:26 +08002758 goto destroy_discard_entry;
Chao Yu275b66b2016-08-29 23:58:34 +08002759
Chao Yu184a5cd2014-09-04 18:13:01 +08002760 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09002761 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08002762 if (!sit_entry_set_slab)
Chao Yu275b66b2016-08-29 23:58:34 +08002763 goto destroy_bio_entry;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002764
2765 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
2766 sizeof(struct inmem_pages));
2767 if (!inmem_entry_slab)
2768 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002769 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08002770
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002771destroy_sit_entry_set:
2772 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu275b66b2016-08-29 23:58:34 +08002773destroy_bio_entry:
2774 kmem_cache_destroy(bio_entry_slab);
Chao Yu6ab2a302016-09-05 12:28:26 +08002775destroy_discard_entry:
Chao Yu184a5cd2014-09-04 18:13:01 +08002776 kmem_cache_destroy(discard_entry_slab);
2777fail:
2778 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002779}
2780
2781void destroy_segment_manager_caches(void)
2782{
Chao Yu184a5cd2014-09-04 18:13:01 +08002783 kmem_cache_destroy(sit_entry_set_slab);
Chao Yu275b66b2016-08-29 23:58:34 +08002784 kmem_cache_destroy(bio_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002785 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002786 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09002787}