]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/f2fs/checkpoint.c
Merge tag 'for-linus-20170825' of git://git.infradead.org/linux-mtd
[mirror_ubuntu-artful-kernel.git] / fs / f2fs / checkpoint.c
CommitLineData
0a8165d7 1/*
127e670a
JK
2 * fs/f2fs/checkpoint.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/bio.h>
13#include <linux/mpage.h>
14#include <linux/writeback.h>
15#include <linux/blkdev.h>
16#include <linux/f2fs_fs.h>
17#include <linux/pagevec.h>
18#include <linux/swap.h>
19
20#include "f2fs.h"
21#include "node.h"
22#include "segment.h"
9e4ded3f 23#include "trace.h"
2af4bd6c 24#include <trace/events/f2fs.h>
127e670a 25
6451e041 26static struct kmem_cache *ino_entry_slab;
06292073 27struct kmem_cache *inode_entry_slab;
127e670a 28
38f91ca8
JK
29void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi, bool end_io)
30{
aaec2b1d 31 set_ckpt_flags(sbi, CP_ERROR_FLAG);
38f91ca8
JK
32 sbi->sb->s_flags |= MS_RDONLY;
33 if (!end_io)
b9109b0e 34 f2fs_flush_merged_writes(sbi);
38f91ca8
JK
35}
36
0a8165d7 37/*
127e670a
JK
38 * We guarantee no failure on the returned page.
39 */
40struct page *grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
41{
9df27d98 42 struct address_space *mapping = META_MAPPING(sbi);
127e670a
JK
43 struct page *page = NULL;
44repeat:
300e129c 45 page = f2fs_grab_cache_page(mapping, index, false);
127e670a
JK
46 if (!page) {
47 cond_resched();
48 goto repeat;
49 }
fec1d657 50 f2fs_wait_on_page_writeback(page, META, true);
237c0790
JK
51 if (!PageUptodate(page))
52 SetPageUptodate(page);
127e670a
JK
53 return page;
54}
55
0a8165d7 56/*
127e670a
JK
57 * We guarantee no failure on the returned page.
58 */
2b947003
CY
59static struct page *__get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index,
60 bool is_meta)
127e670a 61{
9df27d98 62 struct address_space *mapping = META_MAPPING(sbi);
127e670a 63 struct page *page;
cf04e8eb 64 struct f2fs_io_info fio = {
05ca3632 65 .sbi = sbi,
cf04e8eb 66 .type = META,
04d328de 67 .op = REQ_OP_READ,
70fd7614 68 .op_flags = REQ_META | REQ_PRIO,
7a9d7548
CY
69 .old_blkaddr = index,
70 .new_blkaddr = index,
4375a336 71 .encrypted_page = NULL,
cf04e8eb 72 };
2b947003
CY
73
74 if (unlikely(!is_meta))
04d328de 75 fio.op_flags &= ~REQ_META;
127e670a 76repeat:
300e129c 77 page = f2fs_grab_cache_page(mapping, index, false);
127e670a
JK
78 if (!page) {
79 cond_resched();
80 goto repeat;
81 }
393ff91f
JK
82 if (PageUptodate(page))
83 goto out;
84
05ca3632
JK
85 fio.page = page;
86
86531d6b
JK
87 if (f2fs_submit_page_bio(&fio)) {
88 f2fs_put_page(page, 1);
127e670a 89 goto repeat;
86531d6b 90 }
127e670a 91
393ff91f 92 lock_page(page);
6bacf52f 93 if (unlikely(page->mapping != mapping)) {
afcb7ca0
JK
94 f2fs_put_page(page, 1);
95 goto repeat;
96 }
f3f338ca
CY
97
98 /*
99 * if there is any IO error when accessing device, make our filesystem
100 * readonly and make sure do not write checkpoint with non-uptodate
101 * meta page.
102 */
103 if (unlikely(!PageUptodate(page)))
38f91ca8 104 f2fs_stop_checkpoint(sbi, false);
393ff91f 105out:
127e670a
JK
106 return page;
107}
108
2b947003
CY
109struct page *get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
110{
111 return __get_meta_page(sbi, index, true);
112}
113
114/* for POR only */
115struct page *get_tmp_page(struct f2fs_sb_info *sbi, pgoff_t index)
116{
117 return __get_meta_page(sbi, index, false);
118}
119
f0c9cada 120bool is_valid_blkaddr(struct f2fs_sb_info *sbi, block_t blkaddr, int type)
662befda
CY
121{
122 switch (type) {
123 case META_NAT:
66b00c18 124 break;
662befda 125 case META_SIT:
66b00c18
CY
126 if (unlikely(blkaddr >= SIT_BLK_CNT(sbi)))
127 return false;
128 break;
81c1a0f1 129 case META_SSA:
66b00c18
CY
130 if (unlikely(blkaddr >= MAIN_BLKADDR(sbi) ||
131 blkaddr < SM_I(sbi)->ssa_blkaddr))
132 return false;
133 break;
662befda 134 case META_CP:
66b00c18
CY
135 if (unlikely(blkaddr >= SIT_I(sbi)->sit_base_addr ||
136 blkaddr < __start_cp_addr(sbi)))
137 return false;
138 break;
4c521f49 139 case META_POR:
66b00c18
CY
140 if (unlikely(blkaddr >= MAX_BLKADDR(sbi) ||
141 blkaddr < MAIN_BLKADDR(sbi)))
142 return false;
143 break;
662befda
CY
144 default:
145 BUG();
146 }
66b00c18
CY
147
148 return true;
662befda
CY
149}
150
151/*
81c1a0f1 152 * Readahead CP/NAT/SIT/SSA pages
662befda 153 */
26879fb1
CY
154int ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages,
155 int type, bool sync)
662befda 156{
662befda 157 struct page *page;
4c521f49 158 block_t blkno = start;
662befda 159 struct f2fs_io_info fio = {
05ca3632 160 .sbi = sbi,
662befda 161 .type = META,
04d328de 162 .op = REQ_OP_READ,
70fd7614 163 .op_flags = sync ? (REQ_META | REQ_PRIO) : REQ_RAHEAD,
4375a336 164 .encrypted_page = NULL,
fb830fc5 165 .in_list = false,
662befda 166 };
e9f5b8b8 167 struct blk_plug plug;
662befda 168
2b947003 169 if (unlikely(type == META_POR))
04d328de 170 fio.op_flags &= ~REQ_META;
2b947003 171
e9f5b8b8 172 blk_start_plug(&plug);
662befda 173 for (; nrpages-- > 0; blkno++) {
662befda 174
66b00c18
CY
175 if (!is_valid_blkaddr(sbi, blkno, type))
176 goto out;
177
662befda
CY
178 switch (type) {
179 case META_NAT:
66b00c18
CY
180 if (unlikely(blkno >=
181 NAT_BLOCK_OFFSET(NM_I(sbi)->max_nid)))
662befda 182 blkno = 0;
66b00c18 183 /* get nat block addr */
7a9d7548 184 fio.new_blkaddr = current_nat_addr(sbi,
662befda
CY
185 blkno * NAT_ENTRY_PER_BLOCK);
186 break;
187 case META_SIT:
188 /* get sit block addr */
7a9d7548 189 fio.new_blkaddr = current_sit_addr(sbi,
662befda 190 blkno * SIT_ENTRY_PER_BLOCK);
662befda 191 break;
81c1a0f1 192 case META_SSA:
662befda 193 case META_CP:
4c521f49 194 case META_POR:
7a9d7548 195 fio.new_blkaddr = blkno;
662befda
CY
196 break;
197 default:
198 BUG();
199 }
200
300e129c
JK
201 page = f2fs_grab_cache_page(META_MAPPING(sbi),
202 fio.new_blkaddr, false);
662befda
CY
203 if (!page)
204 continue;
205 if (PageUptodate(page)) {
662befda
CY
206 f2fs_put_page(page, 1);
207 continue;
208 }
209
05ca3632 210 fio.page = page;
1919ffc0 211 f2fs_submit_page_bio(&fio);
662befda
CY
212 f2fs_put_page(page, 0);
213 }
214out:
e9f5b8b8 215 blk_finish_plug(&plug);
662befda
CY
216 return blkno - start;
217}
218
635aee1f
CY
219void ra_meta_pages_cond(struct f2fs_sb_info *sbi, pgoff_t index)
220{
221 struct page *page;
222 bool readahead = false;
223
224 page = find_get_page(META_MAPPING(sbi), index);
4da7bf5a 225 if (!page || !PageUptodate(page))
635aee1f
CY
226 readahead = true;
227 f2fs_put_page(page, 0);
228
229 if (readahead)
664ba972 230 ra_meta_pages(sbi, index, BIO_MAX_PAGES, META_POR, true);
635aee1f
CY
231}
232
127e670a
JK
233static int f2fs_write_meta_page(struct page *page,
234 struct writeback_control *wbc)
235{
4081363f 236 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
127e670a 237
ecda0de3
CY
238 trace_f2fs_writepage(page, META);
239
caf0047e 240 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
cfb271d4 241 goto redirty_out;
857dc4e0 242 if (wbc->for_reclaim && page->index < GET_SUM_BLOCK(sbi, 0))
cfb271d4 243 goto redirty_out;
1e968fdf 244 if (unlikely(f2fs_cp_error(sbi)))
cf779cab 245 goto redirty_out;
127e670a 246
577e3495
JK
247 write_meta_page(sbi, page);
248 dec_page_count(sbi, F2FS_DIRTY_META);
0c3a5797
CY
249
250 if (wbc->for_reclaim)
b9109b0e
JK
251 f2fs_submit_merged_write_cond(sbi, page->mapping->host,
252 0, page->index, META);
0c3a5797 253
577e3495 254 unlock_page(page);
857dc4e0 255
0c3a5797 256 if (unlikely(f2fs_cp_error(sbi)))
b9109b0e 257 f2fs_submit_merged_write(sbi, META);
0c3a5797 258
577e3495 259 return 0;
cfb271d4
CY
260
261redirty_out:
76f60268 262 redirty_page_for_writepage(wbc, page);
cfb271d4 263 return AOP_WRITEPAGE_ACTIVATE;
127e670a
JK
264}
265
266static int f2fs_write_meta_pages(struct address_space *mapping,
267 struct writeback_control *wbc)
268{
4081363f 269 struct f2fs_sb_info *sbi = F2FS_M_SB(mapping);
50c8cdb3 270 long diff, written;
127e670a 271
0771fcc7
CY
272 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
273 goto skip_write;
274
5459aa97 275 /* collect a number of dirty meta pages and write together */
50c8cdb3
JK
276 if (wbc->for_kupdate ||
277 get_pages(sbi, F2FS_DIRTY_META) < nr_pages_to_skip(sbi, META))
d3baf95d 278 goto skip_write;
127e670a 279
a29d0e0b
YH
280 /* if locked failed, cp will flush dirty pages instead */
281 if (!mutex_trylock(&sbi->cp_mutex))
282 goto skip_write;
d31c7c3f 283
a29d0e0b 284 trace_f2fs_writepages(mapping->host, wbc, META);
50c8cdb3
JK
285 diff = nr_pages_to_write(sbi, META, wbc);
286 written = sync_meta_pages(sbi, META, wbc->nr_to_write);
127e670a 287 mutex_unlock(&sbi->cp_mutex);
50c8cdb3 288 wbc->nr_to_write = max((long)0, wbc->nr_to_write - written - diff);
127e670a 289 return 0;
d3baf95d
JK
290
291skip_write:
292 wbc->pages_skipped += get_pages(sbi, F2FS_DIRTY_META);
d31c7c3f 293 trace_f2fs_writepages(mapping->host, wbc, META);
d3baf95d 294 return 0;
127e670a
JK
295}
296
297long sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type,
298 long nr_to_write)
299{
9df27d98 300 struct address_space *mapping = META_MAPPING(sbi);
80dd9c0e 301 pgoff_t index = 0, end = ULONG_MAX, prev = ULONG_MAX;
127e670a
JK
302 struct pagevec pvec;
303 long nwritten = 0;
304 struct writeback_control wbc = {
305 .for_reclaim = 0,
306 };
e9f5b8b8 307 struct blk_plug plug;
127e670a
JK
308
309 pagevec_init(&pvec, 0);
310
e9f5b8b8
CY
311 blk_start_plug(&plug);
312
127e670a
JK
313 while (index <= end) {
314 int i, nr_pages;
315 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
316 PAGECACHE_TAG_DIRTY,
317 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
cfb271d4 318 if (unlikely(nr_pages == 0))
127e670a
JK
319 break;
320
321 for (i = 0; i < nr_pages; i++) {
322 struct page *page = pvec.pages[i];
203681f6 323
80dd9c0e 324 if (prev == ULONG_MAX)
6066d8cd
JK
325 prev = page->index - 1;
326 if (nr_to_write != LONG_MAX && page->index != prev + 1) {
327 pagevec_release(&pvec);
328 goto stop;
329 }
330
127e670a 331 lock_page(page);
203681f6
JK
332
333 if (unlikely(page->mapping != mapping)) {
334continue_unlock:
335 unlock_page(page);
336 continue;
337 }
338 if (!PageDirty(page)) {
339 /* someone wrote it for us */
340 goto continue_unlock;
341 }
342
fa3d2bdf
JK
343 f2fs_wait_on_page_writeback(page, META, true);
344
345 BUG_ON(PageWriteback(page));
203681f6
JK
346 if (!clear_page_dirty_for_io(page))
347 goto continue_unlock;
348
97dc3fd2 349 if (mapping->a_ops->writepage(page, &wbc)) {
577e3495
JK
350 unlock_page(page);
351 break;
352 }
cfb271d4 353 nwritten++;
6066d8cd 354 prev = page->index;
cfb271d4 355 if (unlikely(nwritten >= nr_to_write))
127e670a
JK
356 break;
357 }
358 pagevec_release(&pvec);
359 cond_resched();
360 }
6066d8cd 361stop:
127e670a 362 if (nwritten)
b9109b0e 363 f2fs_submit_merged_write(sbi, type);
127e670a 364
e9f5b8b8
CY
365 blk_finish_plug(&plug);
366
127e670a
JK
367 return nwritten;
368}
369
370static int f2fs_set_meta_page_dirty(struct page *page)
371{
26c6b887
JK
372 trace_f2fs_set_page_dirty(page, META);
373
237c0790
JK
374 if (!PageUptodate(page))
375 SetPageUptodate(page);
127e670a 376 if (!PageDirty(page)) {
fe76b796 377 f2fs_set_page_dirty_nobuffers(page);
4081363f 378 inc_page_count(F2FS_P_SB(page), F2FS_DIRTY_META);
1601839e 379 SetPagePrivate(page);
9e4ded3f 380 f2fs_trace_pid(page);
127e670a
JK
381 return 1;
382 }
383 return 0;
384}
385
386const struct address_space_operations f2fs_meta_aops = {
387 .writepage = f2fs_write_meta_page,
388 .writepages = f2fs_write_meta_pages,
389 .set_page_dirty = f2fs_set_meta_page_dirty,
487261f3
CY
390 .invalidatepage = f2fs_invalidate_page,
391 .releasepage = f2fs_release_page,
5b7a487c
WG
392#ifdef CONFIG_MIGRATION
393 .migratepage = f2fs_migrate_page,
394#endif
127e670a
JK
395};
396
6451e041 397static void __add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
953e6cc6 398{
67298804 399 struct inode_management *im = &sbi->im[type];
80c54505
JK
400 struct ino_entry *e, *tmp;
401
402 tmp = f2fs_kmem_cache_alloc(ino_entry_slab, GFP_NOFS);
39efac41 403retry:
80c54505 404 radix_tree_preload(GFP_NOFS | __GFP_NOFAIL);
769ec6e5 405
67298804 406 spin_lock(&im->ino_lock);
67298804 407 e = radix_tree_lookup(&im->ino_root, ino);
39efac41 408 if (!e) {
80c54505 409 e = tmp;
67298804
CY
410 if (radix_tree_insert(&im->ino_root, ino, e)) {
411 spin_unlock(&im->ino_lock);
769ec6e5 412 radix_tree_preload_end();
39efac41
JK
413 goto retry;
414 }
415 memset(e, 0, sizeof(struct ino_entry));
416 e->ino = ino;
953e6cc6 417
67298804 418 list_add_tail(&e->list, &im->ino_list);
8c402946 419 if (type != ORPHAN_INO)
67298804 420 im->ino_num++;
39efac41 421 }
67298804 422 spin_unlock(&im->ino_lock);
769ec6e5 423 radix_tree_preload_end();
80c54505
JK
424
425 if (e != tmp)
426 kmem_cache_free(ino_entry_slab, tmp);
953e6cc6
JK
427}
428
6451e041 429static void __remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
953e6cc6 430{
67298804 431 struct inode_management *im = &sbi->im[type];
6451e041 432 struct ino_entry *e;
953e6cc6 433
67298804
CY
434 spin_lock(&im->ino_lock);
435 e = radix_tree_lookup(&im->ino_root, ino);
39efac41
JK
436 if (e) {
437 list_del(&e->list);
67298804
CY
438 radix_tree_delete(&im->ino_root, ino);
439 im->ino_num--;
440 spin_unlock(&im->ino_lock);
39efac41
JK
441 kmem_cache_free(ino_entry_slab, e);
442 return;
953e6cc6 443 }
67298804 444 spin_unlock(&im->ino_lock);
953e6cc6
JK
445}
446
a49324f1 447void add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
fff04f90
JK
448{
449 /* add new dirty ino entry into list */
450 __add_ino_entry(sbi, ino, type);
451}
452
a49324f1 453void remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
fff04f90
JK
454{
455 /* remove dirty ino entry from list */
456 __remove_ino_entry(sbi, ino, type);
457}
458
459/* mode should be APPEND_INO or UPDATE_INO */
460bool exist_written_data(struct f2fs_sb_info *sbi, nid_t ino, int mode)
461{
67298804 462 struct inode_management *im = &sbi->im[mode];
fff04f90 463 struct ino_entry *e;
67298804
CY
464
465 spin_lock(&im->ino_lock);
466 e = radix_tree_lookup(&im->ino_root, ino);
467 spin_unlock(&im->ino_lock);
fff04f90
JK
468 return e ? true : false;
469}
470
74ef9241 471void release_ino_entry(struct f2fs_sb_info *sbi, bool all)
fff04f90
JK
472{
473 struct ino_entry *e, *tmp;
474 int i;
475
74ef9241 476 for (i = all ? ORPHAN_INO: APPEND_INO; i <= UPDATE_INO; i++) {
67298804
CY
477 struct inode_management *im = &sbi->im[i];
478
479 spin_lock(&im->ino_lock);
480 list_for_each_entry_safe(e, tmp, &im->ino_list, list) {
fff04f90 481 list_del(&e->list);
67298804 482 radix_tree_delete(&im->ino_root, e->ino);
fff04f90 483 kmem_cache_free(ino_entry_slab, e);
67298804 484 im->ino_num--;
fff04f90 485 }
67298804 486 spin_unlock(&im->ino_lock);
fff04f90
JK
487 }
488}
489
cbd56e7d 490int acquire_orphan_inode(struct f2fs_sb_info *sbi)
127e670a 491{
67298804 492 struct inode_management *im = &sbi->im[ORPHAN_INO];
127e670a
JK
493 int err = 0;
494
67298804 495 spin_lock(&im->ino_lock);
cb78942b
JK
496
497#ifdef CONFIG_F2FS_FAULT_INJECTION
1ecc0c5c 498 if (time_to_inject(sbi, FAULT_ORPHAN)) {
cb78942b 499 spin_unlock(&im->ino_lock);
55523519 500 f2fs_show_injection_info(FAULT_ORPHAN);
cb78942b
JK
501 return -ENOSPC;
502 }
503#endif
67298804 504 if (unlikely(im->ino_num >= sbi->max_orphans))
127e670a 505 err = -ENOSPC;
cbd56e7d 506 else
67298804
CY
507 im->ino_num++;
508 spin_unlock(&im->ino_lock);
0d47c1ad 509
127e670a
JK
510 return err;
511}
512
cbd56e7d
JK
513void release_orphan_inode(struct f2fs_sb_info *sbi)
514{
67298804
CY
515 struct inode_management *im = &sbi->im[ORPHAN_INO];
516
517 spin_lock(&im->ino_lock);
518 f2fs_bug_on(sbi, im->ino_num == 0);
519 im->ino_num--;
520 spin_unlock(&im->ino_lock);
cbd56e7d
JK
521}
522
67c3758d 523void add_orphan_inode(struct inode *inode)
127e670a 524{
39efac41 525 /* add new orphan ino entry into list */
67c3758d
JK
526 __add_ino_entry(F2FS_I_SB(inode), inode->i_ino, ORPHAN_INO);
527 update_inode_page(inode);
127e670a
JK
528}
529
530void remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
531{
953e6cc6 532 /* remove orphan entry from orphan list */
6451e041 533 __remove_ino_entry(sbi, ino, ORPHAN_INO);
127e670a
JK
534}
535
8c14bfad 536static int recover_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
127e670a 537{
8c14bfad 538 struct inode *inode;
5905f9af 539 struct node_info ni;
d41065e2
JK
540 int err = acquire_orphan_inode(sbi);
541
542 if (err) {
543 set_sbi_flag(sbi, SBI_NEED_FSCK);
544 f2fs_msg(sbi->sb, KERN_WARNING,
545 "%s: orphan failed (ino=%x), run fsck to fix.",
546 __func__, ino);
547 return err;
548 }
549
550 __add_ino_entry(sbi, ino, ORPHAN_INO);
8c14bfad 551
5905f9af 552 inode = f2fs_iget_retry(sbi->sb, ino);
8c14bfad
CY
553 if (IS_ERR(inode)) {
554 /*
555 * there should be a bug that we can't find the entry
556 * to orphan inode.
557 */
558 f2fs_bug_on(sbi, PTR_ERR(inode) == -ENOENT);
559 return PTR_ERR(inode);
560 }
561
127e670a
JK
562 clear_nlink(inode);
563
564 /* truncate all the data during iput */
565 iput(inode);
5905f9af
JK
566
567 get_node_info(sbi, ino, &ni);
568
569 /* ENOMEM was fully retried in f2fs_evict_inode. */
570 if (ni.blk_addr != NULL_ADDR) {
d41065e2
JK
571 set_sbi_flag(sbi, SBI_NEED_FSCK);
572 f2fs_msg(sbi->sb, KERN_WARNING,
5ce4738a 573 "%s: orphan failed (ino=%x) by kernel, retry mount.",
d41065e2
JK
574 __func__, ino);
575 return -EIO;
5905f9af 576 }
d41065e2 577 __remove_ino_entry(sbi, ino, ORPHAN_INO);
8c14bfad 578 return 0;
127e670a
JK
579}
580
8c14bfad 581int recover_orphan_inodes(struct f2fs_sb_info *sbi)
127e670a 582{
3c642985 583 block_t start_blk, orphan_blocks, i, j;
8c14bfad 584 int err;
127e670a 585
aaec2b1d 586 if (!is_set_ckpt_flags(sbi, CP_ORPHAN_PRESENT_FLAG))
8c14bfad 587 return 0;
127e670a 588
55141486 589 start_blk = __start_cp_addr(sbi) + 1 + __cp_payload(sbi);
3c642985 590 orphan_blocks = __start_sum_addr(sbi) - 1 - __cp_payload(sbi);
127e670a 591
26879fb1 592 ra_meta_pages(sbi, start_blk, orphan_blocks, META_CP, true);
662befda 593
3c642985 594 for (i = 0; i < orphan_blocks; i++) {
127e670a
JK
595 struct page *page = get_meta_page(sbi, start_blk + i);
596 struct f2fs_orphan_block *orphan_blk;
597
598 orphan_blk = (struct f2fs_orphan_block *)page_address(page);
599 for (j = 0; j < le32_to_cpu(orphan_blk->entry_count); j++) {
600 nid_t ino = le32_to_cpu(orphan_blk->ino[j]);
8c14bfad
CY
601 err = recover_orphan_inode(sbi, ino);
602 if (err) {
603 f2fs_put_page(page, 1);
8c14bfad
CY
604 return err;
605 }
127e670a
JK
606 }
607 f2fs_put_page(page, 1);
608 }
609 /* clear Orphan Flag */
aaec2b1d 610 clear_ckpt_flags(sbi, CP_ORPHAN_PRESENT_FLAG);
8c14bfad 611 return 0;
127e670a
JK
612}
613
614static void write_orphan_inodes(struct f2fs_sb_info *sbi, block_t start_blk)
615{
502c6e0b 616 struct list_head *head;
127e670a 617 struct f2fs_orphan_block *orphan_blk = NULL;
127e670a 618 unsigned int nentries = 0;
bd936f84 619 unsigned short index = 1;
8c402946 620 unsigned short orphan_blocks;
4531929e 621 struct page *page = NULL;
6451e041 622 struct ino_entry *orphan = NULL;
67298804 623 struct inode_management *im = &sbi->im[ORPHAN_INO];
127e670a 624
67298804 625 orphan_blocks = GET_ORPHAN_BLOCKS(im->ino_num);
8c402946 626
d6c67a4f
JK
627 /*
628 * we don't need to do spin_lock(&im->ino_lock) here, since all the
629 * orphan inode operations are covered under f2fs_lock_op().
630 * And, spin_lock should be avoided due to page operations below.
631 */
67298804 632 head = &im->ino_list;
127e670a
JK
633
634 /* loop for each orphan inode entry and write them in Jornal block */
502c6e0b
GZ
635 list_for_each_entry(orphan, head, list) {
636 if (!page) {
bd936f84 637 page = grab_meta_page(sbi, start_blk++);
502c6e0b
GZ
638 orphan_blk =
639 (struct f2fs_orphan_block *)page_address(page);
640 memset(orphan_blk, 0, sizeof(*orphan_blk));
641 }
127e670a 642
36795567 643 orphan_blk->ino[nentries++] = cpu_to_le32(orphan->ino);
127e670a 644
36795567 645 if (nentries == F2FS_ORPHANS_PER_BLOCK) {
127e670a
JK
646 /*
647 * an orphan block is full of 1020 entries,
648 * then we need to flush current orphan blocks
649 * and bring another one in memory
650 */
651 orphan_blk->blk_addr = cpu_to_le16(index);
652 orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
653 orphan_blk->entry_count = cpu_to_le32(nentries);
654 set_page_dirty(page);
655 f2fs_put_page(page, 1);
656 index++;
127e670a
JK
657 nentries = 0;
658 page = NULL;
659 }
502c6e0b 660 }
127e670a 661
502c6e0b
GZ
662 if (page) {
663 orphan_blk->blk_addr = cpu_to_le16(index);
664 orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
665 orphan_blk->entry_count = cpu_to_le32(nentries);
666 set_page_dirty(page);
667 f2fs_put_page(page, 1);
127e670a 668 }
127e670a
JK
669}
670
fc0065ad
TY
671static int get_checkpoint_version(struct f2fs_sb_info *sbi, block_t cp_addr,
672 struct f2fs_checkpoint **cp_block, struct page **cp_page,
673 unsigned long long *version)
127e670a 674{
127e670a 675 unsigned long blk_size = sbi->blocksize;
fc0065ad 676 size_t crc_offset = 0;
7e586fa0 677 __u32 crc = 0;
127e670a 678
fc0065ad
TY
679 *cp_page = get_meta_page(sbi, cp_addr);
680 *cp_block = (struct f2fs_checkpoint *)page_address(*cp_page);
127e670a 681
fc0065ad 682 crc_offset = le32_to_cpu((*cp_block)->checksum_offset);
c6f89dfd 683 if (crc_offset > (blk_size - sizeof(__le32))) {
fc0065ad
TY
684 f2fs_msg(sbi->sb, KERN_WARNING,
685 "invalid crc_offset: %zu", crc_offset);
686 return -EINVAL;
687 }
127e670a 688
ced2c7ea 689 crc = cur_cp_crc(*cp_block);
fc0065ad
TY
690 if (!f2fs_crc_valid(sbi, crc, *cp_block, crc_offset)) {
691 f2fs_msg(sbi->sb, KERN_WARNING, "invalid crc value");
692 return -EINVAL;
693 }
127e670a 694
fc0065ad
TY
695 *version = cur_cp_version(*cp_block);
696 return 0;
697}
127e670a 698
fc0065ad
TY
699static struct page *validate_checkpoint(struct f2fs_sb_info *sbi,
700 block_t cp_addr, unsigned long long *version)
701{
702 struct page *cp_page_1 = NULL, *cp_page_2 = NULL;
703 struct f2fs_checkpoint *cp_block = NULL;
704 unsigned long long cur_version = 0, pre_version = 0;
705 int err;
127e670a 706
fc0065ad
TY
707 err = get_checkpoint_version(sbi, cp_addr, &cp_block,
708 &cp_page_1, version);
709 if (err)
710 goto invalid_cp1;
711 pre_version = *version;
127e670a 712
fc0065ad
TY
713 cp_addr += le32_to_cpu(cp_block->cp_pack_total_block_count) - 1;
714 err = get_checkpoint_version(sbi, cp_addr, &cp_block,
715 &cp_page_2, version);
716 if (err)
127e670a 717 goto invalid_cp2;
fc0065ad 718 cur_version = *version;
127e670a
JK
719
720 if (cur_version == pre_version) {
721 *version = cur_version;
722 f2fs_put_page(cp_page_2, 1);
723 return cp_page_1;
724 }
725invalid_cp2:
726 f2fs_put_page(cp_page_2, 1);
727invalid_cp1:
728 f2fs_put_page(cp_page_1, 1);
729 return NULL;
730}
731
732int get_valid_checkpoint(struct f2fs_sb_info *sbi)
733{
734 struct f2fs_checkpoint *cp_block;
735 struct f2fs_super_block *fsb = sbi->raw_super;
736 struct page *cp1, *cp2, *cur_page;
737 unsigned long blk_size = sbi->blocksize;
738 unsigned long long cp1_version = 0, cp2_version = 0;
739 unsigned long long cp_start_blk_no;
55141486 740 unsigned int cp_blks = 1 + __cp_payload(sbi);
1dbe4152
CL
741 block_t cp_blk_no;
742 int i;
127e670a 743
1dbe4152 744 sbi->ckpt = kzalloc(cp_blks * blk_size, GFP_KERNEL);
127e670a
JK
745 if (!sbi->ckpt)
746 return -ENOMEM;
747 /*
748 * Finding out valid cp block involves read both
749 * sets( cp pack1 and cp pack 2)
750 */
751 cp_start_blk_no = le32_to_cpu(fsb->cp_blkaddr);
752 cp1 = validate_checkpoint(sbi, cp_start_blk_no, &cp1_version);
753
754 /* The second checkpoint pack should start at the next segment */
f9a4e6df
JK
755 cp_start_blk_no += ((unsigned long long)1) <<
756 le32_to_cpu(fsb->log_blocks_per_seg);
127e670a
JK
757 cp2 = validate_checkpoint(sbi, cp_start_blk_no, &cp2_version);
758
759 if (cp1 && cp2) {
760 if (ver_after(cp2_version, cp1_version))
761 cur_page = cp2;
762 else
763 cur_page = cp1;
764 } else if (cp1) {
765 cur_page = cp1;
766 } else if (cp2) {
767 cur_page = cp2;
768 } else {
769 goto fail_no_cp;
770 }
771
772 cp_block = (struct f2fs_checkpoint *)page_address(cur_page);
773 memcpy(sbi->ckpt, cp_block, blk_size);
774
984ec63c
SL
775 /* Sanity checking of checkpoint */
776 if (sanity_check_ckpt(sbi))
a2125ff7 777 goto free_fail_no_cp;
984ec63c 778
8508e44a
JK
779 if (cur_page == cp1)
780 sbi->cur_cp_pack = 1;
781 else
782 sbi->cur_cp_pack = 2;
984ec63c 783
1dbe4152
CL
784 if (cp_blks <= 1)
785 goto done;
786
787 cp_blk_no = le32_to_cpu(fsb->cp_blkaddr);
788 if (cur_page == cp2)
789 cp_blk_no += 1 << le32_to_cpu(fsb->log_blocks_per_seg);
790
791 for (i = 1; i < cp_blks; i++) {
792 void *sit_bitmap_ptr;
793 unsigned char *ckpt = (unsigned char *)sbi->ckpt;
794
795 cur_page = get_meta_page(sbi, cp_blk_no + i);
796 sit_bitmap_ptr = page_address(cur_page);
797 memcpy(ckpt + i * blk_size, sit_bitmap_ptr, blk_size);
798 f2fs_put_page(cur_page, 1);
799 }
800done:
127e670a
JK
801 f2fs_put_page(cp1, 1);
802 f2fs_put_page(cp2, 1);
803 return 0;
804
a2125ff7
JK
805free_fail_no_cp:
806 f2fs_put_page(cp1, 1);
807 f2fs_put_page(cp2, 1);
127e670a
JK
808fail_no_cp:
809 kfree(sbi->ckpt);
810 return -EINVAL;
811}
812
c227f912 813static void __add_dirty_inode(struct inode *inode, enum inode_type type)
127e670a 814{
4081363f 815 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
c227f912 816 int flag = (type == DIR_INODE) ? FI_DIRTY_DIR : FI_DIRTY_FILE;
127e670a 817
91942321 818 if (is_inode_flag_set(inode, flag))
2710fd7e 819 return;
2d7b822a 820
91942321 821 set_inode_flag(inode, flag);
99f4b917
CY
822 if (!f2fs_is_volatile_file(inode))
823 list_add_tail(&F2FS_I(inode)->dirty_list,
824 &sbi->inode_list[type]);
33fbd510 825 stat_inc_dirty_inode(sbi, type);
5deb8267
JK
826}
827
c227f912 828static void __remove_dirty_inode(struct inode *inode, enum inode_type type)
6ad7609a 829{
c227f912 830 int flag = (type == DIR_INODE) ? FI_DIRTY_DIR : FI_DIRTY_FILE;
6ad7609a 831
91942321 832 if (get_dirty_pages(inode) || !is_inode_flag_set(inode, flag))
6ad7609a
CY
833 return;
834
91942321
JK
835 list_del_init(&F2FS_I(inode)->dirty_list);
836 clear_inode_flag(inode, flag);
33fbd510 837 stat_dec_dirty_inode(F2FS_I_SB(inode), type);
6ad7609a
CY
838}
839
a7ffdbe2 840void update_dirty_page(struct inode *inode, struct page *page)
5deb8267 841{
4081363f 842 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
c227f912 843 enum inode_type type = S_ISDIR(inode->i_mode) ? DIR_INODE : FILE_INODE;
5deb8267 844
5ac9f36f
CY
845 if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
846 !S_ISLNK(inode->i_mode))
127e670a 847 return;
7bd59381 848
1c4bf763
JK
849 spin_lock(&sbi->inode_lock[type]);
850 if (type != FILE_INODE || test_opt(sbi, DATA_FLUSH))
10aa97c3 851 __add_dirty_inode(inode, type);
b951a4ec 852 inode_inc_dirty_pages(inode);
1c4bf763
JK
853 spin_unlock(&sbi->inode_lock[type]);
854
a7ffdbe2 855 SetPagePrivate(page);
9e4ded3f 856 f2fs_trace_pid(page);
5deb8267
JK
857}
858
c227f912 859void remove_dirty_inode(struct inode *inode)
127e670a 860{
4081363f 861 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
c227f912 862 enum inode_type type = S_ISDIR(inode->i_mode) ? DIR_INODE : FILE_INODE;
127e670a 863
c227f912
CY
864 if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
865 !S_ISLNK(inode->i_mode))
127e670a
JK
866 return;
867
10aa97c3
JK
868 if (type == FILE_INODE && !test_opt(sbi, DATA_FLUSH))
869 return;
870
c227f912
CY
871 spin_lock(&sbi->inode_lock[type]);
872 __remove_dirty_inode(inode, type);
873 spin_unlock(&sbi->inode_lock[type]);
74d0b917
JK
874}
875
6d5a1495 876int sync_dirty_inodes(struct f2fs_sb_info *sbi, enum inode_type type)
127e670a 877{
ce3b7d80 878 struct list_head *head;
127e670a 879 struct inode *inode;
2710fd7e 880 struct f2fs_inode_info *fi;
4cf18537 881 bool is_dir = (type == DIR_INODE);
4db08d01 882 unsigned long ino = 0;
4cf18537
CY
883
884 trace_f2fs_sync_dirty_inodes_enter(sbi->sb, is_dir,
885 get_pages(sbi, is_dir ?
886 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA));
127e670a 887retry:
af41d3ee 888 if (unlikely(f2fs_cp_error(sbi)))
6d5a1495 889 return -EIO;
af41d3ee 890
c227f912 891 spin_lock(&sbi->inode_lock[type]);
ce3b7d80 892
c227f912 893 head = &sbi->inode_list[type];
127e670a 894 if (list_empty(head)) {
c227f912 895 spin_unlock(&sbi->inode_lock[type]);
4cf18537
CY
896 trace_f2fs_sync_dirty_inodes_exit(sbi->sb, is_dir,
897 get_pages(sbi, is_dir ?
898 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA));
6d5a1495 899 return 0;
127e670a 900 }
939afa94 901 fi = list_first_entry(head, struct f2fs_inode_info, dirty_list);
2710fd7e 902 inode = igrab(&fi->vfs_inode);
c227f912 903 spin_unlock(&sbi->inode_lock[type]);
127e670a 904 if (inode) {
4db08d01
JK
905 unsigned long cur_ino = inode->i_ino;
906
87d6f890 907 filemap_fdatawrite(inode->i_mapping);
127e670a 908 iput(inode);
4db08d01
JK
909 /* We need to give cpu to another writers. */
910 if (ino == cur_ino) {
911 congestion_wait(BLK_RW_ASYNC, HZ/50);
912 cond_resched();
913 } else {
914 ino = cur_ino;
915 }
127e670a
JK
916 } else {
917 /*
918 * We should submit bio, since it exists several
919 * wribacking dentry pages in the freeing inode.
920 */
b9109b0e 921 f2fs_submit_merged_write(sbi, DATA);
7ecebe5e 922 cond_resched();
127e670a
JK
923 }
924 goto retry;
925}
926
0f18b462
JK
927int f2fs_sync_inode_meta(struct f2fs_sb_info *sbi)
928{
929 struct list_head *head = &sbi->inode_list[DIRTY_META];
930 struct inode *inode;
931 struct f2fs_inode_info *fi;
932 s64 total = get_pages(sbi, F2FS_DIRTY_IMETA);
933
934 while (total--) {
935 if (unlikely(f2fs_cp_error(sbi)))
936 return -EIO;
937
938 spin_lock(&sbi->inode_lock[DIRTY_META]);
939 if (list_empty(head)) {
940 spin_unlock(&sbi->inode_lock[DIRTY_META]);
941 return 0;
942 }
939afa94 943 fi = list_first_entry(head, struct f2fs_inode_info,
0f18b462
JK
944 gdirty_list);
945 inode = igrab(&fi->vfs_inode);
946 spin_unlock(&sbi->inode_lock[DIRTY_META]);
947 if (inode) {
18340edc
JK
948 sync_inode_metadata(inode, 0);
949
950 /* it's on eviction */
951 if (is_inode_flag_set(inode, FI_DIRTY_INODE))
952 update_inode_page(inode);
0f18b462
JK
953 iput(inode);
954 }
955 };
956 return 0;
957}
958
59c9081b
YH
959static void __prepare_cp_block(struct f2fs_sb_info *sbi)
960{
961 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
962 struct f2fs_nm_info *nm_i = NM_I(sbi);
963 nid_t last_nid = nm_i->next_scan_nid;
964
965 next_free_nid(sbi, &last_nid);
966 ckpt->valid_block_count = cpu_to_le64(valid_user_blocks(sbi));
967 ckpt->valid_node_count = cpu_to_le32(valid_node_count(sbi));
968 ckpt->valid_inode_count = cpu_to_le32(valid_inode_count(sbi));
969 ckpt->next_free_nid = cpu_to_le32(last_nid);
970}
971
0a8165d7 972/*
127e670a
JK
973 * Freeze all the FS-operations for checkpoint.
974 */
cf779cab 975static int block_operations(struct f2fs_sb_info *sbi)
127e670a 976{
127e670a
JK
977 struct writeback_control wbc = {
978 .sync_mode = WB_SYNC_ALL,
979 .nr_to_write = LONG_MAX,
980 .for_reclaim = 0,
981 };
c718379b 982 struct blk_plug plug;
cf779cab 983 int err = 0;
c718379b
JK
984
985 blk_start_plug(&plug);
986
39936837 987retry_flush_dents:
e479556b 988 f2fs_lock_all(sbi);
127e670a 989 /* write all the dirty dentry pages */
127e670a 990 if (get_pages(sbi, F2FS_DIRTY_DENTS)) {
e479556b 991 f2fs_unlock_all(sbi);
6d5a1495
CY
992 err = sync_dirty_inodes(sbi, DIR_INODE);
993 if (err)
cf779cab 994 goto out;
30973883 995 cond_resched();
39936837 996 goto retry_flush_dents;
127e670a
JK
997 }
998
59c9081b
YH
999 /*
1000 * POR: we should ensure that there are no dirty node pages
1001 * until finishing nat/sit flush. inode->i_blocks can be updated.
1002 */
1003 down_write(&sbi->node_change);
1004
0f18b462 1005 if (get_pages(sbi, F2FS_DIRTY_IMETA)) {
59c9081b 1006 up_write(&sbi->node_change);
0f18b462
JK
1007 f2fs_unlock_all(sbi);
1008 err = f2fs_sync_inode_meta(sbi);
1009 if (err)
1010 goto out;
30973883 1011 cond_resched();
0f18b462
JK
1012 goto retry_flush_dents;
1013 }
1014
39936837 1015retry_flush_nodes:
b3582c68 1016 down_write(&sbi->node_write);
127e670a
JK
1017
1018 if (get_pages(sbi, F2FS_DIRTY_NODES)) {
b3582c68 1019 up_write(&sbi->node_write);
52681375 1020 err = sync_node_pages(sbi, &wbc);
6d5a1495 1021 if (err) {
59c9081b 1022 up_write(&sbi->node_change);
cf779cab 1023 f2fs_unlock_all(sbi);
cf779cab
JK
1024 goto out;
1025 }
30973883 1026 cond_resched();
39936837 1027 goto retry_flush_nodes;
127e670a 1028 }
59c9081b
YH
1029
1030 /*
1031 * sbi->node_change is used only for AIO write_begin path which produces
1032 * dirty node blocks and some checkpoint values by block allocation.
1033 */
1034 __prepare_cp_block(sbi);
1035 up_write(&sbi->node_change);
cf779cab 1036out:
c718379b 1037 blk_finish_plug(&plug);
cf779cab 1038 return err;
127e670a
JK
1039}
1040
1041static void unblock_operations(struct f2fs_sb_info *sbi)
1042{
b3582c68 1043 up_write(&sbi->node_write);
e479556b 1044 f2fs_unlock_all(sbi);
127e670a
JK
1045}
1046
fb51b5ef
CL
1047static void wait_on_all_pages_writeback(struct f2fs_sb_info *sbi)
1048{
1049 DEFINE_WAIT(wait);
1050
1051 for (;;) {
1052 prepare_to_wait(&sbi->cp_wait, &wait, TASK_UNINTERRUPTIBLE);
1053
36951b38 1054 if (!get_pages(sbi, F2FS_WB_CP_DATA))
fb51b5ef
CL
1055 break;
1056
0ff21646 1057 io_schedule_timeout(5*HZ);
fb51b5ef
CL
1058 }
1059 finish_wait(&sbi->cp_wait, &wait);
1060}
1061
e4c5d848
JK
1062static void update_ckpt_flags(struct f2fs_sb_info *sbi, struct cp_control *cpc)
1063{
1064 unsigned long orphan_num = sbi->im[ORPHAN_INO].ino_num;
1065 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
d1aa2453 1066 unsigned long flags;
e4c5d848 1067
d1aa2453 1068 spin_lock_irqsave(&sbi->cp_lock, flags);
e4c5d848 1069
c473f1a9 1070 if ((cpc->reason & CP_UMOUNT) &&
10047f53 1071 le32_to_cpu(ckpt->cp_pack_total_block_count) >
22ad0b6a
JK
1072 sbi->blocks_per_seg - NM_I(sbi)->nat_bits_blocks)
1073 disable_nat_bits(sbi, false);
1074
1f43e2ad
CY
1075 if (cpc->reason & CP_TRIMMED)
1076 __set_ckpt_flags(ckpt, CP_TRIMMED_FLAG);
1077
c473f1a9 1078 if (cpc->reason & CP_UMOUNT)
e4c5d848
JK
1079 __set_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
1080 else
1081 __clear_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
1082
c473f1a9 1083 if (cpc->reason & CP_FASTBOOT)
e4c5d848
JK
1084 __set_ckpt_flags(ckpt, CP_FASTBOOT_FLAG);
1085 else
1086 __clear_ckpt_flags(ckpt, CP_FASTBOOT_FLAG);
1087
1088 if (orphan_num)
1089 __set_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);
1090 else
1091 __clear_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);
1092
1093 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK))
1094 __set_ckpt_flags(ckpt, CP_FSCK_FLAG);
1095
1096 /* set this flag to activate crc|cp_ver for recovery */
1097 __set_ckpt_flags(ckpt, CP_CRC_RECOVERY_FLAG);
1098
d1aa2453 1099 spin_unlock_irqrestore(&sbi->cp_lock, flags);
e4c5d848
JK
1100}
1101
c34f42e2 1102static int do_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc)
127e670a
JK
1103{
1104 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
77041823 1105 struct f2fs_nm_info *nm_i = NM_I(sbi);
d1aa2453 1106 unsigned long orphan_num = sbi->im[ORPHAN_INO].ino_num, flags;
127e670a 1107 block_t start_blk;
127e670a 1108 unsigned int data_sum_blocks, orphan_blocks;
7e586fa0 1109 __u32 crc32 = 0;
127e670a 1110 int i;
55141486 1111 int cp_payload_blks = __cp_payload(sbi);
8f1dbbbb
SL
1112 struct super_block *sb = sbi->sb;
1113 struct curseg_info *seg_i = CURSEG_I(sbi, CURSEG_HOT_NODE);
1114 u64 kbytes_written;
127e670a
JK
1115
1116 /* Flush all the NAT/SIT pages */
cf779cab 1117 while (get_pages(sbi, F2FS_DIRTY_META)) {
127e670a 1118 sync_meta_pages(sbi, META, LONG_MAX);
cf779cab 1119 if (unlikely(f2fs_cp_error(sbi)))
c34f42e2 1120 return -EIO;
cf779cab 1121 }
127e670a 1122
127e670a
JK
1123 /*
1124 * modify checkpoint
1125 * version number is already updated
1126 */
1127 ckpt->elapsed_time = cpu_to_le64(get_mtime(sbi));
127e670a 1128 ckpt->free_segment_count = cpu_to_le32(free_segments(sbi));
b5b82205 1129 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
127e670a
JK
1130 ckpt->cur_node_segno[i] =
1131 cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_NODE));
1132 ckpt->cur_node_blkoff[i] =
1133 cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_NODE));
1134 ckpt->alloc_type[i + CURSEG_HOT_NODE] =
1135 curseg_alloc_type(sbi, i + CURSEG_HOT_NODE);
1136 }
b5b82205 1137 for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) {
127e670a
JK
1138 ckpt->cur_data_segno[i] =
1139 cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_DATA));
1140 ckpt->cur_data_blkoff[i] =
1141 cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_DATA));
1142 ckpt->alloc_type[i + CURSEG_HOT_DATA] =
1143 curseg_alloc_type(sbi, i + CURSEG_HOT_DATA);
1144 }
1145
127e670a 1146 /* 2 cp + n data seg summary + orphan inode blocks */
3fa06d7b 1147 data_sum_blocks = npages_for_summary_flush(sbi, false);
d1aa2453 1148 spin_lock_irqsave(&sbi->cp_lock, flags);
b5b82205 1149 if (data_sum_blocks < NR_CURSEG_DATA_TYPE)
aaec2b1d 1150 __set_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
127e670a 1151 else
aaec2b1d 1152 __clear_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
d1aa2453 1153 spin_unlock_irqrestore(&sbi->cp_lock, flags);
127e670a 1154
67298804 1155 orphan_blocks = GET_ORPHAN_BLOCKS(orphan_num);
1dbe4152
CL
1156 ckpt->cp_pack_start_sum = cpu_to_le32(1 + cp_payload_blks +
1157 orphan_blocks);
127e670a 1158
119ee914 1159 if (__remain_node_summaries(cpc->reason))
b5b82205 1160 ckpt->cp_pack_total_block_count = cpu_to_le32(F2FS_CP_PACKS+
1dbe4152
CL
1161 cp_payload_blks + data_sum_blocks +
1162 orphan_blocks + NR_CURSEG_NODE_TYPE);
119ee914 1163 else
b5b82205 1164 ckpt->cp_pack_total_block_count = cpu_to_le32(F2FS_CP_PACKS +
1dbe4152
CL
1165 cp_payload_blks + data_sum_blocks +
1166 orphan_blocks);
119ee914 1167
e4c5d848
JK
1168 /* update ckpt flag for checkpoint */
1169 update_ckpt_flags(sbi, cpc);
a468f0ef 1170
127e670a
JK
1171 /* update SIT/NAT bitmap */
1172 get_sit_bitmap(sbi, __bitmap_ptr(sbi, SIT_BITMAP));
1173 get_nat_bitmap(sbi, __bitmap_ptr(sbi, NAT_BITMAP));
1174
43b6573b 1175 crc32 = f2fs_crc32(sbi, ckpt, le32_to_cpu(ckpt->checksum_offset));
7e586fa0
JK
1176 *((__le32 *)((unsigned char *)ckpt +
1177 le32_to_cpu(ckpt->checksum_offset)))
127e670a
JK
1178 = cpu_to_le32(crc32);
1179
8508e44a 1180 start_blk = __start_cp_next_addr(sbi);
127e670a 1181
22ad0b6a
JK
1182 /* write nat bits */
1183 if (enabled_nat_bits(sbi, cpc)) {
1184 __u64 cp_ver = cur_cp_version(ckpt);
22ad0b6a
JK
1185 block_t blk;
1186
1187 cp_ver |= ((__u64)crc32 << 32);
1188 *(__le64 *)nm_i->nat_bits = cpu_to_le64(cp_ver);
1189
1190 blk = start_blk + sbi->blocks_per_seg - nm_i->nat_bits_blocks;
1191 for (i = 0; i < nm_i->nat_bits_blocks; i++)
1192 update_meta_page(sbi, nm_i->nat_bits +
1193 (i << F2FS_BLKSIZE_BITS), blk + i);
1194
1195 /* Flush all the NAT BITS pages */
1196 while (get_pages(sbi, F2FS_DIRTY_META)) {
1197 sync_meta_pages(sbi, META, LONG_MAX);
1198 if (unlikely(f2fs_cp_error(sbi)))
1199 return -EIO;
1200 }
1201 }
1202
a7230d16
JK
1203 /* need to wait for end_io results */
1204 wait_on_all_pages_writeback(sbi);
1205 if (unlikely(f2fs_cp_error(sbi)))
c34f42e2 1206 return -EIO;
a7230d16 1207
127e670a 1208 /* write out checkpoint buffer at block 0 */
381722d2
CY
1209 update_meta_page(sbi, ckpt, start_blk++);
1210
1211 for (i = 1; i < 1 + cp_payload_blks; i++)
1212 update_meta_page(sbi, (char *)ckpt + i * F2FS_BLKSIZE,
1213 start_blk++);
1dbe4152 1214
67298804 1215 if (orphan_num) {
127e670a
JK
1216 write_orphan_inodes(sbi, start_blk);
1217 start_blk += orphan_blocks;
1218 }
1219
1220 write_data_summaries(sbi, start_blk);
1221 start_blk += data_sum_blocks;
8f1dbbbb
SL
1222
1223 /* Record write statistics in the hot node summary */
1224 kbytes_written = sbi->kbytes_written;
1225 if (sb->s_bdev->bd_part)
1226 kbytes_written += BD_PART_WRITTEN(sbi);
1227
b7ad7512 1228 seg_i->journal->info.kbytes_written = cpu_to_le64(kbytes_written);
8f1dbbbb 1229
119ee914 1230 if (__remain_node_summaries(cpc->reason)) {
127e670a
JK
1231 write_node_summaries(sbi, start_blk);
1232 start_blk += NR_CURSEG_NODE_TYPE;
1233 }
1234
1235 /* writeout checkpoint block */
381722d2 1236 update_meta_page(sbi, ckpt, start_blk);
127e670a
JK
1237
1238 /* wait for previous submitted node/meta pages writeback */
fb51b5ef 1239 wait_on_all_pages_writeback(sbi);
127e670a 1240
cf779cab 1241 if (unlikely(f2fs_cp_error(sbi)))
c34f42e2 1242 return -EIO;
cf779cab 1243
80dd9c0e
CY
1244 filemap_fdatawait_range(NODE_MAPPING(sbi), 0, LLONG_MAX);
1245 filemap_fdatawait_range(META_MAPPING(sbi), 0, LLONG_MAX);
127e670a
JK
1246
1247 /* update user_block_counts */
1248 sbi->last_valid_block_count = sbi->total_valid_block_count;
41382ec4 1249 percpu_counter_set(&sbi->alloc_valid_block_count, 0);
127e670a
JK
1250
1251 /* Here, we only have one bio having CP pack */
577e3495 1252 sync_meta_pages(sbi, META_FLUSH, LONG_MAX);
127e670a 1253
6a8f8ca5
JK
1254 /* wait for previous submitted meta pages writeback */
1255 wait_on_all_pages_writeback(sbi);
1256
74ef9241 1257 release_ino_entry(sbi, false);
cf779cab
JK
1258
1259 if (unlikely(f2fs_cp_error(sbi)))
c34f42e2 1260 return -EIO;
cf779cab 1261
caf0047e 1262 clear_sbi_flag(sbi, SBI_IS_DIRTY);
bbf156f7 1263 clear_sbi_flag(sbi, SBI_NEED_CP);
8508e44a 1264 __set_cp_next_pack(sbi);
c34f42e2 1265
c2a080ae
CY
1266 /*
1267 * redirty superblock if metadata like node page or inode cache is
1268 * updated during writing checkpoint.
1269 */
1270 if (get_pages(sbi, F2FS_DIRTY_NODES) ||
1271 get_pages(sbi, F2FS_DIRTY_IMETA))
1272 set_sbi_flag(sbi, SBI_IS_DIRTY);
1273
1274 f2fs_bug_on(sbi, get_pages(sbi, F2FS_DIRTY_DENTS));
1275
c34f42e2 1276 return 0;
127e670a
JK
1277}
1278
0a8165d7 1279/*
e1c42045 1280 * We guarantee that this checkpoint procedure will not fail.
127e670a 1281 */
c34f42e2 1282int write_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc)
127e670a
JK
1283{
1284 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1285 unsigned long long ckpt_ver;
c34f42e2 1286 int err = 0;
127e670a 1287
43727527 1288 mutex_lock(&sbi->cp_mutex);
8501017e 1289
caf0047e 1290 if (!is_sbi_flag_set(sbi, SBI_IS_DIRTY) &&
c473f1a9
CY
1291 ((cpc->reason & CP_FASTBOOT) || (cpc->reason & CP_SYNC) ||
1292 ((cpc->reason & CP_DISCARD) && !sbi->discard_blks)))
8501017e 1293 goto out;
c34f42e2
CY
1294 if (unlikely(f2fs_cp_error(sbi))) {
1295 err = -EIO;
cf779cab 1296 goto out;
c34f42e2
CY
1297 }
1298 if (f2fs_readonly(sbi->sb)) {
1299 err = -EROFS;
11504a8e 1300 goto out;
c34f42e2 1301 }
2bda542d
WL
1302
1303 trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "start block_ops");
1304
c34f42e2
CY
1305 err = block_operations(sbi);
1306 if (err)
cf779cab 1307 goto out;
127e670a 1308
75ab4cb8 1309 trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "finish block_ops");
2af4bd6c 1310
b9109b0e 1311 f2fs_flush_merged_writes(sbi);
127e670a 1312
58cce381 1313 /* this is the case of multiple fstrims without any changes */
c473f1a9 1314 if (cpc->reason & CP_DISCARD) {
25290fa5
JK
1315 if (!exist_trim_candidates(sbi, cpc)) {
1316 unblock_operations(sbi);
1317 goto out;
1318 }
1319
0333ad4e
JK
1320 if (NM_I(sbi)->dirty_nat_cnt == 0 &&
1321 SIT_I(sbi)->dirty_sentries == 0 &&
1322 prefree_segments(sbi) == 0) {
1323 flush_sit_entries(sbi, cpc);
1324 clear_prefree_segments(sbi, cpc);
1325 unblock_operations(sbi);
1326 goto out;
1327 }
58cce381
YH
1328 }
1329
127e670a
JK
1330 /*
1331 * update checkpoint pack index
1332 * Increase the version number so that
1333 * SIT entries and seg summaries are written at correct place
1334 */
d71b5564 1335 ckpt_ver = cur_cp_version(ckpt);
127e670a
JK
1336 ckpt->checkpoint_ver = cpu_to_le64(++ckpt_ver);
1337
1338 /* write cached NAT/SIT entries to NAT/SIT area */
22ad0b6a 1339 flush_nat_entries(sbi, cpc);
4b2fecc8 1340 flush_sit_entries(sbi, cpc);
127e670a 1341
127e670a 1342 /* unlock all the fs_lock[] in do_checkpoint() */
c34f42e2 1343 err = do_checkpoint(sbi, cpc);
4e6a8d9b 1344 if (err)
2dd15654 1345 release_discard_addrs(sbi);
4e6a8d9b 1346 else
2dd15654 1347 clear_prefree_segments(sbi, cpc);
275b66b0 1348
127e670a 1349 unblock_operations(sbi);
942e0be6 1350 stat_inc_cp_count(sbi->stat_info);
10027551 1351
c473f1a9 1352 if (cpc->reason & CP_RECOVERY)
10027551
JK
1353 f2fs_msg(sbi->sb, KERN_NOTICE,
1354 "checkpoint: version = %llx", ckpt_ver);
60b99b48
JK
1355
1356 /* do checkpoint periodically */
6beceb54 1357 f2fs_update_time(sbi, CP_TIME);
55d1cdb2 1358 trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "finish checkpoint");
8501017e
JK
1359out:
1360 mutex_unlock(&sbi->cp_mutex);
c34f42e2 1361 return err;
127e670a
JK
1362}
1363
6451e041 1364void init_ino_entry_info(struct f2fs_sb_info *sbi)
127e670a 1365{
6451e041
JK
1366 int i;
1367
1368 for (i = 0; i < MAX_INO_ENTRY; i++) {
67298804
CY
1369 struct inode_management *im = &sbi->im[i];
1370
1371 INIT_RADIX_TREE(&im->ino_root, GFP_ATOMIC);
1372 spin_lock_init(&im->ino_lock);
1373 INIT_LIST_HEAD(&im->ino_list);
1374 im->ino_num = 0;
6451e041
JK
1375 }
1376
b5b82205 1377 sbi->max_orphans = (sbi->blocks_per_seg - F2FS_CP_PACKS -
14b42817
WL
1378 NR_CURSEG_TYPE - __cp_payload(sbi)) *
1379 F2FS_ORPHANS_PER_BLOCK;
127e670a
JK
1380}
1381
6e6093a8 1382int __init create_checkpoint_caches(void)
127e670a 1383{
6451e041
JK
1384 ino_entry_slab = f2fs_kmem_cache_create("f2fs_ino_entry",
1385 sizeof(struct ino_entry));
1386 if (!ino_entry_slab)
127e670a 1387 return -ENOMEM;
06292073
CY
1388 inode_entry_slab = f2fs_kmem_cache_create("f2fs_inode_entry",
1389 sizeof(struct inode_entry));
6bacf52f 1390 if (!inode_entry_slab) {
6451e041 1391 kmem_cache_destroy(ino_entry_slab);
127e670a
JK
1392 return -ENOMEM;
1393 }
1394 return 0;
1395}
1396
1397void destroy_checkpoint_caches(void)
1398{
6451e041 1399 kmem_cache_destroy(ino_entry_slab);
127e670a
JK
1400 kmem_cache_destroy(inode_entry_slab);
1401}