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