blob: fa32ce92ed657a160823db74bb8ed0b51e5ee4d0 [file] [log] [blame]
Chao Yu7c1a0002018-09-12 09:16:07 +08001// SPDX-License-Identifier: GPL-2.0
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003 * fs/f2fs/segment.c
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09007 */
8#include <linux/fs.h>
9#include <linux/f2fs_fs.h>
10#include <linux/bio.h>
11#include <linux/blkdev.h>
Geert Uytterhoeven690e4a32012-12-19 22:19:30 +010012#include <linux/prefetch.h>
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +090013#include <linux/kthread.h>
Chao Yu74de5932013-11-22 09:09:59 +080014#include <linux/swap.h>
Jaegeuk Kim60b99b42015-10-05 14:49:57 -070015#include <linux/timer.h>
Jaegeuk Kim1d7be272017-05-17 10:36:58 -070016#include <linux/freezer.h>
Jaegeuk Kim1eb1ef42017-09-09 12:03:23 -070017#include <linux/sched/signal.h>
Jaegeuk Kim351df4b2012-11-02 17:09:16 +090018
19#include "f2fs.h"
20#include "segment.h"
21#include "node.h"
Jaegeuk Kim5f656542017-08-15 21:27:19 -070022#include "gc.h"
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -080023#include "trace.h"
Namjae Jeon6ec178d2013-04-23 17:51:43 +090024#include <trace/events/f2fs.h>
Jaegeuk Kim351df4b2012-11-02 17:09:16 +090025
Changman Lee9a7f1432013-11-15 10:42:51 +090026#define __reverse_ffz(x) __reverse_ffs(~(x))
27
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090028static struct kmem_cache *discard_entry_slab;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -080029static struct kmem_cache *discard_cmd_slab;
Chao Yu184a5cd2014-09-04 18:13:01 +080030static struct kmem_cache *sit_entry_set_slab;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -070031static struct kmem_cache *inmem_entry_slab;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090032
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070033static unsigned long __reverse_ulong(unsigned char *str)
34{
35 unsigned long tmp = 0;
36 int shift = 24, idx = 0;
37
38#if BITS_PER_LONG == 64
39 shift = 56;
40#endif
41 while (shift >= 0) {
42 tmp |= (unsigned long)str[idx++] << shift;
43 shift -= BITS_PER_BYTE;
44 }
45 return tmp;
46}
47
Changman Lee9a7f1432013-11-15 10:42:51 +090048/*
49 * __reverse_ffs is copied from include/asm-generic/bitops/__ffs.h since
50 * MSB and LSB are reversed in a byte by f2fs_set_bit.
51 */
52static inline unsigned long __reverse_ffs(unsigned long word)
53{
54 int num = 0;
55
56#if BITS_PER_LONG == 64
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070057 if ((word & 0xffffffff00000000UL) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090058 num += 32;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070059 else
Changman Lee9a7f1432013-11-15 10:42:51 +090060 word >>= 32;
Changman Lee9a7f1432013-11-15 10:42:51 +090061#endif
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070062 if ((word & 0xffff0000) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090063 num += 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070064 else
Changman Lee9a7f1432013-11-15 10:42:51 +090065 word >>= 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070066
67 if ((word & 0xff00) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090068 num += 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070069 else
Changman Lee9a7f1432013-11-15 10:42:51 +090070 word >>= 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070071
Changman Lee9a7f1432013-11-15 10:42:51 +090072 if ((word & 0xf0) == 0)
73 num += 4;
74 else
75 word >>= 4;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070076
Changman Lee9a7f1432013-11-15 10:42:51 +090077 if ((word & 0xc) == 0)
78 num += 2;
79 else
80 word >>= 2;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070081
Changman Lee9a7f1432013-11-15 10:42:51 +090082 if ((word & 0x2) == 0)
83 num += 1;
84 return num;
85}
86
87/*
arter97e1c42042014-08-06 23:22:50 +090088 * __find_rev_next(_zero)_bit is copied from lib/find_next_bit.c because
Changman Lee9a7f1432013-11-15 10:42:51 +090089 * f2fs_set_bit makes MSB and LSB reversed in a byte.
Fan Li692223d2015-11-12 08:43:04 +080090 * @size must be integral times of unsigned long.
Changman Lee9a7f1432013-11-15 10:42:51 +090091 * Example:
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070092 * MSB <--> LSB
93 * f2fs_set_bit(0, bitmap) => 1000 0000
94 * f2fs_set_bit(7, bitmap) => 0000 0001
Changman Lee9a7f1432013-11-15 10:42:51 +090095 */
96static unsigned long __find_rev_next_bit(const unsigned long *addr,
97 unsigned long size, unsigned long offset)
98{
99 const unsigned long *p = addr + BIT_WORD(offset);
Fan Li692223d2015-11-12 08:43:04 +0800100 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900101 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900102
103 if (offset >= size)
104 return size;
105
Fan Li692223d2015-11-12 08:43:04 +0800106 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900107 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900108
Fan Li692223d2015-11-12 08:43:04 +0800109 while (1) {
110 if (*p == 0)
111 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700112
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700113 tmp = __reverse_ulong((unsigned char *)p);
Fan Li692223d2015-11-12 08:43:04 +0800114
115 tmp &= ~0UL >> offset;
116 if (size < BITS_PER_LONG)
117 tmp &= (~0UL << (BITS_PER_LONG - size));
Changman Lee9a7f1432013-11-15 10:42:51 +0900118 if (tmp)
Fan Li692223d2015-11-12 08:43:04 +0800119 goto found;
120pass:
121 if (size <= BITS_PER_LONG)
122 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900123 size -= BITS_PER_LONG;
Fan Li692223d2015-11-12 08:43:04 +0800124 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700125 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900126 }
Fan Li692223d2015-11-12 08:43:04 +0800127 return result;
128found:
129 return result - size + __reverse_ffs(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900130}
131
132static unsigned long __find_rev_next_zero_bit(const unsigned long *addr,
133 unsigned long size, unsigned long offset)
134{
135 const unsigned long *p = addr + BIT_WORD(offset);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800136 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900137 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900138
139 if (offset >= size)
140 return size;
141
Jaegeuk Kim80609442015-12-04 16:51:13 -0800142 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900143 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900144
Jaegeuk Kim80609442015-12-04 16:51:13 -0800145 while (1) {
146 if (*p == ~0UL)
147 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700148
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700149 tmp = __reverse_ulong((unsigned char *)p);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800150
151 if (offset)
152 tmp |= ~0UL << (BITS_PER_LONG - offset);
153 if (size < BITS_PER_LONG)
154 tmp |= ~0UL >> size;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700155 if (tmp != ~0UL)
Jaegeuk Kim80609442015-12-04 16:51:13 -0800156 goto found;
157pass:
158 if (size <= BITS_PER_LONG)
159 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900160 size -= BITS_PER_LONG;
Jaegeuk Kim80609442015-12-04 16:51:13 -0800161 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700162 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900163 }
Jaegeuk Kim80609442015-12-04 16:51:13 -0800164 return result;
165found:
166 return result - size + __reverse_ffz(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900167}
168
Chao Yu4d57b862018-05-30 00:20:41 +0800169bool f2fs_need_SSR(struct f2fs_sb_info *sbi)
Jaegeuk Kimb3a97a22017-09-09 11:11:04 -0700170{
171 int node_secs = get_blocktype_secs(sbi, F2FS_DIRTY_NODES);
172 int dent_secs = get_blocktype_secs(sbi, F2FS_DIRTY_DENTS);
173 int imeta_secs = get_blocktype_secs(sbi, F2FS_DIRTY_IMETA);
174
175 if (test_opt(sbi, LFS))
176 return false;
Jaegeuk Kim5b0e9532018-05-07 14:22:40 -0700177 if (sbi->gc_mode == GC_URGENT)
Jaegeuk Kimb3a97a22017-09-09 11:11:04 -0700178 return true;
Daniel Rosenberg43549942018-08-20 19:21:43 -0700179 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
180 return true;
Jaegeuk Kimb3a97a22017-09-09 11:11:04 -0700181
182 return free_sections(sbi) <= (node_secs + 2 * dent_secs + imeta_secs +
Chao Yua2a12b62017-10-28 16:52:33 +0800183 SM_I(sbi)->min_ssr_sections + reserved_sections(sbi));
Jaegeuk Kimb3a97a22017-09-09 11:11:04 -0700184}
185
Chao Yu4d57b862018-05-30 00:20:41 +0800186void f2fs_register_inmem_page(struct inode *inode, struct page *page)
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700187{
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700188 struct inmem_pages *new;
Jaegeuk Kim9be32d72014-12-05 10:39:49 -0800189
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -0800190 f2fs_trace_pid(page);
Jaegeuk Kim0722b102014-12-05 11:58:02 -0800191
Chao Yu240a5912019-03-06 17:30:59 +0800192 f2fs_set_page_private(page, (unsigned long)ATOMIC_WRITTEN_PAGE);
Chao Yudecd36b2015-08-07 18:42:09 +0800193
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700194 new = f2fs_kmem_cache_alloc(inmem_entry_slab, GFP_NOFS);
195
196 /* add atomic page indices to the list */
197 new->page = page;
198 INIT_LIST_HEAD(&new->list);
Chao Yudecd36b2015-08-07 18:42:09 +0800199
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700200 /* increase reference count with clean state */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700201 get_page(page);
Jaegeuk Kim743b6202019-09-09 13:10:59 +0100202 mutex_lock(&F2FS_I(inode)->inmem_lock);
203 list_add_tail(&new->list, &F2FS_I(inode)->inmem_pages);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800204 inc_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim743b6202019-09-09 13:10:59 +0100205 mutex_unlock(&F2FS_I(inode)->inmem_lock);
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700206
207 trace_f2fs_register_inmem_page(page, INMEM);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700208}
209
Chao Yu28bc1062016-02-06 14:40:34 +0800210static int __revoke_inmem_pages(struct inode *inode,
Chao Yu48432982019-02-25 17:11:03 +0800211 struct list_head *head, bool drop, bool recover,
212 bool trylock)
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700213{
Chao Yu28bc1062016-02-06 14:40:34 +0800214 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700215 struct inmem_pages *cur, *tmp;
Chao Yu28bc1062016-02-06 14:40:34 +0800216 int err = 0;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700217
Chao Yu29b96b52016-02-06 14:38:29 +0800218 list_for_each_entry_safe(cur, tmp, head, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800219 struct page *page = cur->page;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700220
Chao Yu28bc1062016-02-06 14:40:34 +0800221 if (drop)
222 trace_f2fs_commit_inmem_page(page, INMEM_DROP);
223
Chao Yu48432982019-02-25 17:11:03 +0800224 if (trylock) {
225 /*
226 * to avoid deadlock in between page lock and
227 * inmem_lock.
228 */
229 if (!trylock_page(page))
230 continue;
231 } else {
232 lock_page(page);
233 }
Chao Yu28bc1062016-02-06 14:40:34 +0800234
Chao Yubae0ee72018-12-25 17:43:42 +0800235 f2fs_wait_on_page_writeback(page, DATA, true, true);
Chao Yue5e57322018-04-23 10:36:13 +0800236
Chao Yu28bc1062016-02-06 14:40:34 +0800237 if (recover) {
238 struct dnode_of_data dn;
239 struct node_info ni;
240
241 trace_f2fs_commit_inmem_page(page, INMEM_REVOKE);
Chao Yu7f2b4e82017-08-08 19:09:08 +0800242retry:
Chao Yu28bc1062016-02-06 14:40:34 +0800243 set_new_dnode(&dn, inode, NULL, NULL, 0);
Chao Yu4d57b862018-05-30 00:20:41 +0800244 err = f2fs_get_dnode_of_data(&dn, page->index,
245 LOOKUP_NODE);
Chao Yu7f2b4e82017-08-08 19:09:08 +0800246 if (err) {
247 if (err == -ENOMEM) {
248 congestion_wait(BLK_RW_ASYNC, HZ/50);
249 cond_resched();
250 goto retry;
251 }
Chao Yu28bc1062016-02-06 14:40:34 +0800252 err = -EAGAIN;
253 goto next;
254 }
Chao Yu77357302018-07-17 00:02:17 +0800255
256 err = f2fs_get_node_info(sbi, dn.nid, &ni);
257 if (err) {
258 f2fs_put_dnode(&dn);
259 return err;
260 }
261
Daeho Jeongf1d25642018-01-10 16:49:10 +0900262 if (cur->old_addr == NEW_ADDR) {
Chao Yu4d57b862018-05-30 00:20:41 +0800263 f2fs_invalidate_blocks(sbi, dn.data_blkaddr);
Daeho Jeongf1d25642018-01-10 16:49:10 +0900264 f2fs_update_data_blkaddr(&dn, NEW_ADDR);
265 } else
266 f2fs_replace_block(sbi, &dn, dn.data_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +0800267 cur->old_addr, ni.version, true, true);
268 f2fs_put_dnode(&dn);
269 }
270next:
Jaegeuk Kim63c52d72016-04-12 14:11:03 -0700271 /* we don't need to invalidate this in the sccessful status */
Chao Yu2baf0782018-07-27 18:15:16 +0800272 if (drop || recover) {
Jaegeuk Kim63c52d72016-04-12 14:11:03 -0700273 ClearPageUptodate(page);
Chao Yu2baf0782018-07-27 18:15:16 +0800274 clear_cold_data(page);
275 }
Chao Yu240a5912019-03-06 17:30:59 +0800276 f2fs_clear_page_private(page);
Chao Yu28bc1062016-02-06 14:40:34 +0800277 f2fs_put_page(page, 1);
Chao Yudecd36b2015-08-07 18:42:09 +0800278
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700279 list_del(&cur->list);
280 kmem_cache_free(inmem_entry_slab, cur);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800281 dec_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700282 }
Chao Yu28bc1062016-02-06 14:40:34 +0800283 return err;
Chao Yu29b96b52016-02-06 14:38:29 +0800284}
285
Chao Yu4d57b862018-05-30 00:20:41 +0800286void f2fs_drop_inmem_pages_all(struct f2fs_sb_info *sbi, bool gc_failure)
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700287{
288 struct list_head *head = &sbi->inode_list[ATOMIC_FILE];
289 struct inode *inode;
290 struct f2fs_inode_info *fi;
Sahitya Tummala677017d2019-11-13 16:01:03 +0530291 unsigned int count = sbi->atomic_files;
292 unsigned int looped = 0;
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700293next:
294 spin_lock(&sbi->inode_lock[ATOMIC_FILE]);
295 if (list_empty(head)) {
296 spin_unlock(&sbi->inode_lock[ATOMIC_FILE]);
297 return;
298 }
299 fi = list_first_entry(head, struct f2fs_inode_info, inmem_ilist);
300 inode = igrab(&fi->vfs_inode);
Sahitya Tummala677017d2019-11-13 16:01:03 +0530301 if (inode)
302 list_move_tail(&fi->inmem_ilist, head);
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700303 spin_unlock(&sbi->inode_lock[ATOMIC_FILE]);
304
305 if (inode) {
Chao Yu2ef79ec2018-05-07 20:28:54 +0800306 if (gc_failure) {
Sahitya Tummala677017d2019-11-13 16:01:03 +0530307 if (!fi->i_gc_failures[GC_FAILURE_ATOMIC])
308 goto skip;
Chao Yu2ef79ec2018-05-07 20:28:54 +0800309 }
Chao Yu2ef79ec2018-05-07 20:28:54 +0800310 set_inode_flag(inode, FI_ATOMIC_REVOKE_REQUEST);
Chao Yu4d57b862018-05-30 00:20:41 +0800311 f2fs_drop_inmem_pages(inode);
Sahitya Tummala677017d2019-11-13 16:01:03 +0530312skip:
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700313 iput(inode);
314 }
315 congestion_wait(BLK_RW_ASYNC, HZ/50);
316 cond_resched();
Sahitya Tummala677017d2019-11-13 16:01:03 +0530317 if (gc_failure) {
318 if (++looped >= count)
319 return;
320 }
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700321 goto next;
322}
323
Chao Yu4d57b862018-05-30 00:20:41 +0800324void f2fs_drop_inmem_pages(struct inode *inode)
Chao Yu29b96b52016-02-06 14:38:29 +0800325{
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700326 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Chao Yu29b96b52016-02-06 14:38:29 +0800327 struct f2fs_inode_info *fi = F2FS_I(inode);
328
Chao Yu48432982019-02-25 17:11:03 +0800329 while (!list_empty(&fi->inmem_pages)) {
330 mutex_lock(&fi->inmem_lock);
331 __revoke_inmem_pages(inode, &fi->inmem_pages,
332 true, false, true);
Chao Yu48432982019-02-25 17:11:03 +0800333 mutex_unlock(&fi->inmem_lock);
334 }
Chao Yu5fe45742017-01-07 18:50:26 +0800335
Chao Yu2ef79ec2018-05-07 20:28:54 +0800336 fi->i_gc_failures[GC_FAILURE_ATOMIC] = 0;
Chao Yu5fe45742017-01-07 18:50:26 +0800337 stat_dec_atomic_write(inode);
Jaegeuk Kim743b6202019-09-09 13:10:59 +0100338
339 spin_lock(&sbi->inode_lock[ATOMIC_FILE]);
340 if (!list_empty(&fi->inmem_ilist))
341 list_del_init(&fi->inmem_ilist);
Sahitya Tummala677017d2019-11-13 16:01:03 +0530342 if (f2fs_is_atomic_file(inode)) {
343 clear_inode_flag(inode, FI_ATOMIC_FILE);
344 sbi->atomic_files--;
345 }
Jaegeuk Kim743b6202019-09-09 13:10:59 +0100346 spin_unlock(&sbi->inode_lock[ATOMIC_FILE]);
Chao Yu29b96b52016-02-06 14:38:29 +0800347}
348
Chao Yu4d57b862018-05-30 00:20:41 +0800349void f2fs_drop_inmem_page(struct inode *inode, struct page *page)
Jaegeuk Kim8c242db2017-03-17 09:55:52 +0800350{
351 struct f2fs_inode_info *fi = F2FS_I(inode);
352 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
353 struct list_head *head = &fi->inmem_pages;
354 struct inmem_pages *cur = NULL;
355
356 f2fs_bug_on(sbi, !IS_ATOMIC_WRITTEN_PAGE(page));
357
358 mutex_lock(&fi->inmem_lock);
359 list_for_each_entry(cur, head, list) {
360 if (cur->page == page)
361 break;
362 }
363
Sheng Yongd0891e82018-04-17 17:12:27 +0800364 f2fs_bug_on(sbi, list_empty(head) || cur->page != page);
Jaegeuk Kim8c242db2017-03-17 09:55:52 +0800365 list_del(&cur->list);
366 mutex_unlock(&fi->inmem_lock);
367
368 dec_page_count(sbi, F2FS_INMEM_PAGES);
369 kmem_cache_free(inmem_entry_slab, cur);
370
371 ClearPageUptodate(page);
Chao Yu240a5912019-03-06 17:30:59 +0800372 f2fs_clear_page_private(page);
Jaegeuk Kim8c242db2017-03-17 09:55:52 +0800373 f2fs_put_page(page, 0);
374
375 trace_f2fs_commit_inmem_page(page, INMEM_INVALIDATE);
376}
377
Chao Yu4d57b862018-05-30 00:20:41 +0800378static int __f2fs_commit_inmem_pages(struct inode *inode)
Chao Yu29b96b52016-02-06 14:38:29 +0800379{
380 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
381 struct f2fs_inode_info *fi = F2FS_I(inode);
382 struct inmem_pages *cur, *tmp;
383 struct f2fs_io_info fio = {
384 .sbi = sbi,
Chao Yu39d787b2017-09-29 13:59:38 +0800385 .ino = inode->i_ino,
Chao Yu29b96b52016-02-06 14:38:29 +0800386 .type = DATA,
Mike Christie04d328d2016-06-05 14:31:55 -0500387 .op = REQ_OP_WRITE,
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600388 .op_flags = REQ_SYNC | REQ_PRIO,
Chao Yub0af6d42017-08-02 23:21:48 +0800389 .io_type = FS_DATA_IO,
Chao Yu29b96b52016-02-06 14:38:29 +0800390 };
Chao Yucf52b272018-04-23 10:36:14 +0800391 struct list_head revoke_list;
Chao Yubab475c2018-09-27 23:41:16 +0800392 bool submit_bio = false;
Chao Yu29b96b52016-02-06 14:38:29 +0800393 int err = 0;
394
Chao Yucf52b272018-04-23 10:36:14 +0800395 INIT_LIST_HEAD(&revoke_list);
396
Chao Yu29b96b52016-02-06 14:38:29 +0800397 list_for_each_entry_safe(cur, tmp, &fi->inmem_pages, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800398 struct page *page = cur->page;
399
400 lock_page(page);
401 if (page->mapping == inode->i_mapping) {
402 trace_f2fs_commit_inmem_page(page, INMEM);
403
Chao Yubae0ee72018-12-25 17:43:42 +0800404 f2fs_wait_on_page_writeback(page, DATA, true, true);
Chao Yu8d64d362018-12-12 18:12:30 +0800405
406 set_page_dirty(page);
Chao Yu933439c2016-10-11 22:57:01 +0800407 if (clear_page_dirty_for_io(page)) {
Chao Yu29b96b52016-02-06 14:38:29 +0800408 inode_dec_dirty_pages(inode);
Chao Yu4d57b862018-05-30 00:20:41 +0800409 f2fs_remove_dirty_inode(inode);
Chao Yu933439c2016-10-11 22:57:01 +0800410 }
Jaegeuk Kim640cc182017-07-19 10:59:55 -0700411retry:
Chao Yu28bc1062016-02-06 14:40:34 +0800412 fio.page = page;
Hou Pengyange959c8f2017-04-25 12:45:13 +0000413 fio.old_blkaddr = NULL_ADDR;
Jaegeuk Kim4d978072017-04-26 11:11:12 -0700414 fio.encrypted_page = NULL;
Jaegeuk Kimcc156202017-05-12 13:51:34 -0700415 fio.need_lock = LOCK_DONE;
Chao Yu4d57b862018-05-30 00:20:41 +0800416 err = f2fs_do_write_data_page(&fio);
Chao Yu29b96b52016-02-06 14:38:29 +0800417 if (err) {
Jaegeuk Kim640cc182017-07-19 10:59:55 -0700418 if (err == -ENOMEM) {
419 congestion_wait(BLK_RW_ASYNC, HZ/50);
420 cond_resched();
421 goto retry;
422 }
Chao Yu28bc1062016-02-06 14:40:34 +0800423 unlock_page(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800424 break;
425 }
Chao Yu28bc1062016-02-06 14:40:34 +0800426 /* record old blkaddr for revoking */
427 cur->old_addr = fio.old_blkaddr;
Chao Yubab475c2018-09-27 23:41:16 +0800428 submit_bio = true;
Chao Yu29b96b52016-02-06 14:38:29 +0800429 }
Chao Yu28bc1062016-02-06 14:40:34 +0800430 unlock_page(page);
Chao Yucf52b272018-04-23 10:36:14 +0800431 list_move_tail(&cur->list, &revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800432 }
433
Chao Yubab475c2018-09-27 23:41:16 +0800434 if (submit_bio)
435 f2fs_submit_merged_write_cond(sbi, inode, NULL, 0, DATA);
Chao Yu28bc1062016-02-06 14:40:34 +0800436
Chao Yu28bc1062016-02-06 14:40:34 +0800437 if (err) {
Chao Yu28bc1062016-02-06 14:40:34 +0800438 /*
439 * try to revoke all committed pages, but still we could fail
440 * due to no memory or other reason, if that happened, EAGAIN
441 * will be returned, which means in such case, transaction is
442 * already not integrity, caller should use journal to do the
443 * recovery or rewrite & commit last transaction. For other
444 * error number, revoking was done by filesystem itself.
445 */
Chao Yu48432982019-02-25 17:11:03 +0800446 err = __revoke_inmem_pages(inode, &revoke_list,
447 false, true, false);
Chao Yu28bc1062016-02-06 14:40:34 +0800448
449 /* drop all uncommitted pages */
Chao Yu48432982019-02-25 17:11:03 +0800450 __revoke_inmem_pages(inode, &fi->inmem_pages,
451 true, false, false);
Chao Yucf52b272018-04-23 10:36:14 +0800452 } else {
Chao Yu48432982019-02-25 17:11:03 +0800453 __revoke_inmem_pages(inode, &revoke_list,
454 false, false, false);
Chao Yu28bc1062016-02-06 14:40:34 +0800455 }
Chao Yucf52b272018-04-23 10:36:14 +0800456
457 return err;
458}
459
Chao Yu4d57b862018-05-30 00:20:41 +0800460int f2fs_commit_inmem_pages(struct inode *inode)
Chao Yucf52b272018-04-23 10:36:14 +0800461{
462 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
463 struct f2fs_inode_info *fi = F2FS_I(inode);
464 int err;
465
466 f2fs_balance_fs(sbi, true);
Chao Yucf52b272018-04-23 10:36:14 +0800467
Jaegeuk Kim6f8d4452018-07-25 12:11:56 +0900468 down_write(&fi->i_gc_rwsem[WRITE]);
469
470 f2fs_lock_op(sbi);
Chao Yucf52b272018-04-23 10:36:14 +0800471 set_inode_flag(inode, FI_ATOMIC_COMMIT);
472
473 mutex_lock(&fi->inmem_lock);
Chao Yu4d57b862018-05-30 00:20:41 +0800474 err = __f2fs_commit_inmem_pages(inode);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700475 mutex_unlock(&fi->inmem_lock);
476
Chao Yu5fe45742017-01-07 18:50:26 +0800477 clear_inode_flag(inode, FI_ATOMIC_COMMIT);
478
Chao Yu29b96b52016-02-06 14:38:29 +0800479 f2fs_unlock_op(sbi);
Jaegeuk Kim6f8d4452018-07-25 12:11:56 +0900480 up_write(&fi->i_gc_rwsem[WRITE]);
481
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700482 return err;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700483}
484
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900485/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900486 * This function balances dirty node and dentry pages.
487 * In addition, it controls garbage collection.
488 */
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800489void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900490{
Chao Yu55523512017-02-25 11:08:28 +0800491 if (time_to_inject(sbi, FAULT_CHECKPOINT)) {
Chao Yuc45d6002019-11-01 17:53:23 +0800492 f2fs_show_injection_info(sbi, FAULT_CHECKPOINT);
Chao Yu0f348022016-09-26 19:45:55 +0800493 f2fs_stop_checkpoint(sbi, false);
Chao Yu55523512017-02-25 11:08:28 +0800494 }
Chao Yu0f348022016-09-26 19:45:55 +0800495
Jaegeuk Kime589c2c2016-06-02 15:24:24 -0700496 /* balance_fs_bg is able to be pending */
Jaegeuk Kima7881892017-04-20 13:51:57 -0700497 if (need && excess_cached_nats(sbi))
Jaegeuk Kime589c2c2016-06-02 15:24:24 -0700498 f2fs_balance_fs_bg(sbi);
499
Chao Yu00e09c02019-08-23 17:58:36 +0800500 if (!f2fs_is_checkpoint_ready(sbi))
Daniel Rosenberg43549942018-08-20 19:21:43 -0700501 return;
502
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900503 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900504 * We should do GC or end up with checkpoint, if there are so many dirty
505 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900506 */
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700507 if (has_not_enough_free_secs(sbi, 0, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900508 mutex_lock(&sbi->gc_mutex);
Jaegeuk Kime066b832017-04-13 15:17:00 -0700509 f2fs_gc(sbi, false, false, NULL_SEGNO);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900510 }
511}
512
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900513void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
514{
Chao Yu64c74a72018-05-26 18:03:34 +0800515 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
516 return;
517
Chao Yu1dcc3362015-02-05 17:57:31 +0800518 /* try to shrink extent cache when there is no enough memory */
Chao Yu4d57b862018-05-30 00:20:41 +0800519 if (!f2fs_available_free_memory(sbi, EXTENT_CACHE))
Jaegeuk Kim554df792015-06-19 13:41:23 -0700520 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800521
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700522 /* check the # of cached NAT entries */
Chao Yu4d57b862018-05-30 00:20:41 +0800523 if (!f2fs_available_free_memory(sbi, NAT_ENTRIES))
524 f2fs_try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700525
Chao Yu4d57b862018-05-30 00:20:41 +0800526 if (!f2fs_available_free_memory(sbi, FREE_NIDS))
527 f2fs_try_to_free_nids(sbi, MAX_FREE_NIDS);
Jaegeuk Kimad4edb82016-06-16 16:41:49 -0700528 else
Chao Yu4d57b862018-05-30 00:20:41 +0800529 f2fs_build_free_nids(sbi, false, false);
Chao Yu31696582015-07-28 18:33:46 +0800530
Sahitya Tummalaa7d10cf2018-09-19 14:18:47 +0530531 if (!is_idle(sbi, REQ_TIME) &&
Chao Yufd8c8ca2018-07-25 19:16:21 +0800532 (!excess_dirty_nats(sbi) && !excess_dirty_nodes(sbi)))
Jaegeuk Kimf455c8a2016-12-05 11:37:14 -0800533 return;
Jaegeuk Kime5e7ea32014-11-06 15:24:46 -0800534
Jaegeuk Kim88a70a62014-12-10 15:20:48 -0800535 /* checkpoint is the only way to shrink partial cached entries */
Chao Yu4d57b862018-05-30 00:20:41 +0800536 if (!f2fs_available_free_memory(sbi, NAT_ENTRIES) ||
537 !f2fs_available_free_memory(sbi, INO_ENTRIES) ||
Chao Yu7d768d22016-01-18 18:31:18 +0800538 excess_prefree_segs(sbi) ||
539 excess_dirty_nats(sbi) ||
Chao Yufd8c8ca2018-07-25 19:16:21 +0800540 excess_dirty_nodes(sbi) ||
Jaegeuk Kimf455c8a2016-12-05 11:37:14 -0800541 f2fs_time_over(sbi, CP_TIME)) {
Chao Yue9f5b8b2016-02-14 18:54:33 +0800542 if (test_opt(sbi, DATA_FLUSH)) {
543 struct blk_plug plug;
544
Chao Yu040d2bb2019-05-20 17:36:59 +0800545 mutex_lock(&sbi->flush_lock);
546
Chao Yue9f5b8b2016-02-14 18:54:33 +0800547 blk_start_plug(&plug);
Chao Yu4d57b862018-05-30 00:20:41 +0800548 f2fs_sync_dirty_inodes(sbi, FILE_INODE);
Chao Yue9f5b8b2016-02-14 18:54:33 +0800549 blk_finish_plug(&plug);
Chao Yu040d2bb2019-05-20 17:36:59 +0800550
551 mutex_unlock(&sbi->flush_lock);
Chao Yue9f5b8b2016-02-14 18:54:33 +0800552 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900553 f2fs_sync_fs(sbi->sb, true);
Jaegeuk Kim42190d22016-01-09 13:45:17 -0800554 stat_inc_bg_cp_count(sbi->stat_info);
Chao Yu36b35a02015-12-17 17:13:28 +0800555 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900556}
557
Kinglong Mee20fda56b2017-03-04 22:13:10 +0800558static int __submit_flush_wait(struct f2fs_sb_info *sbi,
559 struct block_device *bdev)
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700560{
Chao Yudc379102019-02-19 17:08:18 +0800561 struct bio *bio;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700562 int ret;
563
Chao Yudc379102019-02-19 17:08:18 +0800564 bio = f2fs_bio_alloc(sbi, 0, false);
565 if (!bio)
566 return -ENOMEM;
567
Jan Kara3adc5fcb2017-05-02 17:03:47 +0200568 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC | REQ_PREFLUSH;
Christoph Hellwig74d46992017-08-23 19:10:32 +0200569 bio_set_dev(bio, bdev);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700570 ret = submit_bio_wait(bio);
571 bio_put(bio);
Kinglong Mee20fda56b2017-03-04 22:13:10 +0800572
573 trace_f2fs_issue_flush(bdev, test_opt(sbi, NOBARRIER),
574 test_opt(sbi, FLUSH_MERGE), ret);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700575 return ret;
576}
577
Chao Yu39d787b2017-09-29 13:59:38 +0800578static int submit_flush_wait(struct f2fs_sb_info *sbi, nid_t ino)
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700579{
Chao Yu39d787b2017-09-29 13:59:38 +0800580 int ret = 0;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700581 int i;
582
Damien Le Moal09168782019-03-16 09:13:06 +0900583 if (!f2fs_is_multi_device(sbi))
Chao Yu39d787b2017-09-29 13:59:38 +0800584 return __submit_flush_wait(sbi, sbi->sb->s_bdev);
Kinglong Mee20fda56b2017-03-04 22:13:10 +0800585
Chao Yu39d787b2017-09-29 13:59:38 +0800586 for (i = 0; i < sbi->s_ndevs; i++) {
Chao Yu4d57b862018-05-30 00:20:41 +0800587 if (!f2fs_is_dirty_device(sbi, ino, i, FLUSH_INO))
Chao Yu39d787b2017-09-29 13:59:38 +0800588 continue;
Kinglong Mee20fda56b2017-03-04 22:13:10 +0800589 ret = __submit_flush_wait(sbi, FDEV(i).bdev);
590 if (ret)
591 break;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700592 }
593 return ret;
594}
595
Gu Zheng2163d192014-04-27 14:21:33 +0800596static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900597{
598 struct f2fs_sb_info *sbi = data;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800599 struct flush_cmd_control *fcc = SM_I(sbi)->fcc_info;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800600 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900601repeat:
602 if (kthread_should_stop())
603 return 0;
604
Chao Yudc6febb2017-07-22 08:52:23 +0800605 sb_start_intwrite(sbi->sb);
606
Gu Zheng721bd4d2014-09-05 18:31:00 +0800607 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900608 struct flush_cmd *cmd, *next;
609 int ret;
610
Gu Zheng721bd4d2014-09-05 18:31:00 +0800611 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
612 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
613
Chao Yu39d787b2017-09-29 13:59:38 +0800614 cmd = llist_entry(fcc->dispatch_list, struct flush_cmd, llnode);
615
616 ret = submit_flush_wait(sbi, cmd->ino);
Chao Yu8b8dd652017-03-25 17:19:58 +0800617 atomic_inc(&fcc->issued_flush);
618
Gu Zheng721bd4d2014-09-05 18:31:00 +0800619 llist_for_each_entry_safe(cmd, next,
620 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900621 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900622 complete(&cmd->wait);
623 }
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800624 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900625 }
626
Chao Yudc6febb2017-07-22 08:52:23 +0800627 sb_end_intwrite(sbi->sb);
628
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800629 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800630 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900631 goto repeat;
632}
633
Chao Yu39d787b2017-09-29 13:59:38 +0800634int f2fs_issue_flush(struct f2fs_sb_info *sbi, nid_t ino)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900635{
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800636 struct flush_cmd_control *fcc = SM_I(sbi)->fcc_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800637 struct flush_cmd cmd;
Chao Yu8b8dd652017-03-25 17:19:58 +0800638 int ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900639
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700640 if (test_opt(sbi, NOBARRIER))
641 return 0;
642
Chao Yu8b8dd652017-03-25 17:19:58 +0800643 if (!test_opt(sbi, FLUSH_MERGE)) {
Jaegeuk Kim72691af2018-12-13 16:53:57 -0800644 atomic_inc(&fcc->queued_flush);
Chao Yu39d787b2017-09-29 13:59:38 +0800645 ret = submit_flush_wait(sbi, ino);
Jaegeuk Kim72691af2018-12-13 16:53:57 -0800646 atomic_dec(&fcc->queued_flush);
Chao Yu8b8dd652017-03-25 17:19:58 +0800647 atomic_inc(&fcc->issued_flush);
648 return ret;
649 }
650
Damien Le Moal09168782019-03-16 09:13:06 +0900651 if (atomic_inc_return(&fcc->queued_flush) == 1 ||
652 f2fs_is_multi_device(sbi)) {
Chao Yu39d787b2017-09-29 13:59:38 +0800653 ret = submit_flush_wait(sbi, ino);
Jaegeuk Kim72691af2018-12-13 16:53:57 -0800654 atomic_dec(&fcc->queued_flush);
Chao Yu8b8dd652017-03-25 17:19:58 +0800655
656 atomic_inc(&fcc->issued_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700657 return ret;
658 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900659
Chao Yu39d787b2017-09-29 13:59:38 +0800660 cmd.ino = ino;
Chao Yuadf8d902014-05-08 17:00:35 +0800661 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900662
Gu Zheng721bd4d2014-09-05 18:31:00 +0800663 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900664
Chao Yu6f890df2017-08-21 22:53:45 +0800665 /* update issue_list before we wake up issue_flush thread */
666 smp_mb();
667
668 if (waitqueue_active(&fcc->flush_wait_queue))
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800669 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900670
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800671 if (fcc->f2fs_issue_flush) {
672 wait_for_completion(&cmd.wait);
Jaegeuk Kim72691af2018-12-13 16:53:57 -0800673 atomic_dec(&fcc->queued_flush);
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800674 } else {
Chao Yud3238692017-08-31 18:56:06 +0800675 struct llist_node *list;
676
677 list = llist_del_all(&fcc->issue_list);
678 if (!list) {
679 wait_for_completion(&cmd.wait);
Jaegeuk Kim72691af2018-12-13 16:53:57 -0800680 atomic_dec(&fcc->queued_flush);
Chao Yud3238692017-08-31 18:56:06 +0800681 } else {
682 struct flush_cmd *tmp, *next;
683
Chao Yu39d787b2017-09-29 13:59:38 +0800684 ret = submit_flush_wait(sbi, ino);
Chao Yud3238692017-08-31 18:56:06 +0800685
686 llist_for_each_entry_safe(tmp, next, list, llnode) {
687 if (tmp == &cmd) {
688 cmd.ret = ret;
Jaegeuk Kim72691af2018-12-13 16:53:57 -0800689 atomic_dec(&fcc->queued_flush);
Chao Yud3238692017-08-31 18:56:06 +0800690 continue;
691 }
692 tmp->ret = ret;
693 complete(&tmp->wait);
694 }
695 }
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800696 }
Chao Yuadf8d902014-05-08 17:00:35 +0800697
698 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900699}
700
Chao Yu4d57b862018-05-30 00:20:41 +0800701int f2fs_create_flush_cmd_control(struct f2fs_sb_info *sbi)
Gu Zheng2163d192014-04-27 14:21:33 +0800702{
703 dev_t dev = sbi->sb->s_bdev->bd_dev;
704 struct flush_cmd_control *fcc;
705 int err = 0;
706
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800707 if (SM_I(sbi)->fcc_info) {
708 fcc = SM_I(sbi)->fcc_info;
Yunlong Songd871cd02017-06-24 15:57:19 +0800709 if (fcc->f2fs_issue_flush)
710 return err;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800711 goto init_thread;
712 }
713
Chao Yuacbf0542017-11-30 19:28:17 +0800714 fcc = f2fs_kzalloc(sbi, sizeof(struct flush_cmd_control), GFP_KERNEL);
Gu Zheng2163d192014-04-27 14:21:33 +0800715 if (!fcc)
716 return -ENOMEM;
Chao Yu8b8dd652017-03-25 17:19:58 +0800717 atomic_set(&fcc->issued_flush, 0);
Jaegeuk Kim72691af2018-12-13 16:53:57 -0800718 atomic_set(&fcc->queued_flush, 0);
Gu Zheng2163d192014-04-27 14:21:33 +0800719 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800720 init_llist_head(&fcc->issue_list);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800721 SM_I(sbi)->fcc_info = fcc;
Yunlei Hed4fdf8b2017-06-01 16:43:51 +0800722 if (!test_opt(sbi, FLUSH_MERGE))
723 return err;
724
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800725init_thread:
Gu Zheng2163d192014-04-27 14:21:33 +0800726 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
727 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
728 if (IS_ERR(fcc->f2fs_issue_flush)) {
729 err = PTR_ERR(fcc->f2fs_issue_flush);
Jaegeuk Kim52225952018-12-13 18:38:33 -0800730 kvfree(fcc);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800731 SM_I(sbi)->fcc_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800732 return err;
733 }
Gu Zheng2163d192014-04-27 14:21:33 +0800734
735 return err;
736}
737
Chao Yu4d57b862018-05-30 00:20:41 +0800738void f2fs_destroy_flush_cmd_control(struct f2fs_sb_info *sbi, bool free)
Gu Zheng2163d192014-04-27 14:21:33 +0800739{
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800740 struct flush_cmd_control *fcc = SM_I(sbi)->fcc_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800741
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800742 if (fcc && fcc->f2fs_issue_flush) {
743 struct task_struct *flush_thread = fcc->f2fs_issue_flush;
744
745 fcc->f2fs_issue_flush = NULL;
746 kthread_stop(flush_thread);
747 }
748 if (free) {
Jaegeuk Kim52225952018-12-13 18:38:33 -0800749 kvfree(fcc);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800750 SM_I(sbi)->fcc_info = NULL;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800751 }
Gu Zheng2163d192014-04-27 14:21:33 +0800752}
753
Chao Yu1228b482017-09-29 13:59:39 +0800754int f2fs_flush_device_cache(struct f2fs_sb_info *sbi)
755{
756 int ret = 0, i;
757
Damien Le Moal09168782019-03-16 09:13:06 +0900758 if (!f2fs_is_multi_device(sbi))
Chao Yu1228b482017-09-29 13:59:39 +0800759 return 0;
760
761 for (i = 1; i < sbi->s_ndevs; i++) {
762 if (!f2fs_test_bit(i, (char *)&sbi->dirty_device))
763 continue;
764 ret = __submit_flush_wait(sbi, FDEV(i).bdev);
765 if (ret)
766 break;
767
768 spin_lock(&sbi->dev_lock);
769 f2fs_clear_bit(i, (char *)&sbi->dirty_device);
770 spin_unlock(&sbi->dev_lock);
771 }
772
773 return ret;
774}
775
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900776static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
777 enum dirty_type dirty_type)
778{
779 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
780
781 /* need not be added */
782 if (IS_CURSEG(sbi, segno))
783 return;
784
785 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
786 dirty_i->nr_dirty[dirty_type]++;
787
788 if (dirty_type == DIRTY) {
789 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900790 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900791
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700792 if (unlikely(t >= DIRTY)) {
793 f2fs_bug_on(sbi, 1);
794 return;
795 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900796 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
797 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900798 }
799}
800
801static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
802 enum dirty_type dirty_type)
803{
804 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
805
806 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
807 dirty_i->nr_dirty[dirty_type]--;
808
809 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900810 struct seg_entry *sentry = get_seg_entry(sbi, segno);
811 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900812
Changman Lee4625d6a2013-10-25 17:31:57 +0900813 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
814 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900815
Sahitya Tummalabbf9f7d2019-08-07 19:10:32 +0530816 if (get_valid_blocks(sbi, segno, true) == 0) {
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700817 clear_bit(GET_SEC_FROM_SEG(sbi, segno),
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900818 dirty_i->victim_secmap);
Sahitya Tummalabbf9f7d2019-08-07 19:10:32 +0530819#ifdef CONFIG_F2FS_CHECK_FS
820 clear_bit(segno, SIT_I(sbi)->invalid_segmap);
821#endif
822 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900823 }
824}
825
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900826/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900827 * Should not occur error such as -ENOMEM.
828 * Adding dirty entry into seglist is not critical operation.
829 * If a given segment is one of current working segments, it won't be added.
830 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800831static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900832{
833 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Daniel Rosenberg43549942018-08-20 19:21:43 -0700834 unsigned short valid_blocks, ckpt_valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900835
836 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
837 return;
838
839 mutex_lock(&dirty_i->seglist_lock);
840
Jaegeuk Kim302bd342017-04-07 14:33:22 -0700841 valid_blocks = get_valid_blocks(sbi, segno, false);
Daniel Rosenberg43549942018-08-20 19:21:43 -0700842 ckpt_valid_blocks = get_ckpt_valid_blocks(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900843
Daniel Rosenberg43549942018-08-20 19:21:43 -0700844 if (valid_blocks == 0 && (!is_sbi_flag_set(sbi, SBI_CP_DISABLED) ||
845 ckpt_valid_blocks == sbi->blocks_per_seg)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900846 __locate_dirty_segment(sbi, segno, PRE);
847 __remove_dirty_segment(sbi, segno, DIRTY);
848 } else if (valid_blocks < sbi->blocks_per_seg) {
849 __locate_dirty_segment(sbi, segno, DIRTY);
850 } else {
851 /* Recovery routine with SSR needs this */
852 __remove_dirty_segment(sbi, segno, DIRTY);
853 }
854
855 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900856}
857
Daniel Rosenberg43549942018-08-20 19:21:43 -0700858/* This moves currently empty dirty blocks to prefree. Must hold seglist_lock */
859void f2fs_dirty_to_prefree(struct f2fs_sb_info *sbi)
860{
861 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
862 unsigned int segno;
863
864 mutex_lock(&dirty_i->seglist_lock);
865 for_each_set_bit(segno, dirty_i->dirty_segmap[DIRTY], MAIN_SEGS(sbi)) {
866 if (get_valid_blocks(sbi, segno, false))
867 continue;
868 if (IS_CURSEG(sbi, segno))
869 continue;
870 __locate_dirty_segment(sbi, segno, PRE);
871 __remove_dirty_segment(sbi, segno, DIRTY);
872 }
873 mutex_unlock(&dirty_i->seglist_lock);
874}
875
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700876block_t f2fs_get_unusable_blocks(struct f2fs_sb_info *sbi)
Daniel Rosenberg43549942018-08-20 19:21:43 -0700877{
Daniel Rosenbergae4ad7e2019-05-29 17:49:03 -0700878 int ovp_hole_segs =
879 (overprovision_segments(sbi) - reserved_segments(sbi));
880 block_t ovp_holes = ovp_hole_segs << sbi->log_blocks_per_seg;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700881 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Daniel Rosenberg43549942018-08-20 19:21:43 -0700882 block_t holes[2] = {0, 0}; /* DATA and NODE */
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700883 block_t unusable;
Daniel Rosenberg43549942018-08-20 19:21:43 -0700884 struct seg_entry *se;
885 unsigned int segno;
886
887 mutex_lock(&dirty_i->seglist_lock);
888 for_each_set_bit(segno, dirty_i->dirty_segmap[DIRTY], MAIN_SEGS(sbi)) {
889 se = get_seg_entry(sbi, segno);
890 if (IS_NODESEG(se->type))
891 holes[NODE] += sbi->blocks_per_seg - se->valid_blocks;
892 else
893 holes[DATA] += sbi->blocks_per_seg - se->valid_blocks;
894 }
895 mutex_unlock(&dirty_i->seglist_lock);
896
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700897 unusable = holes[DATA] > holes[NODE] ? holes[DATA] : holes[NODE];
898 if (unusable > ovp_holes)
899 return unusable - ovp_holes;
900 return 0;
901}
902
903int f2fs_disable_cp_again(struct f2fs_sb_info *sbi, block_t unusable)
904{
905 int ovp_hole_segs =
906 (overprovision_segments(sbi) - reserved_segments(sbi));
907 if (unusable > F2FS_OPTION(sbi).unusable_cap)
Daniel Rosenberg43549942018-08-20 19:21:43 -0700908 return -EAGAIN;
Jaegeuk Kimdb610a62019-01-24 17:48:38 -0800909 if (is_sbi_flag_set(sbi, SBI_CP_DISABLED_QUICK) &&
Daniel Rosenbergae4ad7e2019-05-29 17:49:03 -0700910 dirty_segments(sbi) > ovp_hole_segs)
Jaegeuk Kimdb610a62019-01-24 17:48:38 -0800911 return -EAGAIN;
Daniel Rosenberg43549942018-08-20 19:21:43 -0700912 return 0;
913}
914
915/* This is only used by SBI_CP_DISABLED */
916static unsigned int get_free_segment(struct f2fs_sb_info *sbi)
917{
918 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
919 unsigned int segno = 0;
920
921 mutex_lock(&dirty_i->seglist_lock);
922 for_each_set_bit(segno, dirty_i->dirty_segmap[DIRTY], MAIN_SEGS(sbi)) {
923 if (get_valid_blocks(sbi, segno, false))
924 continue;
925 if (get_ckpt_valid_blocks(sbi, segno))
926 continue;
927 mutex_unlock(&dirty_i->seglist_lock);
928 return segno;
929 }
930 mutex_unlock(&dirty_i->seglist_lock);
931 return NULL_SEGNO;
932}
933
Chao Yu004b6862017-04-14 23:24:55 +0800934static struct discard_cmd *__create_discard_cmd(struct f2fs_sb_info *sbi,
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800935 struct block_device *bdev, block_t lstart,
936 block_t start, block_t len)
Chao Yu275b66b2016-08-29 23:58:34 +0800937{
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -0800938 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yuba48a332017-04-15 14:09:37 +0800939 struct list_head *pend_list;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800940 struct discard_cmd *dc;
Chao Yu275b66b2016-08-29 23:58:34 +0800941
Chao Yuba48a332017-04-15 14:09:37 +0800942 f2fs_bug_on(sbi, !len);
943
944 pend_list = &dcc->pend_list[plist_idx(len)];
945
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800946 dc = f2fs_kmem_cache_alloc(discard_cmd_slab, GFP_NOFS);
947 INIT_LIST_HEAD(&dc->list);
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800948 dc->bdev = bdev;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800949 dc->lstart = lstart;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800950 dc->start = start;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800951 dc->len = len;
Chao Yuec9895a2017-04-26 17:39:54 +0800952 dc->ref = 0;
Jaegeuk Kim15469962017-01-09 20:32:07 -0800953 dc->state = D_PREP;
Jaegeuk Kim72691af2018-12-13 16:53:57 -0800954 dc->queued = 0;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800955 dc->error = 0;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800956 init_completion(&dc->wait);
Chao Yu22d375d2017-04-05 18:19:48 +0800957 list_add_tail(&dc->list, pend_list);
Chao Yu35ec7d52018-08-06 22:43:50 +0800958 spin_lock_init(&dc->lock);
959 dc->bio_ref = 0;
Chao Yu5f323662017-03-25 17:19:59 +0800960 atomic_inc(&dcc->discard_cmd_cnt);
Chao Yud84d1cb2017-04-18 19:27:39 +0800961 dcc->undiscard_blks += len;
Chao Yu004b6862017-04-14 23:24:55 +0800962
963 return dc;
Jaegeuk Kim15469962017-01-09 20:32:07 -0800964}
965
Chao Yu004b6862017-04-14 23:24:55 +0800966static struct discard_cmd *__attach_discard_cmd(struct f2fs_sb_info *sbi,
967 struct block_device *bdev, block_t lstart,
968 block_t start, block_t len,
Chao Yu4dada3f2018-10-04 11:18:30 +0800969 struct rb_node *parent, struct rb_node **p,
970 bool leftmost)
Chao Yu004b6862017-04-14 23:24:55 +0800971{
972 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
973 struct discard_cmd *dc;
974
975 dc = __create_discard_cmd(sbi, bdev, lstart, start, len);
976
977 rb_link_node(&dc->rb_node, parent, p);
Chao Yu4dada3f2018-10-04 11:18:30 +0800978 rb_insert_color_cached(&dc->rb_node, &dcc->root, leftmost);
Chao Yu004b6862017-04-14 23:24:55 +0800979
980 return dc;
981}
982
983static void __detach_discard_cmd(struct discard_cmd_control *dcc,
984 struct discard_cmd *dc)
Jaegeuk Kim15469962017-01-09 20:32:07 -0800985{
Jaegeuk Kimdcc91652017-01-11 10:20:04 -0800986 if (dc->state == D_DONE)
Jaegeuk Kim72691af2018-12-13 16:53:57 -0800987 atomic_sub(dc->queued, &dcc->queued_discard);
Chao Yu004b6862017-04-14 23:24:55 +0800988
989 list_del(&dc->list);
Chao Yu4dada3f2018-10-04 11:18:30 +0800990 rb_erase_cached(&dc->rb_node, &dcc->root);
Chao Yud84d1cb2017-04-18 19:27:39 +0800991 dcc->undiscard_blks -= dc->len;
Chao Yu004b6862017-04-14 23:24:55 +0800992
993 kmem_cache_free(discard_cmd_slab, dc);
994
995 atomic_dec(&dcc->discard_cmd_cnt);
996}
997
998static void __remove_discard_cmd(struct f2fs_sb_info *sbi,
999 struct discard_cmd *dc)
1000{
1001 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu35ec7d52018-08-06 22:43:50 +08001002 unsigned long flags;
Jaegeuk Kimdcc91652017-01-11 10:20:04 -08001003
Chao Yu2ec6f2e2017-10-04 09:08:36 +08001004 trace_f2fs_remove_discard(dc->bdev, dc->start, dc->len);
1005
Chao Yu35ec7d52018-08-06 22:43:50 +08001006 spin_lock_irqsave(&dc->lock, flags);
1007 if (dc->bio_ref) {
1008 spin_unlock_irqrestore(&dc->lock, flags);
1009 return;
1010 }
1011 spin_unlock_irqrestore(&dc->lock, flags);
1012
Chao Yud9703d92017-06-05 18:29:07 +08001013 f2fs_bug_on(sbi, dc->ref);
1014
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001015 if (dc->error == -EOPNOTSUPP)
1016 dc->error = 0;
Jaegeuk Kim15469962017-01-09 20:32:07 -08001017
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001018 if (dc->error)
Chao Yu22d7ea12018-08-22 17:17:47 +08001019 printk_ratelimited(
Chao Yuc45d6002019-11-01 17:53:23 +08001020 "%sF2FS-fs (%s): Issue discard(%u, %u, %u) failed, ret: %d",
1021 KERN_INFO, sbi->sb->s_id,
1022 dc->lstart, dc->start, dc->len, dc->error);
Chao Yu004b6862017-04-14 23:24:55 +08001023 __detach_discard_cmd(dcc, dc);
Chao Yu275b66b2016-08-29 23:58:34 +08001024}
1025
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001026static void f2fs_submit_discard_endio(struct bio *bio)
1027{
1028 struct discard_cmd *dc = (struct discard_cmd *)bio->bi_private;
Chao Yu35ec7d52018-08-06 22:43:50 +08001029 unsigned long flags;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001030
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001031 dc->error = blk_status_to_errno(bio->bi_status);
Chao Yu35ec7d52018-08-06 22:43:50 +08001032
1033 spin_lock_irqsave(&dc->lock, flags);
1034 dc->bio_ref--;
1035 if (!dc->bio_ref && dc->state == D_SUBMIT) {
1036 dc->state = D_DONE;
1037 complete_all(&dc->wait);
1038 }
1039 spin_unlock_irqrestore(&dc->lock, flags);
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001040 bio_put(bio);
1041}
1042
Wei Yongjun94b1e102018-01-05 09:41:20 +00001043static void __check_sit_bitmap(struct f2fs_sb_info *sbi,
Chao Yu6915ea92017-06-30 17:19:02 +08001044 block_t start, block_t end)
1045{
1046#ifdef CONFIG_F2FS_CHECK_FS
1047 struct seg_entry *sentry;
1048 unsigned int segno;
1049 block_t blk = start;
1050 unsigned long offset, size, max_blocks = sbi->blocks_per_seg;
1051 unsigned long *map;
1052
1053 while (blk < end) {
1054 segno = GET_SEGNO(sbi, blk);
1055 sentry = get_seg_entry(sbi, segno);
1056 offset = GET_BLKOFF_FROM_SEG0(sbi, blk);
1057
Yunlong Song008396e2017-08-04 17:07:15 +08001058 if (end < START_BLOCK(sbi, segno + 1))
1059 size = GET_BLKOFF_FROM_SEG0(sbi, end);
1060 else
1061 size = max_blocks;
Chao Yu6915ea92017-06-30 17:19:02 +08001062 map = (unsigned long *)(sentry->cur_valid_map);
1063 offset = __find_rev_next_bit(map, size, offset);
1064 f2fs_bug_on(sbi, offset != size);
Yunlong Song008396e2017-08-04 17:07:15 +08001065 blk = START_BLOCK(sbi, segno + 1);
Chao Yu6915ea92017-06-30 17:19:02 +08001066 }
1067#endif
1068}
1069
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001070static void __init_discard_policy(struct f2fs_sb_info *sbi,
1071 struct discard_policy *dpolicy,
1072 int discard_type, unsigned int granularity)
1073{
1074 /* common policy */
1075 dpolicy->type = discard_type;
1076 dpolicy->sync = true;
Chao Yu20ee4382018-07-08 22:11:01 +08001077 dpolicy->ordered = false;
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001078 dpolicy->granularity = granularity;
1079
1080 dpolicy->max_requests = DEF_MAX_DISCARD_REQUEST;
1081 dpolicy->io_aware_gran = MAX_PLIST_NUM;
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08001082 dpolicy->timeout = 0;
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001083
1084 if (discard_type == DPOLICY_BG) {
1085 dpolicy->min_interval = DEF_MIN_DISCARD_ISSUE_TIME;
Yunlei Hef9d1dce2018-04-08 15:11:11 +08001086 dpolicy->mid_interval = DEF_MID_DISCARD_ISSUE_TIME;
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001087 dpolicy->max_interval = DEF_MAX_DISCARD_ISSUE_TIME;
1088 dpolicy->io_aware = true;
Chao Yucba60842018-04-10 15:43:09 +08001089 dpolicy->sync = false;
Chao Yu20ee4382018-07-08 22:11:01 +08001090 dpolicy->ordered = true;
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001091 if (utilization(sbi) > DEF_DISCARD_URGENT_UTIL) {
1092 dpolicy->granularity = 1;
1093 dpolicy->max_interval = DEF_MIN_DISCARD_ISSUE_TIME;
1094 }
1095 } else if (discard_type == DPOLICY_FORCE) {
1096 dpolicy->min_interval = DEF_MIN_DISCARD_ISSUE_TIME;
Yunlei Hef9d1dce2018-04-08 15:11:11 +08001097 dpolicy->mid_interval = DEF_MID_DISCARD_ISSUE_TIME;
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001098 dpolicy->max_interval = DEF_MAX_DISCARD_ISSUE_TIME;
1099 dpolicy->io_aware = false;
1100 } else if (discard_type == DPOLICY_FSTRIM) {
1101 dpolicy->io_aware = false;
1102 } else if (discard_type == DPOLICY_UMOUNT) {
Yunlei He241b4932018-04-04 17:29:05 +08001103 dpolicy->max_requests = UINT_MAX;
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001104 dpolicy->io_aware = false;
Jaegeuk Kimb8623252019-01-25 09:12:13 -08001105 /* we need to issue all to keep CP_TRIMMED_FLAG */
1106 dpolicy->granularity = 1;
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001107 }
1108}
1109
Chao Yu35ec7d52018-08-06 22:43:50 +08001110static void __update_discard_tree_range(struct f2fs_sb_info *sbi,
1111 struct block_device *bdev, block_t lstart,
1112 block_t start, block_t len);
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001113/* this function is copied from blkdev_issue_discard from block/blk-lib.c */
Chao Yu6b9cb122018-08-08 10:14:55 +08001114static int __submit_discard_cmd(struct f2fs_sb_info *sbi,
Chao Yu78997b52017-10-04 09:08:34 +08001115 struct discard_policy *dpolicy,
Chao Yu35ec7d52018-08-06 22:43:50 +08001116 struct discard_cmd *dc,
1117 unsigned int *issued)
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001118{
Chao Yu35ec7d52018-08-06 22:43:50 +08001119 struct block_device *bdev = dc->bdev;
1120 struct request_queue *q = bdev_get_queue(bdev);
1121 unsigned int max_discard_blocks =
1122 SECTOR_TO_BLOCK(q->limits.max_discard_sectors);
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001123 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu78997b52017-10-04 09:08:34 +08001124 struct list_head *wait_list = (dpolicy->type == DPOLICY_FSTRIM) ?
1125 &(dcc->fstrim_list) : &(dcc->wait_list);
Chao Yu78997b52017-10-04 09:08:34 +08001126 int flag = dpolicy->sync ? REQ_SYNC : 0;
Chao Yu35ec7d52018-08-06 22:43:50 +08001127 block_t lstart, start, len, total_len;
1128 int err = 0;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001129
1130 if (dc->state != D_PREP)
Chao Yu6b9cb122018-08-08 10:14:55 +08001131 return 0;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001132
Yunlei Hed6184772018-04-13 11:08:05 +08001133 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK))
Chao Yu6b9cb122018-08-08 10:14:55 +08001134 return 0;
Yunlei Hed6184772018-04-13 11:08:05 +08001135
Chao Yu35ec7d52018-08-06 22:43:50 +08001136 trace_f2fs_issue_discard(bdev, dc->start, dc->len);
Chao Yu0243a5f2017-04-15 14:09:38 +08001137
Chao Yu35ec7d52018-08-06 22:43:50 +08001138 lstart = dc->lstart;
1139 start = dc->start;
1140 len = dc->len;
1141 total_len = len;
1142
1143 dc->len = 0;
1144
1145 while (total_len && *issued < dpolicy->max_requests && !err) {
1146 struct bio *bio = NULL;
1147 unsigned long flags;
1148 bool last = true;
1149
1150 if (len > max_discard_blocks) {
1151 len = max_discard_blocks;
1152 last = false;
1153 }
1154
1155 (*issued)++;
1156 if (*issued == dpolicy->max_requests)
1157 last = true;
1158
1159 dc->len += len;
1160
Chao Yub83dcfe2018-08-06 20:30:18 +08001161 if (time_to_inject(sbi, FAULT_DISCARD)) {
Chao Yuc45d6002019-11-01 17:53:23 +08001162 f2fs_show_injection_info(sbi, FAULT_DISCARD);
Chao Yub83dcfe2018-08-06 20:30:18 +08001163 err = -EIO;
1164 goto submit;
1165 }
Chao Yu35ec7d52018-08-06 22:43:50 +08001166 err = __blkdev_issue_discard(bdev,
1167 SECTOR_FROM_BLOCK(start),
1168 SECTOR_FROM_BLOCK(len),
1169 GFP_NOFS, 0, &bio);
Chao Yub83dcfe2018-08-06 20:30:18 +08001170submit:
Chao Yu6b9cb122018-08-08 10:14:55 +08001171 if (err) {
Chao Yu35ec7d52018-08-06 22:43:50 +08001172 spin_lock_irqsave(&dc->lock, flags);
1173 if (dc->state == D_PARTIAL)
1174 dc->state = D_SUBMIT;
1175 spin_unlock_irqrestore(&dc->lock, flags);
1176
Chao Yu6b9cb122018-08-08 10:14:55 +08001177 break;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001178 }
Chao Yu35ec7d52018-08-06 22:43:50 +08001179
Chao Yu6b9cb122018-08-08 10:14:55 +08001180 f2fs_bug_on(sbi, !bio);
1181
1182 /*
1183 * should keep before submission to avoid D_DONE
1184 * right away
1185 */
1186 spin_lock_irqsave(&dc->lock, flags);
1187 if (last)
1188 dc->state = D_SUBMIT;
1189 else
1190 dc->state = D_PARTIAL;
1191 dc->bio_ref++;
1192 spin_unlock_irqrestore(&dc->lock, flags);
1193
Jaegeuk Kim72691af2018-12-13 16:53:57 -08001194 atomic_inc(&dcc->queued_discard);
1195 dc->queued++;
Chao Yu6b9cb122018-08-08 10:14:55 +08001196 list_move_tail(&dc->list, wait_list);
1197
1198 /* sanity check on discard range */
Qiuyang Sun9249dde2018-12-18 17:32:23 +08001199 __check_sit_bitmap(sbi, lstart, lstart + len);
Chao Yu6b9cb122018-08-08 10:14:55 +08001200
1201 bio->bi_private = dc;
1202 bio->bi_end_io = f2fs_submit_discard_endio;
1203 bio->bi_opf |= flag;
1204 submit_bio(bio);
1205
1206 atomic_inc(&dcc->issued_discard);
1207
1208 f2fs_update_iostat(sbi, FS_DISCARD, 1);
1209
Chao Yu35ec7d52018-08-06 22:43:50 +08001210 lstart += len;
1211 start += len;
1212 total_len -= len;
1213 len = total_len;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001214 }
Chao Yu35ec7d52018-08-06 22:43:50 +08001215
Chao Yu6b9cb122018-08-08 10:14:55 +08001216 if (!err && len)
Chao Yu35ec7d52018-08-06 22:43:50 +08001217 __update_discard_tree_range(sbi, bdev, lstart, start, len);
Chao Yu6b9cb122018-08-08 10:14:55 +08001218 return err;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001219}
1220
Chao Yu004b6862017-04-14 23:24:55 +08001221static struct discard_cmd *__insert_discard_tree(struct f2fs_sb_info *sbi,
1222 struct block_device *bdev, block_t lstart,
1223 block_t start, block_t len,
1224 struct rb_node **insert_p,
1225 struct rb_node *insert_parent)
1226{
1227 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Colin Ian Kingdca69512017-10-19 12:58:21 +02001228 struct rb_node **p;
Chao Yu004b6862017-04-14 23:24:55 +08001229 struct rb_node *parent = NULL;
1230 struct discard_cmd *dc = NULL;
Chao Yu4dada3f2018-10-04 11:18:30 +08001231 bool leftmost = true;
Chao Yu004b6862017-04-14 23:24:55 +08001232
1233 if (insert_p && insert_parent) {
1234 parent = insert_parent;
1235 p = insert_p;
1236 goto do_insert;
1237 }
1238
Chao Yu4dada3f2018-10-04 11:18:30 +08001239 p = f2fs_lookup_rb_tree_for_insert(sbi, &dcc->root, &parent,
1240 lstart, &leftmost);
Chao Yu004b6862017-04-14 23:24:55 +08001241do_insert:
Chao Yu4dada3f2018-10-04 11:18:30 +08001242 dc = __attach_discard_cmd(sbi, bdev, lstart, start, len, parent,
1243 p, leftmost);
Chao Yu004b6862017-04-14 23:24:55 +08001244 if (!dc)
1245 return NULL;
1246
1247 return dc;
1248}
1249
Chao Yuba48a332017-04-15 14:09:37 +08001250static void __relocate_discard_cmd(struct discard_cmd_control *dcc,
1251 struct discard_cmd *dc)
1252{
1253 list_move_tail(&dc->list, &dcc->pend_list[plist_idx(dc->len)]);
1254}
1255
Chao Yu004b6862017-04-14 23:24:55 +08001256static void __punch_discard_cmd(struct f2fs_sb_info *sbi,
1257 struct discard_cmd *dc, block_t blkaddr)
1258{
Chao Yuba48a332017-04-15 14:09:37 +08001259 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu004b6862017-04-14 23:24:55 +08001260 struct discard_info di = dc->di;
1261 bool modified = false;
1262
1263 if (dc->state == D_DONE || dc->len == 1) {
1264 __remove_discard_cmd(sbi, dc);
1265 return;
1266 }
1267
Chao Yud84d1cb2017-04-18 19:27:39 +08001268 dcc->undiscard_blks -= di.len;
1269
Chao Yu004b6862017-04-14 23:24:55 +08001270 if (blkaddr > di.lstart) {
1271 dc->len = blkaddr - dc->lstart;
Chao Yud84d1cb2017-04-18 19:27:39 +08001272 dcc->undiscard_blks += dc->len;
Chao Yuba48a332017-04-15 14:09:37 +08001273 __relocate_discard_cmd(dcc, dc);
Chao Yu004b6862017-04-14 23:24:55 +08001274 modified = true;
1275 }
1276
1277 if (blkaddr < di.lstart + di.len - 1) {
1278 if (modified) {
1279 __insert_discard_tree(sbi, dc->bdev, blkaddr + 1,
1280 di.start + blkaddr + 1 - di.lstart,
1281 di.lstart + di.len - 1 - blkaddr,
1282 NULL, NULL);
1283 } else {
1284 dc->lstart++;
1285 dc->len--;
1286 dc->start++;
Chao Yud84d1cb2017-04-18 19:27:39 +08001287 dcc->undiscard_blks += dc->len;
Chao Yuba48a332017-04-15 14:09:37 +08001288 __relocate_discard_cmd(dcc, dc);
Chao Yu004b6862017-04-14 23:24:55 +08001289 }
1290 }
1291}
1292
1293static void __update_discard_tree_range(struct f2fs_sb_info *sbi,
1294 struct block_device *bdev, block_t lstart,
1295 block_t start, block_t len)
1296{
1297 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1298 struct discard_cmd *prev_dc = NULL, *next_dc = NULL;
1299 struct discard_cmd *dc;
1300 struct discard_info di = {0};
1301 struct rb_node **insert_p = NULL, *insert_parent = NULL;
Chao Yu35ec7d52018-08-06 22:43:50 +08001302 struct request_queue *q = bdev_get_queue(bdev);
1303 unsigned int max_discard_blocks =
1304 SECTOR_TO_BLOCK(q->limits.max_discard_sectors);
Chao Yu004b6862017-04-14 23:24:55 +08001305 block_t end = lstart + len;
1306
Chao Yu4d57b862018-05-30 00:20:41 +08001307 dc = (struct discard_cmd *)f2fs_lookup_rb_tree_ret(&dcc->root,
Chao Yu004b6862017-04-14 23:24:55 +08001308 NULL, lstart,
1309 (struct rb_entry **)&prev_dc,
1310 (struct rb_entry **)&next_dc,
Chao Yu4dada3f2018-10-04 11:18:30 +08001311 &insert_p, &insert_parent, true, NULL);
Chao Yu004b6862017-04-14 23:24:55 +08001312 if (dc)
1313 prev_dc = dc;
1314
1315 if (!prev_dc) {
1316 di.lstart = lstart;
1317 di.len = next_dc ? next_dc->lstart - lstart : len;
1318 di.len = min(di.len, len);
1319 di.start = start;
1320 }
1321
1322 while (1) {
1323 struct rb_node *node;
1324 bool merged = false;
1325 struct discard_cmd *tdc = NULL;
1326
1327 if (prev_dc) {
1328 di.lstart = prev_dc->lstart + prev_dc->len;
1329 if (di.lstart < lstart)
1330 di.lstart = lstart;
1331 if (di.lstart >= end)
1332 break;
1333
1334 if (!next_dc || next_dc->lstart > end)
1335 di.len = end - di.lstart;
1336 else
1337 di.len = next_dc->lstart - di.lstart;
1338 di.start = start + di.lstart - lstart;
1339 }
1340
1341 if (!di.len)
1342 goto next;
1343
1344 if (prev_dc && prev_dc->state == D_PREP &&
1345 prev_dc->bdev == bdev &&
Chao Yu35ec7d52018-08-06 22:43:50 +08001346 __is_discard_back_mergeable(&di, &prev_dc->di,
1347 max_discard_blocks)) {
Chao Yu004b6862017-04-14 23:24:55 +08001348 prev_dc->di.len += di.len;
Chao Yud84d1cb2017-04-18 19:27:39 +08001349 dcc->undiscard_blks += di.len;
Chao Yuba48a332017-04-15 14:09:37 +08001350 __relocate_discard_cmd(dcc, prev_dc);
Chao Yu004b6862017-04-14 23:24:55 +08001351 di = prev_dc->di;
1352 tdc = prev_dc;
1353 merged = true;
1354 }
1355
1356 if (next_dc && next_dc->state == D_PREP &&
1357 next_dc->bdev == bdev &&
Chao Yu35ec7d52018-08-06 22:43:50 +08001358 __is_discard_front_mergeable(&di, &next_dc->di,
1359 max_discard_blocks)) {
Chao Yu004b6862017-04-14 23:24:55 +08001360 next_dc->di.lstart = di.lstart;
1361 next_dc->di.len += di.len;
1362 next_dc->di.start = di.start;
Chao Yud84d1cb2017-04-18 19:27:39 +08001363 dcc->undiscard_blks += di.len;
Chao Yuba48a332017-04-15 14:09:37 +08001364 __relocate_discard_cmd(dcc, next_dc);
Chao Yu004b6862017-04-14 23:24:55 +08001365 if (tdc)
1366 __remove_discard_cmd(sbi, tdc);
Chao Yu004b6862017-04-14 23:24:55 +08001367 merged = true;
1368 }
1369
Chao Yudf0f6b42017-04-17 18:21:43 +08001370 if (!merged) {
Chao Yu004b6862017-04-14 23:24:55 +08001371 __insert_discard_tree(sbi, bdev, di.lstart, di.start,
1372 di.len, NULL, NULL);
Chao Yudf0f6b42017-04-17 18:21:43 +08001373 }
Chao Yu004b6862017-04-14 23:24:55 +08001374 next:
1375 prev_dc = next_dc;
1376 if (!prev_dc)
1377 break;
1378
1379 node = rb_next(&prev_dc->rb_node);
1380 next_dc = rb_entry_safe(node, struct discard_cmd, rb_node);
1381 }
Chao Yu004b6862017-04-14 23:24:55 +08001382}
1383
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001384static int __queue_discard_cmd(struct f2fs_sb_info *sbi,
1385 struct block_device *bdev, block_t blkstart, block_t blklen)
1386{
1387 block_t lblkstart = blkstart;
1388
Damien Le Moal7f3d7712019-03-16 09:13:08 +09001389 if (!f2fs_bdev_support_discard(bdev))
1390 return 0;
1391
Chao Yu0243a5f2017-04-15 14:09:38 +08001392 trace_f2fs_queue_discard(bdev, blkstart, blklen);
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001393
Damien Le Moal09168782019-03-16 09:13:06 +09001394 if (f2fs_is_multi_device(sbi)) {
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001395 int devi = f2fs_target_device_index(sbi, blkstart);
1396
1397 blkstart -= FDEV(devi).start_blk;
1398 }
Chao Yu35ec7d52018-08-06 22:43:50 +08001399 mutex_lock(&SM_I(sbi)->dcc_info->cmd_lock);
Chao Yu004b6862017-04-14 23:24:55 +08001400 __update_discard_tree_range(sbi, bdev, lblkstart, blkstart, blklen);
Chao Yu35ec7d52018-08-06 22:43:50 +08001401 mutex_unlock(&SM_I(sbi)->dcc_info->cmd_lock);
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001402 return 0;
1403}
1404
Chao Yu20ee4382018-07-08 22:11:01 +08001405static unsigned int __issue_discard_cmd_orderly(struct f2fs_sb_info *sbi,
1406 struct discard_policy *dpolicy)
1407{
1408 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1409 struct discard_cmd *prev_dc = NULL, *next_dc = NULL;
1410 struct rb_node **insert_p = NULL, *insert_parent = NULL;
1411 struct discard_cmd *dc;
1412 struct blk_plug plug;
1413 unsigned int pos = dcc->next_pos;
1414 unsigned int issued = 0;
1415 bool io_interrupted = false;
1416
1417 mutex_lock(&dcc->cmd_lock);
1418 dc = (struct discard_cmd *)f2fs_lookup_rb_tree_ret(&dcc->root,
1419 NULL, pos,
1420 (struct rb_entry **)&prev_dc,
1421 (struct rb_entry **)&next_dc,
Chao Yu4dada3f2018-10-04 11:18:30 +08001422 &insert_p, &insert_parent, true, NULL);
Chao Yu20ee4382018-07-08 22:11:01 +08001423 if (!dc)
1424 dc = next_dc;
1425
1426 blk_start_plug(&plug);
1427
1428 while (dc) {
1429 struct rb_node *node;
Chao Yu6b9cb122018-08-08 10:14:55 +08001430 int err = 0;
Chao Yu20ee4382018-07-08 22:11:01 +08001431
1432 if (dc->state != D_PREP)
1433 goto next;
1434
Sahitya Tummalaa7d10cf2018-09-19 14:18:47 +05301435 if (dpolicy->io_aware && !is_idle(sbi, DISCARD_TIME)) {
Chao Yu20ee4382018-07-08 22:11:01 +08001436 io_interrupted = true;
1437 break;
1438 }
1439
1440 dcc->next_pos = dc->lstart + dc->len;
Chao Yu6b9cb122018-08-08 10:14:55 +08001441 err = __submit_discard_cmd(sbi, dpolicy, dc, &issued);
Chao Yu20ee4382018-07-08 22:11:01 +08001442
Chao Yu35ec7d52018-08-06 22:43:50 +08001443 if (issued >= dpolicy->max_requests)
Chao Yu20ee4382018-07-08 22:11:01 +08001444 break;
1445next:
1446 node = rb_next(&dc->rb_node);
Chao Yu6b9cb122018-08-08 10:14:55 +08001447 if (err)
1448 __remove_discard_cmd(sbi, dc);
Chao Yu20ee4382018-07-08 22:11:01 +08001449 dc = rb_entry_safe(node, struct discard_cmd, rb_node);
1450 }
1451
1452 blk_finish_plug(&plug);
1453
1454 if (!dc)
1455 dcc->next_pos = 0;
1456
1457 mutex_unlock(&dcc->cmd_lock);
1458
1459 if (!issued && io_interrupted)
1460 issued = -1;
1461
1462 return issued;
1463}
1464
Chao Yu78997b52017-10-04 09:08:34 +08001465static int __issue_discard_cmd(struct f2fs_sb_info *sbi,
1466 struct discard_policy *dpolicy)
Chao Yubd5b0732017-04-25 20:21:37 +08001467{
1468 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1469 struct list_head *pend_list;
1470 struct discard_cmd *dc, *tmp;
1471 struct blk_plug plug;
Chao Yu522d1712018-07-08 22:08:09 +08001472 int i, issued = 0;
Chao Yue6c6de12017-09-12 21:35:12 +08001473 bool io_interrupted = false;
Chao Yubd5b0732017-04-25 20:21:37 +08001474
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08001475 if (dpolicy->timeout != 0)
1476 f2fs_update_time(sbi, dpolicy->timeout);
1477
Chao Yu78997b52017-10-04 09:08:34 +08001478 for (i = MAX_PLIST_NUM - 1; i >= 0; i--) {
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08001479 if (dpolicy->timeout != 0 &&
1480 f2fs_time_over(sbi, dpolicy->timeout))
1481 break;
1482
Chao Yu78997b52017-10-04 09:08:34 +08001483 if (i + 1 < dpolicy->granularity)
1484 break;
Chao Yu20ee4382018-07-08 22:11:01 +08001485
1486 if (i < DEFAULT_DISCARD_GRANULARITY && dpolicy->ordered)
1487 return __issue_discard_cmd_orderly(sbi, dpolicy);
1488
Chao Yubd5b0732017-04-25 20:21:37 +08001489 pend_list = &dcc->pend_list[i];
Chao Yu33da62c2017-10-04 09:08:35 +08001490
1491 mutex_lock(&dcc->cmd_lock);
Chao Yu49c60c62018-01-08 18:48:33 +08001492 if (list_empty(pend_list))
1493 goto next;
Chao Yu67fce702018-06-22 16:06:59 +08001494 if (unlikely(dcc->rbtree_check))
1495 f2fs_bug_on(sbi, !f2fs_check_rb_tree_consistence(sbi,
1496 &dcc->root));
Chao Yu33da62c2017-10-04 09:08:35 +08001497 blk_start_plug(&plug);
Chao Yubd5b0732017-04-25 20:21:37 +08001498 list_for_each_entry_safe(dc, tmp, pend_list, list) {
1499 f2fs_bug_on(sbi, dc->state != D_PREP);
1500
Heng Xiao6e0cd4a2019-07-03 10:29:57 +08001501 if (dpolicy->timeout != 0 &&
1502 f2fs_time_over(sbi, dpolicy->timeout))
1503 break;
1504
Chao Yuecc9aa02017-10-04 09:08:33 +08001505 if (dpolicy->io_aware && i < dpolicy->io_aware_gran &&
Sahitya Tummalaa7d10cf2018-09-19 14:18:47 +05301506 !is_idle(sbi, DISCARD_TIME)) {
Chao Yue6c6de12017-09-12 21:35:12 +08001507 io_interrupted = true;
Chao Yu522d1712018-07-08 22:08:09 +08001508 break;
Chao Yue6c6de12017-09-12 21:35:12 +08001509 }
1510
Chao Yu35ec7d52018-08-06 22:43:50 +08001511 __submit_discard_cmd(sbi, dpolicy, dc, &issued);
Chao Yu522d1712018-07-08 22:08:09 +08001512
Chao Yu35ec7d52018-08-06 22:43:50 +08001513 if (issued >= dpolicy->max_requests)
Chao Yu33da62c2017-10-04 09:08:35 +08001514 break;
Chao Yubd5b0732017-04-25 20:21:37 +08001515 }
Chao Yu33da62c2017-10-04 09:08:35 +08001516 blk_finish_plug(&plug);
Chao Yu49c60c62018-01-08 18:48:33 +08001517next:
Chao Yu33da62c2017-10-04 09:08:35 +08001518 mutex_unlock(&dcc->cmd_lock);
1519
Chao Yu522d1712018-07-08 22:08:09 +08001520 if (issued >= dpolicy->max_requests || io_interrupted)
Chao Yu33da62c2017-10-04 09:08:35 +08001521 break;
Chao Yubd5b0732017-04-25 20:21:37 +08001522 }
Chao Yu969d1b12017-08-07 23:09:56 +08001523
Chao Yue6c6de12017-09-12 21:35:12 +08001524 if (!issued && io_interrupted)
1525 issued = -1;
1526
Chao Yu969d1b12017-08-07 23:09:56 +08001527 return issued;
1528}
1529
Chao Yucf5c7592017-10-04 09:08:37 +08001530static bool __drop_discard_cmd(struct f2fs_sb_info *sbi)
Chao Yu969d1b12017-08-07 23:09:56 +08001531{
1532 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1533 struct list_head *pend_list;
1534 struct discard_cmd *dc, *tmp;
1535 int i;
Chao Yucf5c7592017-10-04 09:08:37 +08001536 bool dropped = false;
Chao Yu969d1b12017-08-07 23:09:56 +08001537
1538 mutex_lock(&dcc->cmd_lock);
1539 for (i = MAX_PLIST_NUM - 1; i >= 0; i--) {
1540 pend_list = &dcc->pend_list[i];
1541 list_for_each_entry_safe(dc, tmp, pend_list, list) {
1542 f2fs_bug_on(sbi, dc->state != D_PREP);
1543 __remove_discard_cmd(sbi, dc);
Chao Yucf5c7592017-10-04 09:08:37 +08001544 dropped = true;
Chao Yu969d1b12017-08-07 23:09:56 +08001545 }
1546 }
1547 mutex_unlock(&dcc->cmd_lock);
Chao Yucf5c7592017-10-04 09:08:37 +08001548
1549 return dropped;
Chao Yubd5b0732017-04-25 20:21:37 +08001550}
1551
Chao Yu4d57b862018-05-30 00:20:41 +08001552void f2fs_drop_discard_cmd(struct f2fs_sb_info *sbi)
Chao Yu7950e9a2018-01-18 17:23:29 +08001553{
1554 __drop_discard_cmd(sbi);
1555}
1556
Chao Yu0ea80512017-10-28 16:52:32 +08001557static unsigned int __wait_one_discard_bio(struct f2fs_sb_info *sbi,
Chao Yu2a510c002017-06-05 18:29:06 +08001558 struct discard_cmd *dc)
1559{
1560 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu0ea80512017-10-28 16:52:32 +08001561 unsigned int len = 0;
Chao Yu2a510c002017-06-05 18:29:06 +08001562
1563 wait_for_completion_io(&dc->wait);
1564 mutex_lock(&dcc->cmd_lock);
1565 f2fs_bug_on(sbi, dc->state != D_DONE);
1566 dc->ref--;
Chao Yu0ea80512017-10-28 16:52:32 +08001567 if (!dc->ref) {
1568 if (!dc->error)
1569 len = dc->len;
Chao Yu2a510c002017-06-05 18:29:06 +08001570 __remove_discard_cmd(sbi, dc);
Chao Yu0ea80512017-10-28 16:52:32 +08001571 }
Chao Yu2a510c002017-06-05 18:29:06 +08001572 mutex_unlock(&dcc->cmd_lock);
Chao Yu0ea80512017-10-28 16:52:32 +08001573
1574 return len;
Chao Yu2a510c002017-06-05 18:29:06 +08001575}
1576
Chao Yu0ea80512017-10-28 16:52:32 +08001577static unsigned int __wait_discard_cmd_range(struct f2fs_sb_info *sbi,
Chao Yu78997b52017-10-04 09:08:34 +08001578 struct discard_policy *dpolicy,
1579 block_t start, block_t end)
Chao Yu63a94fa2017-04-25 20:21:38 +08001580{
1581 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu78997b52017-10-04 09:08:34 +08001582 struct list_head *wait_list = (dpolicy->type == DPOLICY_FSTRIM) ?
1583 &(dcc->fstrim_list) : &(dcc->wait_list);
Chao Yu63a94fa2017-04-25 20:21:38 +08001584 struct discard_cmd *dc, *tmp;
Chao Yu6afae632017-05-19 23:46:45 +08001585 bool need_wait;
Chao Yu0ea80512017-10-28 16:52:32 +08001586 unsigned int trimmed = 0;
Chao Yu6afae632017-05-19 23:46:45 +08001587
1588next:
1589 need_wait = false;
Chao Yu63a94fa2017-04-25 20:21:38 +08001590
1591 mutex_lock(&dcc->cmd_lock);
1592 list_for_each_entry_safe(dc, tmp, wait_list, list) {
Chao Yu84126632017-10-04 09:08:32 +08001593 if (dc->lstart + dc->len <= start || end <= dc->lstart)
1594 continue;
Chao Yu78997b52017-10-04 09:08:34 +08001595 if (dc->len < dpolicy->granularity)
Chao Yu84126632017-10-04 09:08:32 +08001596 continue;
Chao Yu78997b52017-10-04 09:08:34 +08001597 if (dc->state == D_DONE && !dc->ref) {
Chao Yu63a94fa2017-04-25 20:21:38 +08001598 wait_for_completion_io(&dc->wait);
Chao Yu0ea80512017-10-28 16:52:32 +08001599 if (!dc->error)
1600 trimmed += dc->len;
Chao Yu63a94fa2017-04-25 20:21:38 +08001601 __remove_discard_cmd(sbi, dc);
Chao Yu6afae632017-05-19 23:46:45 +08001602 } else {
1603 dc->ref++;
1604 need_wait = true;
1605 break;
Chao Yu63a94fa2017-04-25 20:21:38 +08001606 }
1607 }
1608 mutex_unlock(&dcc->cmd_lock);
Chao Yu6afae632017-05-19 23:46:45 +08001609
1610 if (need_wait) {
Chao Yu0ea80512017-10-28 16:52:32 +08001611 trimmed += __wait_one_discard_bio(sbi, dc);
Chao Yu6afae632017-05-19 23:46:45 +08001612 goto next;
1613 }
Chao Yu0ea80512017-10-28 16:52:32 +08001614
1615 return trimmed;
Chao Yu63a94fa2017-04-25 20:21:38 +08001616}
1617
Chao Yu01f9cf62018-06-25 20:33:24 +08001618static unsigned int __wait_all_discard_cmd(struct f2fs_sb_info *sbi,
Chao Yu78997b52017-10-04 09:08:34 +08001619 struct discard_policy *dpolicy)
Chao Yu84126632017-10-04 09:08:32 +08001620{
Jaegeuk Kim9a997182018-05-24 13:57:26 -07001621 struct discard_policy dp;
Chao Yu01f9cf62018-06-25 20:33:24 +08001622 unsigned int discard_blks;
Jaegeuk Kim9a997182018-05-24 13:57:26 -07001623
Chao Yu01f9cf62018-06-25 20:33:24 +08001624 if (dpolicy)
1625 return __wait_discard_cmd_range(sbi, dpolicy, 0, UINT_MAX);
Jaegeuk Kim9a997182018-05-24 13:57:26 -07001626
1627 /* wait all */
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001628 __init_discard_policy(sbi, &dp, DPOLICY_FSTRIM, 1);
Chao Yu01f9cf62018-06-25 20:33:24 +08001629 discard_blks = __wait_discard_cmd_range(sbi, &dp, 0, UINT_MAX);
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001630 __init_discard_policy(sbi, &dp, DPOLICY_UMOUNT, 1);
Chao Yu01f9cf62018-06-25 20:33:24 +08001631 discard_blks += __wait_discard_cmd_range(sbi, &dp, 0, UINT_MAX);
1632
1633 return discard_blks;
Chao Yu84126632017-10-04 09:08:32 +08001634}
1635
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001636/* This should be covered by global mutex, &sit_i->sentry_lock */
Wei Yongjun94b1e102018-01-05 09:41:20 +00001637static void f2fs_wait_discard_bio(struct f2fs_sb_info *sbi, block_t blkaddr)
Chao Yu275b66b2016-08-29 23:58:34 +08001638{
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001639 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu004b6862017-04-14 23:24:55 +08001640 struct discard_cmd *dc;
Chao Yuec9895a2017-04-26 17:39:54 +08001641 bool need_wait = false;
Chao Yu275b66b2016-08-29 23:58:34 +08001642
Jaegeuk Kim15469962017-01-09 20:32:07 -08001643 mutex_lock(&dcc->cmd_lock);
Chao Yu4d57b862018-05-30 00:20:41 +08001644 dc = (struct discard_cmd *)f2fs_lookup_rb_tree(&dcc->root,
1645 NULL, blkaddr);
Chao Yu004b6862017-04-14 23:24:55 +08001646 if (dc) {
Chao Yuec9895a2017-04-26 17:39:54 +08001647 if (dc->state == D_PREP) {
1648 __punch_discard_cmd(sbi, dc, blkaddr);
1649 } else {
1650 dc->ref++;
1651 need_wait = true;
1652 }
Chao Yu275b66b2016-08-29 23:58:34 +08001653 }
Chao Yud4314132017-04-05 18:19:49 +08001654 mutex_unlock(&dcc->cmd_lock);
Chao Yuec9895a2017-04-26 17:39:54 +08001655
Chao Yu2a510c002017-06-05 18:29:06 +08001656 if (need_wait)
1657 __wait_one_discard_bio(sbi, dc);
Chao Yud4314132017-04-05 18:19:49 +08001658}
Chao Yu22d375d2017-04-05 18:19:48 +08001659
Chao Yu4d57b862018-05-30 00:20:41 +08001660void f2fs_stop_discard_thread(struct f2fs_sb_info *sbi)
Chao Yucce13252017-06-29 23:17:45 +08001661{
1662 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1663
1664 if (dcc && dcc->f2fs_issue_discard) {
1665 struct task_struct *discard_thread = dcc->f2fs_issue_discard;
1666
1667 dcc->f2fs_issue_discard = NULL;
1668 kthread_stop(discard_thread);
Jaegeuk Kim15469962017-01-09 20:32:07 -08001669 }
1670}
1671
Chao Yu84126632017-10-04 09:08:32 +08001672/* This comes from f2fs_put_super */
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08001673bool f2fs_issue_discard_timeout(struct f2fs_sb_info *sbi)
Chao Yu275b66b2016-08-29 23:58:34 +08001674{
Chao Yu969d1b12017-08-07 23:09:56 +08001675 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu78997b52017-10-04 09:08:34 +08001676 struct discard_policy dpolicy;
Chao Yucf5c7592017-10-04 09:08:37 +08001677 bool dropped;
Chao Yu969d1b12017-08-07 23:09:56 +08001678
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001679 __init_discard_policy(sbi, &dpolicy, DPOLICY_UMOUNT,
1680 dcc->discard_granularity);
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08001681 dpolicy.timeout = UMOUNT_DISCARD_TIMEOUT;
Chao Yu78997b52017-10-04 09:08:34 +08001682 __issue_discard_cmd(sbi, &dpolicy);
Chao Yucf5c7592017-10-04 09:08:37 +08001683 dropped = __drop_discard_cmd(sbi);
Chao Yucf5c7592017-10-04 09:08:37 +08001684
Jaegeuk Kim9a997182018-05-24 13:57:26 -07001685 /* just to make sure there is no pending discard commands */
1686 __wait_all_discard_cmd(sbi, NULL);
Chao Yu2482c432018-07-08 22:16:53 +08001687
1688 f2fs_bug_on(sbi, atomic_read(&dcc->discard_cmd_cnt));
Chao Yucf5c7592017-10-04 09:08:37 +08001689 return dropped;
Chao Yu969d1b12017-08-07 23:09:56 +08001690}
1691
Jaegeuk Kim15469962017-01-09 20:32:07 -08001692static int issue_discard_thread(void *data)
1693{
1694 struct f2fs_sb_info *sbi = data;
1695 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1696 wait_queue_head_t *q = &dcc->discard_wait_queue;
Chao Yu78997b52017-10-04 09:08:34 +08001697 struct discard_policy dpolicy;
Chao Yu969d1b12017-08-07 23:09:56 +08001698 unsigned int wait_ms = DEF_MIN_DISCARD_ISSUE_TIME;
1699 int issued;
Jaegeuk Kim15469962017-01-09 20:32:07 -08001700
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001701 set_freezable();
Jaegeuk Kim15469962017-01-09 20:32:07 -08001702
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001703 do {
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001704 __init_discard_policy(sbi, &dpolicy, DPOLICY_BG,
Chao Yu78997b52017-10-04 09:08:34 +08001705 dcc->discard_granularity);
1706
Chao Yu969d1b12017-08-07 23:09:56 +08001707 wait_event_interruptible_timeout(*q,
1708 kthread_should_stop() || freezing(current) ||
1709 dcc->discard_wake,
1710 msecs_to_jiffies(wait_ms));
Sheng Yong35a9a762018-05-08 17:51:34 +08001711
1712 if (dcc->discard_wake)
1713 dcc->discard_wake = 0;
1714
Jaegeuk Kim76c7bfb2018-12-13 20:50:51 -08001715 /* clean up pending candidates before going to sleep */
1716 if (atomic_read(&dcc->queued_discard))
1717 __wait_all_discard_cmd(sbi, NULL);
1718
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001719 if (try_to_freeze())
1720 continue;
Chao Yu3b60d802018-01-25 18:57:27 +08001721 if (f2fs_readonly(sbi->sb))
1722 continue;
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001723 if (kthread_should_stop())
1724 return 0;
Yunlei Hed6184772018-04-13 11:08:05 +08001725 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
1726 wait_ms = dpolicy.max_interval;
1727 continue;
1728 }
Jaegeuk Kim15469962017-01-09 20:32:07 -08001729
Jaegeuk Kim5b0e9532018-05-07 14:22:40 -07001730 if (sbi->gc_mode == GC_URGENT)
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001731 __init_discard_policy(sbi, &dpolicy, DPOLICY_FORCE, 1);
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001732
Chao Yudc6febb2017-07-22 08:52:23 +08001733 sb_start_intwrite(sbi->sb);
1734
Chao Yu78997b52017-10-04 09:08:34 +08001735 issued = __issue_discard_cmd(sbi, &dpolicy);
Yunlei Hef9d1dce2018-04-08 15:11:11 +08001736 if (issued > 0) {
Chao Yu78997b52017-10-04 09:08:34 +08001737 __wait_all_discard_cmd(sbi, &dpolicy);
1738 wait_ms = dpolicy.min_interval;
Yunlei Hef9d1dce2018-04-08 15:11:11 +08001739 } else if (issued == -1){
Sahitya Tummalaa7d10cf2018-09-19 14:18:47 +05301740 wait_ms = f2fs_time_to_wait(sbi, DISCARD_TIME);
1741 if (!wait_ms)
Sahitya Tummalaabde73c2018-08-31 15:09:26 +05301742 wait_ms = dpolicy.mid_interval;
Chao Yu969d1b12017-08-07 23:09:56 +08001743 } else {
Chao Yu78997b52017-10-04 09:08:34 +08001744 wait_ms = dpolicy.max_interval;
Chao Yu969d1b12017-08-07 23:09:56 +08001745 }
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001746
Chao Yudc6febb2017-07-22 08:52:23 +08001747 sb_end_intwrite(sbi->sb);
1748
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001749 } while (!kthread_should_stop());
1750 return 0;
Jaegeuk Kim15469962017-01-09 20:32:07 -08001751}
1752
Damien Le Moalf46e88092016-10-28 17:45:06 +09001753#ifdef CONFIG_BLK_DEV_ZONED
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001754static int __f2fs_issue_discard_zone(struct f2fs_sb_info *sbi,
1755 struct block_device *bdev, block_t blkstart, block_t blklen)
Damien Le Moalf46e88092016-10-28 17:45:06 +09001756{
Jaegeuk Kim925922852017-02-22 20:18:35 -08001757 sector_t sector, nr_sects;
Kinglong Mee10a875f2017-03-08 09:49:53 +08001758 block_t lblkstart = blkstart;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001759 int devi = 0;
Damien Le Moalf46e88092016-10-28 17:45:06 +09001760
Damien Le Moal09168782019-03-16 09:13:06 +09001761 if (f2fs_is_multi_device(sbi)) {
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001762 devi = f2fs_target_device_index(sbi, blkstart);
Damien Le Moal95175da2019-03-16 09:13:07 +09001763 if (blkstart < FDEV(devi).start_blk ||
1764 blkstart > FDEV(devi).end_blk) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001765 f2fs_err(sbi, "Invalid block %x", blkstart);
Damien Le Moal95175da2019-03-16 09:13:07 +09001766 return -EIO;
1767 }
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001768 blkstart -= FDEV(devi).start_blk;
1769 }
Damien Le Moalf46e88092016-10-28 17:45:06 +09001770
Damien Le Moal95175da2019-03-16 09:13:07 +09001771 /* For sequential zones, reset the zone write pointer */
1772 if (f2fs_blkz_is_seq(sbi, devi, blkstart)) {
Jaegeuk Kim925922852017-02-22 20:18:35 -08001773 sector = SECTOR_FROM_BLOCK(blkstart);
1774 nr_sects = SECTOR_FROM_BLOCK(blklen);
1775
1776 if (sector & (bdev_zone_sectors(bdev) - 1) ||
1777 nr_sects != bdev_zone_sectors(bdev)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001778 f2fs_err(sbi, "(%d) %s: Unaligned zone reset attempted (block %x + %x)",
1779 devi, sbi->s_ndevs ? FDEV(devi).path : "",
1780 blkstart, blklen);
Jaegeuk Kim925922852017-02-22 20:18:35 -08001781 return -EIO;
1782 }
Jaegeuk Kimd50aaee2017-02-15 11:14:06 -08001783 trace_f2fs_issue_reset_zone(bdev, blkstart);
Damien Le Moal95175da2019-03-16 09:13:07 +09001784 return blkdev_reset_zones(bdev, sector, nr_sects, GFP_NOFS);
Damien Le Moalf46e88092016-10-28 17:45:06 +09001785 }
Damien Le Moal95175da2019-03-16 09:13:07 +09001786
1787 /* For conventional zones, use regular discard if supported */
Damien Le Moal95175da2019-03-16 09:13:07 +09001788 return __queue_discard_cmd(sbi, bdev, lblkstart, blklen);
Damien Le Moalf46e88092016-10-28 17:45:06 +09001789}
1790#endif
1791
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001792static int __issue_discard_async(struct f2fs_sb_info *sbi,
1793 struct block_device *bdev, block_t blkstart, block_t blklen)
1794{
1795#ifdef CONFIG_BLK_DEV_ZONED
Damien Le Moal7f3d7712019-03-16 09:13:08 +09001796 if (f2fs_sb_has_blkzoned(sbi) && bdev_is_zoned(bdev))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001797 return __f2fs_issue_discard_zone(sbi, bdev, blkstart, blklen);
1798#endif
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001799 return __queue_discard_cmd(sbi, bdev, blkstart, blklen);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001800}
1801
Jaegeuk Kim1e87a782014-04-15 13:57:55 +09001802static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +09001803 block_t blkstart, block_t blklen)
1804{
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001805 sector_t start = blkstart, len = 0;
1806 struct block_device *bdev;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001807 struct seg_entry *se;
1808 unsigned int offset;
1809 block_t i;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001810 int err = 0;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001811
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001812 bdev = f2fs_target_device(sbi, blkstart, NULL);
1813
1814 for (i = blkstart; i < blkstart + blklen; i++, len++) {
1815 if (i != start) {
1816 struct block_device *bdev2 =
1817 f2fs_target_device(sbi, i, NULL);
1818
1819 if (bdev2 != bdev) {
1820 err = __issue_discard_async(sbi, bdev,
1821 start, len);
1822 if (err)
1823 return err;
1824 bdev = bdev2;
1825 start = i;
1826 len = 0;
1827 }
1828 }
1829
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001830 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
1831 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
1832
1833 if (!f2fs_test_and_set_bit(offset, se->discard_map))
1834 sbi->discard_blks--;
1835 }
Damien Le Moalf46e88092016-10-28 17:45:06 +09001836
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001837 if (len)
1838 err = __issue_discard_async(sbi, bdev, start, len);
1839 return err;
Jaegeuk Kim1e87a782014-04-15 13:57:55 +09001840}
1841
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08001842static bool add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc,
1843 bool check_only)
Jaegeuk Kimadf49832014-10-28 22:27:59 -07001844{
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001845 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
1846 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001847 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001848 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1849 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001850 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001851 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001852 unsigned int start = 0, end = -1;
Chao Yuc473f1a2017-04-27 20:40:39 +08001853 bool force = (cpc->reason & CP_DISCARD);
Chao Yua7eeb8232017-03-28 18:18:50 +08001854 struct discard_entry *de = NULL;
Chao Yu46f84c22017-04-15 14:09:36 +08001855 struct list_head *head = &SM_I(sbi)->dcc_info->entry_list;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001856 int i;
1857
Chao Yu7d20c8a2018-09-04 03:52:17 +08001858 if (se->valid_blocks == max_blocks || !f2fs_hw_support_discard(sbi))
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08001859 return false;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001860
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001861 if (!force) {
Chao Yu7d20c8a2018-09-04 03:52:17 +08001862 if (!f2fs_realtime_discard_enable(sbi) || !se->valid_blocks ||
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001863 SM_I(sbi)->dcc_info->nr_discards >=
1864 SM_I(sbi)->dcc_info->max_discards)
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08001865 return false;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001866 }
1867
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001868 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
1869 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001870 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08001871 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001872
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001873 while (force || SM_I(sbi)->dcc_info->nr_discards <=
1874 SM_I(sbi)->dcc_info->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001875 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
1876 if (start >= max_blocks)
1877 break;
1878
1879 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Yunlei Hec7b41e12016-07-07 12:13:33 +08001880 if (force && start && end != max_blocks
1881 && (end - start) < cpc->trim_minlen)
1882 continue;
1883
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08001884 if (check_only)
1885 return true;
1886
Chao Yua7eeb8232017-03-28 18:18:50 +08001887 if (!de) {
1888 de = f2fs_kmem_cache_alloc(discard_entry_slab,
1889 GFP_F2FS_ZERO);
1890 de->start_blkaddr = START_BLOCK(sbi, cpc->trim_start);
1891 list_add_tail(&de->list, head);
1892 }
1893
1894 for (i = start; i < end; i++)
1895 __set_bit_le(i, (void *)de->discard_map);
1896
1897 SM_I(sbi)->dcc_info->nr_discards += end - start;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001898 }
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08001899 return false;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001900}
1901
Chao Yuaf8ff652018-04-25 17:38:29 +08001902static void release_discard_addr(struct discard_entry *entry)
1903{
1904 list_del(&entry->list);
1905 kmem_cache_free(discard_entry_slab, entry);
1906}
1907
Chao Yu4d57b862018-05-30 00:20:41 +08001908void f2fs_release_discard_addrs(struct f2fs_sb_info *sbi)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001909{
Chao Yu46f84c22017-04-15 14:09:36 +08001910 struct list_head *head = &(SM_I(sbi)->dcc_info->entry_list);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001911 struct discard_entry *entry, *this;
1912
1913 /* drop caches */
Chao Yuaf8ff652018-04-25 17:38:29 +08001914 list_for_each_entry_safe(entry, this, head, list)
1915 release_discard_addr(entry);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001916}
1917
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001918/*
Chao Yu4d57b862018-05-30 00:20:41 +08001919 * Should call f2fs_clear_prefree_segments after checkpoint is done.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001920 */
1921static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
1922{
1923 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +08001924 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001925
1926 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001927 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001928 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001929 mutex_unlock(&dirty_i->seglist_lock);
1930}
1931
Chao Yu4d57b862018-05-30 00:20:41 +08001932void f2fs_clear_prefree_segments(struct f2fs_sb_info *sbi,
1933 struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001934{
Chao Yu969d1b12017-08-07 23:09:56 +08001935 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1936 struct list_head *head = &dcc->entry_list;
Chao Yu2d7b8222014-03-29 11:33:17 +08001937 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001938 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Changman Lee29e59c12013-11-11 09:24:37 +09001939 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +09001940 unsigned int start = 0, end = -1;
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001941 unsigned int secno, start_segno;
Chao Yuc473f1a2017-04-27 20:40:39 +08001942 bool force = (cpc->reason & CP_DISCARD);
Chao Yu2c70c5e2018-10-24 18:37:26 +08001943 bool need_align = test_opt(sbi, LFS) && __is_large_section(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001944
1945 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +09001946
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001947 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +09001948 int i;
Yunlong Songad6672b2018-07-19 20:58:15 +08001949
1950 if (need_align && end != -1)
1951 end--;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001952 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
1953 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001954 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001955 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
1956 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001957
Yunlong Songad6672b2018-07-19 20:58:15 +08001958 if (need_align) {
1959 start = rounddown(start, sbi->segs_per_sec);
1960 end = roundup(end, sbi->segs_per_sec);
1961 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001962
Yunlong Songad6672b2018-07-19 20:58:15 +08001963 for (i = start; i < end; i++) {
1964 if (test_and_clear_bit(i, prefree_map))
1965 dirty_i->nr_dirty[PRE]--;
1966 }
Changman Lee29e59c12013-11-11 09:24:37 +09001967
Chao Yu7d20c8a2018-09-04 03:52:17 +08001968 if (!f2fs_realtime_discard_enable(sbi))
Changman Lee29e59c12013-11-11 09:24:37 +09001969 continue;
1970
Yunlei He650d3c42016-12-22 11:46:24 +08001971 if (force && start >= cpc->trim_start &&
1972 (end - 1) <= cpc->trim_end)
1973 continue;
1974
Chao Yu2c70c5e2018-10-24 18:37:26 +08001975 if (!test_opt(sbi, LFS) || !__is_large_section(sbi)) {
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001976 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
Jaegeuk Kim37208872013-11-12 16:55:17 +09001977 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001978 continue;
1979 }
1980next:
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -07001981 secno = GET_SEC_FROM_SEG(sbi, start);
1982 start_segno = GET_SEG_FROM_SEC(sbi, secno);
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001983 if (!IS_CURSEC(sbi, secno) &&
Jaegeuk Kim302bd342017-04-07 14:33:22 -07001984 !get_valid_blocks(sbi, start, true))
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001985 f2fs_issue_discard(sbi, START_BLOCK(sbi, start_segno),
1986 sbi->segs_per_sec << sbi->log_blocks_per_seg);
1987
1988 start = start_segno + sbi->segs_per_sec;
1989 if (start < end)
1990 goto next;
Jaegeuk Kim8b107f52017-02-27 11:57:11 -08001991 else
1992 end = start - 1;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001993 }
1994 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001995
1996 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +08001997 list_for_each_entry_safe(entry, this, head, list) {
Chao Yua7eeb8232017-03-28 18:18:50 +08001998 unsigned int cur_pos = 0, next_pos, len, total_len = 0;
1999 bool is_valid = test_bit_le(0, entry->discard_map);
2000
2001find_next:
2002 if (is_valid) {
2003 next_pos = find_next_zero_bit_le(entry->discard_map,
2004 sbi->blocks_per_seg, cur_pos);
2005 len = next_pos - cur_pos;
2006
Chao Yu7beb01f2018-10-24 18:34:26 +08002007 if (f2fs_sb_has_blkzoned(sbi) ||
Damien Le Moalacfd28102017-05-26 17:04:40 +09002008 (force && len < cpc->trim_minlen))
Chao Yua7eeb8232017-03-28 18:18:50 +08002009 goto skip;
2010
2011 f2fs_issue_discard(sbi, entry->start_blkaddr + cur_pos,
2012 len);
Chao Yua7eeb8232017-03-28 18:18:50 +08002013 total_len += len;
2014 } else {
2015 next_pos = find_next_bit_le(entry->discard_map,
2016 sbi->blocks_per_seg, cur_pos);
2017 }
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07002018skip:
Chao Yua7eeb8232017-03-28 18:18:50 +08002019 cur_pos = next_pos;
2020 is_valid = !is_valid;
2021
2022 if (cur_pos < sbi->blocks_per_seg)
2023 goto find_next;
2024
Chao Yuaf8ff652018-04-25 17:38:29 +08002025 release_discard_addr(entry);
Chao Yu969d1b12017-08-07 23:09:56 +08002026 dcc->nr_discards -= total_len;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09002027 }
Chao Yu34e159d2017-04-25 00:21:34 +08002028
Jaegeuk Kim01983c72017-08-22 21:15:43 -07002029 wake_up_discard_thread(sbi, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002030}
2031
Jaegeuk Kim8ed59742017-01-29 14:27:02 +09002032static int create_discard_cmd_control(struct f2fs_sb_info *sbi)
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08002033{
Jaegeuk Kim15469962017-01-09 20:32:07 -08002034 dev_t dev = sbi->sb->s_bdev->bd_dev;
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08002035 struct discard_cmd_control *dcc;
Chao Yuba48a332017-04-15 14:09:37 +08002036 int err = 0, i;
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08002037
2038 if (SM_I(sbi)->dcc_info) {
2039 dcc = SM_I(sbi)->dcc_info;
2040 goto init_thread;
2041 }
2042
Chao Yuacbf0542017-11-30 19:28:17 +08002043 dcc = f2fs_kzalloc(sbi, sizeof(struct discard_cmd_control), GFP_KERNEL);
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08002044 if (!dcc)
2045 return -ENOMEM;
2046
Chao Yu969d1b12017-08-07 23:09:56 +08002047 dcc->discard_granularity = DEFAULT_DISCARD_GRANULARITY;
Chao Yu46f84c22017-04-15 14:09:36 +08002048 INIT_LIST_HEAD(&dcc->entry_list);
Chao Yu78997b52017-10-04 09:08:34 +08002049 for (i = 0; i < MAX_PLIST_NUM; i++)
Chao Yuba48a332017-04-15 14:09:37 +08002050 INIT_LIST_HEAD(&dcc->pend_list[i]);
Chao Yu46f84c22017-04-15 14:09:36 +08002051 INIT_LIST_HEAD(&dcc->wait_list);
Chao Yu84126632017-10-04 09:08:32 +08002052 INIT_LIST_HEAD(&dcc->fstrim_list);
Jaegeuk Kim15469962017-01-09 20:32:07 -08002053 mutex_init(&dcc->cmd_lock);
Chao Yu8b8dd652017-03-25 17:19:58 +08002054 atomic_set(&dcc->issued_discard, 0);
Jaegeuk Kim72691af2018-12-13 16:53:57 -08002055 atomic_set(&dcc->queued_discard, 0);
Chao Yu5f323662017-03-25 17:19:59 +08002056 atomic_set(&dcc->discard_cmd_cnt, 0);
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08002057 dcc->nr_discards = 0;
Chao Yud618eba2017-04-25 00:21:35 +08002058 dcc->max_discards = MAIN_SEGS(sbi) << sbi->log_blocks_per_seg;
Chao Yud84d1cb2017-04-18 19:27:39 +08002059 dcc->undiscard_blks = 0;
Chao Yu20ee4382018-07-08 22:11:01 +08002060 dcc->next_pos = 0;
Chao Yu4dada3f2018-10-04 11:18:30 +08002061 dcc->root = RB_ROOT_CACHED;
Chao Yu67fce702018-06-22 16:06:59 +08002062 dcc->rbtree_check = false;
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08002063
Jaegeuk Kim15469962017-01-09 20:32:07 -08002064 init_waitqueue_head(&dcc->discard_wait_queue);
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08002065 SM_I(sbi)->dcc_info = dcc;
2066init_thread:
Jaegeuk Kim15469962017-01-09 20:32:07 -08002067 dcc->f2fs_issue_discard = kthread_run(issue_discard_thread, sbi,
2068 "f2fs_discard-%u:%u", MAJOR(dev), MINOR(dev));
2069 if (IS_ERR(dcc->f2fs_issue_discard)) {
2070 err = PTR_ERR(dcc->f2fs_issue_discard);
Jaegeuk Kim52225952018-12-13 18:38:33 -08002071 kvfree(dcc);
Jaegeuk Kim15469962017-01-09 20:32:07 -08002072 SM_I(sbi)->dcc_info = NULL;
2073 return err;
2074 }
2075
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08002076 return err;
2077}
2078
Chao Yuf0994052017-03-27 18:14:04 +08002079static void destroy_discard_cmd_control(struct f2fs_sb_info *sbi)
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08002080{
2081 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
2082
Chao Yuf0994052017-03-27 18:14:04 +08002083 if (!dcc)
2084 return;
2085
Chao Yu4d57b862018-05-30 00:20:41 +08002086 f2fs_stop_discard_thread(sbi);
Chao Yuf0994052017-03-27 18:14:04 +08002087
Chao Yu04f92872019-07-19 15:18:44 +08002088 /*
2089 * Recovery can cache discard commands, so in error path of
2090 * fill_super(), it needs to give a chance to handle them.
2091 */
2092 if (unlikely(atomic_read(&dcc->discard_cmd_cnt)))
2093 f2fs_issue_discard_timeout(sbi);
2094
Jaegeuk Kim52225952018-12-13 18:38:33 -08002095 kvfree(dcc);
Chao Yuf0994052017-03-27 18:14:04 +08002096 SM_I(sbi)->dcc_info = NULL;
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08002097}
2098
Chao Yu184a5cd2014-09-04 18:13:01 +08002099static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002100{
2101 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +08002102
2103 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002104 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +08002105 return false;
2106 }
2107
2108 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002109}
2110
2111static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
2112 unsigned int segno, int modified)
2113{
2114 struct seg_entry *se = get_seg_entry(sbi, segno);
2115 se->type = type;
2116 if (modified)
2117 __mark_sit_entry_dirty(sbi, segno);
2118}
2119
2120static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
2121{
2122 struct seg_entry *se;
2123 unsigned int segno, offset;
2124 long int new_vblocks;
Yunlong Song6415fed2017-08-02 21:20:13 +08002125 bool exist;
2126#ifdef CONFIG_F2FS_CHECK_FS
2127 bool mir_exist;
2128#endif
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002129
2130 segno = GET_SEGNO(sbi, blkaddr);
2131
2132 se = get_seg_entry(sbi, segno);
2133 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +09002134 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002135
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07002136 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002137 (new_vblocks > sbi->blocks_per_seg)));
2138
2139 se->valid_blocks = new_vblocks;
Chao Yua1f72ac22018-06-04 23:20:17 +08002140 se->mtime = get_mtime(sbi, false);
2141 if (se->mtime > SIT_I(sbi)->max_mtime)
2142 SIT_I(sbi)->max_mtime = se->mtime;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002143
2144 /* Update valid block bitmap */
2145 if (del > 0) {
Yunlong Song6415fed2017-08-02 21:20:13 +08002146 exist = f2fs_test_and_set_bit(offset, se->cur_valid_map);
Chao Yu355e7892017-01-07 18:51:01 +08002147#ifdef CONFIG_F2FS_CHECK_FS
Yunlong Song6415fed2017-08-02 21:20:13 +08002148 mir_exist = f2fs_test_and_set_bit(offset,
2149 se->cur_valid_map_mir);
2150 if (unlikely(exist != mir_exist)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002151 f2fs_err(sbi, "Inconsistent error when setting bitmap, blk:%u, old bit:%d",
2152 blkaddr, exist);
Jaegeuk Kim05796762014-09-02 16:05:00 -07002153 f2fs_bug_on(sbi, 1);
Chao Yu355e7892017-01-07 18:51:01 +08002154 }
Yunlong Song6415fed2017-08-02 21:20:13 +08002155#endif
2156 if (unlikely(exist)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002157 f2fs_err(sbi, "Bitmap was wrongly set, blk:%u",
2158 blkaddr);
Yunlong Song6415fed2017-08-02 21:20:13 +08002159 f2fs_bug_on(sbi, 1);
Yunlong Song35ee82c2017-08-02 22:16:54 +08002160 se->valid_blocks--;
2161 del = 0;
Yunlong Song6415fed2017-08-02 21:20:13 +08002162 }
2163
Chao Yu7d20c8a2018-09-04 03:52:17 +08002164 if (!f2fs_test_and_set_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002165 sbi->discard_blks--;
Jaegeuk Kim720037f2017-03-06 11:59:56 -08002166
Chao Yu899fee32019-08-16 11:03:34 +08002167 /*
2168 * SSR should never reuse block which is checkpointed
2169 * or newly invalidated.
2170 */
2171 if (!is_sbi_flag_set(sbi, SBI_CP_DISABLED)) {
Jaegeuk Kim720037f2017-03-06 11:59:56 -08002172 if (!f2fs_test_and_set_bit(offset, se->ckpt_valid_map))
2173 se->ckpt_valid_blocks++;
2174 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002175 } else {
Yunlong Song6415fed2017-08-02 21:20:13 +08002176 exist = f2fs_test_and_clear_bit(offset, se->cur_valid_map);
Chao Yu355e7892017-01-07 18:51:01 +08002177#ifdef CONFIG_F2FS_CHECK_FS
Yunlong Song6415fed2017-08-02 21:20:13 +08002178 mir_exist = f2fs_test_and_clear_bit(offset,
2179 se->cur_valid_map_mir);
2180 if (unlikely(exist != mir_exist)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002181 f2fs_err(sbi, "Inconsistent error when clearing bitmap, blk:%u, old bit:%d",
2182 blkaddr, exist);
Jaegeuk Kim05796762014-09-02 16:05:00 -07002183 f2fs_bug_on(sbi, 1);
Chao Yu355e7892017-01-07 18:51:01 +08002184 }
Yunlong Song6415fed2017-08-02 21:20:13 +08002185#endif
2186 if (unlikely(!exist)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002187 f2fs_err(sbi, "Bitmap was wrongly cleared, blk:%u",
2188 blkaddr);
Yunlong Song6415fed2017-08-02 21:20:13 +08002189 f2fs_bug_on(sbi, 1);
Yunlong Song35ee82c2017-08-02 22:16:54 +08002190 se->valid_blocks++;
2191 del = 0;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002192 } else if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
2193 /*
2194 * If checkpoints are off, we must not reuse data that
2195 * was used in the previous checkpoint. If it was used
2196 * before, we must track that to know how much space we
2197 * really have.
2198 */
Chao Yuc9c8ed52019-05-05 11:40:46 +08002199 if (f2fs_test_bit(offset, se->ckpt_valid_map)) {
2200 spin_lock(&sbi->stat_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002201 sbi->unusable_block_count++;
Chao Yuc9c8ed52019-05-05 11:40:46 +08002202 spin_unlock(&sbi->stat_lock);
2203 }
Yunlong Song6415fed2017-08-02 21:20:13 +08002204 }
2205
Chao Yu7d20c8a2018-09-04 03:52:17 +08002206 if (f2fs_test_and_clear_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002207 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002208 }
2209 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
2210 se->ckpt_valid_blocks += del;
2211
2212 __mark_sit_entry_dirty(sbi, segno);
2213
2214 /* update total number of valid blocks to be written in ckpt area */
2215 SIT_I(sbi)->written_valid_blocks += del;
2216
Chao Yu2c70c5e2018-10-24 18:37:26 +08002217 if (__is_large_section(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002218 get_sec_entry(sbi, segno)->valid_blocks += del;
2219}
2220
Chao Yu4d57b862018-05-30 00:20:41 +08002221void f2fs_invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002222{
2223 unsigned int segno = GET_SEGNO(sbi, addr);
2224 struct sit_info *sit_i = SIT_I(sbi);
2225
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07002226 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002227 if (addr == NEW_ADDR)
2228 return;
2229
Chao Yu6aa58d82018-08-14 22:37:25 +08002230 invalidate_mapping_pages(META_MAPPING(sbi), addr, addr);
2231
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002232 /* add it into sit main buffer */
Chao Yu3d26fa62017-10-30 17:49:53 +08002233 down_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002234
2235 update_sit_entry(sbi, addr, -1);
2236
2237 /* add it into dirty seglist */
2238 locate_dirty_segment(sbi, segno);
2239
Chao Yu3d26fa62017-10-30 17:49:53 +08002240 up_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002241}
2242
Chao Yu4d57b862018-05-30 00:20:41 +08002243bool f2fs_is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07002244{
2245 struct sit_info *sit_i = SIT_I(sbi);
2246 unsigned int segno, offset;
2247 struct seg_entry *se;
2248 bool is_cp = false;
2249
Chao Yu93770ab2019-04-15 15:26:32 +08002250 if (!__is_valid_data_blkaddr(blkaddr))
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07002251 return true;
2252
Chao Yu3d26fa62017-10-30 17:49:53 +08002253 down_read(&sit_i->sentry_lock);
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07002254
2255 segno = GET_SEGNO(sbi, blkaddr);
2256 se = get_seg_entry(sbi, segno);
2257 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
2258
2259 if (f2fs_test_bit(offset, se->ckpt_valid_map))
2260 is_cp = true;
2261
Chao Yu3d26fa62017-10-30 17:49:53 +08002262 up_read(&sit_i->sentry_lock);
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07002263
2264 return is_cp;
2265}
2266
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002267/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002268 * This function should be resided under the curseg_mutex lock
2269 */
2270static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +08002271 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002272{
2273 struct curseg_info *curseg = CURSEG_I(sbi, type);
2274 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +08002275 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002276 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002277}
2278
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002279/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002280 * Calculate the number of current summary pages for writing
2281 */
Chao Yu4d57b862018-05-30 00:20:41 +08002282int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002283{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002284 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +08002285 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002286
2287 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
2288 if (sbi->ckpt->alloc_type[i] == SSR)
2289 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +08002290 else {
2291 if (for_ra)
2292 valid_sum_count += le16_to_cpu(
2293 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
2294 else
2295 valid_sum_count += curseg_blkoff(sbi, i);
2296 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002297 }
2298
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002299 sum_in_page = (PAGE_SIZE - 2 * SUM_JOURNAL_SIZE -
Fan Li9a479382013-10-29 16:21:47 +08002300 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
2301 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002302 return 1;
Fan Li9a479382013-10-29 16:21:47 +08002303 else if ((valid_sum_count - sum_in_page) <=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002304 (PAGE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002305 return 2;
2306 return 3;
2307}
2308
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002309/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002310 * Caller should put this summary page
2311 */
Chao Yu4d57b862018-05-30 00:20:41 +08002312struct page *f2fs_get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002313{
Chao Yu77357302018-07-17 00:02:17 +08002314 return f2fs_get_meta_page_nofail(sbi, GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002315}
2316
Chao Yu4d57b862018-05-30 00:20:41 +08002317void f2fs_update_meta_page(struct f2fs_sb_info *sbi,
2318 void *src, block_t blk_addr)
Chao Yu381722d2015-05-19 17:40:04 +08002319{
Chao Yu4d57b862018-05-30 00:20:41 +08002320 struct page *page = f2fs_grab_meta_page(sbi, blk_addr);
Chao Yu381722d2015-05-19 17:40:04 +08002321
Chao Yu0537b812017-11-02 20:41:02 +08002322 memcpy(page_address(page), src, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +08002323 set_page_dirty(page);
2324 f2fs_put_page(page, 1);
2325}
2326
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002327static void write_sum_page(struct f2fs_sb_info *sbi,
2328 struct f2fs_summary_block *sum_blk, block_t blk_addr)
2329{
Chao Yu4d57b862018-05-30 00:20:41 +08002330 f2fs_update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002331}
2332
Chao Yub7ad7512016-02-19 18:08:46 +08002333static void write_current_sum_page(struct f2fs_sb_info *sbi,
2334 int type, block_t blk_addr)
2335{
2336 struct curseg_info *curseg = CURSEG_I(sbi, type);
Chao Yu4d57b862018-05-30 00:20:41 +08002337 struct page *page = f2fs_grab_meta_page(sbi, blk_addr);
Chao Yub7ad7512016-02-19 18:08:46 +08002338 struct f2fs_summary_block *src = curseg->sum_blk;
2339 struct f2fs_summary_block *dst;
2340
2341 dst = (struct f2fs_summary_block *)page_address(page);
Chao Yu81114ba2018-04-09 20:25:06 +08002342 memset(dst, 0, PAGE_SIZE);
Chao Yub7ad7512016-02-19 18:08:46 +08002343
2344 mutex_lock(&curseg->curseg_mutex);
2345
2346 down_read(&curseg->journal_rwsem);
2347 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE);
2348 up_read(&curseg->journal_rwsem);
2349
2350 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE);
2351 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE);
2352
2353 mutex_unlock(&curseg->curseg_mutex);
2354
2355 set_page_dirty(page);
2356 f2fs_put_page(page, 1);
2357}
2358
Jaegeuk Kima7881892017-04-20 13:51:57 -07002359static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
2360{
2361 struct curseg_info *curseg = CURSEG_I(sbi, type);
2362 unsigned int segno = curseg->segno + 1;
2363 struct free_segmap_info *free_i = FREE_I(sbi);
2364
2365 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
2366 return !test_bit(segno, free_i->free_segmap);
2367 return 0;
2368}
2369
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002370/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002371 * Find a new segment from the free segments bitmap to right order
2372 * This function should be returned with success, otherwise BUG
2373 */
2374static void get_new_segment(struct f2fs_sb_info *sbi,
2375 unsigned int *newseg, bool new_sec, int dir)
2376{
2377 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002378 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002379 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -07002380 unsigned int hint = GET_SEC_FROM_SEG(sbi, *newseg);
2381 unsigned int old_zoneno = GET_ZONE_FROM_SEG(sbi, *newseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002382 unsigned int left_start = hint;
2383 bool init = true;
2384 int go_left = 0;
2385 int i;
2386
Chao Yu1a118cc2015-02-11 18:20:38 +08002387 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002388
2389 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
2390 segno = find_next_zero_bit(free_i->free_segmap,
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -07002391 GET_SEG_FROM_SEC(sbi, hint + 1), *newseg + 1);
2392 if (segno < GET_SEG_FROM_SEC(sbi, hint + 1))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002393 goto got_it;
2394 }
2395find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002396 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
2397 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002398 if (dir == ALLOC_RIGHT) {
2399 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002400 MAIN_SECS(sbi), 0);
2401 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002402 } else {
2403 go_left = 1;
2404 left_start = hint - 1;
2405 }
2406 }
2407 if (go_left == 0)
2408 goto skip_left;
2409
2410 while (test_bit(left_start, free_i->free_secmap)) {
2411 if (left_start > 0) {
2412 left_start--;
2413 continue;
2414 }
2415 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002416 MAIN_SECS(sbi), 0);
2417 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002418 break;
2419 }
2420 secno = left_start;
2421skip_left:
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -07002422 segno = GET_SEG_FROM_SEC(sbi, secno);
2423 zoneno = GET_ZONE_FROM_SEC(sbi, secno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002424
2425 /* give up on finding another zone */
2426 if (!init)
2427 goto got_it;
2428 if (sbi->secs_per_zone == 1)
2429 goto got_it;
2430 if (zoneno == old_zoneno)
2431 goto got_it;
2432 if (dir == ALLOC_LEFT) {
2433 if (!go_left && zoneno + 1 >= total_zones)
2434 goto got_it;
2435 if (go_left && zoneno == 0)
2436 goto got_it;
2437 }
2438 for (i = 0; i < NR_CURSEG_TYPE; i++)
2439 if (CURSEG_I(sbi, i)->zone == zoneno)
2440 break;
2441
2442 if (i < NR_CURSEG_TYPE) {
2443 /* zone is in user, try another */
2444 if (go_left)
2445 hint = zoneno * sbi->secs_per_zone - 1;
2446 else if (zoneno + 1 >= total_zones)
2447 hint = 0;
2448 else
2449 hint = (zoneno + 1) * sbi->secs_per_zone;
2450 init = false;
2451 goto find_other_zone;
2452 }
2453got_it:
2454 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07002455 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002456 __set_inuse(sbi, segno);
2457 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08002458 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002459}
2460
2461static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
2462{
2463 struct curseg_info *curseg = CURSEG_I(sbi, type);
2464 struct summary_footer *sum_footer;
2465
2466 curseg->segno = curseg->next_segno;
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -07002467 curseg->zone = GET_ZONE_FROM_SEG(sbi, curseg->segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002468 curseg->next_blkoff = 0;
2469 curseg->next_segno = NULL_SEGNO;
2470
2471 sum_footer = &(curseg->sum_blk->footer);
2472 memset(sum_footer, 0, sizeof(struct summary_footer));
2473 if (IS_DATASEG(type))
2474 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
2475 if (IS_NODESEG(type))
2476 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
2477 __set_sit_entry_type(sbi, type, curseg->segno, modified);
2478}
2479
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04002480static unsigned int __get_next_segno(struct f2fs_sb_info *sbi, int type)
2481{
Jaegeuk Kima7881892017-04-20 13:51:57 -07002482 /* if segs_per_sec is large than 1, we need to keep original policy. */
Chao Yu2c70c5e2018-10-24 18:37:26 +08002483 if (__is_large_section(sbi))
Jaegeuk Kima7881892017-04-20 13:51:57 -07002484 return CURSEG_I(sbi, type)->segno;
2485
Daniel Rosenberg43549942018-08-20 19:21:43 -07002486 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
2487 return 0;
2488
Yunlong Songb94929d2018-01-29 11:37:45 +08002489 if (test_opt(sbi, NOHEAP) &&
2490 (type == CURSEG_HOT_DATA || IS_NODESEG(type)))
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04002491 return 0;
2492
Jaegeuk Kime066b832017-04-13 15:17:00 -07002493 if (SIT_I(sbi)->last_victim[ALLOC_NEXT])
2494 return SIT_I(sbi)->last_victim[ALLOC_NEXT];
Jaegeuk Kim07939622018-02-18 08:50:49 -08002495
2496 /* find segments from 0 to reuse freed segments */
Chao Yu63189b72018-03-08 14:22:56 +08002497 if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_REUSE)
Jaegeuk Kim07939622018-02-18 08:50:49 -08002498 return 0;
2499
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04002500 return CURSEG_I(sbi, type)->segno;
2501}
2502
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002503/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002504 * Allocate a current working segment.
2505 * This function always allocates a free segment in LFS manner.
2506 */
2507static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
2508{
2509 struct curseg_info *curseg = CURSEG_I(sbi, type);
2510 unsigned int segno = curseg->segno;
2511 int dir = ALLOC_LEFT;
2512
2513 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08002514 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002515 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
2516 dir = ALLOC_RIGHT;
2517
2518 if (test_opt(sbi, NOHEAP))
2519 dir = ALLOC_RIGHT;
2520
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04002521 segno = __get_next_segno(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002522 get_new_segment(sbi, &segno, new_sec, dir);
2523 curseg->next_segno = segno;
2524 reset_curseg(sbi, type, 1);
2525 curseg->alloc_type = LFS;
2526}
2527
2528static void __next_free_blkoff(struct f2fs_sb_info *sbi,
2529 struct curseg_info *seg, block_t start)
2530{
2531 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09002532 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002533 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09002534 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
2535 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
2536 int i, pos;
2537
2538 for (i = 0; i < entries; i++)
2539 target_map[i] = ckpt_map[i] | cur_map[i];
2540
2541 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
2542
2543 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002544}
2545
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002546/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002547 * If a segment is written by LFS manner, next block offset is just obtained
2548 * by increasing the current block offset. However, if a segment is written by
2549 * SSR manner, next block offset obtained by calling __next_free_blkoff
2550 */
2551static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
2552 struct curseg_info *seg)
2553{
2554 if (seg->alloc_type == SSR)
2555 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
2556 else
2557 seg->next_blkoff++;
2558}
2559
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002560/*
arter97e1c42042014-08-06 23:22:50 +09002561 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002562 * manner, so it should recover the existing segment information of valid blocks
2563 */
Chao Yu025d63a2017-08-30 18:04:48 +08002564static void change_curseg(struct f2fs_sb_info *sbi, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002565{
2566 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2567 struct curseg_info *curseg = CURSEG_I(sbi, type);
2568 unsigned int new_segno = curseg->next_segno;
2569 struct f2fs_summary_block *sum_node;
2570 struct page *sum_page;
2571
2572 write_sum_page(sbi, curseg->sum_blk,
2573 GET_SUM_BLOCK(sbi, curseg->segno));
2574 __set_test_and_inuse(sbi, new_segno);
2575
2576 mutex_lock(&dirty_i->seglist_lock);
2577 __remove_dirty_segment(sbi, new_segno, PRE);
2578 __remove_dirty_segment(sbi, new_segno, DIRTY);
2579 mutex_unlock(&dirty_i->seglist_lock);
2580
2581 reset_curseg(sbi, type, 1);
2582 curseg->alloc_type = SSR;
2583 __next_free_blkoff(sbi, curseg, 0);
2584
Chao Yu4d57b862018-05-30 00:20:41 +08002585 sum_page = f2fs_get_sum_page(sbi, new_segno);
Jaegeuk Kimedc55aa2018-09-17 17:36:06 -07002586 f2fs_bug_on(sbi, IS_ERR(sum_page));
Chao Yu025d63a2017-08-30 18:04:48 +08002587 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
2588 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
2589 f2fs_put_page(sum_page, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002590}
2591
Jaegeuk Kim43727522013-02-04 15:11:17 +09002592static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
2593{
2594 struct curseg_info *curseg = CURSEG_I(sbi, type);
2595 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
Jaegeuk Kime066b832017-04-13 15:17:00 -07002596 unsigned segno = NULL_SEGNO;
Chao Yud27c3d82017-02-24 18:46:00 +08002597 int i, cnt;
2598 bool reversed = false;
Jaegeuk Kimc192f7a2017-02-22 17:10:18 -08002599
Chao Yu4d57b862018-05-30 00:20:41 +08002600 /* f2fs_need_SSR() already forces to do this */
Jaegeuk Kime066b832017-04-13 15:17:00 -07002601 if (v_ops->get_victim(sbi, &segno, BG_GC, type, SSR)) {
2602 curseg->next_segno = segno;
Jaegeuk Kimc192f7a2017-02-22 17:10:18 -08002603 return 1;
Jaegeuk Kime066b832017-04-13 15:17:00 -07002604 }
Jaegeuk Kim43727522013-02-04 15:11:17 +09002605
Jaegeuk Kim70d625c2017-02-22 17:02:32 -08002606 /* For node segments, let's do SSR more intensively */
2607 if (IS_NODESEG(type)) {
Chao Yud27c3d82017-02-24 18:46:00 +08002608 if (type >= CURSEG_WARM_NODE) {
2609 reversed = true;
2610 i = CURSEG_COLD_NODE;
2611 } else {
2612 i = CURSEG_HOT_NODE;
2613 }
2614 cnt = NR_CURSEG_NODE_TYPE;
Jaegeuk Kim70d625c2017-02-22 17:02:32 -08002615 } else {
Chao Yud27c3d82017-02-24 18:46:00 +08002616 if (type >= CURSEG_WARM_DATA) {
2617 reversed = true;
2618 i = CURSEG_COLD_DATA;
2619 } else {
2620 i = CURSEG_HOT_DATA;
2621 }
2622 cnt = NR_CURSEG_DATA_TYPE;
Jaegeuk Kim70d625c2017-02-22 17:02:32 -08002623 }
Jaegeuk Kim43727522013-02-04 15:11:17 +09002624
Chao Yud27c3d82017-02-24 18:46:00 +08002625 for (; cnt-- > 0; reversed ? i-- : i++) {
Jaegeuk Kimc192f7a2017-02-22 17:10:18 -08002626 if (i == type)
2627 continue;
Jaegeuk Kime066b832017-04-13 15:17:00 -07002628 if (v_ops->get_victim(sbi, &segno, BG_GC, i, SSR)) {
2629 curseg->next_segno = segno;
Jaegeuk Kim43727522013-02-04 15:11:17 +09002630 return 1;
Jaegeuk Kime066b832017-04-13 15:17:00 -07002631 }
Jaegeuk Kimc192f7a2017-02-22 17:10:18 -08002632 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002633
2634 /* find valid_blocks=0 in dirty list */
2635 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
2636 segno = get_free_segment(sbi);
2637 if (segno != NULL_SEGNO) {
2638 curseg->next_segno = segno;
2639 return 1;
2640 }
2641 }
Jaegeuk Kim43727522013-02-04 15:11:17 +09002642 return 0;
2643}
2644
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002645/*
2646 * flush out current segment and replace it with new segment
2647 * This function should be returned with success, otherwise BUG
2648 */
2649static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
2650 int type, bool force)
2651{
Jaegeuk Kima7881892017-04-20 13:51:57 -07002652 struct curseg_info *curseg = CURSEG_I(sbi, type);
2653
Gu Zheng7b405272013-08-19 09:41:15 +08002654 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002655 new_curseg(sbi, type, true);
Jaegeuk Kim5b6c6be2017-02-14 19:32:51 -08002656 else if (!is_set_ckpt_flags(sbi, CP_CRC_RECOVERY_FLAG) &&
2657 type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002658 new_curseg(sbi, type, false);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002659 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type) &&
2660 likely(!is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
Jaegeuk Kima7881892017-04-20 13:51:57 -07002661 new_curseg(sbi, type, false);
Chao Yu4d57b862018-05-30 00:20:41 +08002662 else if (f2fs_need_SSR(sbi) && get_ssr_segment(sbi, type))
Chao Yu025d63a2017-08-30 18:04:48 +08002663 change_curseg(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002664 else
2665 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09002666
Jaegeuk Kima7881892017-04-20 13:51:57 -07002667 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002668}
2669
Qiuyang Sun04f0b2e2019-06-05 11:33:25 +08002670void allocate_segment_for_resize(struct f2fs_sb_info *sbi, int type,
2671 unsigned int start, unsigned int end)
2672{
2673 struct curseg_info *curseg = CURSEG_I(sbi, type);
2674 unsigned int segno;
2675
2676 down_read(&SM_I(sbi)->curseg_lock);
2677 mutex_lock(&curseg->curseg_mutex);
2678 down_write(&SIT_I(sbi)->sentry_lock);
2679
2680 segno = CURSEG_I(sbi, type)->segno;
2681 if (segno < start || segno > end)
2682 goto unlock;
2683
2684 if (f2fs_need_SSR(sbi) && get_ssr_segment(sbi, type))
2685 change_curseg(sbi, type);
2686 else
2687 new_curseg(sbi, type, true);
2688
2689 stat_inc_seg_type(sbi, curseg);
2690
2691 locate_dirty_segment(sbi, segno);
2692unlock:
2693 up_write(&SIT_I(sbi)->sentry_lock);
2694
2695 if (segno != curseg->segno)
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002696 f2fs_notice(sbi, "For resize: curseg of type %d: %u ==> %u",
2697 type, segno, curseg->segno);
Qiuyang Sun04f0b2e2019-06-05 11:33:25 +08002698
2699 mutex_unlock(&curseg->curseg_mutex);
2700 up_read(&SM_I(sbi)->curseg_lock);
2701}
2702
Jaegeuk Kimf5a53ed2019-10-18 10:06:40 -07002703void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002704{
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08002705 struct curseg_info *curseg;
2706 unsigned int old_segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002707 int i;
2708
Chao Yu3d26fa62017-10-30 17:49:53 +08002709 down_write(&SIT_I(sbi)->sentry_lock);
2710
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08002711 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
Jaegeuk Kimf5a53ed2019-10-18 10:06:40 -07002712 if (type != NO_CHECK_TYPE && i != type)
2713 continue;
2714
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08002715 curseg = CURSEG_I(sbi, i);
Jaegeuk Kimf5a53ed2019-10-18 10:06:40 -07002716 if (type == NO_CHECK_TYPE || curseg->next_blkoff ||
2717 get_valid_blocks(sbi, curseg->segno, false) ||
2718 get_ckpt_valid_blocks(sbi, curseg->segno)) {
2719 old_segno = curseg->segno;
2720 SIT_I(sbi)->s_ops->allocate_segment(sbi, i, true);
2721 locate_dirty_segment(sbi, old_segno);
2722 }
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08002723 }
Chao Yu3d26fa62017-10-30 17:49:53 +08002724
2725 up_write(&SIT_I(sbi)->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002726}
2727
2728static const struct segment_allocation default_salloc_ops = {
2729 .allocate_segment = allocate_segment_by_default,
2730};
2731
Chao Yu4d57b862018-05-30 00:20:41 +08002732bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi,
2733 struct cp_control *cpc)
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08002734{
2735 __u64 trim_start = cpc->trim_start;
2736 bool has_candidate = false;
2737
Chao Yu3d26fa62017-10-30 17:49:53 +08002738 down_write(&SIT_I(sbi)->sentry_lock);
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08002739 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++) {
2740 if (add_discard_addrs(sbi, cpc, true)) {
2741 has_candidate = true;
2742 break;
2743 }
2744 }
Chao Yu3d26fa62017-10-30 17:49:53 +08002745 up_write(&SIT_I(sbi)->sentry_lock);
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08002746
2747 cpc->trim_start = trim_start;
2748 return has_candidate;
2749}
2750
Chao Yu01f9cf62018-06-25 20:33:24 +08002751static unsigned int __issue_discard_cmd_range(struct f2fs_sb_info *sbi,
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002752 struct discard_policy *dpolicy,
2753 unsigned int start, unsigned int end)
2754{
2755 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
2756 struct discard_cmd *prev_dc = NULL, *next_dc = NULL;
2757 struct rb_node **insert_p = NULL, *insert_parent = NULL;
2758 struct discard_cmd *dc;
2759 struct blk_plug plug;
2760 int issued;
Chao Yu01f9cf62018-06-25 20:33:24 +08002761 unsigned int trimmed = 0;
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002762
2763next:
2764 issued = 0;
2765
2766 mutex_lock(&dcc->cmd_lock);
Chao Yu67fce702018-06-22 16:06:59 +08002767 if (unlikely(dcc->rbtree_check))
2768 f2fs_bug_on(sbi, !f2fs_check_rb_tree_consistence(sbi,
2769 &dcc->root));
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002770
Chao Yu4d57b862018-05-30 00:20:41 +08002771 dc = (struct discard_cmd *)f2fs_lookup_rb_tree_ret(&dcc->root,
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002772 NULL, start,
2773 (struct rb_entry **)&prev_dc,
2774 (struct rb_entry **)&next_dc,
Chao Yu4dada3f2018-10-04 11:18:30 +08002775 &insert_p, &insert_parent, true, NULL);
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002776 if (!dc)
2777 dc = next_dc;
2778
2779 blk_start_plug(&plug);
2780
2781 while (dc && dc->lstart <= end) {
2782 struct rb_node *node;
Chao Yu6b9cb122018-08-08 10:14:55 +08002783 int err = 0;
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002784
2785 if (dc->len < dpolicy->granularity)
2786 goto skip;
2787
2788 if (dc->state != D_PREP) {
2789 list_move_tail(&dc->list, &dcc->fstrim_list);
2790 goto skip;
2791 }
2792
Chao Yu6b9cb122018-08-08 10:14:55 +08002793 err = __submit_discard_cmd(sbi, dpolicy, dc, &issued);
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002794
Chao Yu35ec7d52018-08-06 22:43:50 +08002795 if (issued >= dpolicy->max_requests) {
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002796 start = dc->lstart + dc->len;
2797
Chao Yu6b9cb122018-08-08 10:14:55 +08002798 if (err)
2799 __remove_discard_cmd(sbi, dc);
2800
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002801 blk_finish_plug(&plug);
2802 mutex_unlock(&dcc->cmd_lock);
Chao Yu01f9cf62018-06-25 20:33:24 +08002803 trimmed += __wait_all_discard_cmd(sbi, NULL);
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002804 congestion_wait(BLK_RW_ASYNC, HZ/50);
2805 goto next;
2806 }
2807skip:
2808 node = rb_next(&dc->rb_node);
Chao Yu6b9cb122018-08-08 10:14:55 +08002809 if (err)
2810 __remove_discard_cmd(sbi, dc);
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002811 dc = rb_entry_safe(node, struct discard_cmd, rb_node);
2812
2813 if (fatal_signal_pending(current))
2814 break;
2815 }
2816
2817 blk_finish_plug(&plug);
2818 mutex_unlock(&dcc->cmd_lock);
Chao Yu01f9cf62018-06-25 20:33:24 +08002819
2820 return trimmed;
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002821}
2822
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002823int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
2824{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08002825 __u64 start = F2FS_BYTES_TO_BLK(range->start);
2826 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Chao Yu377224c2018-04-09 10:25:23 +08002827 unsigned int start_segno, end_segno;
Chao Yu84126632017-10-04 09:08:32 +08002828 block_t start_block, end_block;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002829 struct cp_control cpc;
Chao Yu78997b52017-10-04 09:08:34 +08002830 struct discard_policy dpolicy;
Chao Yu0ea80512017-10-28 16:52:32 +08002831 unsigned long long trimmed = 0;
Chao Yuc34f42e2015-12-23 17:50:30 +08002832 int err = 0;
Chao Yu2c70c5e2018-10-24 18:37:26 +08002833 bool need_align = test_opt(sbi, LFS) && __is_large_section(sbi);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002834
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07002835 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002836 return -EINVAL;
2837
Chao Yu3f16ecd92018-08-08 17:36:29 +08002838 if (end < MAIN_BLKADDR(sbi))
2839 goto out;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002840
Yunlei Heed214a12016-09-01 10:14:39 +08002841 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002842 f2fs_warn(sbi, "Found FS corruption, run fsck to fix.");
Chao Yu10f966b2019-06-20 11:36:14 +08002843 return -EFSCORRUPTED;
Yunlei Heed214a12016-09-01 10:14:39 +08002844 }
2845
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002846 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002847 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
2848 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
2849 GET_SEGNO(sbi, end);
Yunlong Songad6672b2018-07-19 20:58:15 +08002850 if (need_align) {
2851 start_segno = rounddown(start_segno, sbi->segs_per_sec);
2852 end_segno = roundup(end_segno + 1, sbi->segs_per_sec) - 1;
2853 }
Chao Yu84126632017-10-04 09:08:32 +08002854
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002855 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07002856 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Chao Yu377224c2018-04-09 10:25:23 +08002857 cpc.trim_start = start_segno;
2858 cpc.trim_end = end_segno;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002859
Chao Yu377224c2018-04-09 10:25:23 +08002860 if (sbi->discard_blks == 0)
2861 goto out;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002862
Chao Yu377224c2018-04-09 10:25:23 +08002863 mutex_lock(&sbi->gc_mutex);
Chao Yu4d57b862018-05-30 00:20:41 +08002864 err = f2fs_write_checkpoint(sbi, &cpc);
Chao Yu377224c2018-04-09 10:25:23 +08002865 mutex_unlock(&sbi->gc_mutex);
2866 if (err)
2867 goto out;
Chao Yu84126632017-10-04 09:08:32 +08002868
Jaegeuk Kime555da92018-05-31 10:20:48 -07002869 /*
2870 * We filed discard candidates, but actually we don't need to wait for
2871 * all of them, since they'll be issued in idle time along with runtime
2872 * discard option. User configuration looks like using runtime discard
2873 * or periodic fstrim instead of it.
2874 */
Chao Yu7d20c8a2018-09-04 03:52:17 +08002875 if (f2fs_realtime_discard_enable(sbi))
Jaegeuk Kim5a615492018-06-20 21:27:21 -07002876 goto out;
2877
2878 start_block = START_BLOCK(sbi, start_segno);
2879 end_block = START_BLOCK(sbi, end_segno + 1);
2880
2881 __init_discard_policy(sbi, &dpolicy, DPOLICY_FSTRIM, cpc.trim_minlen);
Chao Yu01f9cf62018-06-25 20:33:24 +08002882 trimmed = __issue_discard_cmd_range(sbi, &dpolicy,
2883 start_block, end_block);
Jaegeuk Kim5a615492018-06-20 21:27:21 -07002884
Chao Yu01f9cf62018-06-25 20:33:24 +08002885 trimmed += __wait_discard_cmd_range(sbi, &dpolicy,
Chao Yu0ea80512017-10-28 16:52:32 +08002886 start_block, end_block);
Chao Yu377224c2018-04-09 10:25:23 +08002887out:
Chao Yu6eae2692018-08-05 23:09:00 +08002888 if (!err)
2889 range->len = F2FS_BLK_TO_BYTES(trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08002890 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002891}
2892
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002893static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
2894{
2895 struct curseg_info *curseg = CURSEG_I(sbi, type);
2896 if (curseg->next_blkoff < sbi->blocks_per_seg)
2897 return true;
2898 return false;
2899}
2900
Chao Yu4d57b862018-05-30 00:20:41 +08002901int f2fs_rw_hint_to_seg_type(enum rw_hint hint)
Hyunchul Lee4f0a03d32017-11-09 14:51:27 +09002902{
2903 switch (hint) {
2904 case WRITE_LIFE_SHORT:
2905 return CURSEG_HOT_DATA;
2906 case WRITE_LIFE_EXTREME:
2907 return CURSEG_COLD_DATA;
2908 default:
2909 return CURSEG_WARM_DATA;
2910 }
2911}
2912
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002913/* This returns write hints for each segment type. This hints will be
2914 * passed down to block layer. There are mapping tables which depend on
2915 * the mount option 'whint_mode'.
2916 *
2917 * 1) whint_mode=off. F2FS only passes down WRITE_LIFE_NOT_SET.
2918 *
2919 * 2) whint_mode=user-based. F2FS tries to pass down hints given by users.
2920 *
2921 * User F2FS Block
2922 * ---- ---- -----
2923 * META WRITE_LIFE_NOT_SET
2924 * HOT_NODE "
2925 * WARM_NODE "
2926 * COLD_NODE "
2927 * ioctl(COLD) COLD_DATA WRITE_LIFE_EXTREME
2928 * extension list " "
2929 *
2930 * -- buffered io
2931 * WRITE_LIFE_EXTREME COLD_DATA WRITE_LIFE_EXTREME
2932 * WRITE_LIFE_SHORT HOT_DATA WRITE_LIFE_SHORT
2933 * WRITE_LIFE_NOT_SET WARM_DATA WRITE_LIFE_NOT_SET
2934 * WRITE_LIFE_NONE " "
2935 * WRITE_LIFE_MEDIUM " "
2936 * WRITE_LIFE_LONG " "
2937 *
2938 * -- direct io
2939 * WRITE_LIFE_EXTREME COLD_DATA WRITE_LIFE_EXTREME
2940 * WRITE_LIFE_SHORT HOT_DATA WRITE_LIFE_SHORT
2941 * WRITE_LIFE_NOT_SET WARM_DATA WRITE_LIFE_NOT_SET
2942 * WRITE_LIFE_NONE " WRITE_LIFE_NONE
2943 * WRITE_LIFE_MEDIUM " WRITE_LIFE_MEDIUM
2944 * WRITE_LIFE_LONG " WRITE_LIFE_LONG
2945 *
Hyunchul Leef2e703f2018-01-31 11:36:58 +09002946 * 3) whint_mode=fs-based. F2FS passes down hints with its policy.
2947 *
2948 * User F2FS Block
2949 * ---- ---- -----
2950 * META WRITE_LIFE_MEDIUM;
2951 * HOT_NODE WRITE_LIFE_NOT_SET
2952 * WARM_NODE "
2953 * COLD_NODE WRITE_LIFE_NONE
2954 * ioctl(COLD) COLD_DATA WRITE_LIFE_EXTREME
2955 * extension list " "
2956 *
2957 * -- buffered io
2958 * WRITE_LIFE_EXTREME COLD_DATA WRITE_LIFE_EXTREME
2959 * WRITE_LIFE_SHORT HOT_DATA WRITE_LIFE_SHORT
2960 * WRITE_LIFE_NOT_SET WARM_DATA WRITE_LIFE_LONG
2961 * WRITE_LIFE_NONE " "
2962 * WRITE_LIFE_MEDIUM " "
2963 * WRITE_LIFE_LONG " "
2964 *
2965 * -- direct io
2966 * WRITE_LIFE_EXTREME COLD_DATA WRITE_LIFE_EXTREME
2967 * WRITE_LIFE_SHORT HOT_DATA WRITE_LIFE_SHORT
2968 * WRITE_LIFE_NOT_SET WARM_DATA WRITE_LIFE_NOT_SET
2969 * WRITE_LIFE_NONE " WRITE_LIFE_NONE
2970 * WRITE_LIFE_MEDIUM " WRITE_LIFE_MEDIUM
2971 * WRITE_LIFE_LONG " WRITE_LIFE_LONG
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002972 */
2973
Chao Yu4d57b862018-05-30 00:20:41 +08002974enum rw_hint f2fs_io_type_to_rw_hint(struct f2fs_sb_info *sbi,
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002975 enum page_type type, enum temp_type temp)
2976{
Chao Yu63189b72018-03-08 14:22:56 +08002977 if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_USER) {
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002978 if (type == DATA) {
Hyunchul Leef2e703f2018-01-31 11:36:58 +09002979 if (temp == WARM)
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002980 return WRITE_LIFE_NOT_SET;
Hyunchul Leef2e703f2018-01-31 11:36:58 +09002981 else if (temp == HOT)
2982 return WRITE_LIFE_SHORT;
2983 else if (temp == COLD)
2984 return WRITE_LIFE_EXTREME;
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002985 } else {
2986 return WRITE_LIFE_NOT_SET;
2987 }
Chao Yu63189b72018-03-08 14:22:56 +08002988 } else if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_FS) {
Hyunchul Leef2e703f2018-01-31 11:36:58 +09002989 if (type == DATA) {
2990 if (temp == WARM)
2991 return WRITE_LIFE_LONG;
2992 else if (temp == HOT)
2993 return WRITE_LIFE_SHORT;
2994 else if (temp == COLD)
2995 return WRITE_LIFE_EXTREME;
2996 } else if (type == NODE) {
2997 if (temp == WARM || temp == HOT)
2998 return WRITE_LIFE_NOT_SET;
2999 else if (temp == COLD)
3000 return WRITE_LIFE_NONE;
3001 } else if (type == META) {
3002 return WRITE_LIFE_MEDIUM;
3003 }
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09003004 }
Hyunchul Leef2e703f2018-01-31 11:36:58 +09003005 return WRITE_LIFE_NOT_SET;
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09003006}
3007
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07003008static int __get_segment_type_2(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003009{
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07003010 if (fio->type == DATA)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003011 return CURSEG_HOT_DATA;
3012 else
3013 return CURSEG_HOT_NODE;
3014}
3015
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07003016static int __get_segment_type_4(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003017{
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07003018 if (fio->type == DATA) {
3019 struct inode *inode = fio->page->mapping->host;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003020
3021 if (S_ISDIR(inode->i_mode))
3022 return CURSEG_HOT_DATA;
3023 else
3024 return CURSEG_COLD_DATA;
3025 } else {
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07003026 if (IS_DNODE(fio->page) && is_cold_node(fio->page))
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08003027 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003028 else
3029 return CURSEG_COLD_NODE;
3030 }
3031}
3032
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07003033static int __get_segment_type_6(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003034{
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07003035 if (fio->type == DATA) {
3036 struct inode *inode = fio->page->mapping->host;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003037
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07003038 if (is_cold_data(fio->page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003039 return CURSEG_COLD_DATA;
Chao Yub6a06cb2018-02-28 17:07:27 +08003040 if (file_is_hot(inode) ||
Chao Yub4c3ca82018-04-26 17:05:50 +08003041 is_inode_flag_set(inode, FI_HOT_DATA) ||
Chao Yu2079f112018-07-17 20:41:48 +08003042 f2fs_is_atomic_file(inode) ||
3043 f2fs_is_volatile_file(inode))
Jaegeuk Kimef095d12017-03-24 20:05:13 -04003044 return CURSEG_HOT_DATA;
Chao Yu4d57b862018-05-30 00:20:41 +08003045 return f2fs_rw_hint_to_seg_type(inode->i_write_hint);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003046 } else {
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07003047 if (IS_DNODE(fio->page))
3048 return is_cold_node(fio->page) ? CURSEG_WARM_NODE :
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003049 CURSEG_HOT_NODE;
Jaegeuk Kimef095d12017-03-24 20:05:13 -04003050 return CURSEG_COLD_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003051 }
3052}
3053
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07003054static int __get_segment_type(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003055{
Jaegeuk Kima912b542017-05-10 11:18:25 -07003056 int type = 0;
3057
Chao Yu63189b72018-03-08 14:22:56 +08003058 switch (F2FS_OPTION(fio->sbi).active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003059 case 2:
Jaegeuk Kima912b542017-05-10 11:18:25 -07003060 type = __get_segment_type_2(fio);
3061 break;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003062 case 4:
Jaegeuk Kima912b542017-05-10 11:18:25 -07003063 type = __get_segment_type_4(fio);
3064 break;
3065 case 6:
3066 type = __get_segment_type_6(fio);
3067 break;
3068 default:
3069 f2fs_bug_on(fio->sbi, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003070 }
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07003071
Jaegeuk Kima912b542017-05-10 11:18:25 -07003072 if (IS_HOT(type))
3073 fio->temp = HOT;
3074 else if (IS_WARM(type))
3075 fio->temp = WARM;
3076 else
3077 fio->temp = COLD;
3078 return type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003079}
3080
Chao Yu4d57b862018-05-30 00:20:41 +08003081void f2fs_allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09003082 block_t old_blkaddr, block_t *new_blkaddr,
Chao Yufb830fc2017-05-19 23:37:01 +08003083 struct f2fs_summary *sum, int type,
3084 struct f2fs_io_info *fio, bool add_list)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003085{
3086 struct sit_info *sit_i = SIT_I(sbi);
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08003087 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kimf5a53ed2019-10-18 10:06:40 -07003088 bool put_pin_sem = false;
3089
3090 if (type == CURSEG_COLD_DATA) {
3091 /* GC during CURSEG_COLD_DATA_PINNED allocation */
3092 if (down_read_trylock(&sbi->pin_sem)) {
3093 put_pin_sem = true;
3094 } else {
3095 type = CURSEG_WARM_DATA;
3096 curseg = CURSEG_I(sbi, type);
3097 }
3098 } else if (type == CURSEG_COLD_DATA_PINNED) {
3099 type = CURSEG_COLD_DATA;
3100 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003101
Chao Yu2b603112017-11-02 20:41:03 +08003102 down_read(&SM_I(sbi)->curseg_lock);
3103
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003104 mutex_lock(&curseg->curseg_mutex);
Chao Yu3d26fa62017-10-30 17:49:53 +08003105 down_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003106
3107 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003108
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08003109 f2fs_wait_discard_bio(sbi, *new_blkaddr);
3110
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003111 /*
3112 * __add_sum_entry should be resided under the curseg_mutex
3113 * because, this function updates a summary entry in the
3114 * current summary block.
3115 */
Haicheng Lie79efe32013-06-13 16:59:27 +08003116 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003117
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003118 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09003119
3120 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003121
Yunlong Song65f1b802017-10-30 09:33:41 +08003122 /*
3123 * SIT information should be updated before segment allocation,
3124 * since SSR needs latest valid block information.
3125 */
3126 update_sit_entry(sbi, *new_blkaddr, 1);
3127 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
3128 update_sit_entry(sbi, old_blkaddr, -1);
3129
Yunlong Song3436c4b2017-02-21 16:59:26 +08003130 if (!__has_curseg_space(sbi, type))
3131 sit_i->s_ops->allocate_segment(sbi, type, false);
Yunlong Song65f1b802017-10-30 09:33:41 +08003132
Jaegeuk Kimc6f82fe92017-04-04 16:45:30 -07003133 /*
Yunlong Song65f1b802017-10-30 09:33:41 +08003134 * segment dirty status should be updated after segment allocation,
3135 * so we just need to update status only one time after previous
3136 * segment being closed.
Jaegeuk Kimc6f82fe92017-04-04 16:45:30 -07003137 */
Yunlong Song65f1b802017-10-30 09:33:41 +08003138 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
3139 locate_dirty_segment(sbi, GET_SEGNO(sbi, *new_blkaddr));
Yunlong Song3436c4b2017-02-21 16:59:26 +08003140
Chao Yu3d26fa62017-10-30 17:49:53 +08003141 up_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003142
Chao Yu704956e2017-07-31 20:19:09 +08003143 if (page && IS_NODESEG(type)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003144 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
3145
Chao Yu704956e2017-07-31 20:19:09 +08003146 f2fs_inode_chksum_set(sbi, page);
3147 }
3148
Chao Yu8223ecc2019-08-28 17:33:38 +08003149 if (F2FS_IO_ALIGNED(sbi))
3150 fio->retry = false;
3151
Chao Yufb830fc2017-05-19 23:37:01 +08003152 if (add_list) {
3153 struct f2fs_bio_info *io;
3154
3155 INIT_LIST_HEAD(&fio->list);
3156 fio->in_list = true;
3157 io = sbi->write_io[fio->type] + fio->temp;
3158 spin_lock(&io->io_lock);
3159 list_add_tail(&fio->list, &io->io_list);
3160 spin_unlock(&io->io_lock);
3161 }
3162
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09003163 mutex_unlock(&curseg->curseg_mutex);
Chao Yu2b603112017-11-02 20:41:03 +08003164
3165 up_read(&SM_I(sbi)->curseg_lock);
Jaegeuk Kimf5a53ed2019-10-18 10:06:40 -07003166
3167 if (put_pin_sem)
3168 up_read(&sbi->pin_sem);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09003169}
3170
Chao Yu39d787b2017-09-29 13:59:38 +08003171static void update_device_state(struct f2fs_io_info *fio)
3172{
3173 struct f2fs_sb_info *sbi = fio->sbi;
3174 unsigned int devidx;
3175
Damien Le Moal09168782019-03-16 09:13:06 +09003176 if (!f2fs_is_multi_device(sbi))
Chao Yu39d787b2017-09-29 13:59:38 +08003177 return;
3178
3179 devidx = f2fs_target_device_index(sbi, fio->new_blkaddr);
3180
3181 /* update device state for fsync */
Chao Yu4d57b862018-05-30 00:20:41 +08003182 f2fs_set_dirty_device(sbi, fio->ino, devidx, FLUSH_INO);
Chao Yu1228b482017-09-29 13:59:39 +08003183
3184 /* update device state for checkpoint */
3185 if (!f2fs_test_bit(devidx, (char *)&sbi->dirty_device)) {
3186 spin_lock(&sbi->dev_lock);
3187 f2fs_set_bit(devidx, (char *)&sbi->dirty_device);
3188 spin_unlock(&sbi->dev_lock);
3189 }
Chao Yu39d787b2017-09-29 13:59:38 +08003190}
3191
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003192static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09003193{
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07003194 int type = __get_segment_type(fio);
Chao Yu107a8052018-05-26 09:00:13 +08003195 bool keep_order = (test_opt(fio->sbi, LFS) && type == CURSEG_COLD_DATA);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09003196
Chao Yu107a8052018-05-26 09:00:13 +08003197 if (keep_order)
3198 down_read(&fio->sbi->io_order_lock);
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08003199reallocate:
Chao Yu4d57b862018-05-30 00:20:41 +08003200 f2fs_allocate_data_block(fio->sbi, fio->page, fio->old_blkaddr,
Chao Yufb830fc2017-05-19 23:37:01 +08003201 &fio->new_blkaddr, sum, type, fio, true);
Chao Yu6aa58d82018-08-14 22:37:25 +08003202 if (GET_SEGNO(fio->sbi, fio->old_blkaddr) != NULL_SEGNO)
3203 invalidate_mapping_pages(META_MAPPING(fio->sbi),
3204 fio->old_blkaddr, fio->old_blkaddr);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09003205
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003206 /* writeout dirty page into bdev */
Chao Yufe16efe2018-05-28 23:47:18 +08003207 f2fs_submit_page_write(fio);
3208 if (fio->retry) {
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08003209 fio->old_blkaddr = fio->new_blkaddr;
3210 goto reallocate;
3211 }
Chao Yufe16efe2018-05-28 23:47:18 +08003212
3213 update_device_state(fio);
3214
Chao Yu107a8052018-05-26 09:00:13 +08003215 if (keep_order)
3216 up_read(&fio->sbi->io_order_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003217}
3218
Chao Yu4d57b862018-05-30 00:20:41 +08003219void f2fs_do_write_meta_page(struct f2fs_sb_info *sbi, struct page *page,
Chao Yub0af6d42017-08-02 23:21:48 +08003220 enum iostat_type io_type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003221{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09003222 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003223 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09003224 .type = META,
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09003225 .temp = HOT,
Mike Christie04d328d2016-06-05 14:31:55 -05003226 .op = REQ_OP_WRITE,
Christoph Hellwig70fd7612016-11-01 07:40:10 -06003227 .op_flags = REQ_SYNC | REQ_META | REQ_PRIO,
Chao Yu7a9d7542016-02-22 18:36:38 +08003228 .old_blkaddr = page->index,
3229 .new_blkaddr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003230 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07003231 .encrypted_page = NULL,
Chao Yufb830fc2017-05-19 23:37:01 +08003232 .in_list = false,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09003233 };
3234
Chao Yu2b947002015-10-12 17:04:21 +08003235 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
Mike Christie04d328d2016-06-05 14:31:55 -05003236 fio.op_flags &= ~REQ_META;
Chao Yu2b947002015-10-12 17:04:21 +08003237
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003238 set_page_writeback(page);
Jaegeuk Kim17c50032018-04-11 23:09:04 -07003239 ClearPageError(page);
Jaegeuk Kimb9109b02017-05-10 11:28:38 -07003240 f2fs_submit_page_write(&fio);
Chao Yub0af6d42017-08-02 23:21:48 +08003241
Chao Yub63e7be2018-09-29 18:31:27 +08003242 stat_inc_meta_count(sbi, page->index);
Chao Yub0af6d42017-08-02 23:21:48 +08003243 f2fs_update_iostat(sbi, io_type, F2FS_BLKSIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003244}
3245
Chao Yu4d57b862018-05-30 00:20:41 +08003246void f2fs_do_write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003247{
3248 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003249
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003250 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003251 do_write_page(&sum, fio);
Chao Yub0af6d42017-08-02 23:21:48 +08003252
3253 f2fs_update_iostat(fio->sbi, fio->io_type, F2FS_BLKSIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003254}
3255
Chao Yu4d57b862018-05-30 00:20:41 +08003256void f2fs_outplace_write_data(struct dnode_of_data *dn,
3257 struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003258{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003259 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003260 struct f2fs_summary sum;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003261
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07003262 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Chao Yu77357302018-07-17 00:02:17 +08003263 set_summary(&sum, dn->nid, dn->ofs_in_node, fio->version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003264 do_write_page(&sum, fio);
Chao Yuf28b3432016-02-24 17:16:47 +08003265 f2fs_update_data_blkaddr(dn, fio->new_blkaddr);
Chao Yub0af6d42017-08-02 23:21:48 +08003266
3267 f2fs_update_iostat(sbi, fio->io_type, F2FS_BLKSIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003268}
3269
Chao Yu4d57b862018-05-30 00:20:41 +08003270int f2fs_inplace_write_data(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003271{
Chao Yub0af6d42017-08-02 23:21:48 +08003272 int err;
Yunlei Hed21b0f22018-03-26 17:32:23 +08003273 struct f2fs_sb_info *sbi = fio->sbi;
Chao Yu05573d62019-04-15 15:30:52 +08003274 unsigned int segno;
Chao Yub0af6d42017-08-02 23:21:48 +08003275
Chao Yu7a9d7542016-02-22 18:36:38 +08003276 fio->new_blkaddr = fio->old_blkaddr;
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09003277 /* i/o temperature is needed for passing down write hints */
3278 __get_segment_type(fio);
Yunlei Hed21b0f22018-03-26 17:32:23 +08003279
Chao Yu05573d62019-04-15 15:30:52 +08003280 segno = GET_SEGNO(sbi, fio->new_blkaddr);
3281
3282 if (!IS_DATASEG(get_seg_entry(sbi, segno)->type)) {
3283 set_sbi_flag(sbi, SBI_NEED_FSCK);
Chao Yu2d821c12019-06-18 17:59:03 +08003284 f2fs_warn(sbi, "%s: incorrect segment(%u) type, run fsck to fix.",
3285 __func__, segno);
Chao Yu10f966b2019-06-20 11:36:14 +08003286 return -EFSCORRUPTED;
Chao Yu05573d62019-04-15 15:30:52 +08003287 }
Yunlei Hed21b0f22018-03-26 17:32:23 +08003288
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003289 stat_inc_inplace_blocks(fio->sbi);
Chao Yub0af6d42017-08-02 23:21:48 +08003290
Chao Yu8648de22019-02-19 16:15:29 +08003291 if (fio->bio)
3292 err = f2fs_merge_page_bio(fio);
3293 else
3294 err = f2fs_submit_page_bio(fio);
Chao Yue46f6bd2019-02-21 20:40:13 +08003295 if (!err) {
Chao Yu39d787b2017-09-29 13:59:38 +08003296 update_device_state(fio);
Chao Yue46f6bd2019-02-21 20:40:13 +08003297 f2fs_update_iostat(fio->sbi, fio->io_type, F2FS_BLKSIZE);
3298 }
Chao Yub0af6d42017-08-02 23:21:48 +08003299
3300 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003301}
3302
Chao Yu2b603112017-11-02 20:41:03 +08003303static inline int __f2fs_get_curseg(struct f2fs_sb_info *sbi,
3304 unsigned int segno)
3305{
3306 int i;
3307
3308 for (i = CURSEG_HOT_DATA; i < NO_CHECK_TYPE; i++) {
3309 if (CURSEG_I(sbi, i)->segno == segno)
3310 break;
3311 }
3312 return i;
3313}
3314
Chao Yu4d57b862018-05-30 00:20:41 +08003315void f2fs_do_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08003316 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08003317 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003318{
3319 struct sit_info *sit_i = SIT_I(sbi);
3320 struct curseg_info *curseg;
3321 unsigned int segno, old_cursegno;
3322 struct seg_entry *se;
3323 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08003324 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003325
3326 segno = GET_SEGNO(sbi, new_blkaddr);
3327 se = get_seg_entry(sbi, segno);
3328 type = se->type;
3329
Chao Yu2b603112017-11-02 20:41:03 +08003330 down_write(&SM_I(sbi)->curseg_lock);
3331
Chao Yu19f106b2015-05-06 13:08:06 +08003332 if (!recover_curseg) {
3333 /* for recovery flow */
3334 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
3335 if (old_blkaddr == NULL_ADDR)
3336 type = CURSEG_COLD_DATA;
3337 else
3338 type = CURSEG_WARM_DATA;
3339 }
3340 } else {
Chao Yu2b603112017-11-02 20:41:03 +08003341 if (IS_CURSEG(sbi, segno)) {
3342 /* se->type is volatile as SSR allocation */
3343 type = __f2fs_get_curseg(sbi, segno);
3344 f2fs_bug_on(sbi, type == NO_CHECK_TYPE);
3345 } else {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003346 type = CURSEG_WARM_DATA;
Chao Yu2b603112017-11-02 20:41:03 +08003347 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003348 }
Chao Yu19f106b2015-05-06 13:08:06 +08003349
Yunlong Song2c190502018-01-04 15:02:02 +08003350 f2fs_bug_on(sbi, !IS_DATASEG(type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003351 curseg = CURSEG_I(sbi, type);
3352
3353 mutex_lock(&curseg->curseg_mutex);
Chao Yu3d26fa62017-10-30 17:49:53 +08003354 down_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003355
3356 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08003357 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003358
3359 /* change the current segment */
3360 if (segno != curseg->segno) {
3361 curseg->next_segno = segno;
Chao Yu025d63a2017-08-30 18:04:48 +08003362 change_curseg(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003363 }
3364
Jaegeuk Kim491c0852014-02-04 13:01:10 +09003365 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08003366 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003367
Chao Yu28bc1062016-02-06 14:40:34 +08003368 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07003369 update_sit_entry(sbi, new_blkaddr, 1);
Chao Yu6aa58d82018-08-14 22:37:25 +08003370 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO) {
3371 invalidate_mapping_pages(META_MAPPING(sbi),
3372 old_blkaddr, old_blkaddr);
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07003373 update_sit_entry(sbi, old_blkaddr, -1);
Chao Yu6aa58d82018-08-14 22:37:25 +08003374 }
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07003375
3376 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
3377 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
3378
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003379 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003380
Chao Yu19f106b2015-05-06 13:08:06 +08003381 if (recover_curseg) {
3382 if (old_cursegno != curseg->segno) {
3383 curseg->next_segno = old_cursegno;
Chao Yu025d63a2017-08-30 18:04:48 +08003384 change_curseg(sbi, type);
Chao Yu19f106b2015-05-06 13:08:06 +08003385 }
3386 curseg->next_blkoff = old_blkoff;
3387 }
3388
Chao Yu3d26fa62017-10-30 17:49:53 +08003389 up_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003390 mutex_unlock(&curseg->curseg_mutex);
Chao Yu2b603112017-11-02 20:41:03 +08003391 up_write(&SM_I(sbi)->curseg_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003392}
3393
Chao Yu528e3452015-05-28 19:15:35 +08003394void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
3395 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08003396 unsigned char version, bool recover_curseg,
3397 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08003398{
3399 struct f2fs_summary sum;
3400
3401 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
3402
Chao Yu4d57b862018-05-30 00:20:41 +08003403 f2fs_do_replace_block(sbi, &sum, old_addr, new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08003404 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08003405
Chao Yuf28b3432016-02-24 17:16:47 +08003406 f2fs_update_data_blkaddr(dn, new_addr);
Chao Yu528e3452015-05-28 19:15:35 +08003407}
3408
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09003409void f2fs_wait_on_page_writeback(struct page *page,
Chao Yubae0ee72018-12-25 17:43:42 +08003410 enum page_type type, bool ordered, bool locked)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09003411{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09003412 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07003413 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
3414
Chao Yu0b20fce2019-09-30 18:53:25 +08003415 /* submit cached LFS IO */
Chao Yubab475c2018-09-27 23:41:16 +08003416 f2fs_submit_merged_write_cond(sbi, NULL, page, 0, type);
Chao Yu0b20fce2019-09-30 18:53:25 +08003417 /* sbumit cached IPU IO */
3418 f2fs_submit_merged_ipu_write(sbi, NULL, page);
Chao Yubae0ee72018-12-25 17:43:42 +08003419 if (ordered) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08003420 wait_on_page_writeback(page);
Chao Yubae0ee72018-12-25 17:43:42 +08003421 f2fs_bug_on(sbi, locked && PageWriteback(page));
3422 } else {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08003423 wait_for_stable_page(page);
Chao Yubae0ee72018-12-25 17:43:42 +08003424 }
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09003425 }
3426}
3427
Jaegeuk Kim0ded69f2018-08-22 21:18:00 -07003428void f2fs_wait_on_block_writeback(struct inode *inode, block_t blkaddr)
Chao Yu08b39fb2015-10-08 13:27:34 +08003429{
Jaegeuk Kim0ded69f2018-08-22 21:18:00 -07003430 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Chao Yu08b39fb2015-10-08 13:27:34 +08003431 struct page *cpage;
3432
Jaegeuk Kim0ded69f2018-08-22 21:18:00 -07003433 if (!f2fs_post_read_required(inode))
3434 return;
3435
Chao Yu93770ab2019-04-15 15:26:32 +08003436 if (!__is_valid_data_blkaddr(blkaddr))
Chao Yu08b39fb2015-10-08 13:27:34 +08003437 return;
3438
Chao Yu08b39fb2015-10-08 13:27:34 +08003439 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
3440 if (cpage) {
Chao Yubae0ee72018-12-25 17:43:42 +08003441 f2fs_wait_on_page_writeback(cpage, DATA, true, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08003442 f2fs_put_page(cpage, 1);
3443 }
3444}
3445
Sahitya Tummala1e78e8b2018-10-10 10:56:22 +05303446void f2fs_wait_on_block_writeback_range(struct inode *inode, block_t blkaddr,
3447 block_t len)
3448{
3449 block_t i;
3450
3451 for (i = 0; i < len; i++)
3452 f2fs_wait_on_block_writeback(inode, blkaddr + i);
3453}
3454
Chao Yu77357302018-07-17 00:02:17 +08003455static int read_compacted_summaries(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003456{
3457 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
3458 struct curseg_info *seg_i;
3459 unsigned char *kaddr;
3460 struct page *page;
3461 block_t start;
3462 int i, j, offset;
3463
3464 start = start_sum_block(sbi);
3465
Chao Yu4d57b862018-05-30 00:20:41 +08003466 page = f2fs_get_meta_page(sbi, start++);
Chao Yu77357302018-07-17 00:02:17 +08003467 if (IS_ERR(page))
3468 return PTR_ERR(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003469 kaddr = (unsigned char *)page_address(page);
3470
3471 /* Step 1: restore nat cache */
3472 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003473 memcpy(seg_i->journal, kaddr, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003474
3475 /* Step 2: restore sit cache */
3476 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003477 memcpy(seg_i->journal, kaddr + SUM_JOURNAL_SIZE, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003478 offset = 2 * SUM_JOURNAL_SIZE;
3479
3480 /* Step 3: restore summary entries */
3481 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
3482 unsigned short blk_off;
3483 unsigned int segno;
3484
3485 seg_i = CURSEG_I(sbi, i);
3486 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
3487 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
3488 seg_i->next_segno = segno;
3489 reset_curseg(sbi, i, 0);
3490 seg_i->alloc_type = ckpt->alloc_type[i];
3491 seg_i->next_blkoff = blk_off;
3492
3493 if (seg_i->alloc_type == SSR)
3494 blk_off = sbi->blocks_per_seg;
3495
3496 for (j = 0; j < blk_off; j++) {
3497 struct f2fs_summary *s;
3498 s = (struct f2fs_summary *)(kaddr + offset);
3499 seg_i->sum_blk->entries[j] = *s;
3500 offset += SUMMARY_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003501 if (offset + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003502 SUM_FOOTER_SIZE)
3503 continue;
3504
3505 f2fs_put_page(page, 1);
3506 page = NULL;
3507
Chao Yu4d57b862018-05-30 00:20:41 +08003508 page = f2fs_get_meta_page(sbi, start++);
Chao Yu77357302018-07-17 00:02:17 +08003509 if (IS_ERR(page))
3510 return PTR_ERR(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003511 kaddr = (unsigned char *)page_address(page);
3512 offset = 0;
3513 }
3514 }
3515 f2fs_put_page(page, 1);
Chao Yu77357302018-07-17 00:02:17 +08003516 return 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003517}
3518
3519static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
3520{
3521 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
3522 struct f2fs_summary_block *sum;
3523 struct curseg_info *curseg;
3524 struct page *new;
3525 unsigned short blk_off;
3526 unsigned int segno = 0;
3527 block_t blk_addr = 0;
Chao Yu77357302018-07-17 00:02:17 +08003528 int err = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003529
3530 /* get segment number and block addr */
3531 if (IS_DATASEG(type)) {
3532 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
3533 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
3534 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08003535 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003536 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
3537 else
3538 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
3539 } else {
3540 segno = le32_to_cpu(ckpt->cur_node_segno[type -
3541 CURSEG_HOT_NODE]);
3542 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
3543 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08003544 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003545 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
3546 type - CURSEG_HOT_NODE);
3547 else
3548 blk_addr = GET_SUM_BLOCK(sbi, segno);
3549 }
3550
Chao Yu4d57b862018-05-30 00:20:41 +08003551 new = f2fs_get_meta_page(sbi, blk_addr);
Chao Yu77357302018-07-17 00:02:17 +08003552 if (IS_ERR(new))
3553 return PTR_ERR(new);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003554 sum = (struct f2fs_summary_block *)page_address(new);
3555
3556 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08003557 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003558 struct f2fs_summary *ns = &sum->entries[0];
3559 int i;
3560 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
3561 ns->version = 0;
3562 ns->ofs_in_node = 0;
3563 }
3564 } else {
Chao Yu77357302018-07-17 00:02:17 +08003565 err = f2fs_restore_node_summary(sbi, segno, sum);
3566 if (err)
3567 goto out;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003568 }
3569 }
3570
3571 /* set uncompleted segment to curseg */
3572 curseg = CURSEG_I(sbi, type);
3573 mutex_lock(&curseg->curseg_mutex);
Chao Yub7ad7512016-02-19 18:08:46 +08003574
3575 /* update journal info */
3576 down_write(&curseg->journal_rwsem);
3577 memcpy(curseg->journal, &sum->journal, SUM_JOURNAL_SIZE);
3578 up_write(&curseg->journal_rwsem);
3579
3580 memcpy(curseg->sum_blk->entries, sum->entries, SUM_ENTRY_SIZE);
3581 memcpy(&curseg->sum_blk->footer, &sum->footer, SUM_FOOTER_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003582 curseg->next_segno = segno;
3583 reset_curseg(sbi, type, 0);
3584 curseg->alloc_type = ckpt->alloc_type[type];
3585 curseg->next_blkoff = blk_off;
3586 mutex_unlock(&curseg->curseg_mutex);
Chao Yu77357302018-07-17 00:02:17 +08003587out:
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003588 f2fs_put_page(new, 1);
Chao Yu77357302018-07-17 00:02:17 +08003589 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003590}
3591
3592static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
3593{
Jin Qian21d3f8e2017-06-01 11:18:30 -07003594 struct f2fs_journal *sit_j = CURSEG_I(sbi, CURSEG_COLD_DATA)->journal;
3595 struct f2fs_journal *nat_j = CURSEG_I(sbi, CURSEG_HOT_DATA)->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003596 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08003597 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003598
Chao Yuaaec2b12016-09-20 11:04:18 +08003599 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG)) {
Chao Yu4d57b862018-05-30 00:20:41 +08003600 int npages = f2fs_npages_for_summary_flush(sbi, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08003601
3602 if (npages >= 2)
Chao Yu4d57b862018-05-30 00:20:41 +08003603 f2fs_ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08003604 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08003605
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003606 /* restore for compacted data summary */
Chao Yu77357302018-07-17 00:02:17 +08003607 err = read_compacted_summaries(sbi);
3608 if (err)
3609 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003610 type = CURSEG_HOT_NODE;
3611 }
3612
Jaegeuk Kim119ee912015-01-29 11:45:33 -08003613 if (__exist_node_summaries(sbi))
Chao Yu4d57b862018-05-30 00:20:41 +08003614 f2fs_ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08003615 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08003616
Chao Yue4fc5fb2014-03-17 16:36:24 +08003617 for (; type <= CURSEG_COLD_NODE; type++) {
3618 err = read_normal_summaries(sbi, type);
3619 if (err)
3620 return err;
3621 }
3622
Jin Qian21d3f8e2017-06-01 11:18:30 -07003623 /* sanity check for summary blocks */
3624 if (nats_in_cursum(nat_j) > NAT_JOURNAL_ENTRIES ||
Sahitya Tummala9227d522019-05-23 09:49:17 +05303625 sits_in_cursum(sit_j) > SIT_JOURNAL_ENTRIES) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003626 f2fs_err(sbi, "invalid journal entries nats %u sits %u\n",
3627 nats_in_cursum(nat_j), sits_in_cursum(sit_j));
Jin Qian21d3f8e2017-06-01 11:18:30 -07003628 return -EINVAL;
Sahitya Tummala9227d522019-05-23 09:49:17 +05303629 }
Jin Qian21d3f8e2017-06-01 11:18:30 -07003630
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003631 return 0;
3632}
3633
3634static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
3635{
3636 struct page *page;
3637 unsigned char *kaddr;
3638 struct f2fs_summary *summary;
3639 struct curseg_info *seg_i;
3640 int written_size = 0;
3641 int i, j;
3642
Chao Yu4d57b862018-05-30 00:20:41 +08003643 page = f2fs_grab_meta_page(sbi, blkaddr++);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003644 kaddr = (unsigned char *)page_address(page);
Chao Yu81114ba2018-04-09 20:25:06 +08003645 memset(kaddr, 0, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003646
3647 /* Step 1: write nat cache */
3648 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003649 memcpy(kaddr, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003650 written_size += SUM_JOURNAL_SIZE;
3651
3652 /* Step 2: write sit cache */
3653 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003654 memcpy(kaddr + written_size, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003655 written_size += SUM_JOURNAL_SIZE;
3656
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003657 /* Step 3: write summary entries */
3658 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
3659 unsigned short blkoff;
3660 seg_i = CURSEG_I(sbi, i);
3661 if (sbi->ckpt->alloc_type[i] == SSR)
3662 blkoff = sbi->blocks_per_seg;
3663 else
3664 blkoff = curseg_blkoff(sbi, i);
3665
3666 for (j = 0; j < blkoff; j++) {
3667 if (!page) {
Chao Yu4d57b862018-05-30 00:20:41 +08003668 page = f2fs_grab_meta_page(sbi, blkaddr++);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003669 kaddr = (unsigned char *)page_address(page);
Chao Yu81114ba2018-04-09 20:25:06 +08003670 memset(kaddr, 0, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003671 written_size = 0;
3672 }
3673 summary = (struct f2fs_summary *)(kaddr + written_size);
3674 *summary = seg_i->sum_blk->entries[j];
3675 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003676
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003677 if (written_size + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003678 SUM_FOOTER_SIZE)
3679 continue;
3680
Chao Yue8d61a72013-10-24 15:08:28 +08003681 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003682 f2fs_put_page(page, 1);
3683 page = NULL;
3684 }
3685 }
Chao Yue8d61a72013-10-24 15:08:28 +08003686 if (page) {
3687 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003688 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08003689 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003690}
3691
3692static void write_normal_summaries(struct f2fs_sb_info *sbi,
3693 block_t blkaddr, int type)
3694{
3695 int i, end;
3696 if (IS_DATASEG(type))
3697 end = type + NR_CURSEG_DATA_TYPE;
3698 else
3699 end = type + NR_CURSEG_NODE_TYPE;
3700
Chao Yub7ad7512016-02-19 18:08:46 +08003701 for (i = type; i < end; i++)
3702 write_current_sum_page(sbi, i, blkaddr + (i - type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003703}
3704
Chao Yu4d57b862018-05-30 00:20:41 +08003705void f2fs_write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003706{
Chao Yuaaec2b12016-09-20 11:04:18 +08003707 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003708 write_compacted_summaries(sbi, start_blk);
3709 else
3710 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
3711}
3712
Chao Yu4d57b862018-05-30 00:20:41 +08003713void f2fs_write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003714{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08003715 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003716}
3717
Chao Yu4d57b862018-05-30 00:20:41 +08003718int f2fs_lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003719 unsigned int val, int alloc)
3720{
3721 int i;
3722
3723 if (type == NAT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08003724 for (i = 0; i < nats_in_cursum(journal); i++) {
3725 if (le32_to_cpu(nid_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003726 return i;
3727 }
Chao Yudfc08a12016-02-14 18:50:40 +08003728 if (alloc && __has_cursum_space(journal, 1, NAT_JOURNAL))
3729 return update_nats_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003730 } else if (type == SIT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08003731 for (i = 0; i < sits_in_cursum(journal); i++)
3732 if (le32_to_cpu(segno_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003733 return i;
Chao Yudfc08a12016-02-14 18:50:40 +08003734 if (alloc && __has_cursum_space(journal, 1, SIT_JOURNAL))
3735 return update_sits_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003736 }
3737 return -1;
3738}
3739
3740static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
3741 unsigned int segno)
3742{
Chao Yu77357302018-07-17 00:02:17 +08003743 return f2fs_get_meta_page_nofail(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003744}
3745
3746static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
3747 unsigned int start)
3748{
3749 struct sit_info *sit_i = SIT_I(sbi);
Yunlei He068c3cd2018-01-25 17:27:11 +08003750 struct page *page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003751 pgoff_t src_off, dst_off;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003752
3753 src_off = current_sit_addr(sbi, start);
3754 dst_off = next_sit_addr(sbi, src_off);
3755
Chao Yu4d57b862018-05-30 00:20:41 +08003756 page = f2fs_grab_meta_page(sbi, dst_off);
Yunlei He068c3cd2018-01-25 17:27:11 +08003757 seg_info_to_sit_page(sbi, page, start);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003758
Yunlei He068c3cd2018-01-25 17:27:11 +08003759 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003760 set_to_next_sit(sit_i, start);
3761
Yunlei He068c3cd2018-01-25 17:27:11 +08003762 return page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003763}
3764
Chao Yu184a5cd2014-09-04 18:13:01 +08003765static struct sit_entry_set *grab_sit_entry_set(void)
3766{
3767 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07003768 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08003769
3770 ses->entry_cnt = 0;
3771 INIT_LIST_HEAD(&ses->set_list);
3772 return ses;
3773}
3774
3775static void release_sit_entry_set(struct sit_entry_set *ses)
3776{
3777 list_del(&ses->set_list);
3778 kmem_cache_free(sit_entry_set_slab, ses);
3779}
3780
3781static void adjust_sit_entry_set(struct sit_entry_set *ses,
3782 struct list_head *head)
3783{
3784 struct sit_entry_set *next = ses;
3785
3786 if (list_is_last(&ses->set_list, head))
3787 return;
3788
3789 list_for_each_entry_continue(next, head, set_list)
3790 if (ses->entry_cnt <= next->entry_cnt)
3791 break;
3792
3793 list_move_tail(&ses->set_list, &next->set_list);
3794}
3795
3796static void add_sit_entry(unsigned int segno, struct list_head *head)
3797{
3798 struct sit_entry_set *ses;
3799 unsigned int start_segno = START_SEGNO(segno);
3800
3801 list_for_each_entry(ses, head, set_list) {
3802 if (ses->start_segno == start_segno) {
3803 ses->entry_cnt++;
3804 adjust_sit_entry_set(ses, head);
3805 return;
3806 }
3807 }
3808
3809 ses = grab_sit_entry_set();
3810
3811 ses->start_segno = start_segno;
3812 ses->entry_cnt++;
3813 list_add(&ses->set_list, head);
3814}
3815
3816static void add_sits_in_set(struct f2fs_sb_info *sbi)
3817{
3818 struct f2fs_sm_info *sm_info = SM_I(sbi);
3819 struct list_head *set_list = &sm_info->sit_entry_set;
3820 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08003821 unsigned int segno;
3822
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07003823 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08003824 add_sit_entry(segno, set_list);
3825}
3826
3827static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003828{
3829 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003830 struct f2fs_journal *journal = curseg->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003831 int i;
3832
Chao Yub7ad7512016-02-19 18:08:46 +08003833 down_write(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08003834 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yu184a5cd2014-09-04 18:13:01 +08003835 unsigned int segno;
3836 bool dirtied;
3837
Chao Yudfc08a12016-02-14 18:50:40 +08003838 segno = le32_to_cpu(segno_in_journal(journal, i));
Chao Yu184a5cd2014-09-04 18:13:01 +08003839 dirtied = __mark_sit_entry_dirty(sbi, segno);
3840
3841 if (!dirtied)
3842 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003843 }
Chao Yudfc08a12016-02-14 18:50:40 +08003844 update_sits_in_cursum(journal, -i);
Chao Yub7ad7512016-02-19 18:08:46 +08003845 up_write(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003846}
3847
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09003848/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003849 * CP calls this function, which flushes SIT entries including sit_journal,
3850 * and moves prefree segs to free segs.
3851 */
Chao Yu4d57b862018-05-30 00:20:41 +08003852void f2fs_flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003853{
3854 struct sit_info *sit_i = SIT_I(sbi);
3855 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
3856 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003857 struct f2fs_journal *journal = curseg->journal;
Chao Yu184a5cd2014-09-04 18:13:01 +08003858 struct sit_entry_set *ses, *tmp;
3859 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Qiuyang Sun04f0b2e2019-06-05 11:33:25 +08003860 bool to_journal = !is_sbi_flag_set(sbi, SBI_IS_RESIZEFS);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07003861 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003862
Chao Yu3d26fa62017-10-30 17:49:53 +08003863 down_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003864
Wanpeng Li2b11a742015-02-27 16:52:50 +08003865 if (!sit_i->dirty_sentries)
3866 goto out;
3867
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003868 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08003869 * add and account sit entries of dirty bitmap in sit entry
3870 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003871 */
Chao Yu184a5cd2014-09-04 18:13:01 +08003872 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003873
Chao Yu184a5cd2014-09-04 18:13:01 +08003874 /*
3875 * if there are no enough space in journal to store dirty sit
3876 * entries, remove all entries from journal and add and account
3877 * them in sit entry set.
3878 */
Qiuyang Sun04f0b2e2019-06-05 11:33:25 +08003879 if (!__has_cursum_space(journal, sit_i->dirty_sentries, SIT_JOURNAL) ||
3880 !to_journal)
Chao Yu184a5cd2014-09-04 18:13:01 +08003881 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003882
Chao Yu184a5cd2014-09-04 18:13:01 +08003883 /*
3884 * there are two steps to flush sit entries:
3885 * #1, flush sit entries to journal in current cold data summary block.
3886 * #2, flush sit entries to sit page.
3887 */
3888 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07003889 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08003890 struct f2fs_sit_block *raw_sit = NULL;
3891 unsigned int start_segno = ses->start_segno;
3892 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07003893 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08003894 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09003895
Chao Yu184a5cd2014-09-04 18:13:01 +08003896 if (to_journal &&
Chao Yudfc08a12016-02-14 18:50:40 +08003897 !__has_cursum_space(journal, ses->entry_cnt, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08003898 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003899
Chao Yub7ad7512016-02-19 18:08:46 +08003900 if (to_journal) {
3901 down_write(&curseg->journal_rwsem);
3902 } else {
Chao Yu184a5cd2014-09-04 18:13:01 +08003903 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003904 raw_sit = page_address(page);
3905 }
3906
Chao Yu184a5cd2014-09-04 18:13:01 +08003907 /* flush dirty sit entries in region of current sit set */
3908 for_each_set_bit_from(segno, bitmap, end) {
3909 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07003910
3911 se = get_seg_entry(sbi, segno);
Zhikang Zhang56b07e72018-04-09 04:28:41 +08003912#ifdef CONFIG_F2FS_CHECK_FS
3913 if (memcmp(se->cur_valid_map, se->cur_valid_map_mir,
3914 SIT_VBLOCK_MAP_SIZE))
3915 f2fs_bug_on(sbi, 1);
3916#endif
Chao Yu184a5cd2014-09-04 18:13:01 +08003917
3918 /* add discard candidates */
Chao Yuc473f1a2017-04-27 20:40:39 +08003919 if (!(cpc->reason & CP_DISCARD)) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07003920 cpc->trim_start = segno;
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08003921 add_discard_addrs(sbi, cpc, false);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07003922 }
Chao Yu184a5cd2014-09-04 18:13:01 +08003923
3924 if (to_journal) {
Chao Yu4d57b862018-05-30 00:20:41 +08003925 offset = f2fs_lookup_journal_in_cursum(journal,
Chao Yu184a5cd2014-09-04 18:13:01 +08003926 SIT_JOURNAL, segno, 1);
3927 f2fs_bug_on(sbi, offset < 0);
Chao Yudfc08a12016-02-14 18:50:40 +08003928 segno_in_journal(journal, offset) =
Chao Yu184a5cd2014-09-04 18:13:01 +08003929 cpu_to_le32(segno);
3930 seg_info_to_raw_sit(se,
Chao Yudfc08a12016-02-14 18:50:40 +08003931 &sit_in_journal(journal, offset));
Zhikang Zhang56b07e72018-04-09 04:28:41 +08003932 check_block_count(sbi, segno,
3933 &sit_in_journal(journal, offset));
Chao Yu184a5cd2014-09-04 18:13:01 +08003934 } else {
3935 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
3936 seg_info_to_raw_sit(se,
3937 &raw_sit->entries[sit_offset]);
Zhikang Zhang56b07e72018-04-09 04:28:41 +08003938 check_block_count(sbi, segno,
3939 &raw_sit->entries[sit_offset]);
Chao Yu184a5cd2014-09-04 18:13:01 +08003940 }
3941
3942 __clear_bit(segno, bitmap);
3943 sit_i->dirty_sentries--;
3944 ses->entry_cnt--;
3945 }
3946
Chao Yub7ad7512016-02-19 18:08:46 +08003947 if (to_journal)
3948 up_write(&curseg->journal_rwsem);
3949 else
Chao Yu184a5cd2014-09-04 18:13:01 +08003950 f2fs_put_page(page, 1);
3951
3952 f2fs_bug_on(sbi, ses->entry_cnt);
3953 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003954 }
Chao Yu184a5cd2014-09-04 18:13:01 +08003955
3956 f2fs_bug_on(sbi, !list_empty(head));
3957 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08003958out:
Chao Yuc473f1a2017-04-27 20:40:39 +08003959 if (cpc->reason & CP_DISCARD) {
Yunlei He650d3c42016-12-22 11:46:24 +08003960 __u64 trim_start = cpc->trim_start;
3961
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07003962 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08003963 add_discard_addrs(sbi, cpc, false);
Yunlei He650d3c42016-12-22 11:46:24 +08003964
3965 cpc->trim_start = trim_start;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07003966 }
Chao Yu3d26fa62017-10-30 17:49:53 +08003967 up_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003968
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003969 set_prefree_as_free_segments(sbi);
3970}
3971
3972static int build_sit_info(struct f2fs_sb_info *sbi)
3973{
3974 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003975 struct sit_info *sit_i;
3976 unsigned int sit_segs, start;
Chao Yu2fde3dd2019-07-26 15:41:20 +08003977 char *src_bitmap, *bitmap;
Sahitya Tummalabbf9f7d2019-08-07 19:10:32 +05303978 unsigned int bitmap_size, main_bitmap_size, sit_bitmap_size;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003979
3980 /* allocate memory for SIT information */
Chao Yuacbf0542017-11-30 19:28:17 +08003981 sit_i = f2fs_kzalloc(sbi, sizeof(struct sit_info), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003982 if (!sit_i)
3983 return -ENOMEM;
3984
3985 SM_I(sbi)->sit_info = sit_i;
3986
Kees Cook9d2a7892018-06-12 14:28:35 -07003987 sit_i->sentries =
3988 f2fs_kvzalloc(sbi, array_size(sizeof(struct seg_entry),
3989 MAIN_SEGS(sbi)),
3990 GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003991 if (!sit_i->sentries)
3992 return -ENOMEM;
3993
Sahitya Tummalabbf9f7d2019-08-07 19:10:32 +05303994 main_bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
3995 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(sbi, main_bitmap_size,
Chao Yu628b3d12017-11-30 19:28:18 +08003996 GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003997 if (!sit_i->dirty_sentries_bitmap)
3998 return -ENOMEM;
3999
Chao Yu2fde3dd2019-07-26 15:41:20 +08004000#ifdef CONFIG_F2FS_CHECK_FS
4001 bitmap_size = MAIN_SEGS(sbi) * SIT_VBLOCK_MAP_SIZE * 4;
4002#else
4003 bitmap_size = MAIN_SEGS(sbi) * SIT_VBLOCK_MAP_SIZE * 3;
4004#endif
4005 sit_i->bitmap = f2fs_kvzalloc(sbi, bitmap_size, GFP_KERNEL);
4006 if (!sit_i->bitmap)
4007 return -ENOMEM;
4008
4009 bitmap = sit_i->bitmap;
4010
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004011 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Chao Yu2fde3dd2019-07-26 15:41:20 +08004012 sit_i->sentries[start].cur_valid_map = bitmap;
4013 bitmap += SIT_VBLOCK_MAP_SIZE;
4014
4015 sit_i->sentries[start].ckpt_valid_map = bitmap;
4016 bitmap += SIT_VBLOCK_MAP_SIZE;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07004017
Chao Yu355e7892017-01-07 18:51:01 +08004018#ifdef CONFIG_F2FS_CHECK_FS
Chao Yu2fde3dd2019-07-26 15:41:20 +08004019 sit_i->sentries[start].cur_valid_map_mir = bitmap;
4020 bitmap += SIT_VBLOCK_MAP_SIZE;
Chao Yu355e7892017-01-07 18:51:01 +08004021#endif
4022
Chao Yu2fde3dd2019-07-26 15:41:20 +08004023 sit_i->sentries[start].discard_map = bitmap;
4024 bitmap += SIT_VBLOCK_MAP_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004025 }
4026
Chao Yuacbf0542017-11-30 19:28:17 +08004027 sit_i->tmp_map = f2fs_kzalloc(sbi, SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08004028 if (!sit_i->tmp_map)
4029 return -ENOMEM;
4030
Chao Yu2c70c5e2018-10-24 18:37:26 +08004031 if (__is_large_section(sbi)) {
Kees Cook9d2a7892018-06-12 14:28:35 -07004032 sit_i->sec_entries =
4033 f2fs_kvzalloc(sbi, array_size(sizeof(struct sec_entry),
4034 MAIN_SECS(sbi)),
4035 GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004036 if (!sit_i->sec_entries)
4037 return -ENOMEM;
4038 }
4039
4040 /* get information related with SIT */
4041 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
4042
4043 /* setup SIT bitmap from ckeckpoint pack */
Sahitya Tummalabbf9f7d2019-08-07 19:10:32 +05304044 sit_bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004045 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
4046
Sahitya Tummalabbf9f7d2019-08-07 19:10:32 +05304047 sit_i->sit_bitmap = kmemdup(src_bitmap, sit_bitmap_size, GFP_KERNEL);
Chao Yuae27d622017-01-07 18:52:34 +08004048 if (!sit_i->sit_bitmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004049 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004050
Chao Yuae27d622017-01-07 18:52:34 +08004051#ifdef CONFIG_F2FS_CHECK_FS
Sahitya Tummalabbf9f7d2019-08-07 19:10:32 +05304052 sit_i->sit_bitmap_mir = kmemdup(src_bitmap,
4053 sit_bitmap_size, GFP_KERNEL);
Chao Yuae27d622017-01-07 18:52:34 +08004054 if (!sit_i->sit_bitmap_mir)
4055 return -ENOMEM;
Sahitya Tummalabbf9f7d2019-08-07 19:10:32 +05304056
4057 sit_i->invalid_segmap = f2fs_kvzalloc(sbi,
4058 main_bitmap_size, GFP_KERNEL);
4059 if (!sit_i->invalid_segmap)
4060 return -ENOMEM;
Chao Yuae27d622017-01-07 18:52:34 +08004061#endif
4062
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004063 /* init SIT information */
4064 sit_i->s_ops = &default_salloc_ops;
4065
4066 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
4067 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
Jaegeuk Kimc79b7ff2016-11-14 18:20:10 -08004068 sit_i->written_valid_blocks = 0;
Sahitya Tummalabbf9f7d2019-08-07 19:10:32 +05304069 sit_i->bitmap_size = sit_bitmap_size;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004070 sit_i->dirty_sentries = 0;
4071 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
4072 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
Deepa Dinamani48fbfe52017-05-08 15:59:10 -07004073 sit_i->mounted_time = ktime_get_real_seconds();
Chao Yu3d26fa62017-10-30 17:49:53 +08004074 init_rwsem(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004075 return 0;
4076}
4077
4078static int build_free_segmap(struct f2fs_sb_info *sbi)
4079{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004080 struct free_segmap_info *free_i;
4081 unsigned int bitmap_size, sec_bitmap_size;
4082
4083 /* allocate memory for free segmap information */
Chao Yuacbf0542017-11-30 19:28:17 +08004084 free_i = f2fs_kzalloc(sbi, sizeof(struct free_segmap_info), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004085 if (!free_i)
4086 return -ENOMEM;
4087
4088 SM_I(sbi)->free_info = free_i;
4089
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004090 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Chao Yu628b3d12017-11-30 19:28:18 +08004091 free_i->free_segmap = f2fs_kvmalloc(sbi, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004092 if (!free_i->free_segmap)
4093 return -ENOMEM;
4094
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004095 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Chao Yu628b3d12017-11-30 19:28:18 +08004096 free_i->free_secmap = f2fs_kvmalloc(sbi, sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004097 if (!free_i->free_secmap)
4098 return -ENOMEM;
4099
4100 /* set all segments as dirty temporarily */
4101 memset(free_i->free_segmap, 0xff, bitmap_size);
4102 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
4103
4104 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004105 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004106 free_i->free_segments = 0;
4107 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08004108 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004109 return 0;
4110}
4111
4112static int build_curseg(struct f2fs_sb_info *sbi)
4113{
Namjae Jeon1042d602012-12-01 10:56:13 +09004114 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004115 int i;
4116
Kees Cook026f0502018-06-12 14:28:23 -07004117 array = f2fs_kzalloc(sbi, array_size(NR_CURSEG_TYPE, sizeof(*array)),
4118 GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004119 if (!array)
4120 return -ENOMEM;
4121
4122 SM_I(sbi)->curseg_array = array;
4123
4124 for (i = 0; i < NR_CURSEG_TYPE; i++) {
4125 mutex_init(&array[i].curseg_mutex);
Chao Yuacbf0542017-11-30 19:28:17 +08004126 array[i].sum_blk = f2fs_kzalloc(sbi, PAGE_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004127 if (!array[i].sum_blk)
4128 return -ENOMEM;
Chao Yub7ad7512016-02-19 18:08:46 +08004129 init_rwsem(&array[i].journal_rwsem);
Chao Yuacbf0542017-11-30 19:28:17 +08004130 array[i].journal = f2fs_kzalloc(sbi,
4131 sizeof(struct f2fs_journal), GFP_KERNEL);
Chao Yub7ad7512016-02-19 18:08:46 +08004132 if (!array[i].journal)
4133 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004134 array[i].segno = NULL_SEGNO;
4135 array[i].next_blkoff = 0;
4136 }
4137 return restore_curseg_summaries(sbi);
4138}
4139
Jaegeuk Kimc39a1b32017-12-19 19:16:34 -08004140static int build_sit_entries(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004141{
4142 struct sit_info *sit_i = SIT_I(sbi);
4143 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08004144 struct f2fs_journal *journal = curseg->journal;
Yunlei He9c094042016-09-24 12:29:18 +08004145 struct seg_entry *se;
4146 struct f2fs_sit_entry sit;
Chao Yu74de5932013-11-22 09:09:59 +08004147 int sit_blk_cnt = SIT_BLK_CNT(sbi);
4148 unsigned int i, start, end;
4149 unsigned int readed, start_blk = 0;
Jaegeuk Kimc39a1b32017-12-19 19:16:34 -08004150 int err = 0;
Jaegeuk Kim8a29c122018-04-24 21:34:05 -06004151 block_t total_node_blocks = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004152
Chao Yu74de5932013-11-22 09:09:59 +08004153 do {
Chao Yu4d57b862018-05-30 00:20:41 +08004154 readed = f2fs_ra_meta_pages(sbi, start_blk, BIO_MAX_PAGES,
Jaegeuk Kim664ba972016-10-18 11:07:45 -07004155 META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004156
Chao Yu74de5932013-11-22 09:09:59 +08004157 start = start_blk * sit_i->sents_per_block;
4158 end = (start_blk + readed) * sit_i->sents_per_block;
4159
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004160 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08004161 struct f2fs_sit_block *sit_blk;
Chao Yu74de5932013-11-22 09:09:59 +08004162 struct page *page;
4163
Yunlei He9c094042016-09-24 12:29:18 +08004164 se = &sit_i->sentries[start];
Chao Yu74de5932013-11-22 09:09:59 +08004165 page = get_current_sit_page(sbi, start);
Jaegeuk Kimedc55aa2018-09-17 17:36:06 -07004166 if (IS_ERR(page))
4167 return PTR_ERR(page);
Chao Yu74de5932013-11-22 09:09:59 +08004168 sit_blk = (struct f2fs_sit_block *)page_address(page);
4169 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
4170 f2fs_put_page(page, 1);
Chao Yud600af232016-08-19 23:13:47 +08004171
Jaegeuk Kimc39a1b32017-12-19 19:16:34 -08004172 err = check_block_count(sbi, start, &sit);
4173 if (err)
4174 return err;
Chao Yu74de5932013-11-22 09:09:59 +08004175 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kim8a29c122018-04-24 21:34:05 -06004176 if (IS_NODESEG(se->type))
4177 total_node_blocks += se->valid_blocks;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07004178
4179 /* build discard map only one time */
Chao Yu7d20c8a2018-09-04 03:52:17 +08004180 if (is_set_ckpt_flags(sbi, CP_TRIMMED_FLAG)) {
4181 memset(se->discard_map, 0xff,
4182 SIT_VBLOCK_MAP_SIZE);
4183 } else {
4184 memcpy(se->discard_map,
4185 se->cur_valid_map,
4186 SIT_VBLOCK_MAP_SIZE);
4187 sbi->discard_blks +=
4188 sbi->blocks_per_seg -
4189 se->valid_blocks;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07004190 }
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07004191
Chao Yu2c70c5e2018-10-24 18:37:26 +08004192 if (__is_large_section(sbi))
Chao Yud600af232016-08-19 23:13:47 +08004193 get_sec_entry(sbi, start)->valid_blocks +=
4194 se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004195 }
Chao Yu74de5932013-11-22 09:09:59 +08004196 start_blk += readed;
4197 } while (start_blk < sit_blk_cnt);
Chao Yud600af232016-08-19 23:13:47 +08004198
4199 down_read(&curseg->journal_rwsem);
4200 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yud600af232016-08-19 23:13:47 +08004201 unsigned int old_valid_blocks;
4202
4203 start = le32_to_cpu(segno_in_journal(journal, i));
Jaegeuk Kimb2ca3742018-04-24 15:44:16 -06004204 if (start >= MAIN_SEGS(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004205 f2fs_err(sbi, "Wrong journal entry on segno %u",
4206 start);
Chao Yu10f966b2019-06-20 11:36:14 +08004207 err = -EFSCORRUPTED;
Jaegeuk Kimb2ca3742018-04-24 15:44:16 -06004208 break;
4209 }
4210
Chao Yud600af232016-08-19 23:13:47 +08004211 se = &sit_i->sentries[start];
4212 sit = sit_in_journal(journal, i);
4213
4214 old_valid_blocks = se->valid_blocks;
Jaegeuk Kim8a29c122018-04-24 21:34:05 -06004215 if (IS_NODESEG(se->type))
4216 total_node_blocks -= old_valid_blocks;
Chao Yud600af232016-08-19 23:13:47 +08004217
Jaegeuk Kimc39a1b32017-12-19 19:16:34 -08004218 err = check_block_count(sbi, start, &sit);
4219 if (err)
4220 break;
Chao Yud600af232016-08-19 23:13:47 +08004221 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kim8a29c122018-04-24 21:34:05 -06004222 if (IS_NODESEG(se->type))
4223 total_node_blocks += se->valid_blocks;
Chao Yud600af232016-08-19 23:13:47 +08004224
Chao Yu7d20c8a2018-09-04 03:52:17 +08004225 if (is_set_ckpt_flags(sbi, CP_TRIMMED_FLAG)) {
4226 memset(se->discard_map, 0xff, SIT_VBLOCK_MAP_SIZE);
4227 } else {
4228 memcpy(se->discard_map, se->cur_valid_map,
4229 SIT_VBLOCK_MAP_SIZE);
4230 sbi->discard_blks += old_valid_blocks;
4231 sbi->discard_blks -= se->valid_blocks;
Chao Yud600af232016-08-19 23:13:47 +08004232 }
4233
Chao Yu2c70c5e2018-10-24 18:37:26 +08004234 if (__is_large_section(sbi)) {
Chao Yud600af232016-08-19 23:13:47 +08004235 get_sec_entry(sbi, start)->valid_blocks +=
Chao Yua9af3fd2018-04-25 19:38:17 +08004236 se->valid_blocks;
4237 get_sec_entry(sbi, start)->valid_blocks -=
4238 old_valid_blocks;
4239 }
Chao Yud600af232016-08-19 23:13:47 +08004240 }
4241 up_read(&curseg->journal_rwsem);
Jaegeuk Kim8a29c122018-04-24 21:34:05 -06004242
4243 if (!err && total_node_blocks != valid_node_count(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004244 f2fs_err(sbi, "SIT is corrupted node# %u vs %u",
4245 total_node_blocks, valid_node_count(sbi));
Chao Yu10f966b2019-06-20 11:36:14 +08004246 err = -EFSCORRUPTED;
Jaegeuk Kim8a29c122018-04-24 21:34:05 -06004247 }
4248
Jaegeuk Kimc39a1b32017-12-19 19:16:34 -08004249 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004250}
4251
4252static void init_free_segmap(struct f2fs_sb_info *sbi)
4253{
4254 unsigned int start;
4255 int type;
4256
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004257 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004258 struct seg_entry *sentry = get_seg_entry(sbi, start);
4259 if (!sentry->valid_blocks)
4260 __set_free(sbi, start);
Jaegeuk Kimc79b7ff2016-11-14 18:20:10 -08004261 else
4262 SIT_I(sbi)->written_valid_blocks +=
4263 sentry->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004264 }
4265
4266 /* set use the current segments */
4267 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
4268 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
4269 __set_test_and_inuse(sbi, curseg_t->segno);
4270 }
4271}
4272
4273static void init_dirty_segmap(struct f2fs_sb_info *sbi)
4274{
4275 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
4276 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004277 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004278 unsigned short valid_blocks;
4279
Namjae Jeon8736fbf2013-06-16 09:49:11 +09004280 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004281 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004282 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
4283 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004284 break;
4285 offset = segno + 1;
Jaegeuk Kim302bd342017-04-07 14:33:22 -07004286 valid_blocks = get_valid_blocks(sbi, segno, false);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07004287 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004288 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07004289 if (valid_blocks > sbi->blocks_per_seg) {
4290 f2fs_bug_on(sbi, 1);
4291 continue;
4292 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004293 mutex_lock(&dirty_i->seglist_lock);
4294 __locate_dirty_segment(sbi, segno, DIRTY);
4295 mutex_unlock(&dirty_i->seglist_lock);
4296 }
4297}
4298
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09004299static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004300{
4301 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004302 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004303
Chao Yu628b3d12017-11-30 19:28:18 +08004304 dirty_i->victim_secmap = f2fs_kvzalloc(sbi, bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09004305 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004306 return -ENOMEM;
4307 return 0;
4308}
4309
4310static int build_dirty_segmap(struct f2fs_sb_info *sbi)
4311{
4312 struct dirty_seglist_info *dirty_i;
4313 unsigned int bitmap_size, i;
4314
4315 /* allocate memory for dirty segments list information */
Chao Yuacbf0542017-11-30 19:28:17 +08004316 dirty_i = f2fs_kzalloc(sbi, sizeof(struct dirty_seglist_info),
4317 GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004318 if (!dirty_i)
4319 return -ENOMEM;
4320
4321 SM_I(sbi)->dirty_info = dirty_i;
4322 mutex_init(&dirty_i->seglist_lock);
4323
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004324 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004325
4326 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Chao Yu628b3d12017-11-30 19:28:18 +08004327 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(sbi, bitmap_size,
4328 GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004329 if (!dirty_i->dirty_segmap[i])
4330 return -ENOMEM;
4331 }
4332
4333 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09004334 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004335}
4336
Chao Yuc854f4d2019-05-25 23:07:25 +08004337static int sanity_check_curseg(struct f2fs_sb_info *sbi)
4338{
4339 int i;
4340
4341 /*
4342 * In LFS/SSR curseg, .next_blkoff should point to an unused blkaddr;
4343 * In LFS curseg, all blkaddr after .next_blkoff should be unused.
4344 */
4345 for (i = 0; i < NO_CHECK_TYPE; i++) {
4346 struct curseg_info *curseg = CURSEG_I(sbi, i);
4347 struct seg_entry *se = get_seg_entry(sbi, curseg->segno);
4348 unsigned int blkofs = curseg->next_blkoff;
4349
4350 if (f2fs_test_bit(blkofs, se->cur_valid_map))
4351 goto out;
4352
4353 if (curseg->alloc_type == SSR)
4354 continue;
4355
4356 for (blkofs += 1; blkofs < sbi->blocks_per_seg; blkofs++) {
4357 if (!f2fs_test_bit(blkofs, se->cur_valid_map))
4358 continue;
4359out:
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004360 f2fs_err(sbi,
4361 "Current segment's next free block offset is inconsistent with bitmap, logtype:%u, segno:%u, type:%u, next_blkoff:%u, blkofs:%u",
4362 i, curseg->segno, curseg->alloc_type,
4363 curseg->next_blkoff, blkofs);
Chao Yu10f966b2019-06-20 11:36:14 +08004364 return -EFSCORRUPTED;
Chao Yuc854f4d2019-05-25 23:07:25 +08004365 }
4366 }
4367 return 0;
4368}
4369
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09004370/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004371 * Update min, max modified time for cost-benefit GC algorithm
4372 */
4373static void init_min_max_mtime(struct f2fs_sb_info *sbi)
4374{
4375 struct sit_info *sit_i = SIT_I(sbi);
4376 unsigned int segno;
4377
Chao Yu3d26fa62017-10-30 17:49:53 +08004378 down_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004379
Chao Yu5ad25442018-05-15 18:59:55 +08004380 sit_i->min_mtime = ULLONG_MAX;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004381
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004382 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004383 unsigned int i;
4384 unsigned long long mtime = 0;
4385
4386 for (i = 0; i < sbi->segs_per_sec; i++)
4387 mtime += get_seg_entry(sbi, segno + i)->mtime;
4388
4389 mtime = div_u64(mtime, sbi->segs_per_sec);
4390
4391 if (sit_i->min_mtime > mtime)
4392 sit_i->min_mtime = mtime;
4393 }
Chao Yua1f72ac22018-06-04 23:20:17 +08004394 sit_i->max_mtime = get_mtime(sbi, false);
Chao Yu3d26fa62017-10-30 17:49:53 +08004395 up_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004396}
4397
Chao Yu4d57b862018-05-30 00:20:41 +08004398int f2fs_build_segment_manager(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004399{
4400 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
4401 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09004402 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004403 int err;
4404
Chao Yuacbf0542017-11-30 19:28:17 +08004405 sm_info = f2fs_kzalloc(sbi, sizeof(struct f2fs_sm_info), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004406 if (!sm_info)
4407 return -ENOMEM;
4408
4409 /* init sm info */
4410 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004411 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
4412 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
4413 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
4414 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
4415 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
4416 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
4417 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09004418 sm_info->rec_prefree_segments = sm_info->main_segments *
4419 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim44a83492016-07-13 18:23:35 -07004420 if (sm_info->rec_prefree_segments > DEF_MAX_RECLAIM_PREFREE_SEGMENTS)
4421 sm_info->rec_prefree_segments = DEF_MAX_RECLAIM_PREFREE_SEGMENTS;
4422
Jaegeuk Kim52763a42016-06-13 09:47:48 -07004423 if (!test_opt(sbi, LFS))
4424 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09004425 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07004426 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim853137c2018-08-09 17:53:34 -07004427 sm_info->min_seq_blocks = sbi->blocks_per_seg * sbi->segs_per_sec;
Jaegeuk Kimef095d12017-03-24 20:05:13 -04004428 sm_info->min_hot_blocks = DEF_MIN_HOT_BLOCKS;
Chao Yua2a12b62017-10-28 16:52:33 +08004429 sm_info->min_ssr_sections = reserved_sections(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004430
Chao Yu184a5cd2014-09-04 18:13:01 +08004431 INIT_LIST_HEAD(&sm_info->sit_entry_set);
4432
Chao Yu2b603112017-11-02 20:41:03 +08004433 init_rwsem(&sm_info->curseg_lock);
4434
Yunlei Hed4fdf8b2017-06-01 16:43:51 +08004435 if (!f2fs_readonly(sbi->sb)) {
Chao Yu4d57b862018-05-30 00:20:41 +08004436 err = f2fs_create_flush_cmd_control(sbi);
Gu Zheng2163d192014-04-27 14:21:33 +08004437 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08004438 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09004439 }
4440
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08004441 err = create_discard_cmd_control(sbi);
4442 if (err)
4443 return err;
4444
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004445 err = build_sit_info(sbi);
4446 if (err)
4447 return err;
4448 err = build_free_segmap(sbi);
4449 if (err)
4450 return err;
4451 err = build_curseg(sbi);
4452 if (err)
4453 return err;
4454
4455 /* reinit free segmap based on SIT */
Jaegeuk Kimc39a1b32017-12-19 19:16:34 -08004456 err = build_sit_entries(sbi);
4457 if (err)
4458 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004459
4460 init_free_segmap(sbi);
4461 err = build_dirty_segmap(sbi);
4462 if (err)
4463 return err;
4464
Chao Yuc854f4d2019-05-25 23:07:25 +08004465 err = sanity_check_curseg(sbi);
4466 if (err)
4467 return err;
4468
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004469 init_min_max_mtime(sbi);
4470 return 0;
4471}
4472
4473static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
4474 enum dirty_type dirty_type)
4475{
4476 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
4477
4478 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07004479 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004480 dirty_i->nr_dirty[dirty_type] = 0;
4481 mutex_unlock(&dirty_i->seglist_lock);
4482}
4483
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09004484static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004485{
4486 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07004487 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004488}
4489
4490static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
4491{
4492 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
4493 int i;
4494
4495 if (!dirty_i)
4496 return;
4497
4498 /* discard pre-free/dirty segments list */
4499 for (i = 0; i < NR_DIRTY_TYPE; i++)
4500 discard_dirty_segmap(sbi, i);
4501
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09004502 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004503 SM_I(sbi)->dirty_info = NULL;
Jaegeuk Kim52225952018-12-13 18:38:33 -08004504 kvfree(dirty_i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004505}
4506
4507static void destroy_curseg(struct f2fs_sb_info *sbi)
4508{
4509 struct curseg_info *array = SM_I(sbi)->curseg_array;
4510 int i;
4511
4512 if (!array)
4513 return;
4514 SM_I(sbi)->curseg_array = NULL;
Chao Yub7ad7512016-02-19 18:08:46 +08004515 for (i = 0; i < NR_CURSEG_TYPE; i++) {
Jaegeuk Kim52225952018-12-13 18:38:33 -08004516 kvfree(array[i].sum_blk);
4517 kvfree(array[i].journal);
Chao Yub7ad7512016-02-19 18:08:46 +08004518 }
Jaegeuk Kim52225952018-12-13 18:38:33 -08004519 kvfree(array);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004520}
4521
4522static void destroy_free_segmap(struct f2fs_sb_info *sbi)
4523{
4524 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
4525 if (!free_i)
4526 return;
4527 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07004528 kvfree(free_i->free_segmap);
4529 kvfree(free_i->free_secmap);
Jaegeuk Kim52225952018-12-13 18:38:33 -08004530 kvfree(free_i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004531}
4532
4533static void destroy_sit_info(struct f2fs_sb_info *sbi)
4534{
4535 struct sit_info *sit_i = SIT_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004536
4537 if (!sit_i)
4538 return;
4539
Chao Yu2fde3dd2019-07-26 15:41:20 +08004540 if (sit_i->sentries)
4541 kvfree(sit_i->bitmap);
Jaegeuk Kim52225952018-12-13 18:38:33 -08004542 kvfree(sit_i->tmp_map);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08004543
Jaegeuk Kim39307a82015-09-22 13:50:47 -07004544 kvfree(sit_i->sentries);
4545 kvfree(sit_i->sec_entries);
4546 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004547
4548 SM_I(sbi)->sit_info = NULL;
Jaegeuk Kim52225952018-12-13 18:38:33 -08004549 kvfree(sit_i->sit_bitmap);
Chao Yuae27d622017-01-07 18:52:34 +08004550#ifdef CONFIG_F2FS_CHECK_FS
Jaegeuk Kim52225952018-12-13 18:38:33 -08004551 kvfree(sit_i->sit_bitmap_mir);
Sahitya Tummalabbf9f7d2019-08-07 19:10:32 +05304552 kvfree(sit_i->invalid_segmap);
Chao Yuae27d622017-01-07 18:52:34 +08004553#endif
Jaegeuk Kim52225952018-12-13 18:38:33 -08004554 kvfree(sit_i);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004555}
4556
Chao Yu4d57b862018-05-30 00:20:41 +08004557void f2fs_destroy_segment_manager(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004558{
4559 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08004560
Chao Yu3b03f722013-11-06 09:12:04 +08004561 if (!sm_info)
4562 return;
Chao Yu4d57b862018-05-30 00:20:41 +08004563 f2fs_destroy_flush_cmd_control(sbi, true);
Chao Yuf0994052017-03-27 18:14:04 +08004564 destroy_discard_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004565 destroy_dirty_segmap(sbi);
4566 destroy_curseg(sbi);
4567 destroy_free_segmap(sbi);
4568 destroy_sit_info(sbi);
4569 sbi->sm_info = NULL;
Jaegeuk Kim52225952018-12-13 18:38:33 -08004570 kvfree(sm_info);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004571}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004572
Chao Yu4d57b862018-05-30 00:20:41 +08004573int __init f2fs_create_segment_manager_caches(void)
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004574{
4575 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08004576 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004577 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08004578 goto fail;
4579
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08004580 discard_cmd_slab = f2fs_kmem_cache_create("discard_cmd",
4581 sizeof(struct discard_cmd));
4582 if (!discard_cmd_slab)
Chao Yu6ab2a302016-09-05 12:28:26 +08004583 goto destroy_discard_entry;
Chao Yu275b66b2016-08-29 23:58:34 +08004584
Chao Yu184a5cd2014-09-04 18:13:01 +08004585 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09004586 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08004587 if (!sit_entry_set_slab)
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08004588 goto destroy_discard_cmd;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07004589
4590 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
4591 sizeof(struct inmem_pages));
4592 if (!inmem_entry_slab)
4593 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004594 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08004595
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07004596destroy_sit_entry_set:
4597 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08004598destroy_discard_cmd:
4599 kmem_cache_destroy(discard_cmd_slab);
Chao Yu6ab2a302016-09-05 12:28:26 +08004600destroy_discard_entry:
Chao Yu184a5cd2014-09-04 18:13:01 +08004601 kmem_cache_destroy(discard_entry_slab);
4602fail:
4603 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004604}
4605
Chao Yu4d57b862018-05-30 00:20:41 +08004606void f2fs_destroy_segment_manager_caches(void)
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004607{
Chao Yu184a5cd2014-09-04 18:13:01 +08004608 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08004609 kmem_cache_destroy(discard_cmd_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004610 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07004611 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004612}