blob: 30779aaa9dbae57c56077cc6948c969b4d9d937e [file] [log] [blame]
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002 * fs/f2fs/segment.c
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/fs.h>
12#include <linux/f2fs_fs.h>
13#include <linux/bio.h>
14#include <linux/blkdev.h>
Geert Uytterhoeven690e4a32012-12-19 22:19:30 +010015#include <linux/prefetch.h>
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +090016#include <linux/kthread.h>
Chao Yu74de5932013-11-22 09:09:59 +080017#include <linux/swap.h>
Jaegeuk Kim60b99b42015-10-05 14:49:57 -070018#include <linux/timer.h>
Jaegeuk Kim1d7be272017-05-17 10:36:58 -070019#include <linux/freezer.h>
Jaegeuk Kim1eb1ef42017-09-09 12:03:23 -070020#include <linux/sched/signal.h>
Jaegeuk Kim351df4b2012-11-02 17:09:16 +090021
22#include "f2fs.h"
23#include "segment.h"
24#include "node.h"
Jaegeuk Kim5f656542017-08-15 21:27:19 -070025#include "gc.h"
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -080026#include "trace.h"
Namjae Jeon6ec178d2013-04-23 17:51:43 +090027#include <trace/events/f2fs.h>
Jaegeuk Kim351df4b2012-11-02 17:09:16 +090028
Changman Lee9a7f1432013-11-15 10:42:51 +090029#define __reverse_ffz(x) __reverse_ffs(~(x))
30
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090031static struct kmem_cache *discard_entry_slab;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -080032static struct kmem_cache *discard_cmd_slab;
Chao Yu184a5cd2014-09-04 18:13:01 +080033static struct kmem_cache *sit_entry_set_slab;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -070034static struct kmem_cache *inmem_entry_slab;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +090035
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070036static unsigned long __reverse_ulong(unsigned char *str)
37{
38 unsigned long tmp = 0;
39 int shift = 24, idx = 0;
40
41#if BITS_PER_LONG == 64
42 shift = 56;
43#endif
44 while (shift >= 0) {
45 tmp |= (unsigned long)str[idx++] << shift;
46 shift -= BITS_PER_BYTE;
47 }
48 return tmp;
49}
50
Changman Lee9a7f1432013-11-15 10:42:51 +090051/*
52 * __reverse_ffs is copied from include/asm-generic/bitops/__ffs.h since
53 * MSB and LSB are reversed in a byte by f2fs_set_bit.
54 */
55static inline unsigned long __reverse_ffs(unsigned long word)
56{
57 int num = 0;
58
59#if BITS_PER_LONG == 64
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070060 if ((word & 0xffffffff00000000UL) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090061 num += 32;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070062 else
Changman Lee9a7f1432013-11-15 10:42:51 +090063 word >>= 32;
Changman Lee9a7f1432013-11-15 10:42:51 +090064#endif
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070065 if ((word & 0xffff0000) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090066 num += 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070067 else
Changman Lee9a7f1432013-11-15 10:42:51 +090068 word >>= 16;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070069
70 if ((word & 0xff00) == 0)
Changman Lee9a7f1432013-11-15 10:42:51 +090071 num += 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070072 else
Changman Lee9a7f1432013-11-15 10:42:51 +090073 word >>= 8;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070074
Changman Lee9a7f1432013-11-15 10:42:51 +090075 if ((word & 0xf0) == 0)
76 num += 4;
77 else
78 word >>= 4;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070079
Changman Lee9a7f1432013-11-15 10:42:51 +090080 if ((word & 0xc) == 0)
81 num += 2;
82 else
83 word >>= 2;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070084
Changman Lee9a7f1432013-11-15 10:42:51 +090085 if ((word & 0x2) == 0)
86 num += 1;
87 return num;
88}
89
90/*
arter97e1c42042014-08-06 23:22:50 +090091 * __find_rev_next(_zero)_bit is copied from lib/find_next_bit.c because
Changman Lee9a7f1432013-11-15 10:42:51 +090092 * f2fs_set_bit makes MSB and LSB reversed in a byte.
Fan Li692223d2015-11-12 08:43:04 +080093 * @size must be integral times of unsigned long.
Changman Lee9a7f1432013-11-15 10:42:51 +090094 * Example:
Jaegeuk Kimf96999c2015-10-20 15:17:19 -070095 * MSB <--> LSB
96 * f2fs_set_bit(0, bitmap) => 1000 0000
97 * f2fs_set_bit(7, bitmap) => 0000 0001
Changman Lee9a7f1432013-11-15 10:42:51 +090098 */
99static unsigned long __find_rev_next_bit(const unsigned long *addr,
100 unsigned long size, unsigned long offset)
101{
102 const unsigned long *p = addr + BIT_WORD(offset);
Fan Li692223d2015-11-12 08:43:04 +0800103 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900104 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900105
106 if (offset >= size)
107 return size;
108
Fan Li692223d2015-11-12 08:43:04 +0800109 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900110 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900111
Fan Li692223d2015-11-12 08:43:04 +0800112 while (1) {
113 if (*p == 0)
114 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700115
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700116 tmp = __reverse_ulong((unsigned char *)p);
Fan Li692223d2015-11-12 08:43:04 +0800117
118 tmp &= ~0UL >> offset;
119 if (size < BITS_PER_LONG)
120 tmp &= (~0UL << (BITS_PER_LONG - size));
Changman Lee9a7f1432013-11-15 10:42:51 +0900121 if (tmp)
Fan Li692223d2015-11-12 08:43:04 +0800122 goto found;
123pass:
124 if (size <= BITS_PER_LONG)
125 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900126 size -= BITS_PER_LONG;
Fan Li692223d2015-11-12 08:43:04 +0800127 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700128 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900129 }
Fan Li692223d2015-11-12 08:43:04 +0800130 return result;
131found:
132 return result - size + __reverse_ffs(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900133}
134
135static unsigned long __find_rev_next_zero_bit(const unsigned long *addr,
136 unsigned long size, unsigned long offset)
137{
138 const unsigned long *p = addr + BIT_WORD(offset);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800139 unsigned long result = size;
Changman Lee9a7f1432013-11-15 10:42:51 +0900140 unsigned long tmp;
Changman Lee9a7f1432013-11-15 10:42:51 +0900141
142 if (offset >= size)
143 return size;
144
Jaegeuk Kim80609442015-12-04 16:51:13 -0800145 size -= (offset & ~(BITS_PER_LONG - 1));
Changman Lee9a7f1432013-11-15 10:42:51 +0900146 offset %= BITS_PER_LONG;
Changman Lee9a7f1432013-11-15 10:42:51 +0900147
Jaegeuk Kim80609442015-12-04 16:51:13 -0800148 while (1) {
149 if (*p == ~0UL)
150 goto pass;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700151
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700152 tmp = __reverse_ulong((unsigned char *)p);
Jaegeuk Kim80609442015-12-04 16:51:13 -0800153
154 if (offset)
155 tmp |= ~0UL << (BITS_PER_LONG - offset);
156 if (size < BITS_PER_LONG)
157 tmp |= ~0UL >> size;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700158 if (tmp != ~0UL)
Jaegeuk Kim80609442015-12-04 16:51:13 -0800159 goto found;
160pass:
161 if (size <= BITS_PER_LONG)
162 break;
Changman Lee9a7f1432013-11-15 10:42:51 +0900163 size -= BITS_PER_LONG;
Jaegeuk Kim80609442015-12-04 16:51:13 -0800164 offset = 0;
Jaegeuk Kimf96999c2015-10-20 15:17:19 -0700165 p++;
Changman Lee9a7f1432013-11-15 10:42:51 +0900166 }
Jaegeuk Kim80609442015-12-04 16:51:13 -0800167 return result;
168found:
169 return result - size + __reverse_ffz(tmp);
Changman Lee9a7f1432013-11-15 10:42:51 +0900170}
171
Chao Yu4d57b862018-05-30 00:20:41 +0800172bool f2fs_need_SSR(struct f2fs_sb_info *sbi)
Jaegeuk Kimb3a97a22017-09-09 11:11:04 -0700173{
174 int node_secs = get_blocktype_secs(sbi, F2FS_DIRTY_NODES);
175 int dent_secs = get_blocktype_secs(sbi, F2FS_DIRTY_DENTS);
176 int imeta_secs = get_blocktype_secs(sbi, F2FS_DIRTY_IMETA);
177
178 if (test_opt(sbi, LFS))
179 return false;
Jaegeuk Kim5b0e9532018-05-07 14:22:40 -0700180 if (sbi->gc_mode == GC_URGENT)
Jaegeuk Kimb3a97a22017-09-09 11:11:04 -0700181 return true;
182
183 return free_sections(sbi) <= (node_secs + 2 * dent_secs + imeta_secs +
Chao Yua2a12b62017-10-28 16:52:33 +0800184 SM_I(sbi)->min_ssr_sections + reserved_sections(sbi));
Jaegeuk Kimb3a97a22017-09-09 11:11:04 -0700185}
186
Chao Yu4d57b862018-05-30 00:20:41 +0800187void f2fs_register_inmem_page(struct inode *inode, struct page *page)
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700188{
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700189 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700190 struct f2fs_inode_info *fi = F2FS_I(inode);
191 struct inmem_pages *new;
Jaegeuk Kim9be32d72014-12-05 10:39:49 -0800192
Jaegeuk Kim9e4ded32014-12-17 19:58:58 -0800193 f2fs_trace_pid(page);
Jaegeuk Kim0722b102014-12-05 11:58:02 -0800194
Chao Yudecd36b2015-08-07 18:42:09 +0800195 set_page_private(page, (unsigned long)ATOMIC_WRITTEN_PAGE);
196 SetPagePrivate(page);
197
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700198 new = f2fs_kmem_cache_alloc(inmem_entry_slab, GFP_NOFS);
199
200 /* add atomic page indices to the list */
201 new->page = page;
202 INIT_LIST_HEAD(&new->list);
Chao Yudecd36b2015-08-07 18:42:09 +0800203
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700204 /* increase reference count with clean state */
205 mutex_lock(&fi->inmem_lock);
206 get_page(page);
207 list_add_tail(&new->list, &fi->inmem_pages);
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700208 spin_lock(&sbi->inode_lock[ATOMIC_FILE]);
209 if (list_empty(&fi->inmem_ilist))
210 list_add_tail(&fi->inmem_ilist, &sbi->inode_list[ATOMIC_FILE]);
211 spin_unlock(&sbi->inode_lock[ATOMIC_FILE]);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800212 inc_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700213 mutex_unlock(&fi->inmem_lock);
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700214
215 trace_f2fs_register_inmem_page(page, INMEM);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700216}
217
Chao Yu28bc1062016-02-06 14:40:34 +0800218static int __revoke_inmem_pages(struct inode *inode,
219 struct list_head *head, bool drop, bool recover)
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700220{
Chao Yu28bc1062016-02-06 14:40:34 +0800221 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700222 struct inmem_pages *cur, *tmp;
Chao Yu28bc1062016-02-06 14:40:34 +0800223 int err = 0;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700224
Chao Yu29b96b52016-02-06 14:38:29 +0800225 list_for_each_entry_safe(cur, tmp, head, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800226 struct page *page = cur->page;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700227
Chao Yu28bc1062016-02-06 14:40:34 +0800228 if (drop)
229 trace_f2fs_commit_inmem_page(page, INMEM_DROP);
230
231 lock_page(page);
232
Chao Yue5e57322018-04-23 10:36:13 +0800233 f2fs_wait_on_page_writeback(page, DATA, true);
234
Chao Yu28bc1062016-02-06 14:40:34 +0800235 if (recover) {
236 struct dnode_of_data dn;
237 struct node_info ni;
238
239 trace_f2fs_commit_inmem_page(page, INMEM_REVOKE);
Chao Yu7f2b4e82017-08-08 19:09:08 +0800240retry:
Chao Yu28bc1062016-02-06 14:40:34 +0800241 set_new_dnode(&dn, inode, NULL, NULL, 0);
Chao Yu4d57b862018-05-30 00:20:41 +0800242 err = f2fs_get_dnode_of_data(&dn, page->index,
243 LOOKUP_NODE);
Chao Yu7f2b4e82017-08-08 19:09:08 +0800244 if (err) {
245 if (err == -ENOMEM) {
246 congestion_wait(BLK_RW_ASYNC, HZ/50);
247 cond_resched();
248 goto retry;
249 }
Chao Yu28bc1062016-02-06 14:40:34 +0800250 err = -EAGAIN;
251 goto next;
252 }
Chao Yu77357302018-07-17 00:02:17 +0800253
254 err = f2fs_get_node_info(sbi, dn.nid, &ni);
255 if (err) {
256 f2fs_put_dnode(&dn);
257 return err;
258 }
259
Daeho Jeongf1d25642018-01-10 16:49:10 +0900260 if (cur->old_addr == NEW_ADDR) {
Chao Yu4d57b862018-05-30 00:20:41 +0800261 f2fs_invalidate_blocks(sbi, dn.data_blkaddr);
Daeho Jeongf1d25642018-01-10 16:49:10 +0900262 f2fs_update_data_blkaddr(&dn, NEW_ADDR);
263 } else
264 f2fs_replace_block(sbi, &dn, dn.data_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +0800265 cur->old_addr, ni.version, true, true);
266 f2fs_put_dnode(&dn);
267 }
268next:
Jaegeuk Kim63c52d72016-04-12 14:11:03 -0700269 /* we don't need to invalidate this in the sccessful status */
270 if (drop || recover)
271 ClearPageUptodate(page);
Chao Yu28bc1062016-02-06 14:40:34 +0800272 set_page_private(page, 0);
Chao Yuc81ced02016-04-29 20:13:36 +0800273 ClearPagePrivate(page);
Chao Yu28bc1062016-02-06 14:40:34 +0800274 f2fs_put_page(page, 1);
Chao Yudecd36b2015-08-07 18:42:09 +0800275
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700276 list_del(&cur->list);
277 kmem_cache_free(inmem_entry_slab, cur);
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800278 dec_page_count(F2FS_I_SB(inode), F2FS_INMEM_PAGES);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700279 }
Chao Yu28bc1062016-02-06 14:40:34 +0800280 return err;
Chao Yu29b96b52016-02-06 14:38:29 +0800281}
282
Chao Yu4d57b862018-05-30 00:20:41 +0800283void f2fs_drop_inmem_pages_all(struct f2fs_sb_info *sbi, bool gc_failure)
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700284{
285 struct list_head *head = &sbi->inode_list[ATOMIC_FILE];
286 struct inode *inode;
287 struct f2fs_inode_info *fi;
288next:
289 spin_lock(&sbi->inode_lock[ATOMIC_FILE]);
290 if (list_empty(head)) {
291 spin_unlock(&sbi->inode_lock[ATOMIC_FILE]);
292 return;
293 }
294 fi = list_first_entry(head, struct f2fs_inode_info, inmem_ilist);
295 inode = igrab(&fi->vfs_inode);
296 spin_unlock(&sbi->inode_lock[ATOMIC_FILE]);
297
298 if (inode) {
Chao Yu2ef79ec2018-05-07 20:28:54 +0800299 if (gc_failure) {
300 if (fi->i_gc_failures[GC_FAILURE_ATOMIC])
301 goto drop;
302 goto skip;
303 }
304drop:
305 set_inode_flag(inode, FI_ATOMIC_REVOKE_REQUEST);
Chao Yu4d57b862018-05-30 00:20:41 +0800306 f2fs_drop_inmem_pages(inode);
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700307 iput(inode);
308 }
Chao Yu2ef79ec2018-05-07 20:28:54 +0800309skip:
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700310 congestion_wait(BLK_RW_ASYNC, HZ/50);
311 cond_resched();
312 goto next;
313}
314
Chao Yu4d57b862018-05-30 00:20:41 +0800315void f2fs_drop_inmem_pages(struct inode *inode)
Chao Yu29b96b52016-02-06 14:38:29 +0800316{
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700317 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Chao Yu29b96b52016-02-06 14:38:29 +0800318 struct f2fs_inode_info *fi = F2FS_I(inode);
319
320 mutex_lock(&fi->inmem_lock);
Chao Yu28bc1062016-02-06 14:40:34 +0800321 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700322 spin_lock(&sbi->inode_lock[ATOMIC_FILE]);
323 if (!list_empty(&fi->inmem_ilist))
324 list_del_init(&fi->inmem_ilist);
325 spin_unlock(&sbi->inode_lock[ATOMIC_FILE]);
Chao Yu29b96b52016-02-06 14:38:29 +0800326 mutex_unlock(&fi->inmem_lock);
Chao Yu5fe45742017-01-07 18:50:26 +0800327
328 clear_inode_flag(inode, FI_ATOMIC_FILE);
Chao Yu2ef79ec2018-05-07 20:28:54 +0800329 fi->i_gc_failures[GC_FAILURE_ATOMIC] = 0;
Chao Yu5fe45742017-01-07 18:50:26 +0800330 stat_dec_atomic_write(inode);
Chao Yu29b96b52016-02-06 14:38:29 +0800331}
332
Chao Yu4d57b862018-05-30 00:20:41 +0800333void f2fs_drop_inmem_page(struct inode *inode, struct page *page)
Jaegeuk Kim8c242db2017-03-17 09:55:52 +0800334{
335 struct f2fs_inode_info *fi = F2FS_I(inode);
336 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
337 struct list_head *head = &fi->inmem_pages;
338 struct inmem_pages *cur = NULL;
339
340 f2fs_bug_on(sbi, !IS_ATOMIC_WRITTEN_PAGE(page));
341
342 mutex_lock(&fi->inmem_lock);
343 list_for_each_entry(cur, head, list) {
344 if (cur->page == page)
345 break;
346 }
347
Sheng Yongd0891e82018-04-17 17:12:27 +0800348 f2fs_bug_on(sbi, list_empty(head) || cur->page != page);
Jaegeuk Kim8c242db2017-03-17 09:55:52 +0800349 list_del(&cur->list);
350 mutex_unlock(&fi->inmem_lock);
351
352 dec_page_count(sbi, F2FS_INMEM_PAGES);
353 kmem_cache_free(inmem_entry_slab, cur);
354
355 ClearPageUptodate(page);
356 set_page_private(page, 0);
357 ClearPagePrivate(page);
358 f2fs_put_page(page, 0);
359
360 trace_f2fs_commit_inmem_page(page, INMEM_INVALIDATE);
361}
362
Chao Yu4d57b862018-05-30 00:20:41 +0800363static int __f2fs_commit_inmem_pages(struct inode *inode)
Chao Yu29b96b52016-02-06 14:38:29 +0800364{
365 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
366 struct f2fs_inode_info *fi = F2FS_I(inode);
367 struct inmem_pages *cur, *tmp;
368 struct f2fs_io_info fio = {
369 .sbi = sbi,
Chao Yu39d787b2017-09-29 13:59:38 +0800370 .ino = inode->i_ino,
Chao Yu29b96b52016-02-06 14:38:29 +0800371 .type = DATA,
Mike Christie04d328d2016-06-05 14:31:55 -0500372 .op = REQ_OP_WRITE,
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600373 .op_flags = REQ_SYNC | REQ_PRIO,
Chao Yub0af6d42017-08-02 23:21:48 +0800374 .io_type = FS_DATA_IO,
Chao Yu29b96b52016-02-06 14:38:29 +0800375 };
Chao Yucf52b272018-04-23 10:36:14 +0800376 struct list_head revoke_list;
Jaegeuk Kim942fd312017-02-01 16:51:22 -0800377 pgoff_t last_idx = ULONG_MAX;
Chao Yu29b96b52016-02-06 14:38:29 +0800378 int err = 0;
379
Chao Yucf52b272018-04-23 10:36:14 +0800380 INIT_LIST_HEAD(&revoke_list);
381
Chao Yu29b96b52016-02-06 14:38:29 +0800382 list_for_each_entry_safe(cur, tmp, &fi->inmem_pages, list) {
Chao Yu28bc1062016-02-06 14:40:34 +0800383 struct page *page = cur->page;
384
385 lock_page(page);
386 if (page->mapping == inode->i_mapping) {
387 trace_f2fs_commit_inmem_page(page, INMEM);
388
389 set_page_dirty(page);
390 f2fs_wait_on_page_writeback(page, DATA, true);
Chao Yu933439c2016-10-11 22:57:01 +0800391 if (clear_page_dirty_for_io(page)) {
Chao Yu29b96b52016-02-06 14:38:29 +0800392 inode_dec_dirty_pages(inode);
Chao Yu4d57b862018-05-30 00:20:41 +0800393 f2fs_remove_dirty_inode(inode);
Chao Yu933439c2016-10-11 22:57:01 +0800394 }
Jaegeuk Kim640cc182017-07-19 10:59:55 -0700395retry:
Chao Yu28bc1062016-02-06 14:40:34 +0800396 fio.page = page;
Hou Pengyange959c8f2017-04-25 12:45:13 +0000397 fio.old_blkaddr = NULL_ADDR;
Jaegeuk Kim4d978072017-04-26 11:11:12 -0700398 fio.encrypted_page = NULL;
Jaegeuk Kimcc156202017-05-12 13:51:34 -0700399 fio.need_lock = LOCK_DONE;
Chao Yu4d57b862018-05-30 00:20:41 +0800400 err = f2fs_do_write_data_page(&fio);
Chao Yu29b96b52016-02-06 14:38:29 +0800401 if (err) {
Jaegeuk Kim640cc182017-07-19 10:59:55 -0700402 if (err == -ENOMEM) {
403 congestion_wait(BLK_RW_ASYNC, HZ/50);
404 cond_resched();
405 goto retry;
406 }
Chao Yu28bc1062016-02-06 14:40:34 +0800407 unlock_page(page);
Chao Yu29b96b52016-02-06 14:38:29 +0800408 break;
409 }
Chao Yu28bc1062016-02-06 14:40:34 +0800410 /* record old blkaddr for revoking */
411 cur->old_addr = fio.old_blkaddr;
Jaegeuk Kim942fd312017-02-01 16:51:22 -0800412 last_idx = page->index;
Chao Yu29b96b52016-02-06 14:38:29 +0800413 }
Chao Yu28bc1062016-02-06 14:40:34 +0800414 unlock_page(page);
Chao Yucf52b272018-04-23 10:36:14 +0800415 list_move_tail(&cur->list, &revoke_list);
Chao Yu29b96b52016-02-06 14:38:29 +0800416 }
417
Jaegeuk Kim942fd312017-02-01 16:51:22 -0800418 if (last_idx != ULONG_MAX)
Jaegeuk Kimb9109b02017-05-10 11:28:38 -0700419 f2fs_submit_merged_write_cond(sbi, inode, 0, last_idx, DATA);
Chao Yu28bc1062016-02-06 14:40:34 +0800420
Chao Yu28bc1062016-02-06 14:40:34 +0800421 if (err) {
Chao Yu28bc1062016-02-06 14:40:34 +0800422 /*
423 * try to revoke all committed pages, but still we could fail
424 * due to no memory or other reason, if that happened, EAGAIN
425 * will be returned, which means in such case, transaction is
426 * already not integrity, caller should use journal to do the
427 * recovery or rewrite & commit last transaction. For other
428 * error number, revoking was done by filesystem itself.
429 */
Chao Yucf52b272018-04-23 10:36:14 +0800430 err = __revoke_inmem_pages(inode, &revoke_list, false, true);
Chao Yu28bc1062016-02-06 14:40:34 +0800431
432 /* drop all uncommitted pages */
433 __revoke_inmem_pages(inode, &fi->inmem_pages, true, false);
Chao Yucf52b272018-04-23 10:36:14 +0800434 } else {
435 __revoke_inmem_pages(inode, &revoke_list, false, false);
Chao Yu28bc1062016-02-06 14:40:34 +0800436 }
Chao Yucf52b272018-04-23 10:36:14 +0800437
438 return err;
439}
440
Chao Yu4d57b862018-05-30 00:20:41 +0800441int f2fs_commit_inmem_pages(struct inode *inode)
Chao Yucf52b272018-04-23 10:36:14 +0800442{
443 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
444 struct f2fs_inode_info *fi = F2FS_I(inode);
445 int err;
446
447 f2fs_balance_fs(sbi, true);
Chao Yucf52b272018-04-23 10:36:14 +0800448
Jaegeuk Kim6f8d4452018-07-25 12:11:56 +0900449 down_write(&fi->i_gc_rwsem[WRITE]);
450
451 f2fs_lock_op(sbi);
Chao Yucf52b272018-04-23 10:36:14 +0800452 set_inode_flag(inode, FI_ATOMIC_COMMIT);
453
454 mutex_lock(&fi->inmem_lock);
Chao Yu4d57b862018-05-30 00:20:41 +0800455 err = __f2fs_commit_inmem_pages(inode);
Chao Yucf52b272018-04-23 10:36:14 +0800456
Jaegeuk Kim57864ae2017-10-18 19:05:57 -0700457 spin_lock(&sbi->inode_lock[ATOMIC_FILE]);
458 if (!list_empty(&fi->inmem_ilist))
459 list_del_init(&fi->inmem_ilist);
460 spin_unlock(&sbi->inode_lock[ATOMIC_FILE]);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700461 mutex_unlock(&fi->inmem_lock);
462
Chao Yu5fe45742017-01-07 18:50:26 +0800463 clear_inode_flag(inode, FI_ATOMIC_COMMIT);
464
Chao Yu29b96b52016-02-06 14:38:29 +0800465 f2fs_unlock_op(sbi);
Jaegeuk Kim6f8d4452018-07-25 12:11:56 +0900466 up_write(&fi->i_gc_rwsem[WRITE]);
467
Jaegeuk Kimedb27de2015-07-25 00:52:52 -0700468 return err;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700469}
470
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900471/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900472 * This function balances dirty node and dentry pages.
473 * In addition, it controls garbage collection.
474 */
Jaegeuk Kim2c4db1a2016-01-07 14:15:04 -0800475void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900476{
Chao Yu55523512017-02-25 11:08:28 +0800477 if (time_to_inject(sbi, FAULT_CHECKPOINT)) {
478 f2fs_show_injection_info(FAULT_CHECKPOINT);
Chao Yu0f348022016-09-26 19:45:55 +0800479 f2fs_stop_checkpoint(sbi, false);
Chao Yu55523512017-02-25 11:08:28 +0800480 }
Chao Yu0f348022016-09-26 19:45:55 +0800481
Jaegeuk Kime589c2c2016-06-02 15:24:24 -0700482 /* balance_fs_bg is able to be pending */
Jaegeuk Kima7881892017-04-20 13:51:57 -0700483 if (need && excess_cached_nats(sbi))
Jaegeuk Kime589c2c2016-06-02 15:24:24 -0700484 f2fs_balance_fs_bg(sbi);
485
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900486 /*
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900487 * We should do GC or end up with checkpoint, if there are so many dirty
488 * dir/node pages without enough free segments.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900489 */
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700490 if (has_not_enough_free_secs(sbi, 0, 0)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900491 mutex_lock(&sbi->gc_mutex);
Jaegeuk Kime066b832017-04-13 15:17:00 -0700492 f2fs_gc(sbi, false, false, NULL_SEGNO);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900493 }
494}
495
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900496void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
497{
Chao Yu64c74a72018-05-26 18:03:34 +0800498 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
499 return;
500
Chao Yu1dcc3362015-02-05 17:57:31 +0800501 /* try to shrink extent cache when there is no enough memory */
Chao Yu4d57b862018-05-30 00:20:41 +0800502 if (!f2fs_available_free_memory(sbi, EXTENT_CACHE))
Jaegeuk Kim554df792015-06-19 13:41:23 -0700503 f2fs_shrink_extent_tree(sbi, EXTENT_CACHE_SHRINK_NUMBER);
Chao Yu1dcc3362015-02-05 17:57:31 +0800504
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700505 /* check the # of cached NAT entries */
Chao Yu4d57b862018-05-30 00:20:41 +0800506 if (!f2fs_available_free_memory(sbi, NAT_ENTRIES))
507 f2fs_try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK);
Jaegeuk Kim1b38dc82015-06-19 15:36:07 -0700508
Chao Yu4d57b862018-05-30 00:20:41 +0800509 if (!f2fs_available_free_memory(sbi, FREE_NIDS))
510 f2fs_try_to_free_nids(sbi, MAX_FREE_NIDS);
Jaegeuk Kimad4edb82016-06-16 16:41:49 -0700511 else
Chao Yu4d57b862018-05-30 00:20:41 +0800512 f2fs_build_free_nids(sbi, false, false);
Chao Yu31696582015-07-28 18:33:46 +0800513
Chao Yufd8c8ca2018-07-25 19:16:21 +0800514 if (!is_idle(sbi) &&
515 (!excess_dirty_nats(sbi) && !excess_dirty_nodes(sbi)))
Jaegeuk Kimf455c8a2016-12-05 11:37:14 -0800516 return;
Jaegeuk Kime5e7ea32014-11-06 15:24:46 -0800517
Jaegeuk Kim88a70a62014-12-10 15:20:48 -0800518 /* checkpoint is the only way to shrink partial cached entries */
Chao Yu4d57b862018-05-30 00:20:41 +0800519 if (!f2fs_available_free_memory(sbi, NAT_ENTRIES) ||
520 !f2fs_available_free_memory(sbi, INO_ENTRIES) ||
Chao Yu7d768d22016-01-18 18:31:18 +0800521 excess_prefree_segs(sbi) ||
522 excess_dirty_nats(sbi) ||
Chao Yufd8c8ca2018-07-25 19:16:21 +0800523 excess_dirty_nodes(sbi) ||
Jaegeuk Kimf455c8a2016-12-05 11:37:14 -0800524 f2fs_time_over(sbi, CP_TIME)) {
Chao Yue9f5b8b2016-02-14 18:54:33 +0800525 if (test_opt(sbi, DATA_FLUSH)) {
526 struct blk_plug plug;
527
528 blk_start_plug(&plug);
Chao Yu4d57b862018-05-30 00:20:41 +0800529 f2fs_sync_dirty_inodes(sbi, FILE_INODE);
Chao Yue9f5b8b2016-02-14 18:54:33 +0800530 blk_finish_plug(&plug);
531 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900532 f2fs_sync_fs(sbi->sb, true);
Jaegeuk Kim42190d22016-01-09 13:45:17 -0800533 stat_inc_bg_cp_count(sbi->stat_info);
Chao Yu36b35a02015-12-17 17:13:28 +0800534 }
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900535}
536
Kinglong Mee20fda56b2017-03-04 22:13:10 +0800537static int __submit_flush_wait(struct f2fs_sb_info *sbi,
538 struct block_device *bdev)
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700539{
Chao Yud62fe972017-10-28 16:52:31 +0800540 struct bio *bio = f2fs_bio_alloc(sbi, 0, true);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700541 int ret;
542
Jan Kara3adc5fcb2017-05-02 17:03:47 +0200543 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC | REQ_PREFLUSH;
Christoph Hellwig74d46992017-08-23 19:10:32 +0200544 bio_set_dev(bio, bdev);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700545 ret = submit_bio_wait(bio);
546 bio_put(bio);
Kinglong Mee20fda56b2017-03-04 22:13:10 +0800547
548 trace_f2fs_issue_flush(bdev, test_opt(sbi, NOBARRIER),
549 test_opt(sbi, FLUSH_MERGE), ret);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700550 return ret;
551}
552
Chao Yu39d787b2017-09-29 13:59:38 +0800553static int submit_flush_wait(struct f2fs_sb_info *sbi, nid_t ino)
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700554{
Chao Yu39d787b2017-09-29 13:59:38 +0800555 int ret = 0;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700556 int i;
557
Chao Yu39d787b2017-09-29 13:59:38 +0800558 if (!sbi->s_ndevs)
559 return __submit_flush_wait(sbi, sbi->sb->s_bdev);
Kinglong Mee20fda56b2017-03-04 22:13:10 +0800560
Chao Yu39d787b2017-09-29 13:59:38 +0800561 for (i = 0; i < sbi->s_ndevs; i++) {
Chao Yu4d57b862018-05-30 00:20:41 +0800562 if (!f2fs_is_dirty_device(sbi, ino, i, FLUSH_INO))
Chao Yu39d787b2017-09-29 13:59:38 +0800563 continue;
Kinglong Mee20fda56b2017-03-04 22:13:10 +0800564 ret = __submit_flush_wait(sbi, FDEV(i).bdev);
565 if (ret)
566 break;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -0700567 }
568 return ret;
569}
570
Gu Zheng2163d192014-04-27 14:21:33 +0800571static int issue_flush_thread(void *data)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900572{
573 struct f2fs_sb_info *sbi = data;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800574 struct flush_cmd_control *fcc = SM_I(sbi)->fcc_info;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800575 wait_queue_head_t *q = &fcc->flush_wait_queue;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900576repeat:
577 if (kthread_should_stop())
578 return 0;
579
Chao Yudc6febb2017-07-22 08:52:23 +0800580 sb_start_intwrite(sbi->sb);
581
Gu Zheng721bd4d2014-09-05 18:31:00 +0800582 if (!llist_empty(&fcc->issue_list)) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900583 struct flush_cmd *cmd, *next;
584 int ret;
585
Gu Zheng721bd4d2014-09-05 18:31:00 +0800586 fcc->dispatch_list = llist_del_all(&fcc->issue_list);
587 fcc->dispatch_list = llist_reverse_order(fcc->dispatch_list);
588
Chao Yu39d787b2017-09-29 13:59:38 +0800589 cmd = llist_entry(fcc->dispatch_list, struct flush_cmd, llnode);
590
591 ret = submit_flush_wait(sbi, cmd->ino);
Chao Yu8b8dd652017-03-25 17:19:58 +0800592 atomic_inc(&fcc->issued_flush);
593
Gu Zheng721bd4d2014-09-05 18:31:00 +0800594 llist_for_each_entry_safe(cmd, next,
595 fcc->dispatch_list, llnode) {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900596 cmd->ret = ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900597 complete(&cmd->wait);
598 }
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800599 fcc->dispatch_list = NULL;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900600 }
601
Chao Yudc6febb2017-07-22 08:52:23 +0800602 sb_end_intwrite(sbi->sb);
603
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800604 wait_event_interruptible(*q,
Gu Zheng721bd4d2014-09-05 18:31:00 +0800605 kthread_should_stop() || !llist_empty(&fcc->issue_list));
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900606 goto repeat;
607}
608
Chao Yu39d787b2017-09-29 13:59:38 +0800609int f2fs_issue_flush(struct f2fs_sb_info *sbi, nid_t ino)
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900610{
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800611 struct flush_cmd_control *fcc = SM_I(sbi)->fcc_info;
Chao Yuadf8d902014-05-08 17:00:35 +0800612 struct flush_cmd cmd;
Chao Yu8b8dd652017-03-25 17:19:58 +0800613 int ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900614
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700615 if (test_opt(sbi, NOBARRIER))
616 return 0;
617
Chao Yu8b8dd652017-03-25 17:19:58 +0800618 if (!test_opt(sbi, FLUSH_MERGE)) {
Chao Yu39d787b2017-09-29 13:59:38 +0800619 ret = submit_flush_wait(sbi, ino);
Chao Yu8b8dd652017-03-25 17:19:58 +0800620 atomic_inc(&fcc->issued_flush);
621 return ret;
622 }
623
Chao Yu39d787b2017-09-29 13:59:38 +0800624 if (atomic_inc_return(&fcc->issing_flush) == 1 || sbi->s_ndevs > 1) {
625 ret = submit_flush_wait(sbi, ino);
Chao Yu8b8dd652017-03-25 17:19:58 +0800626 atomic_dec(&fcc->issing_flush);
627
628 atomic_inc(&fcc->issued_flush);
Jaegeuk Kim740432f2015-08-14 11:43:56 -0700629 return ret;
630 }
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900631
Chao Yu39d787b2017-09-29 13:59:38 +0800632 cmd.ino = ino;
Chao Yuadf8d902014-05-08 17:00:35 +0800633 init_completion(&cmd.wait);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900634
Gu Zheng721bd4d2014-09-05 18:31:00 +0800635 llist_add(&cmd.llnode, &fcc->issue_list);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900636
Chao Yu6f890df2017-08-21 22:53:45 +0800637 /* update issue_list before we wake up issue_flush thread */
638 smp_mb();
639
640 if (waitqueue_active(&fcc->flush_wait_queue))
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800641 wake_up(&fcc->flush_wait_queue);
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900642
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800643 if (fcc->f2fs_issue_flush) {
644 wait_for_completion(&cmd.wait);
Chao Yu8b8dd652017-03-25 17:19:58 +0800645 atomic_dec(&fcc->issing_flush);
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800646 } else {
Chao Yud3238692017-08-31 18:56:06 +0800647 struct llist_node *list;
648
649 list = llist_del_all(&fcc->issue_list);
650 if (!list) {
651 wait_for_completion(&cmd.wait);
652 atomic_dec(&fcc->issing_flush);
653 } else {
654 struct flush_cmd *tmp, *next;
655
Chao Yu39d787b2017-09-29 13:59:38 +0800656 ret = submit_flush_wait(sbi, ino);
Chao Yud3238692017-08-31 18:56:06 +0800657
658 llist_for_each_entry_safe(tmp, next, list, llnode) {
659 if (tmp == &cmd) {
660 cmd.ret = ret;
661 atomic_dec(&fcc->issing_flush);
662 continue;
663 }
664 tmp->ret = ret;
665 complete(&tmp->wait);
666 }
667 }
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800668 }
Chao Yuadf8d902014-05-08 17:00:35 +0800669
670 return cmd.ret;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900671}
672
Chao Yu4d57b862018-05-30 00:20:41 +0800673int f2fs_create_flush_cmd_control(struct f2fs_sb_info *sbi)
Gu Zheng2163d192014-04-27 14:21:33 +0800674{
675 dev_t dev = sbi->sb->s_bdev->bd_dev;
676 struct flush_cmd_control *fcc;
677 int err = 0;
678
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800679 if (SM_I(sbi)->fcc_info) {
680 fcc = SM_I(sbi)->fcc_info;
Yunlong Songd871cd02017-06-24 15:57:19 +0800681 if (fcc->f2fs_issue_flush)
682 return err;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800683 goto init_thread;
684 }
685
Chao Yuacbf0542017-11-30 19:28:17 +0800686 fcc = f2fs_kzalloc(sbi, sizeof(struct flush_cmd_control), GFP_KERNEL);
Gu Zheng2163d192014-04-27 14:21:33 +0800687 if (!fcc)
688 return -ENOMEM;
Chao Yu8b8dd652017-03-25 17:19:58 +0800689 atomic_set(&fcc->issued_flush, 0);
690 atomic_set(&fcc->issing_flush, 0);
Gu Zheng2163d192014-04-27 14:21:33 +0800691 init_waitqueue_head(&fcc->flush_wait_queue);
Gu Zheng721bd4d2014-09-05 18:31:00 +0800692 init_llist_head(&fcc->issue_list);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800693 SM_I(sbi)->fcc_info = fcc;
Yunlei Hed4fdf8b2017-06-01 16:43:51 +0800694 if (!test_opt(sbi, FLUSH_MERGE))
695 return err;
696
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800697init_thread:
Gu Zheng2163d192014-04-27 14:21:33 +0800698 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
699 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
700 if (IS_ERR(fcc->f2fs_issue_flush)) {
701 err = PTR_ERR(fcc->f2fs_issue_flush);
702 kfree(fcc);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800703 SM_I(sbi)->fcc_info = NULL;
Gu Zheng2163d192014-04-27 14:21:33 +0800704 return err;
705 }
Gu Zheng2163d192014-04-27 14:21:33 +0800706
707 return err;
708}
709
Chao Yu4d57b862018-05-30 00:20:41 +0800710void f2fs_destroy_flush_cmd_control(struct f2fs_sb_info *sbi, bool free)
Gu Zheng2163d192014-04-27 14:21:33 +0800711{
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800712 struct flush_cmd_control *fcc = SM_I(sbi)->fcc_info;
Gu Zheng2163d192014-04-27 14:21:33 +0800713
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800714 if (fcc && fcc->f2fs_issue_flush) {
715 struct task_struct *flush_thread = fcc->f2fs_issue_flush;
716
717 fcc->f2fs_issue_flush = NULL;
718 kthread_stop(flush_thread);
719 }
720 if (free) {
721 kfree(fcc);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800722 SM_I(sbi)->fcc_info = NULL;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -0800723 }
Gu Zheng2163d192014-04-27 14:21:33 +0800724}
725
Chao Yu1228b482017-09-29 13:59:39 +0800726int f2fs_flush_device_cache(struct f2fs_sb_info *sbi)
727{
728 int ret = 0, i;
729
730 if (!sbi->s_ndevs)
731 return 0;
732
733 for (i = 1; i < sbi->s_ndevs; i++) {
734 if (!f2fs_test_bit(i, (char *)&sbi->dirty_device))
735 continue;
736 ret = __submit_flush_wait(sbi, FDEV(i).bdev);
737 if (ret)
738 break;
739
740 spin_lock(&sbi->dev_lock);
741 f2fs_clear_bit(i, (char *)&sbi->dirty_device);
742 spin_unlock(&sbi->dev_lock);
743 }
744
745 return ret;
746}
747
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900748static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
749 enum dirty_type dirty_type)
750{
751 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
752
753 /* need not be added */
754 if (IS_CURSEG(sbi, segno))
755 return;
756
757 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
758 dirty_i->nr_dirty[dirty_type]++;
759
760 if (dirty_type == DIRTY) {
761 struct seg_entry *sentry = get_seg_entry(sbi, segno);
Changman Lee4625d6a2013-10-25 17:31:57 +0900762 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900763
Jaegeuk Kimec325b52014-09-02 16:24:11 -0700764 if (unlikely(t >= DIRTY)) {
765 f2fs_bug_on(sbi, 1);
766 return;
767 }
Changman Lee4625d6a2013-10-25 17:31:57 +0900768 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
769 dirty_i->nr_dirty[t]++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900770 }
771}
772
773static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
774 enum dirty_type dirty_type)
775{
776 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
777
778 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
779 dirty_i->nr_dirty[dirty_type]--;
780
781 if (dirty_type == DIRTY) {
Changman Lee4625d6a2013-10-25 17:31:57 +0900782 struct seg_entry *sentry = get_seg_entry(sbi, segno);
783 enum dirty_type t = sentry->type;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900784
Changman Lee4625d6a2013-10-25 17:31:57 +0900785 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
786 dirty_i->nr_dirty[t]--;
Jaegeuk Kimb2f2c392013-04-01 13:52:09 +0900787
Jaegeuk Kim302bd342017-04-07 14:33:22 -0700788 if (get_valid_blocks(sbi, segno, true) == 0)
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700789 clear_bit(GET_SEC_FROM_SEG(sbi, segno),
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900790 dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900791 }
792}
793
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900794/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900795 * Should not occur error such as -ENOMEM.
796 * Adding dirty entry into seglist is not critical operation.
797 * If a given segment is one of current working segments, it won't be added.
798 */
Haicheng Li8d8451a2013-06-13 16:59:28 +0800799static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900800{
801 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
802 unsigned short valid_blocks;
803
804 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
805 return;
806
807 mutex_lock(&dirty_i->seglist_lock);
808
Jaegeuk Kim302bd342017-04-07 14:33:22 -0700809 valid_blocks = get_valid_blocks(sbi, segno, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900810
811 if (valid_blocks == 0) {
812 __locate_dirty_segment(sbi, segno, PRE);
813 __remove_dirty_segment(sbi, segno, DIRTY);
814 } else if (valid_blocks < sbi->blocks_per_seg) {
815 __locate_dirty_segment(sbi, segno, DIRTY);
816 } else {
817 /* Recovery routine with SSR needs this */
818 __remove_dirty_segment(sbi, segno, DIRTY);
819 }
820
821 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +0900822}
823
Chao Yu004b6862017-04-14 23:24:55 +0800824static struct discard_cmd *__create_discard_cmd(struct f2fs_sb_info *sbi,
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800825 struct block_device *bdev, block_t lstart,
826 block_t start, block_t len)
Chao Yu275b66b2016-08-29 23:58:34 +0800827{
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -0800828 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yuba48a332017-04-15 14:09:37 +0800829 struct list_head *pend_list;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800830 struct discard_cmd *dc;
Chao Yu275b66b2016-08-29 23:58:34 +0800831
Chao Yuba48a332017-04-15 14:09:37 +0800832 f2fs_bug_on(sbi, !len);
833
834 pend_list = &dcc->pend_list[plist_idx(len)];
835
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800836 dc = f2fs_kmem_cache_alloc(discard_cmd_slab, GFP_NOFS);
837 INIT_LIST_HEAD(&dc->list);
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800838 dc->bdev = bdev;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800839 dc->lstart = lstart;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800840 dc->start = start;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800841 dc->len = len;
Chao Yuec9895a2017-04-26 17:39:54 +0800842 dc->ref = 0;
Jaegeuk Kim15469962017-01-09 20:32:07 -0800843 dc->state = D_PREP;
Chao Yu35ec7d52018-08-06 22:43:50 +0800844 dc->issuing = 0;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800845 dc->error = 0;
Jaegeuk Kimb01a9202017-01-09 14:13:03 -0800846 init_completion(&dc->wait);
Chao Yu22d375d2017-04-05 18:19:48 +0800847 list_add_tail(&dc->list, pend_list);
Chao Yu35ec7d52018-08-06 22:43:50 +0800848 spin_lock_init(&dc->lock);
849 dc->bio_ref = 0;
Chao Yu5f323662017-03-25 17:19:59 +0800850 atomic_inc(&dcc->discard_cmd_cnt);
Chao Yud84d1cb2017-04-18 19:27:39 +0800851 dcc->undiscard_blks += len;
Chao Yu004b6862017-04-14 23:24:55 +0800852
853 return dc;
Jaegeuk Kim15469962017-01-09 20:32:07 -0800854}
855
Chao Yu004b6862017-04-14 23:24:55 +0800856static struct discard_cmd *__attach_discard_cmd(struct f2fs_sb_info *sbi,
857 struct block_device *bdev, block_t lstart,
858 block_t start, block_t len,
859 struct rb_node *parent, struct rb_node **p)
860{
861 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
862 struct discard_cmd *dc;
863
864 dc = __create_discard_cmd(sbi, bdev, lstart, start, len);
865
866 rb_link_node(&dc->rb_node, parent, p);
867 rb_insert_color(&dc->rb_node, &dcc->root);
868
869 return dc;
870}
871
872static void __detach_discard_cmd(struct discard_cmd_control *dcc,
873 struct discard_cmd *dc)
Jaegeuk Kim15469962017-01-09 20:32:07 -0800874{
Jaegeuk Kimdcc91652017-01-11 10:20:04 -0800875 if (dc->state == D_DONE)
Chao Yu35ec7d52018-08-06 22:43:50 +0800876 atomic_sub(dc->issuing, &dcc->issing_discard);
Chao Yu004b6862017-04-14 23:24:55 +0800877
878 list_del(&dc->list);
879 rb_erase(&dc->rb_node, &dcc->root);
Chao Yud84d1cb2017-04-18 19:27:39 +0800880 dcc->undiscard_blks -= dc->len;
Chao Yu004b6862017-04-14 23:24:55 +0800881
882 kmem_cache_free(discard_cmd_slab, dc);
883
884 atomic_dec(&dcc->discard_cmd_cnt);
885}
886
887static void __remove_discard_cmd(struct f2fs_sb_info *sbi,
888 struct discard_cmd *dc)
889{
890 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu35ec7d52018-08-06 22:43:50 +0800891 unsigned long flags;
Jaegeuk Kimdcc91652017-01-11 10:20:04 -0800892
Chao Yu2ec6f2e2017-10-04 09:08:36 +0800893 trace_f2fs_remove_discard(dc->bdev, dc->start, dc->len);
894
Chao Yu35ec7d52018-08-06 22:43:50 +0800895 spin_lock_irqsave(&dc->lock, flags);
896 if (dc->bio_ref) {
897 spin_unlock_irqrestore(&dc->lock, flags);
898 return;
899 }
900 spin_unlock_irqrestore(&dc->lock, flags);
901
Chao Yud9703d92017-06-05 18:29:07 +0800902 f2fs_bug_on(sbi, dc->ref);
903
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800904 if (dc->error == -EOPNOTSUPP)
905 dc->error = 0;
Jaegeuk Kim15469962017-01-09 20:32:07 -0800906
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800907 if (dc->error)
Jaegeuk Kim15469962017-01-09 20:32:07 -0800908 f2fs_msg(sbi->sb, KERN_INFO,
Chao Yu04dfc232017-05-19 23:46:43 +0800909 "Issue discard(%u, %u, %u) failed, ret: %d",
910 dc->lstart, dc->start, dc->len, dc->error);
Chao Yu004b6862017-04-14 23:24:55 +0800911 __detach_discard_cmd(dcc, dc);
Chao Yu275b66b2016-08-29 23:58:34 +0800912}
913
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800914static void f2fs_submit_discard_endio(struct bio *bio)
915{
916 struct discard_cmd *dc = (struct discard_cmd *)bio->bi_private;
Chao Yu35ec7d52018-08-06 22:43:50 +0800917 unsigned long flags;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800918
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200919 dc->error = blk_status_to_errno(bio->bi_status);
Chao Yu35ec7d52018-08-06 22:43:50 +0800920
921 spin_lock_irqsave(&dc->lock, flags);
922 dc->bio_ref--;
923 if (!dc->bio_ref && dc->state == D_SUBMIT) {
924 dc->state = D_DONE;
925 complete_all(&dc->wait);
926 }
927 spin_unlock_irqrestore(&dc->lock, flags);
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800928 bio_put(bio);
929}
930
Wei Yongjun94b1e102018-01-05 09:41:20 +0000931static void __check_sit_bitmap(struct f2fs_sb_info *sbi,
Chao Yu6915ea92017-06-30 17:19:02 +0800932 block_t start, block_t end)
933{
934#ifdef CONFIG_F2FS_CHECK_FS
935 struct seg_entry *sentry;
936 unsigned int segno;
937 block_t blk = start;
938 unsigned long offset, size, max_blocks = sbi->blocks_per_seg;
939 unsigned long *map;
940
941 while (blk < end) {
942 segno = GET_SEGNO(sbi, blk);
943 sentry = get_seg_entry(sbi, segno);
944 offset = GET_BLKOFF_FROM_SEG0(sbi, blk);
945
Yunlong Song008396e2017-08-04 17:07:15 +0800946 if (end < START_BLOCK(sbi, segno + 1))
947 size = GET_BLKOFF_FROM_SEG0(sbi, end);
948 else
949 size = max_blocks;
Chao Yu6915ea92017-06-30 17:19:02 +0800950 map = (unsigned long *)(sentry->cur_valid_map);
951 offset = __find_rev_next_bit(map, size, offset);
952 f2fs_bug_on(sbi, offset != size);
Yunlong Song008396e2017-08-04 17:07:15 +0800953 blk = START_BLOCK(sbi, segno + 1);
Chao Yu6915ea92017-06-30 17:19:02 +0800954 }
955#endif
956}
957
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -0700958static void __init_discard_policy(struct f2fs_sb_info *sbi,
959 struct discard_policy *dpolicy,
960 int discard_type, unsigned int granularity)
961{
962 /* common policy */
963 dpolicy->type = discard_type;
964 dpolicy->sync = true;
Chao Yu20ee4382018-07-08 22:11:01 +0800965 dpolicy->ordered = false;
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -0700966 dpolicy->granularity = granularity;
967
968 dpolicy->max_requests = DEF_MAX_DISCARD_REQUEST;
969 dpolicy->io_aware_gran = MAX_PLIST_NUM;
970
971 if (discard_type == DPOLICY_BG) {
972 dpolicy->min_interval = DEF_MIN_DISCARD_ISSUE_TIME;
Yunlei Hef9d1dce2018-04-08 15:11:11 +0800973 dpolicy->mid_interval = DEF_MID_DISCARD_ISSUE_TIME;
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -0700974 dpolicy->max_interval = DEF_MAX_DISCARD_ISSUE_TIME;
975 dpolicy->io_aware = true;
Chao Yucba60842018-04-10 15:43:09 +0800976 dpolicy->sync = false;
Chao Yu20ee4382018-07-08 22:11:01 +0800977 dpolicy->ordered = true;
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -0700978 if (utilization(sbi) > DEF_DISCARD_URGENT_UTIL) {
979 dpolicy->granularity = 1;
980 dpolicy->max_interval = DEF_MIN_DISCARD_ISSUE_TIME;
981 }
982 } else if (discard_type == DPOLICY_FORCE) {
983 dpolicy->min_interval = DEF_MIN_DISCARD_ISSUE_TIME;
Yunlei Hef9d1dce2018-04-08 15:11:11 +0800984 dpolicy->mid_interval = DEF_MID_DISCARD_ISSUE_TIME;
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -0700985 dpolicy->max_interval = DEF_MAX_DISCARD_ISSUE_TIME;
986 dpolicy->io_aware = false;
987 } else if (discard_type == DPOLICY_FSTRIM) {
988 dpolicy->io_aware = false;
989 } else if (discard_type == DPOLICY_UMOUNT) {
Yunlei He241b4932018-04-04 17:29:05 +0800990 dpolicy->max_requests = UINT_MAX;
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -0700991 dpolicy->io_aware = false;
992 }
993}
994
Chao Yu35ec7d52018-08-06 22:43:50 +0800995static void __update_discard_tree_range(struct f2fs_sb_info *sbi,
996 struct block_device *bdev, block_t lstart,
997 block_t start, block_t len);
Jaegeuk Kimc81abe32017-03-07 18:02:02 -0800998/* this function is copied from blkdev_issue_discard from block/blk-lib.c */
Chao Yu6b9cb122018-08-08 10:14:55 +0800999static int __submit_discard_cmd(struct f2fs_sb_info *sbi,
Chao Yu78997b52017-10-04 09:08:34 +08001000 struct discard_policy *dpolicy,
Chao Yu35ec7d52018-08-06 22:43:50 +08001001 struct discard_cmd *dc,
1002 unsigned int *issued)
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001003{
Chao Yu35ec7d52018-08-06 22:43:50 +08001004 struct block_device *bdev = dc->bdev;
1005 struct request_queue *q = bdev_get_queue(bdev);
1006 unsigned int max_discard_blocks =
1007 SECTOR_TO_BLOCK(q->limits.max_discard_sectors);
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001008 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu78997b52017-10-04 09:08:34 +08001009 struct list_head *wait_list = (dpolicy->type == DPOLICY_FSTRIM) ?
1010 &(dcc->fstrim_list) : &(dcc->wait_list);
Chao Yu78997b52017-10-04 09:08:34 +08001011 int flag = dpolicy->sync ? REQ_SYNC : 0;
Chao Yu35ec7d52018-08-06 22:43:50 +08001012 block_t lstart, start, len, total_len;
1013 int err = 0;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001014
1015 if (dc->state != D_PREP)
Chao Yu6b9cb122018-08-08 10:14:55 +08001016 return 0;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001017
Yunlei Hed6184772018-04-13 11:08:05 +08001018 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK))
Chao Yu6b9cb122018-08-08 10:14:55 +08001019 return 0;
Yunlei Hed6184772018-04-13 11:08:05 +08001020
Chao Yu35ec7d52018-08-06 22:43:50 +08001021 trace_f2fs_issue_discard(bdev, dc->start, dc->len);
Chao Yu0243a5f2017-04-15 14:09:38 +08001022
Chao Yu35ec7d52018-08-06 22:43:50 +08001023 lstart = dc->lstart;
1024 start = dc->start;
1025 len = dc->len;
1026 total_len = len;
1027
1028 dc->len = 0;
1029
1030 while (total_len && *issued < dpolicy->max_requests && !err) {
1031 struct bio *bio = NULL;
1032 unsigned long flags;
1033 bool last = true;
1034
1035 if (len > max_discard_blocks) {
1036 len = max_discard_blocks;
1037 last = false;
1038 }
1039
1040 (*issued)++;
1041 if (*issued == dpolicy->max_requests)
1042 last = true;
1043
1044 dc->len += len;
1045
Chao Yub83dcfe2018-08-06 20:30:18 +08001046 if (time_to_inject(sbi, FAULT_DISCARD)) {
1047 f2fs_show_injection_info(FAULT_DISCARD);
1048 err = -EIO;
1049 goto submit;
1050 }
Chao Yu35ec7d52018-08-06 22:43:50 +08001051 err = __blkdev_issue_discard(bdev,
1052 SECTOR_FROM_BLOCK(start),
1053 SECTOR_FROM_BLOCK(len),
1054 GFP_NOFS, 0, &bio);
Chao Yub83dcfe2018-08-06 20:30:18 +08001055submit:
Chao Yu6b9cb122018-08-08 10:14:55 +08001056 if (err) {
Chao Yu35ec7d52018-08-06 22:43:50 +08001057 spin_lock_irqsave(&dc->lock, flags);
1058 if (dc->state == D_PARTIAL)
1059 dc->state = D_SUBMIT;
1060 spin_unlock_irqrestore(&dc->lock, flags);
1061
Chao Yu6b9cb122018-08-08 10:14:55 +08001062 break;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001063 }
Chao Yu35ec7d52018-08-06 22:43:50 +08001064
Chao Yu6b9cb122018-08-08 10:14:55 +08001065 f2fs_bug_on(sbi, !bio);
1066
1067 /*
1068 * should keep before submission to avoid D_DONE
1069 * right away
1070 */
1071 spin_lock_irqsave(&dc->lock, flags);
1072 if (last)
1073 dc->state = D_SUBMIT;
1074 else
1075 dc->state = D_PARTIAL;
1076 dc->bio_ref++;
1077 spin_unlock_irqrestore(&dc->lock, flags);
1078
1079 atomic_inc(&dcc->issing_discard);
1080 dc->issuing++;
1081 list_move_tail(&dc->list, wait_list);
1082
1083 /* sanity check on discard range */
1084 __check_sit_bitmap(sbi, start, start + len);
1085
1086 bio->bi_private = dc;
1087 bio->bi_end_io = f2fs_submit_discard_endio;
1088 bio->bi_opf |= flag;
1089 submit_bio(bio);
1090
1091 atomic_inc(&dcc->issued_discard);
1092
1093 f2fs_update_iostat(sbi, FS_DISCARD, 1);
1094
Chao Yu35ec7d52018-08-06 22:43:50 +08001095 lstart += len;
1096 start += len;
1097 total_len -= len;
1098 len = total_len;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001099 }
Chao Yu35ec7d52018-08-06 22:43:50 +08001100
Chao Yu6b9cb122018-08-08 10:14:55 +08001101 if (!err && len)
Chao Yu35ec7d52018-08-06 22:43:50 +08001102 __update_discard_tree_range(sbi, bdev, lstart, start, len);
Chao Yu6b9cb122018-08-08 10:14:55 +08001103 return err;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001104}
1105
Chao Yu004b6862017-04-14 23:24:55 +08001106static struct discard_cmd *__insert_discard_tree(struct f2fs_sb_info *sbi,
1107 struct block_device *bdev, block_t lstart,
1108 block_t start, block_t len,
1109 struct rb_node **insert_p,
1110 struct rb_node *insert_parent)
1111{
1112 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Colin Ian Kingdca69512017-10-19 12:58:21 +02001113 struct rb_node **p;
Chao Yu004b6862017-04-14 23:24:55 +08001114 struct rb_node *parent = NULL;
1115 struct discard_cmd *dc = NULL;
1116
1117 if (insert_p && insert_parent) {
1118 parent = insert_parent;
1119 p = insert_p;
1120 goto do_insert;
1121 }
1122
Chao Yu4d57b862018-05-30 00:20:41 +08001123 p = f2fs_lookup_rb_tree_for_insert(sbi, &dcc->root, &parent, lstart);
Chao Yu004b6862017-04-14 23:24:55 +08001124do_insert:
1125 dc = __attach_discard_cmd(sbi, bdev, lstart, start, len, parent, p);
1126 if (!dc)
1127 return NULL;
1128
1129 return dc;
1130}
1131
Chao Yuba48a332017-04-15 14:09:37 +08001132static void __relocate_discard_cmd(struct discard_cmd_control *dcc,
1133 struct discard_cmd *dc)
1134{
1135 list_move_tail(&dc->list, &dcc->pend_list[plist_idx(dc->len)]);
1136}
1137
Chao Yu004b6862017-04-14 23:24:55 +08001138static void __punch_discard_cmd(struct f2fs_sb_info *sbi,
1139 struct discard_cmd *dc, block_t blkaddr)
1140{
Chao Yuba48a332017-04-15 14:09:37 +08001141 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu004b6862017-04-14 23:24:55 +08001142 struct discard_info di = dc->di;
1143 bool modified = false;
1144
1145 if (dc->state == D_DONE || dc->len == 1) {
1146 __remove_discard_cmd(sbi, dc);
1147 return;
1148 }
1149
Chao Yud84d1cb2017-04-18 19:27:39 +08001150 dcc->undiscard_blks -= di.len;
1151
Chao Yu004b6862017-04-14 23:24:55 +08001152 if (blkaddr > di.lstart) {
1153 dc->len = blkaddr - dc->lstart;
Chao Yud84d1cb2017-04-18 19:27:39 +08001154 dcc->undiscard_blks += dc->len;
Chao Yuba48a332017-04-15 14:09:37 +08001155 __relocate_discard_cmd(dcc, dc);
Chao Yu004b6862017-04-14 23:24:55 +08001156 modified = true;
1157 }
1158
1159 if (blkaddr < di.lstart + di.len - 1) {
1160 if (modified) {
1161 __insert_discard_tree(sbi, dc->bdev, blkaddr + 1,
1162 di.start + blkaddr + 1 - di.lstart,
1163 di.lstart + di.len - 1 - blkaddr,
1164 NULL, NULL);
1165 } else {
1166 dc->lstart++;
1167 dc->len--;
1168 dc->start++;
Chao Yud84d1cb2017-04-18 19:27:39 +08001169 dcc->undiscard_blks += dc->len;
Chao Yuba48a332017-04-15 14:09:37 +08001170 __relocate_discard_cmd(dcc, dc);
Chao Yu004b6862017-04-14 23:24:55 +08001171 }
1172 }
1173}
1174
1175static void __update_discard_tree_range(struct f2fs_sb_info *sbi,
1176 struct block_device *bdev, block_t lstart,
1177 block_t start, block_t len)
1178{
1179 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1180 struct discard_cmd *prev_dc = NULL, *next_dc = NULL;
1181 struct discard_cmd *dc;
1182 struct discard_info di = {0};
1183 struct rb_node **insert_p = NULL, *insert_parent = NULL;
Chao Yu35ec7d52018-08-06 22:43:50 +08001184 struct request_queue *q = bdev_get_queue(bdev);
1185 unsigned int max_discard_blocks =
1186 SECTOR_TO_BLOCK(q->limits.max_discard_sectors);
Chao Yu004b6862017-04-14 23:24:55 +08001187 block_t end = lstart + len;
1188
Chao Yu4d57b862018-05-30 00:20:41 +08001189 dc = (struct discard_cmd *)f2fs_lookup_rb_tree_ret(&dcc->root,
Chao Yu004b6862017-04-14 23:24:55 +08001190 NULL, lstart,
1191 (struct rb_entry **)&prev_dc,
1192 (struct rb_entry **)&next_dc,
1193 &insert_p, &insert_parent, true);
1194 if (dc)
1195 prev_dc = dc;
1196
1197 if (!prev_dc) {
1198 di.lstart = lstart;
1199 di.len = next_dc ? next_dc->lstart - lstart : len;
1200 di.len = min(di.len, len);
1201 di.start = start;
1202 }
1203
1204 while (1) {
1205 struct rb_node *node;
1206 bool merged = false;
1207 struct discard_cmd *tdc = NULL;
1208
1209 if (prev_dc) {
1210 di.lstart = prev_dc->lstart + prev_dc->len;
1211 if (di.lstart < lstart)
1212 di.lstart = lstart;
1213 if (di.lstart >= end)
1214 break;
1215
1216 if (!next_dc || next_dc->lstart > end)
1217 di.len = end - di.lstart;
1218 else
1219 di.len = next_dc->lstart - di.lstart;
1220 di.start = start + di.lstart - lstart;
1221 }
1222
1223 if (!di.len)
1224 goto next;
1225
1226 if (prev_dc && prev_dc->state == D_PREP &&
1227 prev_dc->bdev == bdev &&
Chao Yu35ec7d52018-08-06 22:43:50 +08001228 __is_discard_back_mergeable(&di, &prev_dc->di,
1229 max_discard_blocks)) {
Chao Yu004b6862017-04-14 23:24:55 +08001230 prev_dc->di.len += di.len;
Chao Yud84d1cb2017-04-18 19:27:39 +08001231 dcc->undiscard_blks += di.len;
Chao Yuba48a332017-04-15 14:09:37 +08001232 __relocate_discard_cmd(dcc, prev_dc);
Chao Yu004b6862017-04-14 23:24:55 +08001233 di = prev_dc->di;
1234 tdc = prev_dc;
1235 merged = true;
1236 }
1237
1238 if (next_dc && next_dc->state == D_PREP &&
1239 next_dc->bdev == bdev &&
Chao Yu35ec7d52018-08-06 22:43:50 +08001240 __is_discard_front_mergeable(&di, &next_dc->di,
1241 max_discard_blocks)) {
Chao Yu004b6862017-04-14 23:24:55 +08001242 next_dc->di.lstart = di.lstart;
1243 next_dc->di.len += di.len;
1244 next_dc->di.start = di.start;
Chao Yud84d1cb2017-04-18 19:27:39 +08001245 dcc->undiscard_blks += di.len;
Chao Yuba48a332017-04-15 14:09:37 +08001246 __relocate_discard_cmd(dcc, next_dc);
Chao Yu004b6862017-04-14 23:24:55 +08001247 if (tdc)
1248 __remove_discard_cmd(sbi, tdc);
Chao Yu004b6862017-04-14 23:24:55 +08001249 merged = true;
1250 }
1251
Chao Yudf0f6b42017-04-17 18:21:43 +08001252 if (!merged) {
Chao Yu004b6862017-04-14 23:24:55 +08001253 __insert_discard_tree(sbi, bdev, di.lstart, di.start,
1254 di.len, NULL, NULL);
Chao Yudf0f6b42017-04-17 18:21:43 +08001255 }
Chao Yu004b6862017-04-14 23:24:55 +08001256 next:
1257 prev_dc = next_dc;
1258 if (!prev_dc)
1259 break;
1260
1261 node = rb_next(&prev_dc->rb_node);
1262 next_dc = rb_entry_safe(node, struct discard_cmd, rb_node);
1263 }
Chao Yu004b6862017-04-14 23:24:55 +08001264}
1265
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001266static int __queue_discard_cmd(struct f2fs_sb_info *sbi,
1267 struct block_device *bdev, block_t blkstart, block_t blklen)
1268{
1269 block_t lblkstart = blkstart;
1270
Chao Yu0243a5f2017-04-15 14:09:38 +08001271 trace_f2fs_queue_discard(bdev, blkstart, blklen);
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001272
1273 if (sbi->s_ndevs) {
1274 int devi = f2fs_target_device_index(sbi, blkstart);
1275
1276 blkstart -= FDEV(devi).start_blk;
1277 }
Chao Yu35ec7d52018-08-06 22:43:50 +08001278 mutex_lock(&SM_I(sbi)->dcc_info->cmd_lock);
Chao Yu004b6862017-04-14 23:24:55 +08001279 __update_discard_tree_range(sbi, bdev, lblkstart, blkstart, blklen);
Chao Yu35ec7d52018-08-06 22:43:50 +08001280 mutex_unlock(&SM_I(sbi)->dcc_info->cmd_lock);
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001281 return 0;
1282}
1283
Chao Yu20ee4382018-07-08 22:11:01 +08001284static unsigned int __issue_discard_cmd_orderly(struct f2fs_sb_info *sbi,
1285 struct discard_policy *dpolicy)
1286{
1287 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1288 struct discard_cmd *prev_dc = NULL, *next_dc = NULL;
1289 struct rb_node **insert_p = NULL, *insert_parent = NULL;
1290 struct discard_cmd *dc;
1291 struct blk_plug plug;
1292 unsigned int pos = dcc->next_pos;
1293 unsigned int issued = 0;
1294 bool io_interrupted = false;
1295
1296 mutex_lock(&dcc->cmd_lock);
1297 dc = (struct discard_cmd *)f2fs_lookup_rb_tree_ret(&dcc->root,
1298 NULL, pos,
1299 (struct rb_entry **)&prev_dc,
1300 (struct rb_entry **)&next_dc,
1301 &insert_p, &insert_parent, true);
1302 if (!dc)
1303 dc = next_dc;
1304
1305 blk_start_plug(&plug);
1306
1307 while (dc) {
1308 struct rb_node *node;
Chao Yu6b9cb122018-08-08 10:14:55 +08001309 int err = 0;
Chao Yu20ee4382018-07-08 22:11:01 +08001310
1311 if (dc->state != D_PREP)
1312 goto next;
1313
1314 if (dpolicy->io_aware && !is_idle(sbi)) {
1315 io_interrupted = true;
1316 break;
1317 }
1318
1319 dcc->next_pos = dc->lstart + dc->len;
Chao Yu6b9cb122018-08-08 10:14:55 +08001320 err = __submit_discard_cmd(sbi, dpolicy, dc, &issued);
Chao Yu20ee4382018-07-08 22:11:01 +08001321
Chao Yu35ec7d52018-08-06 22:43:50 +08001322 if (issued >= dpolicy->max_requests)
Chao Yu20ee4382018-07-08 22:11:01 +08001323 break;
1324next:
1325 node = rb_next(&dc->rb_node);
Chao Yu6b9cb122018-08-08 10:14:55 +08001326 if (err)
1327 __remove_discard_cmd(sbi, dc);
Chao Yu20ee4382018-07-08 22:11:01 +08001328 dc = rb_entry_safe(node, struct discard_cmd, rb_node);
1329 }
1330
1331 blk_finish_plug(&plug);
1332
1333 if (!dc)
1334 dcc->next_pos = 0;
1335
1336 mutex_unlock(&dcc->cmd_lock);
1337
1338 if (!issued && io_interrupted)
1339 issued = -1;
1340
1341 return issued;
1342}
1343
Chao Yu78997b52017-10-04 09:08:34 +08001344static int __issue_discard_cmd(struct f2fs_sb_info *sbi,
1345 struct discard_policy *dpolicy)
Chao Yubd5b0732017-04-25 20:21:37 +08001346{
1347 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1348 struct list_head *pend_list;
1349 struct discard_cmd *dc, *tmp;
1350 struct blk_plug plug;
Chao Yu522d1712018-07-08 22:08:09 +08001351 int i, issued = 0;
Chao Yue6c6de12017-09-12 21:35:12 +08001352 bool io_interrupted = false;
Chao Yubd5b0732017-04-25 20:21:37 +08001353
Chao Yu78997b52017-10-04 09:08:34 +08001354 for (i = MAX_PLIST_NUM - 1; i >= 0; i--) {
1355 if (i + 1 < dpolicy->granularity)
1356 break;
Chao Yu20ee4382018-07-08 22:11:01 +08001357
1358 if (i < DEFAULT_DISCARD_GRANULARITY && dpolicy->ordered)
1359 return __issue_discard_cmd_orderly(sbi, dpolicy);
1360
Chao Yubd5b0732017-04-25 20:21:37 +08001361 pend_list = &dcc->pend_list[i];
Chao Yu33da62c2017-10-04 09:08:35 +08001362
1363 mutex_lock(&dcc->cmd_lock);
Chao Yu49c60c62018-01-08 18:48:33 +08001364 if (list_empty(pend_list))
1365 goto next;
Chao Yu67fce702018-06-22 16:06:59 +08001366 if (unlikely(dcc->rbtree_check))
1367 f2fs_bug_on(sbi, !f2fs_check_rb_tree_consistence(sbi,
1368 &dcc->root));
Chao Yu33da62c2017-10-04 09:08:35 +08001369 blk_start_plug(&plug);
Chao Yubd5b0732017-04-25 20:21:37 +08001370 list_for_each_entry_safe(dc, tmp, pend_list, list) {
1371 f2fs_bug_on(sbi, dc->state != D_PREP);
1372
Chao Yuecc9aa02017-10-04 09:08:33 +08001373 if (dpolicy->io_aware && i < dpolicy->io_aware_gran &&
1374 !is_idle(sbi)) {
Chao Yue6c6de12017-09-12 21:35:12 +08001375 io_interrupted = true;
Chao Yu522d1712018-07-08 22:08:09 +08001376 break;
Chao Yue6c6de12017-09-12 21:35:12 +08001377 }
1378
Chao Yu35ec7d52018-08-06 22:43:50 +08001379 __submit_discard_cmd(sbi, dpolicy, dc, &issued);
Chao Yu522d1712018-07-08 22:08:09 +08001380
Chao Yu35ec7d52018-08-06 22:43:50 +08001381 if (issued >= dpolicy->max_requests)
Chao Yu33da62c2017-10-04 09:08:35 +08001382 break;
Chao Yubd5b0732017-04-25 20:21:37 +08001383 }
Chao Yu33da62c2017-10-04 09:08:35 +08001384 blk_finish_plug(&plug);
Chao Yu49c60c62018-01-08 18:48:33 +08001385next:
Chao Yu33da62c2017-10-04 09:08:35 +08001386 mutex_unlock(&dcc->cmd_lock);
1387
Chao Yu522d1712018-07-08 22:08:09 +08001388 if (issued >= dpolicy->max_requests || io_interrupted)
Chao Yu33da62c2017-10-04 09:08:35 +08001389 break;
Chao Yubd5b0732017-04-25 20:21:37 +08001390 }
Chao Yu969d1b12017-08-07 23:09:56 +08001391
Chao Yue6c6de12017-09-12 21:35:12 +08001392 if (!issued && io_interrupted)
1393 issued = -1;
1394
Chao Yu969d1b12017-08-07 23:09:56 +08001395 return issued;
1396}
1397
Chao Yucf5c7592017-10-04 09:08:37 +08001398static bool __drop_discard_cmd(struct f2fs_sb_info *sbi)
Chao Yu969d1b12017-08-07 23:09:56 +08001399{
1400 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1401 struct list_head *pend_list;
1402 struct discard_cmd *dc, *tmp;
1403 int i;
Chao Yucf5c7592017-10-04 09:08:37 +08001404 bool dropped = false;
Chao Yu969d1b12017-08-07 23:09:56 +08001405
1406 mutex_lock(&dcc->cmd_lock);
1407 for (i = MAX_PLIST_NUM - 1; i >= 0; i--) {
1408 pend_list = &dcc->pend_list[i];
1409 list_for_each_entry_safe(dc, tmp, pend_list, list) {
1410 f2fs_bug_on(sbi, dc->state != D_PREP);
1411 __remove_discard_cmd(sbi, dc);
Chao Yucf5c7592017-10-04 09:08:37 +08001412 dropped = true;
Chao Yu969d1b12017-08-07 23:09:56 +08001413 }
1414 }
1415 mutex_unlock(&dcc->cmd_lock);
Chao Yucf5c7592017-10-04 09:08:37 +08001416
1417 return dropped;
Chao Yubd5b0732017-04-25 20:21:37 +08001418}
1419
Chao Yu4d57b862018-05-30 00:20:41 +08001420void f2fs_drop_discard_cmd(struct f2fs_sb_info *sbi)
Chao Yu7950e9a2018-01-18 17:23:29 +08001421{
1422 __drop_discard_cmd(sbi);
1423}
1424
Chao Yu0ea80512017-10-28 16:52:32 +08001425static unsigned int __wait_one_discard_bio(struct f2fs_sb_info *sbi,
Chao Yu2a510c002017-06-05 18:29:06 +08001426 struct discard_cmd *dc)
1427{
1428 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu0ea80512017-10-28 16:52:32 +08001429 unsigned int len = 0;
Chao Yu2a510c002017-06-05 18:29:06 +08001430
1431 wait_for_completion_io(&dc->wait);
1432 mutex_lock(&dcc->cmd_lock);
1433 f2fs_bug_on(sbi, dc->state != D_DONE);
1434 dc->ref--;
Chao Yu0ea80512017-10-28 16:52:32 +08001435 if (!dc->ref) {
1436 if (!dc->error)
1437 len = dc->len;
Chao Yu2a510c002017-06-05 18:29:06 +08001438 __remove_discard_cmd(sbi, dc);
Chao Yu0ea80512017-10-28 16:52:32 +08001439 }
Chao Yu2a510c002017-06-05 18:29:06 +08001440 mutex_unlock(&dcc->cmd_lock);
Chao Yu0ea80512017-10-28 16:52:32 +08001441
1442 return len;
Chao Yu2a510c002017-06-05 18:29:06 +08001443}
1444
Chao Yu0ea80512017-10-28 16:52:32 +08001445static unsigned int __wait_discard_cmd_range(struct f2fs_sb_info *sbi,
Chao Yu78997b52017-10-04 09:08:34 +08001446 struct discard_policy *dpolicy,
1447 block_t start, block_t end)
Chao Yu63a94fa2017-04-25 20:21:38 +08001448{
1449 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu78997b52017-10-04 09:08:34 +08001450 struct list_head *wait_list = (dpolicy->type == DPOLICY_FSTRIM) ?
1451 &(dcc->fstrim_list) : &(dcc->wait_list);
Chao Yu63a94fa2017-04-25 20:21:38 +08001452 struct discard_cmd *dc, *tmp;
Chao Yu6afae632017-05-19 23:46:45 +08001453 bool need_wait;
Chao Yu0ea80512017-10-28 16:52:32 +08001454 unsigned int trimmed = 0;
Chao Yu6afae632017-05-19 23:46:45 +08001455
1456next:
1457 need_wait = false;
Chao Yu63a94fa2017-04-25 20:21:38 +08001458
1459 mutex_lock(&dcc->cmd_lock);
1460 list_for_each_entry_safe(dc, tmp, wait_list, list) {
Chao Yu84126632017-10-04 09:08:32 +08001461 if (dc->lstart + dc->len <= start || end <= dc->lstart)
1462 continue;
Chao Yu78997b52017-10-04 09:08:34 +08001463 if (dc->len < dpolicy->granularity)
Chao Yu84126632017-10-04 09:08:32 +08001464 continue;
Chao Yu78997b52017-10-04 09:08:34 +08001465 if (dc->state == D_DONE && !dc->ref) {
Chao Yu63a94fa2017-04-25 20:21:38 +08001466 wait_for_completion_io(&dc->wait);
Chao Yu0ea80512017-10-28 16:52:32 +08001467 if (!dc->error)
1468 trimmed += dc->len;
Chao Yu63a94fa2017-04-25 20:21:38 +08001469 __remove_discard_cmd(sbi, dc);
Chao Yu6afae632017-05-19 23:46:45 +08001470 } else {
1471 dc->ref++;
1472 need_wait = true;
1473 break;
Chao Yu63a94fa2017-04-25 20:21:38 +08001474 }
1475 }
1476 mutex_unlock(&dcc->cmd_lock);
Chao Yu6afae632017-05-19 23:46:45 +08001477
1478 if (need_wait) {
Chao Yu0ea80512017-10-28 16:52:32 +08001479 trimmed += __wait_one_discard_bio(sbi, dc);
Chao Yu6afae632017-05-19 23:46:45 +08001480 goto next;
1481 }
Chao Yu0ea80512017-10-28 16:52:32 +08001482
1483 return trimmed;
Chao Yu63a94fa2017-04-25 20:21:38 +08001484}
1485
Chao Yu01f9cf62018-06-25 20:33:24 +08001486static unsigned int __wait_all_discard_cmd(struct f2fs_sb_info *sbi,
Chao Yu78997b52017-10-04 09:08:34 +08001487 struct discard_policy *dpolicy)
Chao Yu84126632017-10-04 09:08:32 +08001488{
Jaegeuk Kim9a997182018-05-24 13:57:26 -07001489 struct discard_policy dp;
Chao Yu01f9cf62018-06-25 20:33:24 +08001490 unsigned int discard_blks;
Jaegeuk Kim9a997182018-05-24 13:57:26 -07001491
Chao Yu01f9cf62018-06-25 20:33:24 +08001492 if (dpolicy)
1493 return __wait_discard_cmd_range(sbi, dpolicy, 0, UINT_MAX);
Jaegeuk Kim9a997182018-05-24 13:57:26 -07001494
1495 /* wait all */
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001496 __init_discard_policy(sbi, &dp, DPOLICY_FSTRIM, 1);
Chao Yu01f9cf62018-06-25 20:33:24 +08001497 discard_blks = __wait_discard_cmd_range(sbi, &dp, 0, UINT_MAX);
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001498 __init_discard_policy(sbi, &dp, DPOLICY_UMOUNT, 1);
Chao Yu01f9cf62018-06-25 20:33:24 +08001499 discard_blks += __wait_discard_cmd_range(sbi, &dp, 0, UINT_MAX);
1500
1501 return discard_blks;
Chao Yu84126632017-10-04 09:08:32 +08001502}
1503
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001504/* This should be covered by global mutex, &sit_i->sentry_lock */
Wei Yongjun94b1e102018-01-05 09:41:20 +00001505static void f2fs_wait_discard_bio(struct f2fs_sb_info *sbi, block_t blkaddr)
Chao Yu275b66b2016-08-29 23:58:34 +08001506{
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001507 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu004b6862017-04-14 23:24:55 +08001508 struct discard_cmd *dc;
Chao Yuec9895a2017-04-26 17:39:54 +08001509 bool need_wait = false;
Chao Yu275b66b2016-08-29 23:58:34 +08001510
Jaegeuk Kim15469962017-01-09 20:32:07 -08001511 mutex_lock(&dcc->cmd_lock);
Chao Yu4d57b862018-05-30 00:20:41 +08001512 dc = (struct discard_cmd *)f2fs_lookup_rb_tree(&dcc->root,
1513 NULL, blkaddr);
Chao Yu004b6862017-04-14 23:24:55 +08001514 if (dc) {
Chao Yuec9895a2017-04-26 17:39:54 +08001515 if (dc->state == D_PREP) {
1516 __punch_discard_cmd(sbi, dc, blkaddr);
1517 } else {
1518 dc->ref++;
1519 need_wait = true;
1520 }
Chao Yu275b66b2016-08-29 23:58:34 +08001521 }
Chao Yud4314132017-04-05 18:19:49 +08001522 mutex_unlock(&dcc->cmd_lock);
Chao Yuec9895a2017-04-26 17:39:54 +08001523
Chao Yu2a510c002017-06-05 18:29:06 +08001524 if (need_wait)
1525 __wait_one_discard_bio(sbi, dc);
Chao Yud4314132017-04-05 18:19:49 +08001526}
Chao Yu22d375d2017-04-05 18:19:48 +08001527
Chao Yu4d57b862018-05-30 00:20:41 +08001528void f2fs_stop_discard_thread(struct f2fs_sb_info *sbi)
Chao Yucce13252017-06-29 23:17:45 +08001529{
1530 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1531
1532 if (dcc && dcc->f2fs_issue_discard) {
1533 struct task_struct *discard_thread = dcc->f2fs_issue_discard;
1534
1535 dcc->f2fs_issue_discard = NULL;
1536 kthread_stop(discard_thread);
Jaegeuk Kim15469962017-01-09 20:32:07 -08001537 }
1538}
1539
Chao Yu84126632017-10-04 09:08:32 +08001540/* This comes from f2fs_put_super */
Chao Yucf5c7592017-10-04 09:08:37 +08001541bool f2fs_wait_discard_bios(struct f2fs_sb_info *sbi)
Chao Yu275b66b2016-08-29 23:58:34 +08001542{
Chao Yu969d1b12017-08-07 23:09:56 +08001543 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
Chao Yu78997b52017-10-04 09:08:34 +08001544 struct discard_policy dpolicy;
Chao Yucf5c7592017-10-04 09:08:37 +08001545 bool dropped;
Chao Yu969d1b12017-08-07 23:09:56 +08001546
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001547 __init_discard_policy(sbi, &dpolicy, DPOLICY_UMOUNT,
1548 dcc->discard_granularity);
Chao Yu78997b52017-10-04 09:08:34 +08001549 __issue_discard_cmd(sbi, &dpolicy);
Chao Yucf5c7592017-10-04 09:08:37 +08001550 dropped = __drop_discard_cmd(sbi);
Chao Yucf5c7592017-10-04 09:08:37 +08001551
Jaegeuk Kim9a997182018-05-24 13:57:26 -07001552 /* just to make sure there is no pending discard commands */
1553 __wait_all_discard_cmd(sbi, NULL);
Chao Yu2482c432018-07-08 22:16:53 +08001554
1555 f2fs_bug_on(sbi, atomic_read(&dcc->discard_cmd_cnt));
Chao Yucf5c7592017-10-04 09:08:37 +08001556 return dropped;
Chao Yu969d1b12017-08-07 23:09:56 +08001557}
1558
Jaegeuk Kim15469962017-01-09 20:32:07 -08001559static int issue_discard_thread(void *data)
1560{
1561 struct f2fs_sb_info *sbi = data;
1562 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1563 wait_queue_head_t *q = &dcc->discard_wait_queue;
Chao Yu78997b52017-10-04 09:08:34 +08001564 struct discard_policy dpolicy;
Chao Yu969d1b12017-08-07 23:09:56 +08001565 unsigned int wait_ms = DEF_MIN_DISCARD_ISSUE_TIME;
1566 int issued;
Jaegeuk Kim15469962017-01-09 20:32:07 -08001567
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001568 set_freezable();
Jaegeuk Kim15469962017-01-09 20:32:07 -08001569
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001570 do {
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001571 __init_discard_policy(sbi, &dpolicy, DPOLICY_BG,
Chao Yu78997b52017-10-04 09:08:34 +08001572 dcc->discard_granularity);
1573
Chao Yu969d1b12017-08-07 23:09:56 +08001574 wait_event_interruptible_timeout(*q,
1575 kthread_should_stop() || freezing(current) ||
1576 dcc->discard_wake,
1577 msecs_to_jiffies(wait_ms));
Sheng Yong35a9a762018-05-08 17:51:34 +08001578
1579 if (dcc->discard_wake)
1580 dcc->discard_wake = 0;
1581
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001582 if (try_to_freeze())
1583 continue;
Chao Yu3b60d802018-01-25 18:57:27 +08001584 if (f2fs_readonly(sbi->sb))
1585 continue;
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001586 if (kthread_should_stop())
1587 return 0;
Yunlei Hed6184772018-04-13 11:08:05 +08001588 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
1589 wait_ms = dpolicy.max_interval;
1590 continue;
1591 }
Jaegeuk Kim15469962017-01-09 20:32:07 -08001592
Jaegeuk Kim5b0e9532018-05-07 14:22:40 -07001593 if (sbi->gc_mode == GC_URGENT)
Jaegeuk Kim8bb4f252018-05-29 09:58:42 -07001594 __init_discard_policy(sbi, &dpolicy, DPOLICY_FORCE, 1);
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001595
Chao Yudc6febb2017-07-22 08:52:23 +08001596 sb_start_intwrite(sbi->sb);
1597
Chao Yu78997b52017-10-04 09:08:34 +08001598 issued = __issue_discard_cmd(sbi, &dpolicy);
Yunlei Hef9d1dce2018-04-08 15:11:11 +08001599 if (issued > 0) {
Chao Yu78997b52017-10-04 09:08:34 +08001600 __wait_all_discard_cmd(sbi, &dpolicy);
1601 wait_ms = dpolicy.min_interval;
Yunlei Hef9d1dce2018-04-08 15:11:11 +08001602 } else if (issued == -1){
1603 wait_ms = dpolicy.mid_interval;
Chao Yu969d1b12017-08-07 23:09:56 +08001604 } else {
Chao Yu78997b52017-10-04 09:08:34 +08001605 wait_ms = dpolicy.max_interval;
Chao Yu969d1b12017-08-07 23:09:56 +08001606 }
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001607
Chao Yudc6febb2017-07-22 08:52:23 +08001608 sb_end_intwrite(sbi->sb);
1609
Jaegeuk Kim1d7be272017-05-17 10:36:58 -07001610 } while (!kthread_should_stop());
1611 return 0;
Jaegeuk Kim15469962017-01-09 20:32:07 -08001612}
1613
Damien Le Moalf46e88092016-10-28 17:45:06 +09001614#ifdef CONFIG_BLK_DEV_ZONED
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001615static int __f2fs_issue_discard_zone(struct f2fs_sb_info *sbi,
1616 struct block_device *bdev, block_t blkstart, block_t blklen)
Damien Le Moalf46e88092016-10-28 17:45:06 +09001617{
Jaegeuk Kim925922852017-02-22 20:18:35 -08001618 sector_t sector, nr_sects;
Kinglong Mee10a875f2017-03-08 09:49:53 +08001619 block_t lblkstart = blkstart;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001620 int devi = 0;
Damien Le Moalf46e88092016-10-28 17:45:06 +09001621
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001622 if (sbi->s_ndevs) {
1623 devi = f2fs_target_device_index(sbi, blkstart);
1624 blkstart -= FDEV(devi).start_blk;
1625 }
Damien Le Moalf46e88092016-10-28 17:45:06 +09001626
1627 /*
1628 * We need to know the type of the zone: for conventional zones,
1629 * use regular discard if the drive supports it. For sequential
1630 * zones, reset the zone write pointer.
1631 */
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001632 switch (get_blkz_type(sbi, bdev, blkstart)) {
Damien Le Moalf46e88092016-10-28 17:45:06 +09001633
1634 case BLK_ZONE_TYPE_CONVENTIONAL:
1635 if (!blk_queue_discard(bdev_get_queue(bdev)))
1636 return 0;
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001637 return __queue_discard_cmd(sbi, bdev, lblkstart, blklen);
Damien Le Moalf46e88092016-10-28 17:45:06 +09001638 case BLK_ZONE_TYPE_SEQWRITE_REQ:
1639 case BLK_ZONE_TYPE_SEQWRITE_PREF:
Jaegeuk Kim925922852017-02-22 20:18:35 -08001640 sector = SECTOR_FROM_BLOCK(blkstart);
1641 nr_sects = SECTOR_FROM_BLOCK(blklen);
1642
1643 if (sector & (bdev_zone_sectors(bdev) - 1) ||
1644 nr_sects != bdev_zone_sectors(bdev)) {
1645 f2fs_msg(sbi->sb, KERN_INFO,
1646 "(%d) %s: Unaligned discard attempted (block %x + %x)",
1647 devi, sbi->s_ndevs ? FDEV(devi).path: "",
1648 blkstart, blklen);
1649 return -EIO;
1650 }
Jaegeuk Kimd50aaee2017-02-15 11:14:06 -08001651 trace_f2fs_issue_reset_zone(bdev, blkstart);
Damien Le Moalf46e88092016-10-28 17:45:06 +09001652 return blkdev_reset_zones(bdev, sector,
1653 nr_sects, GFP_NOFS);
1654 default:
1655 /* Unknown zone type: broken device ? */
1656 return -EIO;
1657 }
1658}
1659#endif
1660
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001661static int __issue_discard_async(struct f2fs_sb_info *sbi,
1662 struct block_device *bdev, block_t blkstart, block_t blklen)
1663{
1664#ifdef CONFIG_BLK_DEV_ZONED
Sheng Yongccd31cb2018-02-06 12:31:17 +08001665 if (f2fs_sb_has_blkzoned(sbi->sb) &&
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001666 bdev_zoned_model(bdev) != BLK_ZONED_NONE)
1667 return __f2fs_issue_discard_zone(sbi, bdev, blkstart, blklen);
1668#endif
Jaegeuk Kimc81abe32017-03-07 18:02:02 -08001669 return __queue_discard_cmd(sbi, bdev, blkstart, blklen);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001670}
1671
Jaegeuk Kim1e87a782014-04-15 13:57:55 +09001672static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
Jaegeuk Kim37208872013-11-12 16:55:17 +09001673 block_t blkstart, block_t blklen)
1674{
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001675 sector_t start = blkstart, len = 0;
1676 struct block_device *bdev;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001677 struct seg_entry *se;
1678 unsigned int offset;
1679 block_t i;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001680 int err = 0;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001681
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001682 bdev = f2fs_target_device(sbi, blkstart, NULL);
1683
1684 for (i = blkstart; i < blkstart + blklen; i++, len++) {
1685 if (i != start) {
1686 struct block_device *bdev2 =
1687 f2fs_target_device(sbi, i, NULL);
1688
1689 if (bdev2 != bdev) {
1690 err = __issue_discard_async(sbi, bdev,
1691 start, len);
1692 if (err)
1693 return err;
1694 bdev = bdev2;
1695 start = i;
1696 len = 0;
1697 }
1698 }
1699
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001700 se = get_seg_entry(sbi, GET_SEGNO(sbi, i));
1701 offset = GET_BLKOFF_FROM_SEG0(sbi, i);
1702
1703 if (!f2fs_test_and_set_bit(offset, se->discard_map))
1704 sbi->discard_blks--;
1705 }
Damien Le Moalf46e88092016-10-28 17:45:06 +09001706
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001707 if (len)
1708 err = __issue_discard_async(sbi, bdev, start, len);
1709 return err;
Jaegeuk Kim1e87a782014-04-15 13:57:55 +09001710}
1711
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08001712static bool add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc,
1713 bool check_only)
Jaegeuk Kimadf49832014-10-28 22:27:59 -07001714{
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001715 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
1716 int max_blocks = sbi->blocks_per_seg;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001717 struct seg_entry *se = get_seg_entry(sbi, cpc->trim_start);
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001718 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
1719 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001720 unsigned long *discard_map = (unsigned long *)se->discard_map;
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08001721 unsigned long *dmap = SIT_I(sbi)->tmp_map;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001722 unsigned int start = 0, end = -1;
Chao Yuc473f1a2017-04-27 20:40:39 +08001723 bool force = (cpc->reason & CP_DISCARD);
Chao Yua7eeb8232017-03-28 18:18:50 +08001724 struct discard_entry *de = NULL;
Chao Yu46f84c22017-04-15 14:09:36 +08001725 struct list_head *head = &SM_I(sbi)->dcc_info->entry_list;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001726 int i;
1727
Jaegeuk Kim3e025742016-08-02 10:56:40 -07001728 if (se->valid_blocks == max_blocks || !f2fs_discard_en(sbi))
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08001729 return false;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001730
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001731 if (!force) {
1732 if (!test_opt(sbi, DISCARD) || !se->valid_blocks ||
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001733 SM_I(sbi)->dcc_info->nr_discards >=
1734 SM_I(sbi)->dcc_info->max_discards)
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08001735 return false;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001736 }
1737
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001738 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
1739 for (i = 0; i < entries; i++)
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001740 dmap[i] = force ? ~ckpt_map[i] & ~discard_map[i] :
Jaegeuk Kimd7bc2482014-12-12 13:53:41 -08001741 (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001742
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001743 while (force || SM_I(sbi)->dcc_info->nr_discards <=
1744 SM_I(sbi)->dcc_info->max_discards) {
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001745 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
1746 if (start >= max_blocks)
1747 break;
1748
1749 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
Yunlei Hec7b41e12016-07-07 12:13:33 +08001750 if (force && start && end != max_blocks
1751 && (end - start) < cpc->trim_minlen)
1752 continue;
1753
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08001754 if (check_only)
1755 return true;
1756
Chao Yua7eeb8232017-03-28 18:18:50 +08001757 if (!de) {
1758 de = f2fs_kmem_cache_alloc(discard_entry_slab,
1759 GFP_F2FS_ZERO);
1760 de->start_blkaddr = START_BLOCK(sbi, cpc->trim_start);
1761 list_add_tail(&de->list, head);
1762 }
1763
1764 for (i = start; i < end; i++)
1765 __set_bit_le(i, (void *)de->discard_map);
1766
1767 SM_I(sbi)->dcc_info->nr_discards += end - start;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001768 }
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08001769 return false;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001770}
1771
Chao Yuaf8ff652018-04-25 17:38:29 +08001772static void release_discard_addr(struct discard_entry *entry)
1773{
1774 list_del(&entry->list);
1775 kmem_cache_free(discard_entry_slab, entry);
1776}
1777
Chao Yu4d57b862018-05-30 00:20:41 +08001778void f2fs_release_discard_addrs(struct f2fs_sb_info *sbi)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001779{
Chao Yu46f84c22017-04-15 14:09:36 +08001780 struct list_head *head = &(SM_I(sbi)->dcc_info->entry_list);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001781 struct discard_entry *entry, *this;
1782
1783 /* drop caches */
Chao Yuaf8ff652018-04-25 17:38:29 +08001784 list_for_each_entry_safe(entry, this, head, list)
1785 release_discard_addr(entry);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07001786}
1787
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001788/*
Chao Yu4d57b862018-05-30 00:20:41 +08001789 * Should call f2fs_clear_prefree_segments after checkpoint is done.
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001790 */
1791static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
1792{
1793 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Chao Yub65ee142014-08-04 10:10:07 +08001794 unsigned int segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001795
1796 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001797 for_each_set_bit(segno, dirty_i->dirty_segmap[PRE], MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001798 __set_test_and_free(sbi, segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001799 mutex_unlock(&dirty_i->seglist_lock);
1800}
1801
Chao Yu4d57b862018-05-30 00:20:41 +08001802void f2fs_clear_prefree_segments(struct f2fs_sb_info *sbi,
1803 struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001804{
Chao Yu969d1b12017-08-07 23:09:56 +08001805 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1806 struct list_head *head = &dcc->entry_list;
Chao Yu2d7b8222014-03-29 11:33:17 +08001807 struct discard_entry *entry, *this;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001808 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Changman Lee29e59c12013-11-11 09:24:37 +09001809 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
Changman Lee29e59c12013-11-11 09:24:37 +09001810 unsigned int start = 0, end = -1;
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001811 unsigned int secno, start_segno;
Chao Yuc473f1a2017-04-27 20:40:39 +08001812 bool force = (cpc->reason & CP_DISCARD);
Yunlong Songad6672b2018-07-19 20:58:15 +08001813 bool need_align = test_opt(sbi, LFS) && sbi->segs_per_sec > 1;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001814
1815 mutex_lock(&dirty_i->seglist_lock);
Changman Lee29e59c12013-11-11 09:24:37 +09001816
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001817 while (1) {
Changman Lee29e59c12013-11-11 09:24:37 +09001818 int i;
Yunlong Songad6672b2018-07-19 20:58:15 +08001819
1820 if (need_align && end != -1)
1821 end--;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001822 start = find_next_bit(prefree_map, MAIN_SEGS(sbi), end + 1);
1823 if (start >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001824 break;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07001825 end = find_next_zero_bit(prefree_map, MAIN_SEGS(sbi),
1826 start + 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001827
Yunlong Songad6672b2018-07-19 20:58:15 +08001828 if (need_align) {
1829 start = rounddown(start, sbi->segs_per_sec);
1830 end = roundup(end, sbi->segs_per_sec);
1831 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001832
Yunlong Songad6672b2018-07-19 20:58:15 +08001833 for (i = start; i < end; i++) {
1834 if (test_and_clear_bit(i, prefree_map))
1835 dirty_i->nr_dirty[PRE]--;
1836 }
Changman Lee29e59c12013-11-11 09:24:37 +09001837
Yunlei He650d3c42016-12-22 11:46:24 +08001838 if (!test_opt(sbi, DISCARD))
Changman Lee29e59c12013-11-11 09:24:37 +09001839 continue;
1840
Yunlei He650d3c42016-12-22 11:46:24 +08001841 if (force && start >= cpc->trim_start &&
1842 (end - 1) <= cpc->trim_end)
1843 continue;
1844
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001845 if (!test_opt(sbi, LFS) || sbi->segs_per_sec == 1) {
1846 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
Jaegeuk Kim37208872013-11-12 16:55:17 +09001847 (end - start) << sbi->log_blocks_per_seg);
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001848 continue;
1849 }
1850next:
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -07001851 secno = GET_SEC_FROM_SEG(sbi, start);
1852 start_segno = GET_SEG_FROM_SEC(sbi, secno);
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001853 if (!IS_CURSEC(sbi, secno) &&
Jaegeuk Kim302bd342017-04-07 14:33:22 -07001854 !get_valid_blocks(sbi, start, true))
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001855 f2fs_issue_discard(sbi, START_BLOCK(sbi, start_segno),
1856 sbi->segs_per_sec << sbi->log_blocks_per_seg);
1857
1858 start = start_segno + sbi->segs_per_sec;
1859 if (start < end)
1860 goto next;
Jaegeuk Kim8b107f52017-02-27 11:57:11 -08001861 else
1862 end = start - 1;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001863 }
1864 mutex_unlock(&dirty_i->seglist_lock);
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001865
1866 /* send small discards */
Chao Yu2d7b8222014-03-29 11:33:17 +08001867 list_for_each_entry_safe(entry, this, head, list) {
Chao Yua7eeb8232017-03-28 18:18:50 +08001868 unsigned int cur_pos = 0, next_pos, len, total_len = 0;
1869 bool is_valid = test_bit_le(0, entry->discard_map);
1870
1871find_next:
1872 if (is_valid) {
1873 next_pos = find_next_zero_bit_le(entry->discard_map,
1874 sbi->blocks_per_seg, cur_pos);
1875 len = next_pos - cur_pos;
1876
Sheng Yongccd31cb2018-02-06 12:31:17 +08001877 if (f2fs_sb_has_blkzoned(sbi->sb) ||
Damien Le Moalacfd28102017-05-26 17:04:40 +09001878 (force && len < cpc->trim_minlen))
Chao Yua7eeb8232017-03-28 18:18:50 +08001879 goto skip;
1880
1881 f2fs_issue_discard(sbi, entry->start_blkaddr + cur_pos,
1882 len);
Chao Yua7eeb8232017-03-28 18:18:50 +08001883 total_len += len;
1884 } else {
1885 next_pos = find_next_bit_le(entry->discard_map,
1886 sbi->blocks_per_seg, cur_pos);
1887 }
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07001888skip:
Chao Yua7eeb8232017-03-28 18:18:50 +08001889 cur_pos = next_pos;
1890 is_valid = !is_valid;
1891
1892 if (cur_pos < sbi->blocks_per_seg)
1893 goto find_next;
1894
Chao Yuaf8ff652018-04-25 17:38:29 +08001895 release_discard_addr(entry);
Chao Yu969d1b12017-08-07 23:09:56 +08001896 dcc->nr_discards -= total_len;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09001897 }
Chao Yu34e159d2017-04-25 00:21:34 +08001898
Jaegeuk Kim01983c72017-08-22 21:15:43 -07001899 wake_up_discard_thread(sbi, false);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001900}
1901
Jaegeuk Kim8ed59742017-01-29 14:27:02 +09001902static int create_discard_cmd_control(struct f2fs_sb_info *sbi)
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001903{
Jaegeuk Kim15469962017-01-09 20:32:07 -08001904 dev_t dev = sbi->sb->s_bdev->bd_dev;
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001905 struct discard_cmd_control *dcc;
Chao Yuba48a332017-04-15 14:09:37 +08001906 int err = 0, i;
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001907
1908 if (SM_I(sbi)->dcc_info) {
1909 dcc = SM_I(sbi)->dcc_info;
1910 goto init_thread;
1911 }
1912
Chao Yuacbf0542017-11-30 19:28:17 +08001913 dcc = f2fs_kzalloc(sbi, sizeof(struct discard_cmd_control), GFP_KERNEL);
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001914 if (!dcc)
1915 return -ENOMEM;
1916
Chao Yu969d1b12017-08-07 23:09:56 +08001917 dcc->discard_granularity = DEFAULT_DISCARD_GRANULARITY;
Chao Yu46f84c22017-04-15 14:09:36 +08001918 INIT_LIST_HEAD(&dcc->entry_list);
Chao Yu78997b52017-10-04 09:08:34 +08001919 for (i = 0; i < MAX_PLIST_NUM; i++)
Chao Yuba48a332017-04-15 14:09:37 +08001920 INIT_LIST_HEAD(&dcc->pend_list[i]);
Chao Yu46f84c22017-04-15 14:09:36 +08001921 INIT_LIST_HEAD(&dcc->wait_list);
Chao Yu84126632017-10-04 09:08:32 +08001922 INIT_LIST_HEAD(&dcc->fstrim_list);
Jaegeuk Kim15469962017-01-09 20:32:07 -08001923 mutex_init(&dcc->cmd_lock);
Chao Yu8b8dd652017-03-25 17:19:58 +08001924 atomic_set(&dcc->issued_discard, 0);
1925 atomic_set(&dcc->issing_discard, 0);
Chao Yu5f323662017-03-25 17:19:59 +08001926 atomic_set(&dcc->discard_cmd_cnt, 0);
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001927 dcc->nr_discards = 0;
Chao Yud618eba2017-04-25 00:21:35 +08001928 dcc->max_discards = MAIN_SEGS(sbi) << sbi->log_blocks_per_seg;
Chao Yud84d1cb2017-04-18 19:27:39 +08001929 dcc->undiscard_blks = 0;
Chao Yu20ee4382018-07-08 22:11:01 +08001930 dcc->next_pos = 0;
Chao Yu004b6862017-04-14 23:24:55 +08001931 dcc->root = RB_ROOT;
Chao Yu67fce702018-06-22 16:06:59 +08001932 dcc->rbtree_check = false;
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001933
Jaegeuk Kim15469962017-01-09 20:32:07 -08001934 init_waitqueue_head(&dcc->discard_wait_queue);
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001935 SM_I(sbi)->dcc_info = dcc;
1936init_thread:
Jaegeuk Kim15469962017-01-09 20:32:07 -08001937 dcc->f2fs_issue_discard = kthread_run(issue_discard_thread, sbi,
1938 "f2fs_discard-%u:%u", MAJOR(dev), MINOR(dev));
1939 if (IS_ERR(dcc->f2fs_issue_discard)) {
1940 err = PTR_ERR(dcc->f2fs_issue_discard);
1941 kfree(dcc);
1942 SM_I(sbi)->dcc_info = NULL;
1943 return err;
1944 }
1945
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001946 return err;
1947}
1948
Chao Yuf0994052017-03-27 18:14:04 +08001949static void destroy_discard_cmd_control(struct f2fs_sb_info *sbi)
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001950{
1951 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1952
Chao Yuf0994052017-03-27 18:14:04 +08001953 if (!dcc)
1954 return;
1955
Chao Yu4d57b862018-05-30 00:20:41 +08001956 f2fs_stop_discard_thread(sbi);
Chao Yuf0994052017-03-27 18:14:04 +08001957
1958 kfree(dcc);
1959 SM_I(sbi)->dcc_info = NULL;
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08001960}
1961
Chao Yu184a5cd2014-09-04 18:13:01 +08001962static bool __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001963{
1964 struct sit_info *sit_i = SIT_I(sbi);
Chao Yu184a5cd2014-09-04 18:13:01 +08001965
1966 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001967 sit_i->dirty_sentries++;
Chao Yu184a5cd2014-09-04 18:13:01 +08001968 return false;
1969 }
1970
1971 return true;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001972}
1973
1974static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
1975 unsigned int segno, int modified)
1976{
1977 struct seg_entry *se = get_seg_entry(sbi, segno);
1978 se->type = type;
1979 if (modified)
1980 __mark_sit_entry_dirty(sbi, segno);
1981}
1982
1983static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
1984{
1985 struct seg_entry *se;
1986 unsigned int segno, offset;
1987 long int new_vblocks;
Yunlong Song6415fed2017-08-02 21:20:13 +08001988 bool exist;
1989#ifdef CONFIG_F2FS_CHECK_FS
1990 bool mir_exist;
1991#endif
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001992
1993 segno = GET_SEGNO(sbi, blkaddr);
1994
1995 se = get_seg_entry(sbi, segno);
1996 new_vblocks = se->valid_blocks + del;
Jaegeuk Kim491c0852014-02-04 13:01:10 +09001997 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09001998
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001999 f2fs_bug_on(sbi, (new_vblocks >> (sizeof(unsigned short) << 3) ||
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002000 (new_vblocks > sbi->blocks_per_seg)));
2001
2002 se->valid_blocks = new_vblocks;
Chao Yua1f72ac22018-06-04 23:20:17 +08002003 se->mtime = get_mtime(sbi, false);
2004 if (se->mtime > SIT_I(sbi)->max_mtime)
2005 SIT_I(sbi)->max_mtime = se->mtime;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002006
2007 /* Update valid block bitmap */
2008 if (del > 0) {
Yunlong Song6415fed2017-08-02 21:20:13 +08002009 exist = f2fs_test_and_set_bit(offset, se->cur_valid_map);
Chao Yu355e7892017-01-07 18:51:01 +08002010#ifdef CONFIG_F2FS_CHECK_FS
Yunlong Song6415fed2017-08-02 21:20:13 +08002011 mir_exist = f2fs_test_and_set_bit(offset,
2012 se->cur_valid_map_mir);
2013 if (unlikely(exist != mir_exist)) {
2014 f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
2015 "when setting bitmap, blk:%u, old bit:%d",
2016 blkaddr, exist);
Jaegeuk Kim05796762014-09-02 16:05:00 -07002017 f2fs_bug_on(sbi, 1);
Chao Yu355e7892017-01-07 18:51:01 +08002018 }
Yunlong Song6415fed2017-08-02 21:20:13 +08002019#endif
2020 if (unlikely(exist)) {
2021 f2fs_msg(sbi->sb, KERN_ERR,
2022 "Bitmap was wrongly set, blk:%u", blkaddr);
2023 f2fs_bug_on(sbi, 1);
Yunlong Song35ee82c2017-08-02 22:16:54 +08002024 se->valid_blocks--;
2025 del = 0;
Yunlong Song6415fed2017-08-02 21:20:13 +08002026 }
2027
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002028 if (f2fs_discard_en(sbi) &&
2029 !f2fs_test_and_set_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002030 sbi->discard_blks--;
Jaegeuk Kim720037f2017-03-06 11:59:56 -08002031
2032 /* don't overwrite by SSR to keep node chain */
Yunlei He5d7881c2018-03-07 16:22:50 +08002033 if (IS_NODESEG(se->type)) {
Jaegeuk Kim720037f2017-03-06 11:59:56 -08002034 if (!f2fs_test_and_set_bit(offset, se->ckpt_valid_map))
2035 se->ckpt_valid_blocks++;
2036 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002037 } else {
Yunlong Song6415fed2017-08-02 21:20:13 +08002038 exist = f2fs_test_and_clear_bit(offset, se->cur_valid_map);
Chao Yu355e7892017-01-07 18:51:01 +08002039#ifdef CONFIG_F2FS_CHECK_FS
Yunlong Song6415fed2017-08-02 21:20:13 +08002040 mir_exist = f2fs_test_and_clear_bit(offset,
2041 se->cur_valid_map_mir);
2042 if (unlikely(exist != mir_exist)) {
2043 f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
2044 "when clearing bitmap, blk:%u, old bit:%d",
2045 blkaddr, exist);
Jaegeuk Kim05796762014-09-02 16:05:00 -07002046 f2fs_bug_on(sbi, 1);
Chao Yu355e7892017-01-07 18:51:01 +08002047 }
Yunlong Song6415fed2017-08-02 21:20:13 +08002048#endif
2049 if (unlikely(!exist)) {
2050 f2fs_msg(sbi->sb, KERN_ERR,
2051 "Bitmap was wrongly cleared, blk:%u", blkaddr);
2052 f2fs_bug_on(sbi, 1);
Yunlong Song35ee82c2017-08-02 22:16:54 +08002053 se->valid_blocks++;
2054 del = 0;
Yunlong Song6415fed2017-08-02 21:20:13 +08002055 }
2056
Jaegeuk Kim3e025742016-08-02 10:56:40 -07002057 if (f2fs_discard_en(sbi) &&
2058 f2fs_test_and_clear_bit(offset, se->discard_map))
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002059 sbi->discard_blks++;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002060 }
2061 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
2062 se->ckpt_valid_blocks += del;
2063
2064 __mark_sit_entry_dirty(sbi, segno);
2065
2066 /* update total number of valid blocks to be written in ckpt area */
2067 SIT_I(sbi)->written_valid_blocks += del;
2068
2069 if (sbi->segs_per_sec > 1)
2070 get_sec_entry(sbi, segno)->valid_blocks += del;
2071}
2072
Chao Yu4d57b862018-05-30 00:20:41 +08002073void f2fs_invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002074{
2075 unsigned int segno = GET_SEGNO(sbi, addr);
2076 struct sit_info *sit_i = SIT_I(sbi);
2077
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07002078 f2fs_bug_on(sbi, addr == NULL_ADDR);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002079 if (addr == NEW_ADDR)
2080 return;
2081
Chao Yu6aa58d82018-08-14 22:37:25 +08002082 invalidate_mapping_pages(META_MAPPING(sbi), addr, addr);
2083
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002084 /* add it into sit main buffer */
Chao Yu3d26fa62017-10-30 17:49:53 +08002085 down_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002086
2087 update_sit_entry(sbi, addr, -1);
2088
2089 /* add it into dirty seglist */
2090 locate_dirty_segment(sbi, segno);
2091
Chao Yu3d26fa62017-10-30 17:49:53 +08002092 up_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002093}
2094
Chao Yu4d57b862018-05-30 00:20:41 +08002095bool f2fs_is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07002096{
2097 struct sit_info *sit_i = SIT_I(sbi);
2098 unsigned int segno, offset;
2099 struct seg_entry *se;
2100 bool is_cp = false;
2101
Chao Yue1da7872018-06-05 17:44:11 +08002102 if (!is_valid_data_blkaddr(sbi, blkaddr))
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07002103 return true;
2104
Chao Yu3d26fa62017-10-30 17:49:53 +08002105 down_read(&sit_i->sentry_lock);
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07002106
2107 segno = GET_SEGNO(sbi, blkaddr);
2108 se = get_seg_entry(sbi, segno);
2109 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
2110
2111 if (f2fs_test_bit(offset, se->ckpt_valid_map))
2112 is_cp = true;
2113
Chao Yu3d26fa62017-10-30 17:49:53 +08002114 up_read(&sit_i->sentry_lock);
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07002115
2116 return is_cp;
2117}
2118
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002119/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002120 * This function should be resided under the curseg_mutex lock
2121 */
2122static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
Haicheng Lie79efe32013-06-13 16:59:27 +08002123 struct f2fs_summary *sum)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002124{
2125 struct curseg_info *curseg = CURSEG_I(sbi, type);
2126 void *addr = curseg->sum_blk;
Haicheng Lie79efe32013-06-13 16:59:27 +08002127 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002128 memcpy(addr, sum, sizeof(struct f2fs_summary));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002129}
2130
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002131/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002132 * Calculate the number of current summary pages for writing
2133 */
Chao Yu4d57b862018-05-30 00:20:41 +08002134int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002135{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002136 int valid_sum_count = 0;
Fan Li9a479382013-10-29 16:21:47 +08002137 int i, sum_in_page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002138
2139 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
2140 if (sbi->ckpt->alloc_type[i] == SSR)
2141 valid_sum_count += sbi->blocks_per_seg;
Chao Yu3fa06d72014-12-09 14:21:46 +08002142 else {
2143 if (for_ra)
2144 valid_sum_count += le16_to_cpu(
2145 F2FS_CKPT(sbi)->cur_data_blkoff[i]);
2146 else
2147 valid_sum_count += curseg_blkoff(sbi, i);
2148 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002149 }
2150
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002151 sum_in_page = (PAGE_SIZE - 2 * SUM_JOURNAL_SIZE -
Fan Li9a479382013-10-29 16:21:47 +08002152 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
2153 if (valid_sum_count <= sum_in_page)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002154 return 1;
Fan Li9a479382013-10-29 16:21:47 +08002155 else if ((valid_sum_count - sum_in_page) <=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002156 (PAGE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002157 return 2;
2158 return 3;
2159}
2160
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002161/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002162 * Caller should put this summary page
2163 */
Chao Yu4d57b862018-05-30 00:20:41 +08002164struct page *f2fs_get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002165{
Chao Yu77357302018-07-17 00:02:17 +08002166 return f2fs_get_meta_page_nofail(sbi, GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002167}
2168
Chao Yu4d57b862018-05-30 00:20:41 +08002169void f2fs_update_meta_page(struct f2fs_sb_info *sbi,
2170 void *src, block_t blk_addr)
Chao Yu381722d2015-05-19 17:40:04 +08002171{
Chao Yu4d57b862018-05-30 00:20:41 +08002172 struct page *page = f2fs_grab_meta_page(sbi, blk_addr);
Chao Yu381722d2015-05-19 17:40:04 +08002173
Chao Yu0537b812017-11-02 20:41:02 +08002174 memcpy(page_address(page), src, PAGE_SIZE);
Chao Yu381722d2015-05-19 17:40:04 +08002175 set_page_dirty(page);
2176 f2fs_put_page(page, 1);
2177}
2178
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002179static void write_sum_page(struct f2fs_sb_info *sbi,
2180 struct f2fs_summary_block *sum_blk, block_t blk_addr)
2181{
Chao Yu4d57b862018-05-30 00:20:41 +08002182 f2fs_update_meta_page(sbi, (void *)sum_blk, blk_addr);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002183}
2184
Chao Yub7ad7512016-02-19 18:08:46 +08002185static void write_current_sum_page(struct f2fs_sb_info *sbi,
2186 int type, block_t blk_addr)
2187{
2188 struct curseg_info *curseg = CURSEG_I(sbi, type);
Chao Yu4d57b862018-05-30 00:20:41 +08002189 struct page *page = f2fs_grab_meta_page(sbi, blk_addr);
Chao Yub7ad7512016-02-19 18:08:46 +08002190 struct f2fs_summary_block *src = curseg->sum_blk;
2191 struct f2fs_summary_block *dst;
2192
2193 dst = (struct f2fs_summary_block *)page_address(page);
Chao Yu81114ba2018-04-09 20:25:06 +08002194 memset(dst, 0, PAGE_SIZE);
Chao Yub7ad7512016-02-19 18:08:46 +08002195
2196 mutex_lock(&curseg->curseg_mutex);
2197
2198 down_read(&curseg->journal_rwsem);
2199 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE);
2200 up_read(&curseg->journal_rwsem);
2201
2202 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE);
2203 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE);
2204
2205 mutex_unlock(&curseg->curseg_mutex);
2206
2207 set_page_dirty(page);
2208 f2fs_put_page(page, 1);
2209}
2210
Jaegeuk Kima7881892017-04-20 13:51:57 -07002211static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
2212{
2213 struct curseg_info *curseg = CURSEG_I(sbi, type);
2214 unsigned int segno = curseg->segno + 1;
2215 struct free_segmap_info *free_i = FREE_I(sbi);
2216
2217 if (segno < MAIN_SEGS(sbi) && segno % sbi->segs_per_sec)
2218 return !test_bit(segno, free_i->free_segmap);
2219 return 0;
2220}
2221
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002222/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002223 * Find a new segment from the free segments bitmap to right order
2224 * This function should be returned with success, otherwise BUG
2225 */
2226static void get_new_segment(struct f2fs_sb_info *sbi,
2227 unsigned int *newseg, bool new_sec, int dir)
2228{
2229 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002230 unsigned int segno, secno, zoneno;
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002231 unsigned int total_zones = MAIN_SECS(sbi) / sbi->secs_per_zone;
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -07002232 unsigned int hint = GET_SEC_FROM_SEG(sbi, *newseg);
2233 unsigned int old_zoneno = GET_ZONE_FROM_SEG(sbi, *newseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002234 unsigned int left_start = hint;
2235 bool init = true;
2236 int go_left = 0;
2237 int i;
2238
Chao Yu1a118cc2015-02-11 18:20:38 +08002239 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002240
2241 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
2242 segno = find_next_zero_bit(free_i->free_segmap,
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -07002243 GET_SEG_FROM_SEC(sbi, hint + 1), *newseg + 1);
2244 if (segno < GET_SEG_FROM_SEC(sbi, hint + 1))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002245 goto got_it;
2246 }
2247find_other_zone:
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002248 secno = find_next_zero_bit(free_i->free_secmap, MAIN_SECS(sbi), hint);
2249 if (secno >= MAIN_SECS(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002250 if (dir == ALLOC_RIGHT) {
2251 secno = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002252 MAIN_SECS(sbi), 0);
2253 f2fs_bug_on(sbi, secno >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002254 } else {
2255 go_left = 1;
2256 left_start = hint - 1;
2257 }
2258 }
2259 if (go_left == 0)
2260 goto skip_left;
2261
2262 while (test_bit(left_start, free_i->free_secmap)) {
2263 if (left_start > 0) {
2264 left_start--;
2265 continue;
2266 }
2267 left_start = find_next_zero_bit(free_i->free_secmap,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002268 MAIN_SECS(sbi), 0);
2269 f2fs_bug_on(sbi, left_start >= MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002270 break;
2271 }
2272 secno = left_start;
2273skip_left:
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -07002274 segno = GET_SEG_FROM_SEC(sbi, secno);
2275 zoneno = GET_ZONE_FROM_SEC(sbi, secno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002276
2277 /* give up on finding another zone */
2278 if (!init)
2279 goto got_it;
2280 if (sbi->secs_per_zone == 1)
2281 goto got_it;
2282 if (zoneno == old_zoneno)
2283 goto got_it;
2284 if (dir == ALLOC_LEFT) {
2285 if (!go_left && zoneno + 1 >= total_zones)
2286 goto got_it;
2287 if (go_left && zoneno == 0)
2288 goto got_it;
2289 }
2290 for (i = 0; i < NR_CURSEG_TYPE; i++)
2291 if (CURSEG_I(sbi, i)->zone == zoneno)
2292 break;
2293
2294 if (i < NR_CURSEG_TYPE) {
2295 /* zone is in user, try another */
2296 if (go_left)
2297 hint = zoneno * sbi->secs_per_zone - 1;
2298 else if (zoneno + 1 >= total_zones)
2299 hint = 0;
2300 else
2301 hint = (zoneno + 1) * sbi->secs_per_zone;
2302 init = false;
2303 goto find_other_zone;
2304 }
2305got_it:
2306 /* set it as dirty segment in free segmap */
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07002307 f2fs_bug_on(sbi, test_bit(segno, free_i->free_segmap));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002308 __set_inuse(sbi, segno);
2309 *newseg = segno;
Chao Yu1a118cc2015-02-11 18:20:38 +08002310 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002311}
2312
2313static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
2314{
2315 struct curseg_info *curseg = CURSEG_I(sbi, type);
2316 struct summary_footer *sum_footer;
2317
2318 curseg->segno = curseg->next_segno;
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -07002319 curseg->zone = GET_ZONE_FROM_SEG(sbi, curseg->segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002320 curseg->next_blkoff = 0;
2321 curseg->next_segno = NULL_SEGNO;
2322
2323 sum_footer = &(curseg->sum_blk->footer);
2324 memset(sum_footer, 0, sizeof(struct summary_footer));
2325 if (IS_DATASEG(type))
2326 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
2327 if (IS_NODESEG(type))
2328 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
2329 __set_sit_entry_type(sbi, type, curseg->segno, modified);
2330}
2331
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04002332static unsigned int __get_next_segno(struct f2fs_sb_info *sbi, int type)
2333{
Jaegeuk Kima7881892017-04-20 13:51:57 -07002334 /* if segs_per_sec is large than 1, we need to keep original policy. */
2335 if (sbi->segs_per_sec != 1)
2336 return CURSEG_I(sbi, type)->segno;
2337
Yunlong Songb94929d2018-01-29 11:37:45 +08002338 if (test_opt(sbi, NOHEAP) &&
2339 (type == CURSEG_HOT_DATA || IS_NODESEG(type)))
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04002340 return 0;
2341
Jaegeuk Kime066b832017-04-13 15:17:00 -07002342 if (SIT_I(sbi)->last_victim[ALLOC_NEXT])
2343 return SIT_I(sbi)->last_victim[ALLOC_NEXT];
Jaegeuk Kim07939622018-02-18 08:50:49 -08002344
2345 /* find segments from 0 to reuse freed segments */
Chao Yu63189b72018-03-08 14:22:56 +08002346 if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_REUSE)
Jaegeuk Kim07939622018-02-18 08:50:49 -08002347 return 0;
2348
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04002349 return CURSEG_I(sbi, type)->segno;
2350}
2351
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002352/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002353 * Allocate a current working segment.
2354 * This function always allocates a free segment in LFS manner.
2355 */
2356static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
2357{
2358 struct curseg_info *curseg = CURSEG_I(sbi, type);
2359 unsigned int segno = curseg->segno;
2360 int dir = ALLOC_LEFT;
2361
2362 write_sum_page(sbi, curseg->sum_blk,
Haicheng Li81fb5e82013-05-14 18:20:28 +08002363 GET_SUM_BLOCK(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002364 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
2365 dir = ALLOC_RIGHT;
2366
2367 if (test_opt(sbi, NOHEAP))
2368 dir = ALLOC_RIGHT;
2369
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04002370 segno = __get_next_segno(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002371 get_new_segment(sbi, &segno, new_sec, dir);
2372 curseg->next_segno = segno;
2373 reset_curseg(sbi, type, 1);
2374 curseg->alloc_type = LFS;
2375}
2376
2377static void __next_free_blkoff(struct f2fs_sb_info *sbi,
2378 struct curseg_info *seg, block_t start)
2379{
2380 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
Changman Leee81c93c2013-11-15 13:21:16 +09002381 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08002382 unsigned long *target_map = SIT_I(sbi)->tmp_map;
Changman Leee81c93c2013-11-15 13:21:16 +09002383 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
2384 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
2385 int i, pos;
2386
2387 for (i = 0; i < entries; i++)
2388 target_map[i] = ckpt_map[i] | cur_map[i];
2389
2390 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
2391
2392 seg->next_blkoff = pos;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002393}
2394
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002395/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002396 * If a segment is written by LFS manner, next block offset is just obtained
2397 * by increasing the current block offset. However, if a segment is written by
2398 * SSR manner, next block offset obtained by calling __next_free_blkoff
2399 */
2400static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
2401 struct curseg_info *seg)
2402{
2403 if (seg->alloc_type == SSR)
2404 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
2405 else
2406 seg->next_blkoff++;
2407}
2408
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002409/*
arter97e1c42042014-08-06 23:22:50 +09002410 * This function always allocates a used segment(from dirty seglist) by SSR
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002411 * manner, so it should recover the existing segment information of valid blocks
2412 */
Chao Yu025d63a2017-08-30 18:04:48 +08002413static void change_curseg(struct f2fs_sb_info *sbi, int type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002414{
2415 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
2416 struct curseg_info *curseg = CURSEG_I(sbi, type);
2417 unsigned int new_segno = curseg->next_segno;
2418 struct f2fs_summary_block *sum_node;
2419 struct page *sum_page;
2420
2421 write_sum_page(sbi, curseg->sum_blk,
2422 GET_SUM_BLOCK(sbi, curseg->segno));
2423 __set_test_and_inuse(sbi, new_segno);
2424
2425 mutex_lock(&dirty_i->seglist_lock);
2426 __remove_dirty_segment(sbi, new_segno, PRE);
2427 __remove_dirty_segment(sbi, new_segno, DIRTY);
2428 mutex_unlock(&dirty_i->seglist_lock);
2429
2430 reset_curseg(sbi, type, 1);
2431 curseg->alloc_type = SSR;
2432 __next_free_blkoff(sbi, curseg, 0);
2433
Chao Yu4d57b862018-05-30 00:20:41 +08002434 sum_page = f2fs_get_sum_page(sbi, new_segno);
Chao Yu025d63a2017-08-30 18:04:48 +08002435 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
2436 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
2437 f2fs_put_page(sum_page, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002438}
2439
Jaegeuk Kim43727522013-02-04 15:11:17 +09002440static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
2441{
2442 struct curseg_info *curseg = CURSEG_I(sbi, type);
2443 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
Jaegeuk Kime066b832017-04-13 15:17:00 -07002444 unsigned segno = NULL_SEGNO;
Chao Yud27c3d82017-02-24 18:46:00 +08002445 int i, cnt;
2446 bool reversed = false;
Jaegeuk Kimc192f7a2017-02-22 17:10:18 -08002447
Chao Yu4d57b862018-05-30 00:20:41 +08002448 /* f2fs_need_SSR() already forces to do this */
Jaegeuk Kime066b832017-04-13 15:17:00 -07002449 if (v_ops->get_victim(sbi, &segno, BG_GC, type, SSR)) {
2450 curseg->next_segno = segno;
Jaegeuk Kimc192f7a2017-02-22 17:10:18 -08002451 return 1;
Jaegeuk Kime066b832017-04-13 15:17:00 -07002452 }
Jaegeuk Kim43727522013-02-04 15:11:17 +09002453
Jaegeuk Kim70d625c2017-02-22 17:02:32 -08002454 /* For node segments, let's do SSR more intensively */
2455 if (IS_NODESEG(type)) {
Chao Yud27c3d82017-02-24 18:46:00 +08002456 if (type >= CURSEG_WARM_NODE) {
2457 reversed = true;
2458 i = CURSEG_COLD_NODE;
2459 } else {
2460 i = CURSEG_HOT_NODE;
2461 }
2462 cnt = NR_CURSEG_NODE_TYPE;
Jaegeuk Kim70d625c2017-02-22 17:02:32 -08002463 } else {
Chao Yud27c3d82017-02-24 18:46:00 +08002464 if (type >= CURSEG_WARM_DATA) {
2465 reversed = true;
2466 i = CURSEG_COLD_DATA;
2467 } else {
2468 i = CURSEG_HOT_DATA;
2469 }
2470 cnt = NR_CURSEG_DATA_TYPE;
Jaegeuk Kim70d625c2017-02-22 17:02:32 -08002471 }
Jaegeuk Kim43727522013-02-04 15:11:17 +09002472
Chao Yud27c3d82017-02-24 18:46:00 +08002473 for (; cnt-- > 0; reversed ? i-- : i++) {
Jaegeuk Kimc192f7a2017-02-22 17:10:18 -08002474 if (i == type)
2475 continue;
Jaegeuk Kime066b832017-04-13 15:17:00 -07002476 if (v_ops->get_victim(sbi, &segno, BG_GC, i, SSR)) {
2477 curseg->next_segno = segno;
Jaegeuk Kim43727522013-02-04 15:11:17 +09002478 return 1;
Jaegeuk Kime066b832017-04-13 15:17:00 -07002479 }
Jaegeuk Kimc192f7a2017-02-22 17:10:18 -08002480 }
Jaegeuk Kim43727522013-02-04 15:11:17 +09002481 return 0;
2482}
2483
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002484/*
2485 * flush out current segment and replace it with new segment
2486 * This function should be returned with success, otherwise BUG
2487 */
2488static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
2489 int type, bool force)
2490{
Jaegeuk Kima7881892017-04-20 13:51:57 -07002491 struct curseg_info *curseg = CURSEG_I(sbi, type);
2492
Gu Zheng7b405272013-08-19 09:41:15 +08002493 if (force)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002494 new_curseg(sbi, type, true);
Jaegeuk Kim5b6c6be2017-02-14 19:32:51 -08002495 else if (!is_set_ckpt_flags(sbi, CP_CRC_RECOVERY_FLAG) &&
2496 type == CURSEG_WARM_NODE)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002497 new_curseg(sbi, type, false);
Jaegeuk Kima7881892017-04-20 13:51:57 -07002498 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
2499 new_curseg(sbi, type, false);
Chao Yu4d57b862018-05-30 00:20:41 +08002500 else if (f2fs_need_SSR(sbi) && get_ssr_segment(sbi, type))
Chao Yu025d63a2017-08-30 18:04:48 +08002501 change_curseg(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002502 else
2503 new_curseg(sbi, type, false);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09002504
Jaegeuk Kima7881892017-04-20 13:51:57 -07002505 stat_inc_seg_type(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002506}
2507
Chao Yu4d57b862018-05-30 00:20:41 +08002508void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002509{
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08002510 struct curseg_info *curseg;
2511 unsigned int old_segno;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002512 int i;
2513
Chao Yu3d26fa62017-10-30 17:49:53 +08002514 down_write(&SIT_I(sbi)->sentry_lock);
2515
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08002516 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
2517 curseg = CURSEG_I(sbi, i);
2518 old_segno = curseg->segno;
2519 SIT_I(sbi)->s_ops->allocate_segment(sbi, i, true);
2520 locate_dirty_segment(sbi, old_segno);
2521 }
Chao Yu3d26fa62017-10-30 17:49:53 +08002522
2523 up_write(&SIT_I(sbi)->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002524}
2525
2526static const struct segment_allocation default_salloc_ops = {
2527 .allocate_segment = allocate_segment_by_default,
2528};
2529
Chao Yu4d57b862018-05-30 00:20:41 +08002530bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi,
2531 struct cp_control *cpc)
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08002532{
2533 __u64 trim_start = cpc->trim_start;
2534 bool has_candidate = false;
2535
Chao Yu3d26fa62017-10-30 17:49:53 +08002536 down_write(&SIT_I(sbi)->sentry_lock);
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08002537 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++) {
2538 if (add_discard_addrs(sbi, cpc, true)) {
2539 has_candidate = true;
2540 break;
2541 }
2542 }
Chao Yu3d26fa62017-10-30 17:49:53 +08002543 up_write(&SIT_I(sbi)->sentry_lock);
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08002544
2545 cpc->trim_start = trim_start;
2546 return has_candidate;
2547}
2548
Chao Yu01f9cf62018-06-25 20:33:24 +08002549static unsigned int __issue_discard_cmd_range(struct f2fs_sb_info *sbi,
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002550 struct discard_policy *dpolicy,
2551 unsigned int start, unsigned int end)
2552{
2553 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
2554 struct discard_cmd *prev_dc = NULL, *next_dc = NULL;
2555 struct rb_node **insert_p = NULL, *insert_parent = NULL;
2556 struct discard_cmd *dc;
2557 struct blk_plug plug;
2558 int issued;
Chao Yu01f9cf62018-06-25 20:33:24 +08002559 unsigned int trimmed = 0;
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002560
2561next:
2562 issued = 0;
2563
2564 mutex_lock(&dcc->cmd_lock);
Chao Yu67fce702018-06-22 16:06:59 +08002565 if (unlikely(dcc->rbtree_check))
2566 f2fs_bug_on(sbi, !f2fs_check_rb_tree_consistence(sbi,
2567 &dcc->root));
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002568
Chao Yu4d57b862018-05-30 00:20:41 +08002569 dc = (struct discard_cmd *)f2fs_lookup_rb_tree_ret(&dcc->root,
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002570 NULL, start,
2571 (struct rb_entry **)&prev_dc,
2572 (struct rb_entry **)&next_dc,
2573 &insert_p, &insert_parent, true);
2574 if (!dc)
2575 dc = next_dc;
2576
2577 blk_start_plug(&plug);
2578
2579 while (dc && dc->lstart <= end) {
2580 struct rb_node *node;
Chao Yu6b9cb122018-08-08 10:14:55 +08002581 int err = 0;
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002582
2583 if (dc->len < dpolicy->granularity)
2584 goto skip;
2585
2586 if (dc->state != D_PREP) {
2587 list_move_tail(&dc->list, &dcc->fstrim_list);
2588 goto skip;
2589 }
2590
Chao Yu6b9cb122018-08-08 10:14:55 +08002591 err = __submit_discard_cmd(sbi, dpolicy, dc, &issued);
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002592
Chao Yu35ec7d52018-08-06 22:43:50 +08002593 if (issued >= dpolicy->max_requests) {
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002594 start = dc->lstart + dc->len;
2595
Chao Yu6b9cb122018-08-08 10:14:55 +08002596 if (err)
2597 __remove_discard_cmd(sbi, dc);
2598
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002599 blk_finish_plug(&plug);
2600 mutex_unlock(&dcc->cmd_lock);
Chao Yu01f9cf62018-06-25 20:33:24 +08002601 trimmed += __wait_all_discard_cmd(sbi, NULL);
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002602 congestion_wait(BLK_RW_ASYNC, HZ/50);
2603 goto next;
2604 }
2605skip:
2606 node = rb_next(&dc->rb_node);
Chao Yu6b9cb122018-08-08 10:14:55 +08002607 if (err)
2608 __remove_discard_cmd(sbi, dc);
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002609 dc = rb_entry_safe(node, struct discard_cmd, rb_node);
2610
2611 if (fatal_signal_pending(current))
2612 break;
2613 }
2614
2615 blk_finish_plug(&plug);
2616 mutex_unlock(&dcc->cmd_lock);
Chao Yu01f9cf62018-06-25 20:33:24 +08002617
2618 return trimmed;
Jaegeuk Kim9a997182018-05-24 13:57:26 -07002619}
2620
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002621int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
2622{
Jaegeuk Kimf7ef9b82015-02-09 12:02:44 -08002623 __u64 start = F2FS_BYTES_TO_BLK(range->start);
2624 __u64 end = start + F2FS_BYTES_TO_BLK(range->len) - 1;
Chao Yu377224c2018-04-09 10:25:23 +08002625 unsigned int start_segno, end_segno;
Chao Yu84126632017-10-04 09:08:32 +08002626 block_t start_block, end_block;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002627 struct cp_control cpc;
Chao Yu78997b52017-10-04 09:08:34 +08002628 struct discard_policy dpolicy;
Chao Yu0ea80512017-10-28 16:52:32 +08002629 unsigned long long trimmed = 0;
Chao Yuc34f42e2015-12-23 17:50:30 +08002630 int err = 0;
Yunlong Songad6672b2018-07-19 20:58:15 +08002631 bool need_align = test_opt(sbi, LFS) && sbi->segs_per_sec > 1;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002632
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07002633 if (start >= MAX_BLKADDR(sbi) || range->len < sbi->blocksize)
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002634 return -EINVAL;
2635
Chao Yu3f16ecd92018-08-08 17:36:29 +08002636 if (end < MAIN_BLKADDR(sbi))
2637 goto out;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002638
Yunlei Heed214a12016-09-01 10:14:39 +08002639 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
2640 f2fs_msg(sbi->sb, KERN_WARNING,
2641 "Found FS corruption, run fsck to fix.");
Chao Yu3d165dc2018-04-08 20:39:03 +08002642 return -EIO;
Yunlei Heed214a12016-09-01 10:14:39 +08002643 }
2644
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002645 /* start/end segment number in main_area */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07002646 start_segno = (start <= MAIN_BLKADDR(sbi)) ? 0 : GET_SEGNO(sbi, start);
2647 end_segno = (end >= MAX_BLKADDR(sbi)) ? MAIN_SEGS(sbi) - 1 :
2648 GET_SEGNO(sbi, end);
Yunlong Songad6672b2018-07-19 20:58:15 +08002649 if (need_align) {
2650 start_segno = rounddown(start_segno, sbi->segs_per_sec);
2651 end_segno = roundup(end_segno + 1, sbi->segs_per_sec) - 1;
2652 }
Chao Yu84126632017-10-04 09:08:32 +08002653
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002654 cpc.reason = CP_DISCARD;
Jaegeuk Kim836b5a62015-04-30 22:50:06 -07002655 cpc.trim_minlen = max_t(__u64, 1, F2FS_BYTES_TO_BLK(range->minlen));
Chao Yu377224c2018-04-09 10:25:23 +08002656 cpc.trim_start = start_segno;
2657 cpc.trim_end = end_segno;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002658
Chao Yu377224c2018-04-09 10:25:23 +08002659 if (sbi->discard_blks == 0)
2660 goto out;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002661
Chao Yu377224c2018-04-09 10:25:23 +08002662 mutex_lock(&sbi->gc_mutex);
Chao Yu4d57b862018-05-30 00:20:41 +08002663 err = f2fs_write_checkpoint(sbi, &cpc);
Chao Yu377224c2018-04-09 10:25:23 +08002664 mutex_unlock(&sbi->gc_mutex);
2665 if (err)
2666 goto out;
Chao Yu84126632017-10-04 09:08:32 +08002667
Jaegeuk Kime555da92018-05-31 10:20:48 -07002668 /*
2669 * We filed discard candidates, but actually we don't need to wait for
2670 * all of them, since they'll be issued in idle time along with runtime
2671 * discard option. User configuration looks like using runtime discard
2672 * or periodic fstrim instead of it.
2673 */
Jaegeuk Kim5a615492018-06-20 21:27:21 -07002674 if (test_opt(sbi, DISCARD))
2675 goto out;
2676
2677 start_block = START_BLOCK(sbi, start_segno);
2678 end_block = START_BLOCK(sbi, end_segno + 1);
2679
2680 __init_discard_policy(sbi, &dpolicy, DPOLICY_FSTRIM, cpc.trim_minlen);
Chao Yu01f9cf62018-06-25 20:33:24 +08002681 trimmed = __issue_discard_cmd_range(sbi, &dpolicy,
2682 start_block, end_block);
Jaegeuk Kim5a615492018-06-20 21:27:21 -07002683
Chao Yu01f9cf62018-06-25 20:33:24 +08002684 trimmed += __wait_discard_cmd_range(sbi, &dpolicy,
Chao Yu0ea80512017-10-28 16:52:32 +08002685 start_block, end_block);
Chao Yu377224c2018-04-09 10:25:23 +08002686out:
Chao Yu6eae2692018-08-05 23:09:00 +08002687 if (!err)
2688 range->len = F2FS_BLK_TO_BYTES(trimmed);
Chao Yuc34f42e2015-12-23 17:50:30 +08002689 return err;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07002690}
2691
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002692static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
2693{
2694 struct curseg_info *curseg = CURSEG_I(sbi, type);
2695 if (curseg->next_blkoff < sbi->blocks_per_seg)
2696 return true;
2697 return false;
2698}
2699
Chao Yu4d57b862018-05-30 00:20:41 +08002700int f2fs_rw_hint_to_seg_type(enum rw_hint hint)
Hyunchul Lee4f0a03d32017-11-09 14:51:27 +09002701{
2702 switch (hint) {
2703 case WRITE_LIFE_SHORT:
2704 return CURSEG_HOT_DATA;
2705 case WRITE_LIFE_EXTREME:
2706 return CURSEG_COLD_DATA;
2707 default:
2708 return CURSEG_WARM_DATA;
2709 }
2710}
2711
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002712/* This returns write hints for each segment type. This hints will be
2713 * passed down to block layer. There are mapping tables which depend on
2714 * the mount option 'whint_mode'.
2715 *
2716 * 1) whint_mode=off. F2FS only passes down WRITE_LIFE_NOT_SET.
2717 *
2718 * 2) whint_mode=user-based. F2FS tries to pass down hints given by users.
2719 *
2720 * User F2FS Block
2721 * ---- ---- -----
2722 * META WRITE_LIFE_NOT_SET
2723 * HOT_NODE "
2724 * WARM_NODE "
2725 * COLD_NODE "
2726 * ioctl(COLD) COLD_DATA WRITE_LIFE_EXTREME
2727 * extension list " "
2728 *
2729 * -- buffered io
2730 * WRITE_LIFE_EXTREME COLD_DATA WRITE_LIFE_EXTREME
2731 * WRITE_LIFE_SHORT HOT_DATA WRITE_LIFE_SHORT
2732 * WRITE_LIFE_NOT_SET WARM_DATA WRITE_LIFE_NOT_SET
2733 * WRITE_LIFE_NONE " "
2734 * WRITE_LIFE_MEDIUM " "
2735 * WRITE_LIFE_LONG " "
2736 *
2737 * -- direct io
2738 * WRITE_LIFE_EXTREME COLD_DATA WRITE_LIFE_EXTREME
2739 * WRITE_LIFE_SHORT HOT_DATA WRITE_LIFE_SHORT
2740 * WRITE_LIFE_NOT_SET WARM_DATA WRITE_LIFE_NOT_SET
2741 * WRITE_LIFE_NONE " WRITE_LIFE_NONE
2742 * WRITE_LIFE_MEDIUM " WRITE_LIFE_MEDIUM
2743 * WRITE_LIFE_LONG " WRITE_LIFE_LONG
2744 *
Hyunchul Leef2e703f2018-01-31 11:36:58 +09002745 * 3) whint_mode=fs-based. F2FS passes down hints with its policy.
2746 *
2747 * User F2FS Block
2748 * ---- ---- -----
2749 * META WRITE_LIFE_MEDIUM;
2750 * HOT_NODE WRITE_LIFE_NOT_SET
2751 * WARM_NODE "
2752 * COLD_NODE WRITE_LIFE_NONE
2753 * ioctl(COLD) COLD_DATA WRITE_LIFE_EXTREME
2754 * extension list " "
2755 *
2756 * -- buffered io
2757 * WRITE_LIFE_EXTREME COLD_DATA WRITE_LIFE_EXTREME
2758 * WRITE_LIFE_SHORT HOT_DATA WRITE_LIFE_SHORT
2759 * WRITE_LIFE_NOT_SET WARM_DATA WRITE_LIFE_LONG
2760 * WRITE_LIFE_NONE " "
2761 * WRITE_LIFE_MEDIUM " "
2762 * WRITE_LIFE_LONG " "
2763 *
2764 * -- direct io
2765 * WRITE_LIFE_EXTREME COLD_DATA WRITE_LIFE_EXTREME
2766 * WRITE_LIFE_SHORT HOT_DATA WRITE_LIFE_SHORT
2767 * WRITE_LIFE_NOT_SET WARM_DATA WRITE_LIFE_NOT_SET
2768 * WRITE_LIFE_NONE " WRITE_LIFE_NONE
2769 * WRITE_LIFE_MEDIUM " WRITE_LIFE_MEDIUM
2770 * WRITE_LIFE_LONG " WRITE_LIFE_LONG
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002771 */
2772
Chao Yu4d57b862018-05-30 00:20:41 +08002773enum rw_hint f2fs_io_type_to_rw_hint(struct f2fs_sb_info *sbi,
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002774 enum page_type type, enum temp_type temp)
2775{
Chao Yu63189b72018-03-08 14:22:56 +08002776 if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_USER) {
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002777 if (type == DATA) {
Hyunchul Leef2e703f2018-01-31 11:36:58 +09002778 if (temp == WARM)
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002779 return WRITE_LIFE_NOT_SET;
Hyunchul Leef2e703f2018-01-31 11:36:58 +09002780 else if (temp == HOT)
2781 return WRITE_LIFE_SHORT;
2782 else if (temp == COLD)
2783 return WRITE_LIFE_EXTREME;
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002784 } else {
2785 return WRITE_LIFE_NOT_SET;
2786 }
Chao Yu63189b72018-03-08 14:22:56 +08002787 } else if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_FS) {
Hyunchul Leef2e703f2018-01-31 11:36:58 +09002788 if (type == DATA) {
2789 if (temp == WARM)
2790 return WRITE_LIFE_LONG;
2791 else if (temp == HOT)
2792 return WRITE_LIFE_SHORT;
2793 else if (temp == COLD)
2794 return WRITE_LIFE_EXTREME;
2795 } else if (type == NODE) {
2796 if (temp == WARM || temp == HOT)
2797 return WRITE_LIFE_NOT_SET;
2798 else if (temp == COLD)
2799 return WRITE_LIFE_NONE;
2800 } else if (type == META) {
2801 return WRITE_LIFE_MEDIUM;
2802 }
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002803 }
Hyunchul Leef2e703f2018-01-31 11:36:58 +09002804 return WRITE_LIFE_NOT_SET;
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09002805}
2806
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07002807static int __get_segment_type_2(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002808{
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07002809 if (fio->type == DATA)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002810 return CURSEG_HOT_DATA;
2811 else
2812 return CURSEG_HOT_NODE;
2813}
2814
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07002815static int __get_segment_type_4(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002816{
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07002817 if (fio->type == DATA) {
2818 struct inode *inode = fio->page->mapping->host;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002819
2820 if (S_ISDIR(inode->i_mode))
2821 return CURSEG_HOT_DATA;
2822 else
2823 return CURSEG_COLD_DATA;
2824 } else {
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07002825 if (IS_DNODE(fio->page) && is_cold_node(fio->page))
Jaegeuk Kima344b9f2014-11-05 20:05:53 -08002826 return CURSEG_WARM_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002827 else
2828 return CURSEG_COLD_NODE;
2829 }
2830}
2831
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07002832static int __get_segment_type_6(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002833{
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07002834 if (fio->type == DATA) {
2835 struct inode *inode = fio->page->mapping->host;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002836
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07002837 if (is_cold_data(fio->page) || file_is_cold(inode))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002838 return CURSEG_COLD_DATA;
Chao Yub6a06cb2018-02-28 17:07:27 +08002839 if (file_is_hot(inode) ||
Chao Yub4c3ca82018-04-26 17:05:50 +08002840 is_inode_flag_set(inode, FI_HOT_DATA) ||
Chao Yu2079f112018-07-17 20:41:48 +08002841 f2fs_is_atomic_file(inode) ||
2842 f2fs_is_volatile_file(inode))
Jaegeuk Kimef095d12017-03-24 20:05:13 -04002843 return CURSEG_HOT_DATA;
Chao Yu4d57b862018-05-30 00:20:41 +08002844 return f2fs_rw_hint_to_seg_type(inode->i_write_hint);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002845 } else {
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07002846 if (IS_DNODE(fio->page))
2847 return is_cold_node(fio->page) ? CURSEG_WARM_NODE :
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002848 CURSEG_HOT_NODE;
Jaegeuk Kimef095d12017-03-24 20:05:13 -04002849 return CURSEG_COLD_NODE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002850 }
2851}
2852
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07002853static int __get_segment_type(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002854{
Jaegeuk Kima912b542017-05-10 11:18:25 -07002855 int type = 0;
2856
Chao Yu63189b72018-03-08 14:22:56 +08002857 switch (F2FS_OPTION(fio->sbi).active_logs) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002858 case 2:
Jaegeuk Kima912b542017-05-10 11:18:25 -07002859 type = __get_segment_type_2(fio);
2860 break;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002861 case 4:
Jaegeuk Kima912b542017-05-10 11:18:25 -07002862 type = __get_segment_type_4(fio);
2863 break;
2864 case 6:
2865 type = __get_segment_type_6(fio);
2866 break;
2867 default:
2868 f2fs_bug_on(fio->sbi, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002869 }
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07002870
Jaegeuk Kima912b542017-05-10 11:18:25 -07002871 if (IS_HOT(type))
2872 fio->temp = HOT;
2873 else if (IS_WARM(type))
2874 fio->temp = WARM;
2875 else
2876 fio->temp = COLD;
2877 return type;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002878}
2879
Chao Yu4d57b862018-05-30 00:20:41 +08002880void f2fs_allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09002881 block_t old_blkaddr, block_t *new_blkaddr,
Chao Yufb830fc2017-05-19 23:37:01 +08002882 struct f2fs_summary *sum, int type,
2883 struct f2fs_io_info *fio, bool add_list)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002884{
2885 struct sit_info *sit_i = SIT_I(sbi);
Jaegeuk Kim6ae1be12016-11-11 12:31:40 -08002886 struct curseg_info *curseg = CURSEG_I(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002887
Chao Yu2b603112017-11-02 20:41:03 +08002888 down_read(&SM_I(sbi)->curseg_lock);
2889
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002890 mutex_lock(&curseg->curseg_mutex);
Chao Yu3d26fa62017-10-30 17:49:53 +08002891 down_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002892
2893 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002894
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08002895 f2fs_wait_discard_bio(sbi, *new_blkaddr);
2896
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002897 /*
2898 * __add_sum_entry should be resided under the curseg_mutex
2899 * because, this function updates a summary entry in the
2900 * current summary block.
2901 */
Haicheng Lie79efe32013-06-13 16:59:27 +08002902 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002903
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002904 __refresh_next_blkoff(sbi, curseg);
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09002905
2906 stat_inc_block_count(sbi, curseg);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002907
Yunlong Song65f1b802017-10-30 09:33:41 +08002908 /*
2909 * SIT information should be updated before segment allocation,
2910 * since SSR needs latest valid block information.
2911 */
2912 update_sit_entry(sbi, *new_blkaddr, 1);
2913 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
2914 update_sit_entry(sbi, old_blkaddr, -1);
2915
Yunlong Song3436c4b2017-02-21 16:59:26 +08002916 if (!__has_curseg_space(sbi, type))
2917 sit_i->s_ops->allocate_segment(sbi, type, false);
Yunlong Song65f1b802017-10-30 09:33:41 +08002918
Jaegeuk Kimc6f82fe92017-04-04 16:45:30 -07002919 /*
Yunlong Song65f1b802017-10-30 09:33:41 +08002920 * segment dirty status should be updated after segment allocation,
2921 * so we just need to update status only one time after previous
2922 * segment being closed.
Jaegeuk Kimc6f82fe92017-04-04 16:45:30 -07002923 */
Yunlong Song65f1b802017-10-30 09:33:41 +08002924 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
2925 locate_dirty_segment(sbi, GET_SEGNO(sbi, *new_blkaddr));
Yunlong Song3436c4b2017-02-21 16:59:26 +08002926
Chao Yu3d26fa62017-10-30 17:49:53 +08002927 up_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002928
Chao Yu704956e2017-07-31 20:19:09 +08002929 if (page && IS_NODESEG(type)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002930 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
2931
Chao Yu704956e2017-07-31 20:19:09 +08002932 f2fs_inode_chksum_set(sbi, page);
2933 }
2934
Chao Yufb830fc2017-05-19 23:37:01 +08002935 if (add_list) {
2936 struct f2fs_bio_info *io;
2937
2938 INIT_LIST_HEAD(&fio->list);
2939 fio->in_list = true;
Chao Yufe16efe2018-05-28 23:47:18 +08002940 fio->retry = false;
Chao Yufb830fc2017-05-19 23:37:01 +08002941 io = sbi->write_io[fio->type] + fio->temp;
2942 spin_lock(&io->io_lock);
2943 list_add_tail(&fio->list, &io->io_list);
2944 spin_unlock(&io->io_lock);
2945 }
2946
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09002947 mutex_unlock(&curseg->curseg_mutex);
Chao Yu2b603112017-11-02 20:41:03 +08002948
2949 up_read(&SM_I(sbi)->curseg_lock);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09002950}
2951
Chao Yu39d787b2017-09-29 13:59:38 +08002952static void update_device_state(struct f2fs_io_info *fio)
2953{
2954 struct f2fs_sb_info *sbi = fio->sbi;
2955 unsigned int devidx;
2956
2957 if (!sbi->s_ndevs)
2958 return;
2959
2960 devidx = f2fs_target_device_index(sbi, fio->new_blkaddr);
2961
2962 /* update device state for fsync */
Chao Yu4d57b862018-05-30 00:20:41 +08002963 f2fs_set_dirty_device(sbi, fio->ino, devidx, FLUSH_INO);
Chao Yu1228b482017-09-29 13:59:39 +08002964
2965 /* update device state for checkpoint */
2966 if (!f2fs_test_bit(devidx, (char *)&sbi->dirty_device)) {
2967 spin_lock(&sbi->dev_lock);
2968 f2fs_set_bit(devidx, (char *)&sbi->dirty_device);
2969 spin_unlock(&sbi->dev_lock);
2970 }
Chao Yu39d787b2017-09-29 13:59:38 +08002971}
2972
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07002973static void do_write_page(struct f2fs_summary *sum, struct f2fs_io_info *fio)
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09002974{
Jaegeuk Kim81377bd2017-05-10 14:19:54 -07002975 int type = __get_segment_type(fio);
Chao Yu107a8052018-05-26 09:00:13 +08002976 bool keep_order = (test_opt(fio->sbi, LFS) && type == CURSEG_COLD_DATA);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09002977
Chao Yu107a8052018-05-26 09:00:13 +08002978 if (keep_order)
2979 down_read(&fio->sbi->io_order_lock);
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08002980reallocate:
Chao Yu4d57b862018-05-30 00:20:41 +08002981 f2fs_allocate_data_block(fio->sbi, fio->page, fio->old_blkaddr,
Chao Yufb830fc2017-05-19 23:37:01 +08002982 &fio->new_blkaddr, sum, type, fio, true);
Chao Yu6aa58d82018-08-14 22:37:25 +08002983 if (GET_SEGNO(fio->sbi, fio->old_blkaddr) != NULL_SEGNO)
2984 invalidate_mapping_pages(META_MAPPING(fio->sbi),
2985 fio->old_blkaddr, fio->old_blkaddr);
Jaegeuk Kimbfad7c22013-12-16 19:04:05 +09002986
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002987 /* writeout dirty page into bdev */
Chao Yufe16efe2018-05-28 23:47:18 +08002988 f2fs_submit_page_write(fio);
2989 if (fio->retry) {
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08002990 fio->old_blkaddr = fio->new_blkaddr;
2991 goto reallocate;
2992 }
Chao Yufe16efe2018-05-28 23:47:18 +08002993
2994 update_device_state(fio);
2995
Chao Yu107a8052018-05-26 09:00:13 +08002996 if (keep_order)
2997 up_read(&fio->sbi->io_order_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09002998}
2999
Chao Yu4d57b862018-05-30 00:20:41 +08003000void f2fs_do_write_meta_page(struct f2fs_sb_info *sbi, struct page *page,
Chao Yub0af6d42017-08-02 23:21:48 +08003001 enum iostat_type io_type)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003002{
Jaegeuk Kim458e6192013-12-11 13:54:01 +09003003 struct f2fs_io_info fio = {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003004 .sbi = sbi,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09003005 .type = META,
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09003006 .temp = HOT,
Mike Christie04d328d2016-06-05 14:31:55 -05003007 .op = REQ_OP_WRITE,
Christoph Hellwig70fd7612016-11-01 07:40:10 -06003008 .op_flags = REQ_SYNC | REQ_META | REQ_PRIO,
Chao Yu7a9d7542016-02-22 18:36:38 +08003009 .old_blkaddr = page->index,
3010 .new_blkaddr = page->index,
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003011 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -07003012 .encrypted_page = NULL,
Chao Yufb830fc2017-05-19 23:37:01 +08003013 .in_list = false,
Jaegeuk Kim458e6192013-12-11 13:54:01 +09003014 };
3015
Chao Yu2b947002015-10-12 17:04:21 +08003016 if (unlikely(page->index >= MAIN_BLKADDR(sbi)))
Mike Christie04d328d2016-06-05 14:31:55 -05003017 fio.op_flags &= ~REQ_META;
Chao Yu2b947002015-10-12 17:04:21 +08003018
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003019 set_page_writeback(page);
Jaegeuk Kim17c50032018-04-11 23:09:04 -07003020 ClearPageError(page);
Jaegeuk Kimb9109b02017-05-10 11:28:38 -07003021 f2fs_submit_page_write(&fio);
Chao Yub0af6d42017-08-02 23:21:48 +08003022
3023 f2fs_update_iostat(sbi, io_type, F2FS_BLKSIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003024}
3025
Chao Yu4d57b862018-05-30 00:20:41 +08003026void f2fs_do_write_node_page(unsigned int nid, struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003027{
3028 struct f2fs_summary sum;
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003029
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003030 set_summary(&sum, nid, 0, 0);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003031 do_write_page(&sum, fio);
Chao Yub0af6d42017-08-02 23:21:48 +08003032
3033 f2fs_update_iostat(fio->sbi, fio->io_type, F2FS_BLKSIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003034}
3035
Chao Yu4d57b862018-05-30 00:20:41 +08003036void f2fs_outplace_write_data(struct dnode_of_data *dn,
3037 struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003038{
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003039 struct f2fs_sb_info *sbi = fio->sbi;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003040 struct f2fs_summary sum;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003041
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07003042 f2fs_bug_on(sbi, dn->data_blkaddr == NULL_ADDR);
Chao Yu77357302018-07-17 00:02:17 +08003043 set_summary(&sum, dn->nid, dn->ofs_in_node, fio->version);
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003044 do_write_page(&sum, fio);
Chao Yuf28b3432016-02-24 17:16:47 +08003045 f2fs_update_data_blkaddr(dn, fio->new_blkaddr);
Chao Yub0af6d42017-08-02 23:21:48 +08003046
3047 f2fs_update_iostat(sbi, fio->io_type, F2FS_BLKSIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003048}
3049
Chao Yu4d57b862018-05-30 00:20:41 +08003050int f2fs_inplace_write_data(struct f2fs_io_info *fio)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003051{
Chao Yub0af6d42017-08-02 23:21:48 +08003052 int err;
Yunlei Hed21b0f22018-03-26 17:32:23 +08003053 struct f2fs_sb_info *sbi = fio->sbi;
Chao Yub0af6d42017-08-02 23:21:48 +08003054
Chao Yu7a9d7542016-02-22 18:36:38 +08003055 fio->new_blkaddr = fio->old_blkaddr;
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09003056 /* i/o temperature is needed for passing down write hints */
3057 __get_segment_type(fio);
Yunlei Hed21b0f22018-03-26 17:32:23 +08003058
3059 f2fs_bug_on(sbi, !IS_DATASEG(get_seg_entry(sbi,
3060 GET_SEGNO(sbi, fio->new_blkaddr))->type));
3061
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07003062 stat_inc_inplace_blocks(fio->sbi);
Chao Yub0af6d42017-08-02 23:21:48 +08003063
3064 err = f2fs_submit_page_bio(fio);
Chao Yu39d787b2017-09-29 13:59:38 +08003065 if (!err)
3066 update_device_state(fio);
Chao Yub0af6d42017-08-02 23:21:48 +08003067
3068 f2fs_update_iostat(fio->sbi, fio->io_type, F2FS_BLKSIZE);
3069
3070 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003071}
3072
Chao Yu2b603112017-11-02 20:41:03 +08003073static inline int __f2fs_get_curseg(struct f2fs_sb_info *sbi,
3074 unsigned int segno)
3075{
3076 int i;
3077
3078 for (i = CURSEG_HOT_DATA; i < NO_CHECK_TYPE; i++) {
3079 if (CURSEG_I(sbi, i)->segno == segno)
3080 break;
3081 }
3082 return i;
3083}
3084
Chao Yu4d57b862018-05-30 00:20:41 +08003085void f2fs_do_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Chao Yu19f106b2015-05-06 13:08:06 +08003086 block_t old_blkaddr, block_t new_blkaddr,
Chao Yu28bc1062016-02-06 14:40:34 +08003087 bool recover_curseg, bool recover_newaddr)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003088{
3089 struct sit_info *sit_i = SIT_I(sbi);
3090 struct curseg_info *curseg;
3091 unsigned int segno, old_cursegno;
3092 struct seg_entry *se;
3093 int type;
Chao Yu19f106b2015-05-06 13:08:06 +08003094 unsigned short old_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003095
3096 segno = GET_SEGNO(sbi, new_blkaddr);
3097 se = get_seg_entry(sbi, segno);
3098 type = se->type;
3099
Chao Yu2b603112017-11-02 20:41:03 +08003100 down_write(&SM_I(sbi)->curseg_lock);
3101
Chao Yu19f106b2015-05-06 13:08:06 +08003102 if (!recover_curseg) {
3103 /* for recovery flow */
3104 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
3105 if (old_blkaddr == NULL_ADDR)
3106 type = CURSEG_COLD_DATA;
3107 else
3108 type = CURSEG_WARM_DATA;
3109 }
3110 } else {
Chao Yu2b603112017-11-02 20:41:03 +08003111 if (IS_CURSEG(sbi, segno)) {
3112 /* se->type is volatile as SSR allocation */
3113 type = __f2fs_get_curseg(sbi, segno);
3114 f2fs_bug_on(sbi, type == NO_CHECK_TYPE);
3115 } else {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003116 type = CURSEG_WARM_DATA;
Chao Yu2b603112017-11-02 20:41:03 +08003117 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003118 }
Chao Yu19f106b2015-05-06 13:08:06 +08003119
Yunlong Song2c190502018-01-04 15:02:02 +08003120 f2fs_bug_on(sbi, !IS_DATASEG(type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003121 curseg = CURSEG_I(sbi, type);
3122
3123 mutex_lock(&curseg->curseg_mutex);
Chao Yu3d26fa62017-10-30 17:49:53 +08003124 down_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003125
3126 old_cursegno = curseg->segno;
Chao Yu19f106b2015-05-06 13:08:06 +08003127 old_blkoff = curseg->next_blkoff;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003128
3129 /* change the current segment */
3130 if (segno != curseg->segno) {
3131 curseg->next_segno = segno;
Chao Yu025d63a2017-08-30 18:04:48 +08003132 change_curseg(sbi, type);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003133 }
3134
Jaegeuk Kim491c0852014-02-04 13:01:10 +09003135 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
Haicheng Lie79efe32013-06-13 16:59:27 +08003136 __add_sum_entry(sbi, type, sum);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003137
Chao Yu28bc1062016-02-06 14:40:34 +08003138 if (!recover_curseg || recover_newaddr)
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07003139 update_sit_entry(sbi, new_blkaddr, 1);
Chao Yu6aa58d82018-08-14 22:37:25 +08003140 if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO) {
3141 invalidate_mapping_pages(META_MAPPING(sbi),
3142 old_blkaddr, old_blkaddr);
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07003143 update_sit_entry(sbi, old_blkaddr, -1);
Chao Yu6aa58d82018-08-14 22:37:25 +08003144 }
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07003145
3146 locate_dirty_segment(sbi, GET_SEGNO(sbi, old_blkaddr));
3147 locate_dirty_segment(sbi, GET_SEGNO(sbi, new_blkaddr));
3148
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003149 locate_dirty_segment(sbi, old_cursegno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003150
Chao Yu19f106b2015-05-06 13:08:06 +08003151 if (recover_curseg) {
3152 if (old_cursegno != curseg->segno) {
3153 curseg->next_segno = old_cursegno;
Chao Yu025d63a2017-08-30 18:04:48 +08003154 change_curseg(sbi, type);
Chao Yu19f106b2015-05-06 13:08:06 +08003155 }
3156 curseg->next_blkoff = old_blkoff;
3157 }
3158
Chao Yu3d26fa62017-10-30 17:49:53 +08003159 up_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003160 mutex_unlock(&curseg->curseg_mutex);
Chao Yu2b603112017-11-02 20:41:03 +08003161 up_write(&SM_I(sbi)->curseg_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003162}
3163
Chao Yu528e3452015-05-28 19:15:35 +08003164void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
3165 block_t old_addr, block_t new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08003166 unsigned char version, bool recover_curseg,
3167 bool recover_newaddr)
Chao Yu528e3452015-05-28 19:15:35 +08003168{
3169 struct f2fs_summary sum;
3170
3171 set_summary(&sum, dn->nid, dn->ofs_in_node, version);
3172
Chao Yu4d57b862018-05-30 00:20:41 +08003173 f2fs_do_replace_block(sbi, &sum, old_addr, new_addr,
Chao Yu28bc1062016-02-06 14:40:34 +08003174 recover_curseg, recover_newaddr);
Chao Yu528e3452015-05-28 19:15:35 +08003175
Chao Yuf28b3432016-02-24 17:16:47 +08003176 f2fs_update_data_blkaddr(dn, new_addr);
Chao Yu528e3452015-05-28 19:15:35 +08003177}
3178
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09003179void f2fs_wait_on_page_writeback(struct page *page,
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08003180 enum page_type type, bool ordered)
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09003181{
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09003182 if (PageWriteback(page)) {
Jaegeuk Kim40813632014-09-02 15:31:18 -07003183 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
3184
Jaegeuk Kimb9109b02017-05-10 11:28:38 -07003185 f2fs_submit_merged_write_cond(sbi, page->mapping->host,
3186 0, page->index, type);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08003187 if (ordered)
3188 wait_on_page_writeback(page);
3189 else
3190 wait_for_stable_page(page);
Jaegeuk Kim93dfe2a2013-11-30 12:51:14 +09003191 }
3192}
3193
Jaegeuk Kimd4c759e2017-09-05 17:04:35 -07003194void f2fs_wait_on_block_writeback(struct f2fs_sb_info *sbi, block_t blkaddr)
Chao Yu08b39fb2015-10-08 13:27:34 +08003195{
3196 struct page *cpage;
3197
Chao Yue1da7872018-06-05 17:44:11 +08003198 if (!is_valid_data_blkaddr(sbi, blkaddr))
Chao Yu08b39fb2015-10-08 13:27:34 +08003199 return;
3200
Chao Yu08b39fb2015-10-08 13:27:34 +08003201 cpage = find_lock_page(META_MAPPING(sbi), blkaddr);
3202 if (cpage) {
Jaegeuk Kimfec1d652016-01-20 23:43:51 +08003203 f2fs_wait_on_page_writeback(cpage, DATA, true);
Chao Yu08b39fb2015-10-08 13:27:34 +08003204 f2fs_put_page(cpage, 1);
3205 }
3206}
3207
Chao Yu77357302018-07-17 00:02:17 +08003208static int read_compacted_summaries(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003209{
3210 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
3211 struct curseg_info *seg_i;
3212 unsigned char *kaddr;
3213 struct page *page;
3214 block_t start;
3215 int i, j, offset;
3216
3217 start = start_sum_block(sbi);
3218
Chao Yu4d57b862018-05-30 00:20:41 +08003219 page = f2fs_get_meta_page(sbi, start++);
Chao Yu77357302018-07-17 00:02:17 +08003220 if (IS_ERR(page))
3221 return PTR_ERR(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003222 kaddr = (unsigned char *)page_address(page);
3223
3224 /* Step 1: restore nat cache */
3225 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003226 memcpy(seg_i->journal, kaddr, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003227
3228 /* Step 2: restore sit cache */
3229 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003230 memcpy(seg_i->journal, kaddr + SUM_JOURNAL_SIZE, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003231 offset = 2 * SUM_JOURNAL_SIZE;
3232
3233 /* Step 3: restore summary entries */
3234 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
3235 unsigned short blk_off;
3236 unsigned int segno;
3237
3238 seg_i = CURSEG_I(sbi, i);
3239 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
3240 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
3241 seg_i->next_segno = segno;
3242 reset_curseg(sbi, i, 0);
3243 seg_i->alloc_type = ckpt->alloc_type[i];
3244 seg_i->next_blkoff = blk_off;
3245
3246 if (seg_i->alloc_type == SSR)
3247 blk_off = sbi->blocks_per_seg;
3248
3249 for (j = 0; j < blk_off; j++) {
3250 struct f2fs_summary *s;
3251 s = (struct f2fs_summary *)(kaddr + offset);
3252 seg_i->sum_blk->entries[j] = *s;
3253 offset += SUMMARY_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003254 if (offset + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003255 SUM_FOOTER_SIZE)
3256 continue;
3257
3258 f2fs_put_page(page, 1);
3259 page = NULL;
3260
Chao Yu4d57b862018-05-30 00:20:41 +08003261 page = f2fs_get_meta_page(sbi, start++);
Chao Yu77357302018-07-17 00:02:17 +08003262 if (IS_ERR(page))
3263 return PTR_ERR(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003264 kaddr = (unsigned char *)page_address(page);
3265 offset = 0;
3266 }
3267 }
3268 f2fs_put_page(page, 1);
Chao Yu77357302018-07-17 00:02:17 +08003269 return 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003270}
3271
3272static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
3273{
3274 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
3275 struct f2fs_summary_block *sum;
3276 struct curseg_info *curseg;
3277 struct page *new;
3278 unsigned short blk_off;
3279 unsigned int segno = 0;
3280 block_t blk_addr = 0;
Chao Yu77357302018-07-17 00:02:17 +08003281 int err = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003282
3283 /* get segment number and block addr */
3284 if (IS_DATASEG(type)) {
3285 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
3286 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
3287 CURSEG_HOT_DATA]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08003288 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003289 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
3290 else
3291 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
3292 } else {
3293 segno = le32_to_cpu(ckpt->cur_node_segno[type -
3294 CURSEG_HOT_NODE]);
3295 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
3296 CURSEG_HOT_NODE]);
Jaegeuk Kim119ee912015-01-29 11:45:33 -08003297 if (__exist_node_summaries(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003298 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
3299 type - CURSEG_HOT_NODE);
3300 else
3301 blk_addr = GET_SUM_BLOCK(sbi, segno);
3302 }
3303
Chao Yu4d57b862018-05-30 00:20:41 +08003304 new = f2fs_get_meta_page(sbi, blk_addr);
Chao Yu77357302018-07-17 00:02:17 +08003305 if (IS_ERR(new))
3306 return PTR_ERR(new);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003307 sum = (struct f2fs_summary_block *)page_address(new);
3308
3309 if (IS_NODESEG(type)) {
Jaegeuk Kim119ee912015-01-29 11:45:33 -08003310 if (__exist_node_summaries(sbi)) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003311 struct f2fs_summary *ns = &sum->entries[0];
3312 int i;
3313 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
3314 ns->version = 0;
3315 ns->ofs_in_node = 0;
3316 }
3317 } else {
Chao Yu77357302018-07-17 00:02:17 +08003318 err = f2fs_restore_node_summary(sbi, segno, sum);
3319 if (err)
3320 goto out;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003321 }
3322 }
3323
3324 /* set uncompleted segment to curseg */
3325 curseg = CURSEG_I(sbi, type);
3326 mutex_lock(&curseg->curseg_mutex);
Chao Yub7ad7512016-02-19 18:08:46 +08003327
3328 /* update journal info */
3329 down_write(&curseg->journal_rwsem);
3330 memcpy(curseg->journal, &sum->journal, SUM_JOURNAL_SIZE);
3331 up_write(&curseg->journal_rwsem);
3332
3333 memcpy(curseg->sum_blk->entries, sum->entries, SUM_ENTRY_SIZE);
3334 memcpy(&curseg->sum_blk->footer, &sum->footer, SUM_FOOTER_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003335 curseg->next_segno = segno;
3336 reset_curseg(sbi, type, 0);
3337 curseg->alloc_type = ckpt->alloc_type[type];
3338 curseg->next_blkoff = blk_off;
3339 mutex_unlock(&curseg->curseg_mutex);
Chao Yu77357302018-07-17 00:02:17 +08003340out:
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003341 f2fs_put_page(new, 1);
Chao Yu77357302018-07-17 00:02:17 +08003342 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003343}
3344
3345static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
3346{
Jin Qian21d3f8e2017-06-01 11:18:30 -07003347 struct f2fs_journal *sit_j = CURSEG_I(sbi, CURSEG_COLD_DATA)->journal;
3348 struct f2fs_journal *nat_j = CURSEG_I(sbi, CURSEG_HOT_DATA)->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003349 int type = CURSEG_HOT_DATA;
Chao Yue4fc5fb2014-03-17 16:36:24 +08003350 int err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003351
Chao Yuaaec2b12016-09-20 11:04:18 +08003352 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG)) {
Chao Yu4d57b862018-05-30 00:20:41 +08003353 int npages = f2fs_npages_for_summary_flush(sbi, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08003354
3355 if (npages >= 2)
Chao Yu4d57b862018-05-30 00:20:41 +08003356 f2fs_ra_meta_pages(sbi, start_sum_block(sbi), npages,
Chao Yu26879fb2015-10-12 17:05:59 +08003357 META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08003358
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003359 /* restore for compacted data summary */
Chao Yu77357302018-07-17 00:02:17 +08003360 err = read_compacted_summaries(sbi);
3361 if (err)
3362 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003363 type = CURSEG_HOT_NODE;
3364 }
3365
Jaegeuk Kim119ee912015-01-29 11:45:33 -08003366 if (__exist_node_summaries(sbi))
Chao Yu4d57b862018-05-30 00:20:41 +08003367 f2fs_ra_meta_pages(sbi, sum_blk_addr(sbi, NR_CURSEG_TYPE, type),
Chao Yu26879fb2015-10-12 17:05:59 +08003368 NR_CURSEG_TYPE - type, META_CP, true);
Chao Yu3fa06d72014-12-09 14:21:46 +08003369
Chao Yue4fc5fb2014-03-17 16:36:24 +08003370 for (; type <= CURSEG_COLD_NODE; type++) {
3371 err = read_normal_summaries(sbi, type);
3372 if (err)
3373 return err;
3374 }
3375
Jin Qian21d3f8e2017-06-01 11:18:30 -07003376 /* sanity check for summary blocks */
3377 if (nats_in_cursum(nat_j) > NAT_JOURNAL_ENTRIES ||
3378 sits_in_cursum(sit_j) > SIT_JOURNAL_ENTRIES)
3379 return -EINVAL;
3380
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003381 return 0;
3382}
3383
3384static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
3385{
3386 struct page *page;
3387 unsigned char *kaddr;
3388 struct f2fs_summary *summary;
3389 struct curseg_info *seg_i;
3390 int written_size = 0;
3391 int i, j;
3392
Chao Yu4d57b862018-05-30 00:20:41 +08003393 page = f2fs_grab_meta_page(sbi, blkaddr++);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003394 kaddr = (unsigned char *)page_address(page);
Chao Yu81114ba2018-04-09 20:25:06 +08003395 memset(kaddr, 0, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003396
3397 /* Step 1: write nat cache */
3398 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003399 memcpy(kaddr, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003400 written_size += SUM_JOURNAL_SIZE;
3401
3402 /* Step 2: write sit cache */
3403 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003404 memcpy(kaddr + written_size, seg_i->journal, SUM_JOURNAL_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003405 written_size += SUM_JOURNAL_SIZE;
3406
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003407 /* Step 3: write summary entries */
3408 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
3409 unsigned short blkoff;
3410 seg_i = CURSEG_I(sbi, i);
3411 if (sbi->ckpt->alloc_type[i] == SSR)
3412 blkoff = sbi->blocks_per_seg;
3413 else
3414 blkoff = curseg_blkoff(sbi, i);
3415
3416 for (j = 0; j < blkoff; j++) {
3417 if (!page) {
Chao Yu4d57b862018-05-30 00:20:41 +08003418 page = f2fs_grab_meta_page(sbi, blkaddr++);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003419 kaddr = (unsigned char *)page_address(page);
Chao Yu81114ba2018-04-09 20:25:06 +08003420 memset(kaddr, 0, PAGE_SIZE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003421 written_size = 0;
3422 }
3423 summary = (struct f2fs_summary *)(kaddr + written_size);
3424 *summary = seg_i->sum_blk->entries[j];
3425 written_size += SUMMARY_SIZE;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003426
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003427 if (written_size + SUMMARY_SIZE <= PAGE_SIZE -
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003428 SUM_FOOTER_SIZE)
3429 continue;
3430
Chao Yue8d61a72013-10-24 15:08:28 +08003431 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003432 f2fs_put_page(page, 1);
3433 page = NULL;
3434 }
3435 }
Chao Yue8d61a72013-10-24 15:08:28 +08003436 if (page) {
3437 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003438 f2fs_put_page(page, 1);
Chao Yue8d61a72013-10-24 15:08:28 +08003439 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003440}
3441
3442static void write_normal_summaries(struct f2fs_sb_info *sbi,
3443 block_t blkaddr, int type)
3444{
3445 int i, end;
3446 if (IS_DATASEG(type))
3447 end = type + NR_CURSEG_DATA_TYPE;
3448 else
3449 end = type + NR_CURSEG_NODE_TYPE;
3450
Chao Yub7ad7512016-02-19 18:08:46 +08003451 for (i = type; i < end; i++)
3452 write_current_sum_page(sbi, i, blkaddr + (i - type));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003453}
3454
Chao Yu4d57b862018-05-30 00:20:41 +08003455void f2fs_write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003456{
Chao Yuaaec2b12016-09-20 11:04:18 +08003457 if (is_set_ckpt_flags(sbi, CP_COMPACT_SUM_FLAG))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003458 write_compacted_summaries(sbi, start_blk);
3459 else
3460 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
3461}
3462
Chao Yu4d57b862018-05-30 00:20:41 +08003463void f2fs_write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003464{
Jaegeuk Kim119ee912015-01-29 11:45:33 -08003465 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003466}
3467
Chao Yu4d57b862018-05-30 00:20:41 +08003468int f2fs_lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003469 unsigned int val, int alloc)
3470{
3471 int i;
3472
3473 if (type == NAT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08003474 for (i = 0; i < nats_in_cursum(journal); i++) {
3475 if (le32_to_cpu(nid_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003476 return i;
3477 }
Chao Yudfc08a12016-02-14 18:50:40 +08003478 if (alloc && __has_cursum_space(journal, 1, NAT_JOURNAL))
3479 return update_nats_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003480 } else if (type == SIT_JOURNAL) {
Chao Yudfc08a12016-02-14 18:50:40 +08003481 for (i = 0; i < sits_in_cursum(journal); i++)
3482 if (le32_to_cpu(segno_in_journal(journal, i)) == val)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003483 return i;
Chao Yudfc08a12016-02-14 18:50:40 +08003484 if (alloc && __has_cursum_space(journal, 1, SIT_JOURNAL))
3485 return update_sits_in_cursum(journal, 1);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003486 }
3487 return -1;
3488}
3489
3490static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
3491 unsigned int segno)
3492{
Chao Yu77357302018-07-17 00:02:17 +08003493 return f2fs_get_meta_page_nofail(sbi, current_sit_addr(sbi, segno));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003494}
3495
3496static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
3497 unsigned int start)
3498{
3499 struct sit_info *sit_i = SIT_I(sbi);
Yunlei He068c3cd2018-01-25 17:27:11 +08003500 struct page *page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003501 pgoff_t src_off, dst_off;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003502
3503 src_off = current_sit_addr(sbi, start);
3504 dst_off = next_sit_addr(sbi, src_off);
3505
Chao Yu4d57b862018-05-30 00:20:41 +08003506 page = f2fs_grab_meta_page(sbi, dst_off);
Yunlei He068c3cd2018-01-25 17:27:11 +08003507 seg_info_to_sit_page(sbi, page, start);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003508
Yunlei He068c3cd2018-01-25 17:27:11 +08003509 set_page_dirty(page);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003510 set_to_next_sit(sit_i, start);
3511
Yunlei He068c3cd2018-01-25 17:27:11 +08003512 return page;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003513}
3514
Chao Yu184a5cd2014-09-04 18:13:01 +08003515static struct sit_entry_set *grab_sit_entry_set(void)
3516{
3517 struct sit_entry_set *ses =
Jaegeuk Kim80c54502015-08-20 08:51:56 -07003518 f2fs_kmem_cache_alloc(sit_entry_set_slab, GFP_NOFS);
Chao Yu184a5cd2014-09-04 18:13:01 +08003519
3520 ses->entry_cnt = 0;
3521 INIT_LIST_HEAD(&ses->set_list);
3522 return ses;
3523}
3524
3525static void release_sit_entry_set(struct sit_entry_set *ses)
3526{
3527 list_del(&ses->set_list);
3528 kmem_cache_free(sit_entry_set_slab, ses);
3529}
3530
3531static void adjust_sit_entry_set(struct sit_entry_set *ses,
3532 struct list_head *head)
3533{
3534 struct sit_entry_set *next = ses;
3535
3536 if (list_is_last(&ses->set_list, head))
3537 return;
3538
3539 list_for_each_entry_continue(next, head, set_list)
3540 if (ses->entry_cnt <= next->entry_cnt)
3541 break;
3542
3543 list_move_tail(&ses->set_list, &next->set_list);
3544}
3545
3546static void add_sit_entry(unsigned int segno, struct list_head *head)
3547{
3548 struct sit_entry_set *ses;
3549 unsigned int start_segno = START_SEGNO(segno);
3550
3551 list_for_each_entry(ses, head, set_list) {
3552 if (ses->start_segno == start_segno) {
3553 ses->entry_cnt++;
3554 adjust_sit_entry_set(ses, head);
3555 return;
3556 }
3557 }
3558
3559 ses = grab_sit_entry_set();
3560
3561 ses->start_segno = start_segno;
3562 ses->entry_cnt++;
3563 list_add(&ses->set_list, head);
3564}
3565
3566static void add_sits_in_set(struct f2fs_sb_info *sbi)
3567{
3568 struct f2fs_sm_info *sm_info = SM_I(sbi);
3569 struct list_head *set_list = &sm_info->sit_entry_set;
3570 unsigned long *bitmap = SIT_I(sbi)->dirty_sentries_bitmap;
Chao Yu184a5cd2014-09-04 18:13:01 +08003571 unsigned int segno;
3572
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07003573 for_each_set_bit(segno, bitmap, MAIN_SEGS(sbi))
Chao Yu184a5cd2014-09-04 18:13:01 +08003574 add_sit_entry(segno, set_list);
3575}
3576
3577static void remove_sits_in_journal(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003578{
3579 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003580 struct f2fs_journal *journal = curseg->journal;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003581 int i;
3582
Chao Yub7ad7512016-02-19 18:08:46 +08003583 down_write(&curseg->journal_rwsem);
Chao Yudfc08a12016-02-14 18:50:40 +08003584 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yu184a5cd2014-09-04 18:13:01 +08003585 unsigned int segno;
3586 bool dirtied;
3587
Chao Yudfc08a12016-02-14 18:50:40 +08003588 segno = le32_to_cpu(segno_in_journal(journal, i));
Chao Yu184a5cd2014-09-04 18:13:01 +08003589 dirtied = __mark_sit_entry_dirty(sbi, segno);
3590
3591 if (!dirtied)
3592 add_sit_entry(segno, &SM_I(sbi)->sit_entry_set);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003593 }
Chao Yudfc08a12016-02-14 18:50:40 +08003594 update_sits_in_cursum(journal, -i);
Chao Yub7ad7512016-02-19 18:08:46 +08003595 up_write(&curseg->journal_rwsem);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003596}
3597
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09003598/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003599 * CP calls this function, which flushes SIT entries including sit_journal,
3600 * and moves prefree segs to free segs.
3601 */
Chao Yu4d57b862018-05-30 00:20:41 +08003602void f2fs_flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003603{
3604 struct sit_info *sit_i = SIT_I(sbi);
3605 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
3606 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003607 struct f2fs_journal *journal = curseg->journal;
Chao Yu184a5cd2014-09-04 18:13:01 +08003608 struct sit_entry_set *ses, *tmp;
3609 struct list_head *head = &SM_I(sbi)->sit_entry_set;
Chao Yu184a5cd2014-09-04 18:13:01 +08003610 bool to_journal = true;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07003611 struct seg_entry *se;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003612
Chao Yu3d26fa62017-10-30 17:49:53 +08003613 down_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003614
Wanpeng Li2b11a742015-02-27 16:52:50 +08003615 if (!sit_i->dirty_sentries)
3616 goto out;
3617
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003618 /*
Chao Yu184a5cd2014-09-04 18:13:01 +08003619 * add and account sit entries of dirty bitmap in sit entry
3620 * set temporarily
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003621 */
Chao Yu184a5cd2014-09-04 18:13:01 +08003622 add_sits_in_set(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003623
Chao Yu184a5cd2014-09-04 18:13:01 +08003624 /*
3625 * if there are no enough space in journal to store dirty sit
3626 * entries, remove all entries from journal and add and account
3627 * them in sit entry set.
3628 */
Chao Yudfc08a12016-02-14 18:50:40 +08003629 if (!__has_cursum_space(journal, sit_i->dirty_sentries, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08003630 remove_sits_in_journal(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003631
Chao Yu184a5cd2014-09-04 18:13:01 +08003632 /*
3633 * there are two steps to flush sit entries:
3634 * #1, flush sit entries to journal in current cold data summary block.
3635 * #2, flush sit entries to sit page.
3636 */
3637 list_for_each_entry_safe(ses, tmp, head, set_list) {
Jaegeuk Kim4a257ed2014-10-16 11:43:30 -07003638 struct page *page = NULL;
Chao Yu184a5cd2014-09-04 18:13:01 +08003639 struct f2fs_sit_block *raw_sit = NULL;
3640 unsigned int start_segno = ses->start_segno;
3641 unsigned int end = min(start_segno + SIT_ENTRY_PER_BLOCK,
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07003642 (unsigned long)MAIN_SEGS(sbi));
Chao Yu184a5cd2014-09-04 18:13:01 +08003643 unsigned int segno = start_segno;
Jaegeuk Kimb2955552013-11-12 14:49:56 +09003644
Chao Yu184a5cd2014-09-04 18:13:01 +08003645 if (to_journal &&
Chao Yudfc08a12016-02-14 18:50:40 +08003646 !__has_cursum_space(journal, ses->entry_cnt, SIT_JOURNAL))
Chao Yu184a5cd2014-09-04 18:13:01 +08003647 to_journal = false;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003648
Chao Yub7ad7512016-02-19 18:08:46 +08003649 if (to_journal) {
3650 down_write(&curseg->journal_rwsem);
3651 } else {
Chao Yu184a5cd2014-09-04 18:13:01 +08003652 page = get_next_sit_page(sbi, start_segno);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003653 raw_sit = page_address(page);
3654 }
3655
Chao Yu184a5cd2014-09-04 18:13:01 +08003656 /* flush dirty sit entries in region of current sit set */
3657 for_each_set_bit_from(segno, bitmap, end) {
3658 int offset, sit_offset;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07003659
3660 se = get_seg_entry(sbi, segno);
Zhikang Zhang56b07e72018-04-09 04:28:41 +08003661#ifdef CONFIG_F2FS_CHECK_FS
3662 if (memcmp(se->cur_valid_map, se->cur_valid_map_mir,
3663 SIT_VBLOCK_MAP_SIZE))
3664 f2fs_bug_on(sbi, 1);
3665#endif
Chao Yu184a5cd2014-09-04 18:13:01 +08003666
3667 /* add discard candidates */
Chao Yuc473f1a2017-04-27 20:40:39 +08003668 if (!(cpc->reason & CP_DISCARD)) {
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07003669 cpc->trim_start = segno;
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08003670 add_discard_addrs(sbi, cpc, false);
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07003671 }
Chao Yu184a5cd2014-09-04 18:13:01 +08003672
3673 if (to_journal) {
Chao Yu4d57b862018-05-30 00:20:41 +08003674 offset = f2fs_lookup_journal_in_cursum(journal,
Chao Yu184a5cd2014-09-04 18:13:01 +08003675 SIT_JOURNAL, segno, 1);
3676 f2fs_bug_on(sbi, offset < 0);
Chao Yudfc08a12016-02-14 18:50:40 +08003677 segno_in_journal(journal, offset) =
Chao Yu184a5cd2014-09-04 18:13:01 +08003678 cpu_to_le32(segno);
3679 seg_info_to_raw_sit(se,
Chao Yudfc08a12016-02-14 18:50:40 +08003680 &sit_in_journal(journal, offset));
Zhikang Zhang56b07e72018-04-09 04:28:41 +08003681 check_block_count(sbi, segno,
3682 &sit_in_journal(journal, offset));
Chao Yu184a5cd2014-09-04 18:13:01 +08003683 } else {
3684 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
3685 seg_info_to_raw_sit(se,
3686 &raw_sit->entries[sit_offset]);
Zhikang Zhang56b07e72018-04-09 04:28:41 +08003687 check_block_count(sbi, segno,
3688 &raw_sit->entries[sit_offset]);
Chao Yu184a5cd2014-09-04 18:13:01 +08003689 }
3690
3691 __clear_bit(segno, bitmap);
3692 sit_i->dirty_sentries--;
3693 ses->entry_cnt--;
3694 }
3695
Chao Yub7ad7512016-02-19 18:08:46 +08003696 if (to_journal)
3697 up_write(&curseg->journal_rwsem);
3698 else
Chao Yu184a5cd2014-09-04 18:13:01 +08003699 f2fs_put_page(page, 1);
3700
3701 f2fs_bug_on(sbi, ses->entry_cnt);
3702 release_sit_entry_set(ses);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003703 }
Chao Yu184a5cd2014-09-04 18:13:01 +08003704
3705 f2fs_bug_on(sbi, !list_empty(head));
3706 f2fs_bug_on(sbi, sit_i->dirty_sentries);
Chao Yu184a5cd2014-09-04 18:13:01 +08003707out:
Chao Yuc473f1a2017-04-27 20:40:39 +08003708 if (cpc->reason & CP_DISCARD) {
Yunlei He650d3c42016-12-22 11:46:24 +08003709 __u64 trim_start = cpc->trim_start;
3710
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07003711 for (; cpc->trim_start <= cpc->trim_end; cpc->trim_start++)
Jaegeuk Kim25290fa2016-12-29 22:06:15 -08003712 add_discard_addrs(sbi, cpc, false);
Yunlei He650d3c42016-12-22 11:46:24 +08003713
3714 cpc->trim_start = trim_start;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -07003715 }
Chao Yu3d26fa62017-10-30 17:49:53 +08003716 up_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003717
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003718 set_prefree_as_free_segments(sbi);
3719}
3720
3721static int build_sit_info(struct f2fs_sb_info *sbi)
3722{
3723 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003724 struct sit_info *sit_i;
3725 unsigned int sit_segs, start;
Chao Yuae27d622017-01-07 18:52:34 +08003726 char *src_bitmap;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003727 unsigned int bitmap_size;
3728
3729 /* allocate memory for SIT information */
Chao Yuacbf0542017-11-30 19:28:17 +08003730 sit_i = f2fs_kzalloc(sbi, sizeof(struct sit_info), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003731 if (!sit_i)
3732 return -ENOMEM;
3733
3734 SM_I(sbi)->sit_info = sit_i;
3735
Kees Cook9d2a7892018-06-12 14:28:35 -07003736 sit_i->sentries =
3737 f2fs_kvzalloc(sbi, array_size(sizeof(struct seg_entry),
3738 MAIN_SEGS(sbi)),
3739 GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003740 if (!sit_i->sentries)
3741 return -ENOMEM;
3742
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07003743 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Chao Yu628b3d12017-11-30 19:28:18 +08003744 sit_i->dirty_sentries_bitmap = f2fs_kvzalloc(sbi, bitmap_size,
3745 GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003746 if (!sit_i->dirty_sentries_bitmap)
3747 return -ENOMEM;
3748
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07003749 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003750 sit_i->sentries[start].cur_valid_map
Chao Yuacbf0542017-11-30 19:28:17 +08003751 = f2fs_kzalloc(sbi, SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003752 sit_i->sentries[start].ckpt_valid_map
Chao Yuacbf0542017-11-30 19:28:17 +08003753 = f2fs_kzalloc(sbi, SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07003754 if (!sit_i->sentries[start].cur_valid_map ||
Jaegeuk Kim3e025742016-08-02 10:56:40 -07003755 !sit_i->sentries[start].ckpt_valid_map)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003756 return -ENOMEM;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07003757
Chao Yu355e7892017-01-07 18:51:01 +08003758#ifdef CONFIG_F2FS_CHECK_FS
3759 sit_i->sentries[start].cur_valid_map_mir
Chao Yuacbf0542017-11-30 19:28:17 +08003760 = f2fs_kzalloc(sbi, SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Chao Yu355e7892017-01-07 18:51:01 +08003761 if (!sit_i->sentries[start].cur_valid_map_mir)
3762 return -ENOMEM;
3763#endif
3764
Jaegeuk Kim3e025742016-08-02 10:56:40 -07003765 if (f2fs_discard_en(sbi)) {
3766 sit_i->sentries[start].discard_map
Chao Yuacbf0542017-11-30 19:28:17 +08003767 = f2fs_kzalloc(sbi, SIT_VBLOCK_MAP_SIZE,
3768 GFP_KERNEL);
Jaegeuk Kim3e025742016-08-02 10:56:40 -07003769 if (!sit_i->sentries[start].discard_map)
3770 return -ENOMEM;
3771 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003772 }
3773
Chao Yuacbf0542017-11-30 19:28:17 +08003774 sit_i->tmp_map = f2fs_kzalloc(sbi, SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08003775 if (!sit_i->tmp_map)
3776 return -ENOMEM;
3777
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003778 if (sbi->segs_per_sec > 1) {
Kees Cook9d2a7892018-06-12 14:28:35 -07003779 sit_i->sec_entries =
3780 f2fs_kvzalloc(sbi, array_size(sizeof(struct sec_entry),
3781 MAIN_SECS(sbi)),
3782 GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003783 if (!sit_i->sec_entries)
3784 return -ENOMEM;
3785 }
3786
3787 /* get information related with SIT */
3788 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
3789
3790 /* setup SIT bitmap from ckeckpoint pack */
3791 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
3792 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
3793
Chao Yuae27d622017-01-07 18:52:34 +08003794 sit_i->sit_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
3795 if (!sit_i->sit_bitmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003796 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003797
Chao Yuae27d622017-01-07 18:52:34 +08003798#ifdef CONFIG_F2FS_CHECK_FS
3799 sit_i->sit_bitmap_mir = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
3800 if (!sit_i->sit_bitmap_mir)
3801 return -ENOMEM;
3802#endif
3803
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003804 /* init SIT information */
3805 sit_i->s_ops = &default_salloc_ops;
3806
3807 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
3808 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
Jaegeuk Kimc79b7ff2016-11-14 18:20:10 -08003809 sit_i->written_valid_blocks = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003810 sit_i->bitmap_size = bitmap_size;
3811 sit_i->dirty_sentries = 0;
3812 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
3813 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
Deepa Dinamani48fbfe52017-05-08 15:59:10 -07003814 sit_i->mounted_time = ktime_get_real_seconds();
Chao Yu3d26fa62017-10-30 17:49:53 +08003815 init_rwsem(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003816 return 0;
3817}
3818
3819static int build_free_segmap(struct f2fs_sb_info *sbi)
3820{
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003821 struct free_segmap_info *free_i;
3822 unsigned int bitmap_size, sec_bitmap_size;
3823
3824 /* allocate memory for free segmap information */
Chao Yuacbf0542017-11-30 19:28:17 +08003825 free_i = f2fs_kzalloc(sbi, sizeof(struct free_segmap_info), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003826 if (!free_i)
3827 return -ENOMEM;
3828
3829 SM_I(sbi)->free_info = free_i;
3830
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07003831 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Chao Yu628b3d12017-11-30 19:28:18 +08003832 free_i->free_segmap = f2fs_kvmalloc(sbi, bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003833 if (!free_i->free_segmap)
3834 return -ENOMEM;
3835
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07003836 sec_bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Chao Yu628b3d12017-11-30 19:28:18 +08003837 free_i->free_secmap = f2fs_kvmalloc(sbi, sec_bitmap_size, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003838 if (!free_i->free_secmap)
3839 return -ENOMEM;
3840
3841 /* set all segments as dirty temporarily */
3842 memset(free_i->free_segmap, 0xff, bitmap_size);
3843 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
3844
3845 /* init free segmap information */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07003846 free_i->start_segno = GET_SEGNO_FROM_SEG0(sbi, MAIN_BLKADDR(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003847 free_i->free_segments = 0;
3848 free_i->free_sections = 0;
Chao Yu1a118cc2015-02-11 18:20:38 +08003849 spin_lock_init(&free_i->segmap_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003850 return 0;
3851}
3852
3853static int build_curseg(struct f2fs_sb_info *sbi)
3854{
Namjae Jeon1042d602012-12-01 10:56:13 +09003855 struct curseg_info *array;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003856 int i;
3857
Kees Cook026f0502018-06-12 14:28:23 -07003858 array = f2fs_kzalloc(sbi, array_size(NR_CURSEG_TYPE, sizeof(*array)),
3859 GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003860 if (!array)
3861 return -ENOMEM;
3862
3863 SM_I(sbi)->curseg_array = array;
3864
3865 for (i = 0; i < NR_CURSEG_TYPE; i++) {
3866 mutex_init(&array[i].curseg_mutex);
Chao Yuacbf0542017-11-30 19:28:17 +08003867 array[i].sum_blk = f2fs_kzalloc(sbi, PAGE_SIZE, GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003868 if (!array[i].sum_blk)
3869 return -ENOMEM;
Chao Yub7ad7512016-02-19 18:08:46 +08003870 init_rwsem(&array[i].journal_rwsem);
Chao Yuacbf0542017-11-30 19:28:17 +08003871 array[i].journal = f2fs_kzalloc(sbi,
3872 sizeof(struct f2fs_journal), GFP_KERNEL);
Chao Yub7ad7512016-02-19 18:08:46 +08003873 if (!array[i].journal)
3874 return -ENOMEM;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003875 array[i].segno = NULL_SEGNO;
3876 array[i].next_blkoff = 0;
3877 }
3878 return restore_curseg_summaries(sbi);
3879}
3880
Jaegeuk Kimc39a1b32017-12-19 19:16:34 -08003881static int build_sit_entries(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003882{
3883 struct sit_info *sit_i = SIT_I(sbi);
3884 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
Chao Yub7ad7512016-02-19 18:08:46 +08003885 struct f2fs_journal *journal = curseg->journal;
Yunlei He9c094042016-09-24 12:29:18 +08003886 struct seg_entry *se;
3887 struct f2fs_sit_entry sit;
Chao Yu74de5932013-11-22 09:09:59 +08003888 int sit_blk_cnt = SIT_BLK_CNT(sbi);
3889 unsigned int i, start, end;
3890 unsigned int readed, start_blk = 0;
Jaegeuk Kimc39a1b32017-12-19 19:16:34 -08003891 int err = 0;
Jaegeuk Kim8a29c122018-04-24 21:34:05 -06003892 block_t total_node_blocks = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003893
Chao Yu74de5932013-11-22 09:09:59 +08003894 do {
Chao Yu4d57b862018-05-30 00:20:41 +08003895 readed = f2fs_ra_meta_pages(sbi, start_blk, BIO_MAX_PAGES,
Jaegeuk Kim664ba972016-10-18 11:07:45 -07003896 META_SIT, true);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003897
Chao Yu74de5932013-11-22 09:09:59 +08003898 start = start_blk * sit_i->sents_per_block;
3899 end = (start_blk + readed) * sit_i->sents_per_block;
3900
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07003901 for (; start < end && start < MAIN_SEGS(sbi); start++) {
Chao Yu74de5932013-11-22 09:09:59 +08003902 struct f2fs_sit_block *sit_blk;
Chao Yu74de5932013-11-22 09:09:59 +08003903 struct page *page;
3904
Yunlei He9c094042016-09-24 12:29:18 +08003905 se = &sit_i->sentries[start];
Chao Yu74de5932013-11-22 09:09:59 +08003906 page = get_current_sit_page(sbi, start);
3907 sit_blk = (struct f2fs_sit_block *)page_address(page);
3908 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
3909 f2fs_put_page(page, 1);
Chao Yud600af232016-08-19 23:13:47 +08003910
Jaegeuk Kimc39a1b32017-12-19 19:16:34 -08003911 err = check_block_count(sbi, start, &sit);
3912 if (err)
3913 return err;
Chao Yu74de5932013-11-22 09:09:59 +08003914 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kim8a29c122018-04-24 21:34:05 -06003915 if (IS_NODESEG(se->type))
3916 total_node_blocks += se->valid_blocks;
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07003917
3918 /* build discard map only one time */
Jaegeuk Kim3e025742016-08-02 10:56:40 -07003919 if (f2fs_discard_en(sbi)) {
Chao Yu1f43e2a2017-04-28 13:56:08 +08003920 if (is_set_ckpt_flags(sbi, CP_TRIMMED_FLAG)) {
3921 memset(se->discard_map, 0xff,
3922 SIT_VBLOCK_MAP_SIZE);
3923 } else {
3924 memcpy(se->discard_map,
3925 se->cur_valid_map,
3926 SIT_VBLOCK_MAP_SIZE);
3927 sbi->discard_blks +=
3928 sbi->blocks_per_seg -
3929 se->valid_blocks;
3930 }
Jaegeuk Kim3e025742016-08-02 10:56:40 -07003931 }
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07003932
Chao Yud600af232016-08-19 23:13:47 +08003933 if (sbi->segs_per_sec > 1)
3934 get_sec_entry(sbi, start)->valid_blocks +=
3935 se->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003936 }
Chao Yu74de5932013-11-22 09:09:59 +08003937 start_blk += readed;
3938 } while (start_blk < sit_blk_cnt);
Chao Yud600af232016-08-19 23:13:47 +08003939
3940 down_read(&curseg->journal_rwsem);
3941 for (i = 0; i < sits_in_cursum(journal); i++) {
Chao Yud600af232016-08-19 23:13:47 +08003942 unsigned int old_valid_blocks;
3943
3944 start = le32_to_cpu(segno_in_journal(journal, i));
Jaegeuk Kimb2ca3742018-04-24 15:44:16 -06003945 if (start >= MAIN_SEGS(sbi)) {
3946 f2fs_msg(sbi->sb, KERN_ERR,
3947 "Wrong journal entry on segno %u",
3948 start);
3949 set_sbi_flag(sbi, SBI_NEED_FSCK);
3950 err = -EINVAL;
3951 break;
3952 }
3953
Chao Yud600af232016-08-19 23:13:47 +08003954 se = &sit_i->sentries[start];
3955 sit = sit_in_journal(journal, i);
3956
3957 old_valid_blocks = se->valid_blocks;
Jaegeuk Kim8a29c122018-04-24 21:34:05 -06003958 if (IS_NODESEG(se->type))
3959 total_node_blocks -= old_valid_blocks;
Chao Yud600af232016-08-19 23:13:47 +08003960
Jaegeuk Kimc39a1b32017-12-19 19:16:34 -08003961 err = check_block_count(sbi, start, &sit);
3962 if (err)
3963 break;
Chao Yud600af232016-08-19 23:13:47 +08003964 seg_info_from_raw_sit(se, &sit);
Jaegeuk Kim8a29c122018-04-24 21:34:05 -06003965 if (IS_NODESEG(se->type))
3966 total_node_blocks += se->valid_blocks;
Chao Yud600af232016-08-19 23:13:47 +08003967
3968 if (f2fs_discard_en(sbi)) {
Chao Yu1f43e2a2017-04-28 13:56:08 +08003969 if (is_set_ckpt_flags(sbi, CP_TRIMMED_FLAG)) {
3970 memset(se->discard_map, 0xff,
3971 SIT_VBLOCK_MAP_SIZE);
3972 } else {
3973 memcpy(se->discard_map, se->cur_valid_map,
3974 SIT_VBLOCK_MAP_SIZE);
Chao Yua9af3fd2018-04-25 19:38:17 +08003975 sbi->discard_blks += old_valid_blocks;
3976 sbi->discard_blks -= se->valid_blocks;
Chao Yu1f43e2a2017-04-28 13:56:08 +08003977 }
Chao Yud600af232016-08-19 23:13:47 +08003978 }
3979
Chao Yua9af3fd2018-04-25 19:38:17 +08003980 if (sbi->segs_per_sec > 1) {
Chao Yud600af232016-08-19 23:13:47 +08003981 get_sec_entry(sbi, start)->valid_blocks +=
Chao Yua9af3fd2018-04-25 19:38:17 +08003982 se->valid_blocks;
3983 get_sec_entry(sbi, start)->valid_blocks -=
3984 old_valid_blocks;
3985 }
Chao Yud600af232016-08-19 23:13:47 +08003986 }
3987 up_read(&curseg->journal_rwsem);
Jaegeuk Kim8a29c122018-04-24 21:34:05 -06003988
3989 if (!err && total_node_blocks != valid_node_count(sbi)) {
3990 f2fs_msg(sbi->sb, KERN_ERR,
3991 "SIT is corrupted node# %u vs %u",
3992 total_node_blocks, valid_node_count(sbi));
3993 set_sbi_flag(sbi, SBI_NEED_FSCK);
3994 err = -EINVAL;
3995 }
3996
Jaegeuk Kimc39a1b32017-12-19 19:16:34 -08003997 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09003998}
3999
4000static void init_free_segmap(struct f2fs_sb_info *sbi)
4001{
4002 unsigned int start;
4003 int type;
4004
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004005 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004006 struct seg_entry *sentry = get_seg_entry(sbi, start);
4007 if (!sentry->valid_blocks)
4008 __set_free(sbi, start);
Jaegeuk Kimc79b7ff2016-11-14 18:20:10 -08004009 else
4010 SIT_I(sbi)->written_valid_blocks +=
4011 sentry->valid_blocks;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004012 }
4013
4014 /* set use the current segments */
4015 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
4016 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
4017 __set_test_and_inuse(sbi, curseg_t->segno);
4018 }
4019}
4020
4021static void init_dirty_segmap(struct f2fs_sb_info *sbi)
4022{
4023 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
4024 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004025 unsigned int segno = 0, offset = 0;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004026 unsigned short valid_blocks;
4027
Namjae Jeon8736fbf2013-06-16 09:49:11 +09004028 while (1) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004029 /* find dirty segment based on free segmap */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004030 segno = find_next_inuse(free_i, MAIN_SEGS(sbi), offset);
4031 if (segno >= MAIN_SEGS(sbi))
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004032 break;
4033 offset = segno + 1;
Jaegeuk Kim302bd342017-04-07 14:33:22 -07004034 valid_blocks = get_valid_blocks(sbi, segno, false);
Jaegeuk Kimec325b52014-09-02 16:24:11 -07004035 if (valid_blocks == sbi->blocks_per_seg || !valid_blocks)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004036 continue;
Jaegeuk Kimec325b52014-09-02 16:24:11 -07004037 if (valid_blocks > sbi->blocks_per_seg) {
4038 f2fs_bug_on(sbi, 1);
4039 continue;
4040 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004041 mutex_lock(&dirty_i->seglist_lock);
4042 __locate_dirty_segment(sbi, segno, DIRTY);
4043 mutex_unlock(&dirty_i->seglist_lock);
4044 }
4045}
4046
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09004047static int init_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004048{
4049 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004050 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004051
Chao Yu628b3d12017-11-30 19:28:18 +08004052 dirty_i->victim_secmap = f2fs_kvzalloc(sbi, bitmap_size, GFP_KERNEL);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09004053 if (!dirty_i->victim_secmap)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004054 return -ENOMEM;
4055 return 0;
4056}
4057
4058static int build_dirty_segmap(struct f2fs_sb_info *sbi)
4059{
4060 struct dirty_seglist_info *dirty_i;
4061 unsigned int bitmap_size, i;
4062
4063 /* allocate memory for dirty segments list information */
Chao Yuacbf0542017-11-30 19:28:17 +08004064 dirty_i = f2fs_kzalloc(sbi, sizeof(struct dirty_seglist_info),
4065 GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004066 if (!dirty_i)
4067 return -ENOMEM;
4068
4069 SM_I(sbi)->dirty_info = dirty_i;
4070 mutex_init(&dirty_i->seglist_lock);
4071
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004072 bitmap_size = f2fs_bitmap_size(MAIN_SEGS(sbi));
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004073
4074 for (i = 0; i < NR_DIRTY_TYPE; i++) {
Chao Yu628b3d12017-11-30 19:28:18 +08004075 dirty_i->dirty_segmap[i] = f2fs_kvzalloc(sbi, bitmap_size,
4076 GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004077 if (!dirty_i->dirty_segmap[i])
4078 return -ENOMEM;
4079 }
4080
4081 init_dirty_segmap(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09004082 return init_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004083}
4084
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09004085/*
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004086 * Update min, max modified time for cost-benefit GC algorithm
4087 */
4088static void init_min_max_mtime(struct f2fs_sb_info *sbi)
4089{
4090 struct sit_info *sit_i = SIT_I(sbi);
4091 unsigned int segno;
4092
Chao Yu3d26fa62017-10-30 17:49:53 +08004093 down_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004094
Chao Yu5ad25442018-05-15 18:59:55 +08004095 sit_i->min_mtime = ULLONG_MAX;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004096
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004097 for (segno = 0; segno < MAIN_SEGS(sbi); segno += sbi->segs_per_sec) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004098 unsigned int i;
4099 unsigned long long mtime = 0;
4100
4101 for (i = 0; i < sbi->segs_per_sec; i++)
4102 mtime += get_seg_entry(sbi, segno + i)->mtime;
4103
4104 mtime = div_u64(mtime, sbi->segs_per_sec);
4105
4106 if (sit_i->min_mtime > mtime)
4107 sit_i->min_mtime = mtime;
4108 }
Chao Yua1f72ac22018-06-04 23:20:17 +08004109 sit_i->max_mtime = get_mtime(sbi, false);
Chao Yu3d26fa62017-10-30 17:49:53 +08004110 up_write(&sit_i->sentry_lock);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004111}
4112
Chao Yu4d57b862018-05-30 00:20:41 +08004113int f2fs_build_segment_manager(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004114{
4115 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
4116 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Namjae Jeon1042d602012-12-01 10:56:13 +09004117 struct f2fs_sm_info *sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004118 int err;
4119
Chao Yuacbf0542017-11-30 19:28:17 +08004120 sm_info = f2fs_kzalloc(sbi, sizeof(struct f2fs_sm_info), GFP_KERNEL);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004121 if (!sm_info)
4122 return -ENOMEM;
4123
4124 /* init sm info */
4125 sbi->sm_info = sm_info;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004126 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
4127 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
4128 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
4129 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
4130 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
4131 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
4132 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
Jaegeuk Kim58c41032014-03-19 14:17:21 +09004133 sm_info->rec_prefree_segments = sm_info->main_segments *
4134 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
Jaegeuk Kim44a83492016-07-13 18:23:35 -07004135 if (sm_info->rec_prefree_segments > DEF_MAX_RECLAIM_PREFREE_SEGMENTS)
4136 sm_info->rec_prefree_segments = DEF_MAX_RECLAIM_PREFREE_SEGMENTS;
4137
Jaegeuk Kim52763a42016-06-13 09:47:48 -07004138 if (!test_opt(sbi, LFS))
4139 sm_info->ipu_policy = 1 << F2FS_IPU_FSYNC;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +09004140 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -07004141 sm_info->min_fsync_blocks = DEF_MIN_FSYNC_BLOCKS;
Jaegeuk Kim853137c2018-08-09 17:53:34 -07004142 sm_info->min_seq_blocks = sbi->blocks_per_seg * sbi->segs_per_sec;
Jaegeuk Kimef095d12017-03-24 20:05:13 -04004143 sm_info->min_hot_blocks = DEF_MIN_HOT_BLOCKS;
Chao Yua2a12b62017-10-28 16:52:33 +08004144 sm_info->min_ssr_sections = reserved_sections(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004145
Chao Yu184a5cd2014-09-04 18:13:01 +08004146 INIT_LIST_HEAD(&sm_info->sit_entry_set);
4147
Chao Yu2b603112017-11-02 20:41:03 +08004148 init_rwsem(&sm_info->curseg_lock);
4149
Yunlei Hed4fdf8b2017-06-01 16:43:51 +08004150 if (!f2fs_readonly(sbi->sb)) {
Chao Yu4d57b862018-05-30 00:20:41 +08004151 err = f2fs_create_flush_cmd_control(sbi);
Gu Zheng2163d192014-04-27 14:21:33 +08004152 if (err)
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08004153 return err;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09004154 }
4155
Jaegeuk Kim0b54fb82017-01-11 14:40:24 -08004156 err = create_discard_cmd_control(sbi);
4157 if (err)
4158 return err;
4159
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004160 err = build_sit_info(sbi);
4161 if (err)
4162 return err;
4163 err = build_free_segmap(sbi);
4164 if (err)
4165 return err;
4166 err = build_curseg(sbi);
4167 if (err)
4168 return err;
4169
4170 /* reinit free segmap based on SIT */
Jaegeuk Kimc39a1b32017-12-19 19:16:34 -08004171 err = build_sit_entries(sbi);
4172 if (err)
4173 return err;
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004174
4175 init_free_segmap(sbi);
4176 err = build_dirty_segmap(sbi);
4177 if (err)
4178 return err;
4179
4180 init_min_max_mtime(sbi);
4181 return 0;
4182}
4183
4184static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
4185 enum dirty_type dirty_type)
4186{
4187 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
4188
4189 mutex_lock(&dirty_i->seglist_lock);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07004190 kvfree(dirty_i->dirty_segmap[dirty_type]);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004191 dirty_i->nr_dirty[dirty_type] = 0;
4192 mutex_unlock(&dirty_i->seglist_lock);
4193}
4194
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09004195static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004196{
4197 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim39307a82015-09-22 13:50:47 -07004198 kvfree(dirty_i->victim_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004199}
4200
4201static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
4202{
4203 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
4204 int i;
4205
4206 if (!dirty_i)
4207 return;
4208
4209 /* discard pre-free/dirty segments list */
4210 for (i = 0; i < NR_DIRTY_TYPE; i++)
4211 discard_dirty_segmap(sbi, i);
4212
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09004213 destroy_victim_secmap(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004214 SM_I(sbi)->dirty_info = NULL;
4215 kfree(dirty_i);
4216}
4217
4218static void destroy_curseg(struct f2fs_sb_info *sbi)
4219{
4220 struct curseg_info *array = SM_I(sbi)->curseg_array;
4221 int i;
4222
4223 if (!array)
4224 return;
4225 SM_I(sbi)->curseg_array = NULL;
Chao Yub7ad7512016-02-19 18:08:46 +08004226 for (i = 0; i < NR_CURSEG_TYPE; i++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004227 kfree(array[i].sum_blk);
Chao Yub7ad7512016-02-19 18:08:46 +08004228 kfree(array[i].journal);
4229 }
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004230 kfree(array);
4231}
4232
4233static void destroy_free_segmap(struct f2fs_sb_info *sbi)
4234{
4235 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
4236 if (!free_i)
4237 return;
4238 SM_I(sbi)->free_info = NULL;
Jaegeuk Kim39307a82015-09-22 13:50:47 -07004239 kvfree(free_i->free_segmap);
4240 kvfree(free_i->free_secmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004241 kfree(free_i);
4242}
4243
4244static void destroy_sit_info(struct f2fs_sb_info *sbi)
4245{
4246 struct sit_info *sit_i = SIT_I(sbi);
4247 unsigned int start;
4248
4249 if (!sit_i)
4250 return;
4251
4252 if (sit_i->sentries) {
Jaegeuk Kim7cd85582014-09-23 11:23:01 -07004253 for (start = 0; start < MAIN_SEGS(sbi); start++) {
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004254 kfree(sit_i->sentries[start].cur_valid_map);
Chao Yu355e7892017-01-07 18:51:01 +08004255#ifdef CONFIG_F2FS_CHECK_FS
4256 kfree(sit_i->sentries[start].cur_valid_map_mir);
4257#endif
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004258 kfree(sit_i->sentries[start].ckpt_valid_map);
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07004259 kfree(sit_i->sentries[start].discard_map);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004260 }
4261 }
Jaegeuk Kim60a3b782015-02-10 16:44:29 -08004262 kfree(sit_i->tmp_map);
4263
Jaegeuk Kim39307a82015-09-22 13:50:47 -07004264 kvfree(sit_i->sentries);
4265 kvfree(sit_i->sec_entries);
4266 kvfree(sit_i->dirty_sentries_bitmap);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004267
4268 SM_I(sbi)->sit_info = NULL;
4269 kfree(sit_i->sit_bitmap);
Chao Yuae27d622017-01-07 18:52:34 +08004270#ifdef CONFIG_F2FS_CHECK_FS
4271 kfree(sit_i->sit_bitmap_mir);
4272#endif
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004273 kfree(sit_i);
4274}
4275
Chao Yu4d57b862018-05-30 00:20:41 +08004276void f2fs_destroy_segment_manager(struct f2fs_sb_info *sbi)
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004277{
4278 struct f2fs_sm_info *sm_info = SM_I(sbi);
Gu Zhenga688b9d9e2014-04-27 14:21:21 +08004279
Chao Yu3b03f722013-11-06 09:12:04 +08004280 if (!sm_info)
4281 return;
Chao Yu4d57b862018-05-30 00:20:41 +08004282 f2fs_destroy_flush_cmd_control(sbi, true);
Chao Yuf0994052017-03-27 18:14:04 +08004283 destroy_discard_cmd_control(sbi);
Jaegeuk Kim351df4b2012-11-02 17:09:16 +09004284 destroy_dirty_segmap(sbi);
4285 destroy_curseg(sbi);
4286 destroy_free_segmap(sbi);
4287 destroy_sit_info(sbi);
4288 sbi->sm_info = NULL;
4289 kfree(sm_info);
4290}
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004291
Chao Yu4d57b862018-05-30 00:20:41 +08004292int __init f2fs_create_segment_manager_caches(void)
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004293{
4294 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
Gu Zhenge8512d22014-03-07 18:43:28 +08004295 sizeof(struct discard_entry));
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004296 if (!discard_entry_slab)
Chao Yu184a5cd2014-09-04 18:13:01 +08004297 goto fail;
4298
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08004299 discard_cmd_slab = f2fs_kmem_cache_create("discard_cmd",
4300 sizeof(struct discard_cmd));
4301 if (!discard_cmd_slab)
Chao Yu6ab2a302016-09-05 12:28:26 +08004302 goto destroy_discard_entry;
Chao Yu275b66b2016-08-29 23:58:34 +08004303
Chao Yu184a5cd2014-09-04 18:13:01 +08004304 sit_entry_set_slab = f2fs_kmem_cache_create("sit_entry_set",
Changman Leec9ee0082014-11-21 15:42:07 +09004305 sizeof(struct sit_entry_set));
Chao Yu184a5cd2014-09-04 18:13:01 +08004306 if (!sit_entry_set_slab)
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08004307 goto destroy_discard_cmd;
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07004308
4309 inmem_entry_slab = f2fs_kmem_cache_create("inmem_page_entry",
4310 sizeof(struct inmem_pages));
4311 if (!inmem_entry_slab)
4312 goto destroy_sit_entry_set;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004313 return 0;
Chao Yu184a5cd2014-09-04 18:13:01 +08004314
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07004315destroy_sit_entry_set:
4316 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08004317destroy_discard_cmd:
4318 kmem_cache_destroy(discard_cmd_slab);
Chao Yu6ab2a302016-09-05 12:28:26 +08004319destroy_discard_entry:
Chao Yu184a5cd2014-09-04 18:13:01 +08004320 kmem_cache_destroy(discard_entry_slab);
4321fail:
4322 return -ENOMEM;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004323}
4324
Chao Yu4d57b862018-05-30 00:20:41 +08004325void f2fs_destroy_segment_manager_caches(void)
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004326{
Chao Yu184a5cd2014-09-04 18:13:01 +08004327 kmem_cache_destroy(sit_entry_set_slab);
Jaegeuk Kimb01a9202017-01-09 14:13:03 -08004328 kmem_cache_destroy(discard_cmd_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004329 kmem_cache_destroy(discard_entry_slab);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07004330 kmem_cache_destroy(inmem_entry_slab);
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004331}