f2fs: try to flush inode after merging inline data
[deliverable/linux.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
0a8165d7 29/*
127e670a
JK
30 * We guarantee no failure on the returned page.
31 */
32struct page *grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
33{
9df27d98 34 struct address_space *mapping = META_MAPPING(sbi);
127e670a
JK
35 struct page *page = NULL;
36repeat:
bde44686 37 page = grab_cache_page(mapping, index);
127e670a
JK
38 if (!page) {
39 cond_resched();
40 goto repeat;
41 }
fec1d657 42 f2fs_wait_on_page_writeback(page, META, true);
127e670a
JK
43 SetPageUptodate(page);
44 return page;
45}
46
0a8165d7 47/*
127e670a
JK
48 * We guarantee no failure on the returned page.
49 */
2b947003
CY
50static struct page *__get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index,
51 bool is_meta)
127e670a 52{
9df27d98 53 struct address_space *mapping = META_MAPPING(sbi);
127e670a 54 struct page *page;
cf04e8eb 55 struct f2fs_io_info fio = {
05ca3632 56 .sbi = sbi,
cf04e8eb
JK
57 .type = META,
58 .rw = READ_SYNC | REQ_META | REQ_PRIO,
59 .blk_addr = index,
4375a336 60 .encrypted_page = NULL,
cf04e8eb 61 };
2b947003
CY
62
63 if (unlikely(!is_meta))
64 fio.rw &= ~REQ_META;
127e670a
JK
65repeat:
66 page = grab_cache_page(mapping, index);
67 if (!page) {
68 cond_resched();
69 goto repeat;
70 }
393ff91f
JK
71 if (PageUptodate(page))
72 goto out;
73
05ca3632
JK
74 fio.page = page;
75
86531d6b
JK
76 if (f2fs_submit_page_bio(&fio)) {
77 f2fs_put_page(page, 1);
127e670a 78 goto repeat;
86531d6b 79 }
127e670a 80
393ff91f 81 lock_page(page);
6bacf52f 82 if (unlikely(page->mapping != mapping)) {
afcb7ca0
JK
83 f2fs_put_page(page, 1);
84 goto repeat;
85 }
f3f338ca
CY
86
87 /*
88 * if there is any IO error when accessing device, make our filesystem
89 * readonly and make sure do not write checkpoint with non-uptodate
90 * meta page.
91 */
92 if (unlikely(!PageUptodate(page)))
93 f2fs_stop_checkpoint(sbi);
393ff91f 94out:
127e670a
JK
95 return page;
96}
97
2b947003
CY
98struct page *get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
99{
100 return __get_meta_page(sbi, index, true);
101}
102
103/* for POR only */
104struct page *get_tmp_page(struct f2fs_sb_info *sbi, pgoff_t index)
105{
106 return __get_meta_page(sbi, index, false);
107}
108
f0c9cada 109bool is_valid_blkaddr(struct f2fs_sb_info *sbi, block_t blkaddr, int type)
662befda
CY
110{
111 switch (type) {
112 case META_NAT:
66b00c18 113 break;
662befda 114 case META_SIT:
66b00c18
CY
115 if (unlikely(blkaddr >= SIT_BLK_CNT(sbi)))
116 return false;
117 break;
81c1a0f1 118 case META_SSA:
66b00c18
CY
119 if (unlikely(blkaddr >= MAIN_BLKADDR(sbi) ||
120 blkaddr < SM_I(sbi)->ssa_blkaddr))
121 return false;
122 break;
662befda 123 case META_CP:
66b00c18
CY
124 if (unlikely(blkaddr >= SIT_I(sbi)->sit_base_addr ||
125 blkaddr < __start_cp_addr(sbi)))
126 return false;
127 break;
4c521f49 128 case META_POR:
66b00c18
CY
129 if (unlikely(blkaddr >= MAX_BLKADDR(sbi) ||
130 blkaddr < MAIN_BLKADDR(sbi)))
131 return false;
132 break;
662befda
CY
133 default:
134 BUG();
135 }
66b00c18
CY
136
137 return true;
662befda
CY
138}
139
140/*
81c1a0f1 141 * Readahead CP/NAT/SIT/SSA pages
662befda 142 */
26879fb1
CY
143int ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages,
144 int type, bool sync)
662befda 145{
662befda 146 struct page *page;
4c521f49 147 block_t blkno = start;
662befda 148 struct f2fs_io_info fio = {
05ca3632 149 .sbi = sbi,
662befda 150 .type = META,
26879fb1 151 .rw = sync ? (READ_SYNC | REQ_META | REQ_PRIO) : READA,
4375a336 152 .encrypted_page = NULL,
662befda 153 };
e9f5b8b8 154 struct blk_plug plug;
662befda 155
2b947003
CY
156 if (unlikely(type == META_POR))
157 fio.rw &= ~REQ_META;
158
e9f5b8b8 159 blk_start_plug(&plug);
662befda 160 for (; nrpages-- > 0; blkno++) {
662befda 161
66b00c18
CY
162 if (!is_valid_blkaddr(sbi, blkno, type))
163 goto out;
164
662befda
CY
165 switch (type) {
166 case META_NAT:
66b00c18
CY
167 if (unlikely(blkno >=
168 NAT_BLOCK_OFFSET(NM_I(sbi)->max_nid)))
662befda 169 blkno = 0;
66b00c18 170 /* get nat block addr */
cf04e8eb 171 fio.blk_addr = current_nat_addr(sbi,
662befda
CY
172 blkno * NAT_ENTRY_PER_BLOCK);
173 break;
174 case META_SIT:
175 /* get sit block addr */
cf04e8eb 176 fio.blk_addr = current_sit_addr(sbi,
662befda 177 blkno * SIT_ENTRY_PER_BLOCK);
662befda 178 break;
81c1a0f1 179 case META_SSA:
662befda 180 case META_CP:
4c521f49 181 case META_POR:
cf04e8eb 182 fio.blk_addr = blkno;
662befda
CY
183 break;
184 default:
185 BUG();
186 }
187
cf04e8eb 188 page = grab_cache_page(META_MAPPING(sbi), fio.blk_addr);
662befda
CY
189 if (!page)
190 continue;
191 if (PageUptodate(page)) {
662befda
CY
192 f2fs_put_page(page, 1);
193 continue;
194 }
195
05ca3632
JK
196 fio.page = page;
197 f2fs_submit_page_mbio(&fio);
662befda
CY
198 f2fs_put_page(page, 0);
199 }
200out:
201 f2fs_submit_merged_bio(sbi, META, READ);
e9f5b8b8 202 blk_finish_plug(&plug);
662befda
CY
203 return blkno - start;
204}
205
635aee1f
CY
206void ra_meta_pages_cond(struct f2fs_sb_info *sbi, pgoff_t index)
207{
208 struct page *page;
209 bool readahead = false;
210
211 page = find_get_page(META_MAPPING(sbi), index);
212 if (!page || (page && !PageUptodate(page)))
213 readahead = true;
214 f2fs_put_page(page, 0);
215
216 if (readahead)
26879fb1 217 ra_meta_pages(sbi, index, MAX_BIO_BLOCKS(sbi), META_POR, true);
635aee1f
CY
218}
219
127e670a
JK
220static int f2fs_write_meta_page(struct page *page,
221 struct writeback_control *wbc)
222{
4081363f 223 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
127e670a 224
ecda0de3
CY
225 trace_f2fs_writepage(page, META);
226
caf0047e 227 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
cfb271d4 228 goto redirty_out;
857dc4e0 229 if (wbc->for_reclaim && page->index < GET_SUM_BLOCK(sbi, 0))
cfb271d4 230 goto redirty_out;
1e968fdf 231 if (unlikely(f2fs_cp_error(sbi)))
cf779cab 232 goto redirty_out;
127e670a 233
577e3495
JK
234 write_meta_page(sbi, page);
235 dec_page_count(sbi, F2FS_DIRTY_META);
0c3a5797
CY
236
237 if (wbc->for_reclaim)
238 f2fs_submit_merged_bio_cond(sbi, NULL, page, 0, META, WRITE);
239
577e3495 240 unlock_page(page);
857dc4e0 241
0c3a5797 242 if (unlikely(f2fs_cp_error(sbi)))
857dc4e0 243 f2fs_submit_merged_bio(sbi, META, WRITE);
0c3a5797 244
577e3495 245 return 0;
cfb271d4
CY
246
247redirty_out:
76f60268 248 redirty_page_for_writepage(wbc, page);
cfb271d4 249 return AOP_WRITEPAGE_ACTIVATE;
127e670a
JK
250}
251
252static int f2fs_write_meta_pages(struct address_space *mapping,
253 struct writeback_control *wbc)
254{
4081363f 255 struct f2fs_sb_info *sbi = F2FS_M_SB(mapping);
50c8cdb3 256 long diff, written;
127e670a 257
5459aa97 258 /* collect a number of dirty meta pages and write together */
50c8cdb3
JK
259 if (wbc->for_kupdate ||
260 get_pages(sbi, F2FS_DIRTY_META) < nr_pages_to_skip(sbi, META))
d3baf95d 261 goto skip_write;
127e670a 262
d31c7c3f
YH
263 trace_f2fs_writepages(mapping->host, wbc, META);
264
127e670a
JK
265 /* if mounting is failed, skip writing node pages */
266 mutex_lock(&sbi->cp_mutex);
50c8cdb3
JK
267 diff = nr_pages_to_write(sbi, META, wbc);
268 written = sync_meta_pages(sbi, META, wbc->nr_to_write);
127e670a 269 mutex_unlock(&sbi->cp_mutex);
50c8cdb3 270 wbc->nr_to_write = max((long)0, wbc->nr_to_write - written - diff);
127e670a 271 return 0;
d3baf95d
JK
272
273skip_write:
274 wbc->pages_skipped += get_pages(sbi, F2FS_DIRTY_META);
d31c7c3f 275 trace_f2fs_writepages(mapping->host, wbc, META);
d3baf95d 276 return 0;
127e670a
JK
277}
278
279long sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type,
280 long nr_to_write)
281{
9df27d98 282 struct address_space *mapping = META_MAPPING(sbi);
6066d8cd 283 pgoff_t index = 0, end = LONG_MAX, prev = LONG_MAX;
127e670a
JK
284 struct pagevec pvec;
285 long nwritten = 0;
286 struct writeback_control wbc = {
287 .for_reclaim = 0,
288 };
e9f5b8b8 289 struct blk_plug plug;
127e670a
JK
290
291 pagevec_init(&pvec, 0);
292
e9f5b8b8
CY
293 blk_start_plug(&plug);
294
127e670a
JK
295 while (index <= end) {
296 int i, nr_pages;
297 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
298 PAGECACHE_TAG_DIRTY,
299 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
cfb271d4 300 if (unlikely(nr_pages == 0))
127e670a
JK
301 break;
302
303 for (i = 0; i < nr_pages; i++) {
304 struct page *page = pvec.pages[i];
203681f6 305
6066d8cd
JK
306 if (prev == LONG_MAX)
307 prev = page->index - 1;
308 if (nr_to_write != LONG_MAX && page->index != prev + 1) {
309 pagevec_release(&pvec);
310 goto stop;
311 }
312
127e670a 313 lock_page(page);
203681f6
JK
314
315 if (unlikely(page->mapping != mapping)) {
316continue_unlock:
317 unlock_page(page);
318 continue;
319 }
320 if (!PageDirty(page)) {
321 /* someone wrote it for us */
322 goto continue_unlock;
323 }
324
fa3d2bdf
JK
325 f2fs_wait_on_page_writeback(page, META, true);
326
327 BUG_ON(PageWriteback(page));
203681f6
JK
328 if (!clear_page_dirty_for_io(page))
329 goto continue_unlock;
330
97dc3fd2 331 if (mapping->a_ops->writepage(page, &wbc)) {
577e3495
JK
332 unlock_page(page);
333 break;
334 }
cfb271d4 335 nwritten++;
6066d8cd 336 prev = page->index;
cfb271d4 337 if (unlikely(nwritten >= nr_to_write))
127e670a
JK
338 break;
339 }
340 pagevec_release(&pvec);
341 cond_resched();
342 }
6066d8cd 343stop:
127e670a 344 if (nwritten)
458e6197 345 f2fs_submit_merged_bio(sbi, type, WRITE);
127e670a 346
e9f5b8b8
CY
347 blk_finish_plug(&plug);
348
127e670a
JK
349 return nwritten;
350}
351
352static int f2fs_set_meta_page_dirty(struct page *page)
353{
26c6b887
JK
354 trace_f2fs_set_page_dirty(page, META);
355
127e670a
JK
356 SetPageUptodate(page);
357 if (!PageDirty(page)) {
358 __set_page_dirty_nobuffers(page);
4081363f 359 inc_page_count(F2FS_P_SB(page), F2FS_DIRTY_META);
1601839e 360 SetPagePrivate(page);
9e4ded3f 361 f2fs_trace_pid(page);
127e670a
JK
362 return 1;
363 }
364 return 0;
365}
366
367const struct address_space_operations f2fs_meta_aops = {
368 .writepage = f2fs_write_meta_page,
369 .writepages = f2fs_write_meta_pages,
370 .set_page_dirty = f2fs_set_meta_page_dirty,
487261f3
CY
371 .invalidatepage = f2fs_invalidate_page,
372 .releasepage = f2fs_release_page,
127e670a
JK
373};
374
6451e041 375static void __add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
953e6cc6 376{
67298804 377 struct inode_management *im = &sbi->im[type];
80c54505
JK
378 struct ino_entry *e, *tmp;
379
380 tmp = f2fs_kmem_cache_alloc(ino_entry_slab, GFP_NOFS);
39efac41 381retry:
80c54505 382 radix_tree_preload(GFP_NOFS | __GFP_NOFAIL);
769ec6e5 383
67298804 384 spin_lock(&im->ino_lock);
67298804 385 e = radix_tree_lookup(&im->ino_root, ino);
39efac41 386 if (!e) {
80c54505 387 e = tmp;
67298804
CY
388 if (radix_tree_insert(&im->ino_root, ino, e)) {
389 spin_unlock(&im->ino_lock);
769ec6e5 390 radix_tree_preload_end();
39efac41
JK
391 goto retry;
392 }
393 memset(e, 0, sizeof(struct ino_entry));
394 e->ino = ino;
953e6cc6 395
67298804 396 list_add_tail(&e->list, &im->ino_list);
8c402946 397 if (type != ORPHAN_INO)
67298804 398 im->ino_num++;
39efac41 399 }
67298804 400 spin_unlock(&im->ino_lock);
769ec6e5 401 radix_tree_preload_end();
80c54505
JK
402
403 if (e != tmp)
404 kmem_cache_free(ino_entry_slab, tmp);
953e6cc6
JK
405}
406
6451e041 407static void __remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
953e6cc6 408{
67298804 409 struct inode_management *im = &sbi->im[type];
6451e041 410 struct ino_entry *e;
953e6cc6 411
67298804
CY
412 spin_lock(&im->ino_lock);
413 e = radix_tree_lookup(&im->ino_root, ino);
39efac41
JK
414 if (e) {
415 list_del(&e->list);
67298804
CY
416 radix_tree_delete(&im->ino_root, ino);
417 im->ino_num--;
418 spin_unlock(&im->ino_lock);
39efac41
JK
419 kmem_cache_free(ino_entry_slab, e);
420 return;
953e6cc6 421 }
67298804 422 spin_unlock(&im->ino_lock);
953e6cc6
JK
423}
424
a49324f1 425void add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
fff04f90
JK
426{
427 /* add new dirty ino entry into list */
428 __add_ino_entry(sbi, ino, type);
429}
430
a49324f1 431void remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
fff04f90
JK
432{
433 /* remove dirty ino entry from list */
434 __remove_ino_entry(sbi, ino, type);
435}
436
437/* mode should be APPEND_INO or UPDATE_INO */
438bool exist_written_data(struct f2fs_sb_info *sbi, nid_t ino, int mode)
439{
67298804 440 struct inode_management *im = &sbi->im[mode];
fff04f90 441 struct ino_entry *e;
67298804
CY
442
443 spin_lock(&im->ino_lock);
444 e = radix_tree_lookup(&im->ino_root, ino);
445 spin_unlock(&im->ino_lock);
fff04f90
JK
446 return e ? true : false;
447}
448
a49324f1 449void release_ino_entry(struct f2fs_sb_info *sbi)
fff04f90
JK
450{
451 struct ino_entry *e, *tmp;
452 int i;
453
454 for (i = APPEND_INO; i <= UPDATE_INO; i++) {
67298804
CY
455 struct inode_management *im = &sbi->im[i];
456
457 spin_lock(&im->ino_lock);
458 list_for_each_entry_safe(e, tmp, &im->ino_list, list) {
fff04f90 459 list_del(&e->list);
67298804 460 radix_tree_delete(&im->ino_root, e->ino);
fff04f90 461 kmem_cache_free(ino_entry_slab, e);
67298804 462 im->ino_num--;
fff04f90 463 }
67298804 464 spin_unlock(&im->ino_lock);
fff04f90
JK
465 }
466}
467
cbd56e7d 468int acquire_orphan_inode(struct f2fs_sb_info *sbi)
127e670a 469{
67298804 470 struct inode_management *im = &sbi->im[ORPHAN_INO];
127e670a
JK
471 int err = 0;
472
67298804
CY
473 spin_lock(&im->ino_lock);
474 if (unlikely(im->ino_num >= sbi->max_orphans))
127e670a 475 err = -ENOSPC;
cbd56e7d 476 else
67298804
CY
477 im->ino_num++;
478 spin_unlock(&im->ino_lock);
0d47c1ad 479
127e670a
JK
480 return err;
481}
482
cbd56e7d
JK
483void release_orphan_inode(struct f2fs_sb_info *sbi)
484{
67298804
CY
485 struct inode_management *im = &sbi->im[ORPHAN_INO];
486
487 spin_lock(&im->ino_lock);
488 f2fs_bug_on(sbi, im->ino_num == 0);
489 im->ino_num--;
490 spin_unlock(&im->ino_lock);
cbd56e7d
JK
491}
492
127e670a
JK
493void add_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
494{
39efac41 495 /* add new orphan ino entry into list */
6451e041 496 __add_ino_entry(sbi, ino, ORPHAN_INO);
127e670a
JK
497}
498
499void remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
500{
953e6cc6 501 /* remove orphan entry from orphan list */
6451e041 502 __remove_ino_entry(sbi, ino, ORPHAN_INO);
127e670a
JK
503}
504
8c14bfad 505static int recover_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
127e670a 506{
8c14bfad
CY
507 struct inode *inode;
508
509 inode = f2fs_iget(sbi->sb, ino);
510 if (IS_ERR(inode)) {
511 /*
512 * there should be a bug that we can't find the entry
513 * to orphan inode.
514 */
515 f2fs_bug_on(sbi, PTR_ERR(inode) == -ENOENT);
516 return PTR_ERR(inode);
517 }
518
127e670a
JK
519 clear_nlink(inode);
520
521 /* truncate all the data during iput */
522 iput(inode);
8c14bfad 523 return 0;
127e670a
JK
524}
525
8c14bfad 526int recover_orphan_inodes(struct f2fs_sb_info *sbi)
127e670a 527{
3c642985 528 block_t start_blk, orphan_blocks, i, j;
8c14bfad 529 int err;
127e670a 530
25ca923b 531 if (!is_set_ckpt_flags(F2FS_CKPT(sbi), CP_ORPHAN_PRESENT_FLAG))
8c14bfad 532 return 0;
127e670a 533
55141486 534 start_blk = __start_cp_addr(sbi) + 1 + __cp_payload(sbi);
3c642985 535 orphan_blocks = __start_sum_addr(sbi) - 1 - __cp_payload(sbi);
127e670a 536
26879fb1 537 ra_meta_pages(sbi, start_blk, orphan_blocks, META_CP, true);
662befda 538
3c642985 539 for (i = 0; i < orphan_blocks; i++) {
127e670a
JK
540 struct page *page = get_meta_page(sbi, start_blk + i);
541 struct f2fs_orphan_block *orphan_blk;
542
543 orphan_blk = (struct f2fs_orphan_block *)page_address(page);
544 for (j = 0; j < le32_to_cpu(orphan_blk->entry_count); j++) {
545 nid_t ino = le32_to_cpu(orphan_blk->ino[j]);
8c14bfad
CY
546 err = recover_orphan_inode(sbi, ino);
547 if (err) {
548 f2fs_put_page(page, 1);
8c14bfad
CY
549 return err;
550 }
127e670a
JK
551 }
552 f2fs_put_page(page, 1);
553 }
554 /* clear Orphan Flag */
25ca923b 555 clear_ckpt_flags(F2FS_CKPT(sbi), CP_ORPHAN_PRESENT_FLAG);
8c14bfad 556 return 0;
127e670a
JK
557}
558
559static void write_orphan_inodes(struct f2fs_sb_info *sbi, block_t start_blk)
560{
502c6e0b 561 struct list_head *head;
127e670a 562 struct f2fs_orphan_block *orphan_blk = NULL;
127e670a 563 unsigned int nentries = 0;
bd936f84 564 unsigned short index = 1;
8c402946 565 unsigned short orphan_blocks;
4531929e 566 struct page *page = NULL;
6451e041 567 struct ino_entry *orphan = NULL;
67298804 568 struct inode_management *im = &sbi->im[ORPHAN_INO];
127e670a 569
67298804 570 orphan_blocks = GET_ORPHAN_BLOCKS(im->ino_num);
8c402946 571
d6c67a4f
JK
572 /*
573 * we don't need to do spin_lock(&im->ino_lock) here, since all the
574 * orphan inode operations are covered under f2fs_lock_op().
575 * And, spin_lock should be avoided due to page operations below.
576 */
67298804 577 head = &im->ino_list;
127e670a
JK
578
579 /* loop for each orphan inode entry and write them in Jornal block */
502c6e0b
GZ
580 list_for_each_entry(orphan, head, list) {
581 if (!page) {
bd936f84 582 page = grab_meta_page(sbi, start_blk++);
502c6e0b
GZ
583 orphan_blk =
584 (struct f2fs_orphan_block *)page_address(page);
585 memset(orphan_blk, 0, sizeof(*orphan_blk));
586 }
127e670a 587
36795567 588 orphan_blk->ino[nentries++] = cpu_to_le32(orphan->ino);
127e670a 589
36795567 590 if (nentries == F2FS_ORPHANS_PER_BLOCK) {
127e670a
JK
591 /*
592 * an orphan block is full of 1020 entries,
593 * then we need to flush current orphan blocks
594 * and bring another one in memory
595 */
596 orphan_blk->blk_addr = cpu_to_le16(index);
597 orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
598 orphan_blk->entry_count = cpu_to_le32(nentries);
599 set_page_dirty(page);
600 f2fs_put_page(page, 1);
601 index++;
127e670a
JK
602 nentries = 0;
603 page = NULL;
604 }
502c6e0b 605 }
127e670a 606
502c6e0b
GZ
607 if (page) {
608 orphan_blk->blk_addr = cpu_to_le16(index);
609 orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
610 orphan_blk->entry_count = cpu_to_le32(nentries);
611 set_page_dirty(page);
612 f2fs_put_page(page, 1);
127e670a 613 }
127e670a
JK
614}
615
616static struct page *validate_checkpoint(struct f2fs_sb_info *sbi,
617 block_t cp_addr, unsigned long long *version)
618{
619 struct page *cp_page_1, *cp_page_2 = NULL;
620 unsigned long blk_size = sbi->blocksize;
621 struct f2fs_checkpoint *cp_block;
622 unsigned long long cur_version = 0, pre_version = 0;
127e670a 623 size_t crc_offset;
7e586fa0 624 __u32 crc = 0;
127e670a
JK
625
626 /* Read the 1st cp block in this CP pack */
627 cp_page_1 = get_meta_page(sbi, cp_addr);
628
629 /* get the version number */
630 cp_block = (struct f2fs_checkpoint *)page_address(cp_page_1);
631 crc_offset = le32_to_cpu(cp_block->checksum_offset);
632 if (crc_offset >= blk_size)
633 goto invalid_cp1;
634
29e7043f 635 crc = le32_to_cpu(*((__le32 *)((unsigned char *)cp_block + crc_offset)));
127e670a
JK
636 if (!f2fs_crc_valid(crc, cp_block, crc_offset))
637 goto invalid_cp1;
638
d71b5564 639 pre_version = cur_cp_version(cp_block);
127e670a
JK
640
641 /* Read the 2nd cp block in this CP pack */
25ca923b 642 cp_addr += le32_to_cpu(cp_block->cp_pack_total_block_count) - 1;
127e670a
JK
643 cp_page_2 = get_meta_page(sbi, cp_addr);
644
645 cp_block = (struct f2fs_checkpoint *)page_address(cp_page_2);
646 crc_offset = le32_to_cpu(cp_block->checksum_offset);
647 if (crc_offset >= blk_size)
648 goto invalid_cp2;
649
29e7043f 650 crc = le32_to_cpu(*((__le32 *)((unsigned char *)cp_block + crc_offset)));
127e670a
JK
651 if (!f2fs_crc_valid(crc, cp_block, crc_offset))
652 goto invalid_cp2;
653
d71b5564 654 cur_version = cur_cp_version(cp_block);
127e670a
JK
655
656 if (cur_version == pre_version) {
657 *version = cur_version;
658 f2fs_put_page(cp_page_2, 1);
659 return cp_page_1;
660 }
661invalid_cp2:
662 f2fs_put_page(cp_page_2, 1);
663invalid_cp1:
664 f2fs_put_page(cp_page_1, 1);
665 return NULL;
666}
667
668int get_valid_checkpoint(struct f2fs_sb_info *sbi)
669{
670 struct f2fs_checkpoint *cp_block;
671 struct f2fs_super_block *fsb = sbi->raw_super;
672 struct page *cp1, *cp2, *cur_page;
673 unsigned long blk_size = sbi->blocksize;
674 unsigned long long cp1_version = 0, cp2_version = 0;
675 unsigned long long cp_start_blk_no;
55141486 676 unsigned int cp_blks = 1 + __cp_payload(sbi);
1dbe4152
CL
677 block_t cp_blk_no;
678 int i;
127e670a 679
1dbe4152 680 sbi->ckpt = kzalloc(cp_blks * blk_size, GFP_KERNEL);
127e670a
JK
681 if (!sbi->ckpt)
682 return -ENOMEM;
683 /*
684 * Finding out valid cp block involves read both
685 * sets( cp pack1 and cp pack 2)
686 */
687 cp_start_blk_no = le32_to_cpu(fsb->cp_blkaddr);
688 cp1 = validate_checkpoint(sbi, cp_start_blk_no, &cp1_version);
689
690 /* The second checkpoint pack should start at the next segment */
f9a4e6df
JK
691 cp_start_blk_no += ((unsigned long long)1) <<
692 le32_to_cpu(fsb->log_blocks_per_seg);
127e670a
JK
693 cp2 = validate_checkpoint(sbi, cp_start_blk_no, &cp2_version);
694
695 if (cp1 && cp2) {
696 if (ver_after(cp2_version, cp1_version))
697 cur_page = cp2;
698 else
699 cur_page = cp1;
700 } else if (cp1) {
701 cur_page = cp1;
702 } else if (cp2) {
703 cur_page = cp2;
704 } else {
705 goto fail_no_cp;
706 }
707
708 cp_block = (struct f2fs_checkpoint *)page_address(cur_page);
709 memcpy(sbi->ckpt, cp_block, blk_size);
710
984ec63c
SL
711 /* Sanity checking of checkpoint */
712 if (sanity_check_ckpt(sbi))
713 goto fail_no_cp;
714
1dbe4152
CL
715 if (cp_blks <= 1)
716 goto done;
717
718 cp_blk_no = le32_to_cpu(fsb->cp_blkaddr);
719 if (cur_page == cp2)
720 cp_blk_no += 1 << le32_to_cpu(fsb->log_blocks_per_seg);
721
722 for (i = 1; i < cp_blks; i++) {
723 void *sit_bitmap_ptr;
724 unsigned char *ckpt = (unsigned char *)sbi->ckpt;
725
726 cur_page = get_meta_page(sbi, cp_blk_no + i);
727 sit_bitmap_ptr = page_address(cur_page);
728 memcpy(ckpt + i * blk_size, sit_bitmap_ptr, blk_size);
729 f2fs_put_page(cur_page, 1);
730 }
731done:
127e670a
JK
732 f2fs_put_page(cp1, 1);
733 f2fs_put_page(cp2, 1);
734 return 0;
735
736fail_no_cp:
737 kfree(sbi->ckpt);
738 return -EINVAL;
739}
740
c227f912 741static void __add_dirty_inode(struct inode *inode, enum inode_type type)
127e670a 742{
4081363f 743 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
2710fd7e 744 struct f2fs_inode_info *fi = F2FS_I(inode);
c227f912 745 int flag = (type == DIR_INODE) ? FI_DIRTY_DIR : FI_DIRTY_FILE;
127e670a 746
c227f912 747 if (is_inode_flag_set(fi, flag))
2710fd7e 748 return;
2d7b822a 749
c227f912
CY
750 set_inode_flag(fi, flag);
751 list_add_tail(&fi->dirty_list, &sbi->inode_list[type]);
33fbd510 752 stat_inc_dirty_inode(sbi, type);
5deb8267
JK
753}
754
c227f912 755static void __remove_dirty_inode(struct inode *inode, enum inode_type type)
6ad7609a 756{
6ad7609a 757 struct f2fs_inode_info *fi = F2FS_I(inode);
c227f912 758 int flag = (type == DIR_INODE) ? FI_DIRTY_DIR : FI_DIRTY_FILE;
6ad7609a
CY
759
760 if (get_dirty_pages(inode) ||
c227f912 761 !is_inode_flag_set(F2FS_I(inode), flag))
6ad7609a
CY
762 return;
763
764 list_del_init(&fi->dirty_list);
c227f912 765 clear_inode_flag(fi, flag);
33fbd510 766 stat_dec_dirty_inode(F2FS_I_SB(inode), type);
6ad7609a
CY
767}
768
a7ffdbe2 769void update_dirty_page(struct inode *inode, struct page *page)
5deb8267 770{
4081363f 771 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
c227f912 772 enum inode_type type = S_ISDIR(inode->i_mode) ? DIR_INODE : FILE_INODE;
5deb8267 773
5ac9f36f
CY
774 if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
775 !S_ISLNK(inode->i_mode))
127e670a 776 return;
7bd59381 777
c227f912
CY
778 spin_lock(&sbi->inode_lock[type]);
779 __add_dirty_inode(inode, type);
a7ffdbe2 780 inode_inc_dirty_pages(inode);
c227f912 781 spin_unlock(&sbi->inode_lock[type]);
cf0ee0f0 782
a7ffdbe2 783 SetPagePrivate(page);
9e4ded3f 784 f2fs_trace_pid(page);
5deb8267
JK
785}
786
787void add_dirty_dir_inode(struct inode *inode)
788{
4081363f 789 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
127e670a 790
c227f912
CY
791 spin_lock(&sbi->inode_lock[DIR_INODE]);
792 __add_dirty_inode(inode, DIR_INODE);
793 spin_unlock(&sbi->inode_lock[DIR_INODE]);
127e670a
JK
794}
795
c227f912 796void remove_dirty_inode(struct inode *inode)
127e670a 797{
4081363f 798 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
2710fd7e 799 struct f2fs_inode_info *fi = F2FS_I(inode);
c227f912 800 enum inode_type type = S_ISDIR(inode->i_mode) ? DIR_INODE : FILE_INODE;
127e670a 801
c227f912
CY
802 if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
803 !S_ISLNK(inode->i_mode))
127e670a
JK
804 return;
805
c227f912
CY
806 spin_lock(&sbi->inode_lock[type]);
807 __remove_dirty_inode(inode, type);
808 spin_unlock(&sbi->inode_lock[type]);
74d0b917
JK
809
810 /* Only from the recovery routine */
2710fd7e
CY
811 if (is_inode_flag_set(fi, FI_DELAY_IPUT)) {
812 clear_inode_flag(fi, FI_DELAY_IPUT);
74d0b917 813 iput(inode);
afc3eda2 814 }
74d0b917
JK
815}
816
6d5a1495 817int sync_dirty_inodes(struct f2fs_sb_info *sbi, enum inode_type type)
127e670a 818{
ce3b7d80 819 struct list_head *head;
127e670a 820 struct inode *inode;
2710fd7e 821 struct f2fs_inode_info *fi;
4cf18537
CY
822 bool is_dir = (type == DIR_INODE);
823
824 trace_f2fs_sync_dirty_inodes_enter(sbi->sb, is_dir,
825 get_pages(sbi, is_dir ?
826 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA));
127e670a 827retry:
af41d3ee 828 if (unlikely(f2fs_cp_error(sbi)))
6d5a1495 829 return -EIO;
af41d3ee 830
c227f912 831 spin_lock(&sbi->inode_lock[type]);
ce3b7d80 832
c227f912 833 head = &sbi->inode_list[type];
127e670a 834 if (list_empty(head)) {
c227f912 835 spin_unlock(&sbi->inode_lock[type]);
4cf18537
CY
836 trace_f2fs_sync_dirty_inodes_exit(sbi->sb, is_dir,
837 get_pages(sbi, is_dir ?
838 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA));
6d5a1495 839 return 0;
127e670a 840 }
2710fd7e
CY
841 fi = list_entry(head->next, struct f2fs_inode_info, dirty_list);
842 inode = igrab(&fi->vfs_inode);
c227f912 843 spin_unlock(&sbi->inode_lock[type]);
127e670a 844 if (inode) {
87d6f890 845 filemap_fdatawrite(inode->i_mapping);
127e670a
JK
846 iput(inode);
847 } else {
848 /*
849 * We should submit bio, since it exists several
850 * wribacking dentry pages in the freeing inode.
851 */
458e6197 852 f2fs_submit_merged_bio(sbi, DATA, WRITE);
7ecebe5e 853 cond_resched();
127e670a
JK
854 }
855 goto retry;
856}
857
0a8165d7 858/*
127e670a
JK
859 * Freeze all the FS-operations for checkpoint.
860 */
cf779cab 861static int block_operations(struct f2fs_sb_info *sbi)
127e670a 862{
127e670a
JK
863 struct writeback_control wbc = {
864 .sync_mode = WB_SYNC_ALL,
865 .nr_to_write = LONG_MAX,
866 .for_reclaim = 0,
867 };
c718379b 868 struct blk_plug plug;
cf779cab 869 int err = 0;
c718379b
JK
870
871 blk_start_plug(&plug);
872
39936837 873retry_flush_dents:
e479556b 874 f2fs_lock_all(sbi);
127e670a 875 /* write all the dirty dentry pages */
127e670a 876 if (get_pages(sbi, F2FS_DIRTY_DENTS)) {
e479556b 877 f2fs_unlock_all(sbi);
6d5a1495
CY
878 err = sync_dirty_inodes(sbi, DIR_INODE);
879 if (err)
cf779cab 880 goto out;
39936837 881 goto retry_flush_dents;
127e670a
JK
882 }
883
127e670a 884 /*
e1c42045 885 * POR: we should ensure that there are no dirty node pages
127e670a
JK
886 * until finishing nat/sit flush.
887 */
39936837 888retry_flush_nodes:
b3582c68 889 down_write(&sbi->node_write);
127e670a
JK
890
891 if (get_pages(sbi, F2FS_DIRTY_NODES)) {
b3582c68 892 up_write(&sbi->node_write);
6d5a1495
CY
893 err = sync_node_pages(sbi, 0, &wbc);
894 if (err) {
cf779cab 895 f2fs_unlock_all(sbi);
cf779cab
JK
896 goto out;
897 }
39936837 898 goto retry_flush_nodes;
127e670a 899 }
cf779cab 900out:
c718379b 901 blk_finish_plug(&plug);
cf779cab 902 return err;
127e670a
JK
903}
904
905static void unblock_operations(struct f2fs_sb_info *sbi)
906{
b3582c68 907 up_write(&sbi->node_write);
e479556b 908 f2fs_unlock_all(sbi);
127e670a
JK
909}
910
fb51b5ef
CL
911static void wait_on_all_pages_writeback(struct f2fs_sb_info *sbi)
912{
913 DEFINE_WAIT(wait);
914
915 for (;;) {
916 prepare_to_wait(&sbi->cp_wait, &wait, TASK_UNINTERRUPTIBLE);
917
918 if (!get_pages(sbi, F2FS_WRITEBACK))
919 break;
920
921 io_schedule();
922 }
923 finish_wait(&sbi->cp_wait, &wait);
924}
925
c34f42e2 926static int do_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc)
127e670a
JK
927{
928 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
cf2271e7 929 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_WARM_NODE);
77041823 930 struct f2fs_nm_info *nm_i = NM_I(sbi);
67298804 931 unsigned long orphan_num = sbi->im[ORPHAN_INO].ino_num;
77041823 932 nid_t last_nid = nm_i->next_scan_nid;
127e670a 933 block_t start_blk;
127e670a 934 unsigned int data_sum_blocks, orphan_blocks;
7e586fa0 935 __u32 crc32 = 0;
127e670a 936 int i;
55141486 937 int cp_payload_blks = __cp_payload(sbi);
e90c2d28
CY
938 block_t discard_blk = NEXT_FREE_BLKADDR(sbi, curseg);
939 bool invalidate = false;
8f1dbbbb
SL
940 struct super_block *sb = sbi->sb;
941 struct curseg_info *seg_i = CURSEG_I(sbi, CURSEG_HOT_NODE);
942 u64 kbytes_written;
127e670a 943
1e87a78d
JK
944 /*
945 * This avoids to conduct wrong roll-forward operations and uses
946 * metapages, so should be called prior to sync_meta_pages below.
947 */
e90c2d28
CY
948 if (discard_next_dnode(sbi, discard_blk))
949 invalidate = true;
127e670a
JK
950
951 /* Flush all the NAT/SIT pages */
cf779cab 952 while (get_pages(sbi, F2FS_DIRTY_META)) {
127e670a 953 sync_meta_pages(sbi, META, LONG_MAX);
cf779cab 954 if (unlikely(f2fs_cp_error(sbi)))
c34f42e2 955 return -EIO;
cf779cab 956 }
127e670a
JK
957
958 next_free_nid(sbi, &last_nid);
959
960 /*
961 * modify checkpoint
962 * version number is already updated
963 */
964 ckpt->elapsed_time = cpu_to_le64(get_mtime(sbi));
965 ckpt->valid_block_count = cpu_to_le64(valid_user_blocks(sbi));
966 ckpt->free_segment_count = cpu_to_le32(free_segments(sbi));
b5b82205 967 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
127e670a
JK
968 ckpt->cur_node_segno[i] =
969 cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_NODE));
970 ckpt->cur_node_blkoff[i] =
971 cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_NODE));
972 ckpt->alloc_type[i + CURSEG_HOT_NODE] =
973 curseg_alloc_type(sbi, i + CURSEG_HOT_NODE);
974 }
b5b82205 975 for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) {
127e670a
JK
976 ckpt->cur_data_segno[i] =
977 cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_DATA));
978 ckpt->cur_data_blkoff[i] =
979 cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_DATA));
980 ckpt->alloc_type[i + CURSEG_HOT_DATA] =
981 curseg_alloc_type(sbi, i + CURSEG_HOT_DATA);
982 }
983
984 ckpt->valid_node_count = cpu_to_le32(valid_node_count(sbi));
985 ckpt->valid_inode_count = cpu_to_le32(valid_inode_count(sbi));
986 ckpt->next_free_nid = cpu_to_le32(last_nid);
987
988 /* 2 cp + n data seg summary + orphan inode blocks */
3fa06d7b 989 data_sum_blocks = npages_for_summary_flush(sbi, false);
b5b82205 990 if (data_sum_blocks < NR_CURSEG_DATA_TYPE)
25ca923b 991 set_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
127e670a 992 else
25ca923b 993 clear_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
127e670a 994
67298804 995 orphan_blocks = GET_ORPHAN_BLOCKS(orphan_num);
1dbe4152
CL
996 ckpt->cp_pack_start_sum = cpu_to_le32(1 + cp_payload_blks +
997 orphan_blocks);
127e670a 998
119ee914 999 if (__remain_node_summaries(cpc->reason))
b5b82205 1000 ckpt->cp_pack_total_block_count = cpu_to_le32(F2FS_CP_PACKS+
1dbe4152
CL
1001 cp_payload_blks + data_sum_blocks +
1002 orphan_blocks + NR_CURSEG_NODE_TYPE);
119ee914 1003 else
b5b82205 1004 ckpt->cp_pack_total_block_count = cpu_to_le32(F2FS_CP_PACKS +
1dbe4152
CL
1005 cp_payload_blks + data_sum_blocks +
1006 orphan_blocks);
119ee914
JK
1007
1008 if (cpc->reason == CP_UMOUNT)
1009 set_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
1010 else
1011 clear_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
1012
1013 if (cpc->reason == CP_FASTBOOT)
1014 set_ckpt_flags(ckpt, CP_FASTBOOT_FLAG);
1015 else
1016 clear_ckpt_flags(ckpt, CP_FASTBOOT_FLAG);
127e670a 1017
67298804 1018 if (orphan_num)
25ca923b 1019 set_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);
127e670a 1020 else
25ca923b 1021 clear_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);
127e670a 1022
caf0047e 1023 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK))
2ae4c673
JK
1024 set_ckpt_flags(ckpt, CP_FSCK_FLAG);
1025
127e670a
JK
1026 /* update SIT/NAT bitmap */
1027 get_sit_bitmap(sbi, __bitmap_ptr(sbi, SIT_BITMAP));
1028 get_nat_bitmap(sbi, __bitmap_ptr(sbi, NAT_BITMAP));
1029
1030 crc32 = f2fs_crc32(ckpt, le32_to_cpu(ckpt->checksum_offset));
7e586fa0
JK
1031 *((__le32 *)((unsigned char *)ckpt +
1032 le32_to_cpu(ckpt->checksum_offset)))
127e670a
JK
1033 = cpu_to_le32(crc32);
1034
1035 start_blk = __start_cp_addr(sbi);
1036
a7230d16
JK
1037 /* need to wait for end_io results */
1038 wait_on_all_pages_writeback(sbi);
1039 if (unlikely(f2fs_cp_error(sbi)))
c34f42e2 1040 return -EIO;
a7230d16 1041
127e670a 1042 /* write out checkpoint buffer at block 0 */
381722d2
CY
1043 update_meta_page(sbi, ckpt, start_blk++);
1044
1045 for (i = 1; i < 1 + cp_payload_blks; i++)
1046 update_meta_page(sbi, (char *)ckpt + i * F2FS_BLKSIZE,
1047 start_blk++);
1dbe4152 1048
67298804 1049 if (orphan_num) {
127e670a
JK
1050 write_orphan_inodes(sbi, start_blk);
1051 start_blk += orphan_blocks;
1052 }
1053
1054 write_data_summaries(sbi, start_blk);
1055 start_blk += data_sum_blocks;
8f1dbbbb
SL
1056
1057 /* Record write statistics in the hot node summary */
1058 kbytes_written = sbi->kbytes_written;
1059 if (sb->s_bdev->bd_part)
1060 kbytes_written += BD_PART_WRITTEN(sbi);
1061
b7ad7512 1062 seg_i->journal->info.kbytes_written = cpu_to_le64(kbytes_written);
8f1dbbbb 1063
119ee914 1064 if (__remain_node_summaries(cpc->reason)) {
127e670a
JK
1065 write_node_summaries(sbi, start_blk);
1066 start_blk += NR_CURSEG_NODE_TYPE;
1067 }
1068
1069 /* writeout checkpoint block */
381722d2 1070 update_meta_page(sbi, ckpt, start_blk);
127e670a
JK
1071
1072 /* wait for previous submitted node/meta pages writeback */
fb51b5ef 1073 wait_on_all_pages_writeback(sbi);
127e670a 1074
cf779cab 1075 if (unlikely(f2fs_cp_error(sbi)))
c34f42e2 1076 return -EIO;
cf779cab 1077
4ef51a8f 1078 filemap_fdatawait_range(NODE_MAPPING(sbi), 0, LONG_MAX);
9df27d98 1079 filemap_fdatawait_range(META_MAPPING(sbi), 0, LONG_MAX);
127e670a
JK
1080
1081 /* update user_block_counts */
1082 sbi->last_valid_block_count = sbi->total_valid_block_count;
1083 sbi->alloc_valid_block_count = 0;
1084
1085 /* Here, we only have one bio having CP pack */
577e3495 1086 sync_meta_pages(sbi, META_FLUSH, LONG_MAX);
127e670a 1087
6a8f8ca5
JK
1088 /* wait for previous submitted meta pages writeback */
1089 wait_on_all_pages_writeback(sbi);
1090
e90c2d28
CY
1091 /*
1092 * invalidate meta page which is used temporarily for zeroing out
1093 * block at the end of warm node chain.
1094 */
1095 if (invalidate)
1096 invalidate_mapping_pages(META_MAPPING(sbi), discard_blk,
1097 discard_blk);
1098
a49324f1 1099 release_ino_entry(sbi);
cf779cab
JK
1100
1101 if (unlikely(f2fs_cp_error(sbi)))
c34f42e2 1102 return -EIO;
cf779cab 1103
836b5a63 1104 clear_prefree_segments(sbi, cpc);
caf0047e 1105 clear_sbi_flag(sbi, SBI_IS_DIRTY);
c34f42e2
CY
1106
1107 return 0;
127e670a
JK
1108}
1109
0a8165d7 1110/*
e1c42045 1111 * We guarantee that this checkpoint procedure will not fail.
127e670a 1112 */
c34f42e2 1113int write_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc)
127e670a
JK
1114{
1115 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1116 unsigned long long ckpt_ver;
c34f42e2 1117 int err = 0;
127e670a 1118
43727527 1119 mutex_lock(&sbi->cp_mutex);
8501017e 1120
caf0047e 1121 if (!is_sbi_flag_set(sbi, SBI_IS_DIRTY) &&
a66cdd98
JK
1122 (cpc->reason == CP_FASTBOOT || cpc->reason == CP_SYNC ||
1123 (cpc->reason == CP_DISCARD && !sbi->discard_blks)))
8501017e 1124 goto out;
c34f42e2
CY
1125 if (unlikely(f2fs_cp_error(sbi))) {
1126 err = -EIO;
cf779cab 1127 goto out;
c34f42e2
CY
1128 }
1129 if (f2fs_readonly(sbi->sb)) {
1130 err = -EROFS;
11504a8e 1131 goto out;
c34f42e2 1132 }
2bda542d
WL
1133
1134 trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "start block_ops");
1135
c34f42e2
CY
1136 err = block_operations(sbi);
1137 if (err)
cf779cab 1138 goto out;
127e670a 1139
75ab4cb8 1140 trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "finish block_ops");
2af4bd6c 1141
458e6197
JK
1142 f2fs_submit_merged_bio(sbi, DATA, WRITE);
1143 f2fs_submit_merged_bio(sbi, NODE, WRITE);
1144 f2fs_submit_merged_bio(sbi, META, WRITE);
127e670a
JK
1145
1146 /*
1147 * update checkpoint pack index
1148 * Increase the version number so that
1149 * SIT entries and seg summaries are written at correct place
1150 */
d71b5564 1151 ckpt_ver = cur_cp_version(ckpt);
127e670a
JK
1152 ckpt->checkpoint_ver = cpu_to_le64(++ckpt_ver);
1153
1154 /* write cached NAT/SIT entries to NAT/SIT area */
1155 flush_nat_entries(sbi);
4b2fecc8 1156 flush_sit_entries(sbi, cpc);
127e670a 1157
127e670a 1158 /* unlock all the fs_lock[] in do_checkpoint() */
c34f42e2 1159 err = do_checkpoint(sbi, cpc);
127e670a
JK
1160
1161 unblock_operations(sbi);
942e0be6 1162 stat_inc_cp_count(sbi->stat_info);
10027551
JK
1163
1164 if (cpc->reason == CP_RECOVERY)
1165 f2fs_msg(sbi->sb, KERN_NOTICE,
1166 "checkpoint: version = %llx", ckpt_ver);
60b99b48
JK
1167
1168 /* do checkpoint periodically */
6beceb54 1169 f2fs_update_time(sbi, CP_TIME);
55d1cdb2 1170 trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "finish checkpoint");
8501017e
JK
1171out:
1172 mutex_unlock(&sbi->cp_mutex);
c34f42e2 1173 return err;
127e670a
JK
1174}
1175
6451e041 1176void init_ino_entry_info(struct f2fs_sb_info *sbi)
127e670a 1177{
6451e041
JK
1178 int i;
1179
1180 for (i = 0; i < MAX_INO_ENTRY; i++) {
67298804
CY
1181 struct inode_management *im = &sbi->im[i];
1182
1183 INIT_RADIX_TREE(&im->ino_root, GFP_ATOMIC);
1184 spin_lock_init(&im->ino_lock);
1185 INIT_LIST_HEAD(&im->ino_list);
1186 im->ino_num = 0;
6451e041
JK
1187 }
1188
b5b82205 1189 sbi->max_orphans = (sbi->blocks_per_seg - F2FS_CP_PACKS -
14b42817
WL
1190 NR_CURSEG_TYPE - __cp_payload(sbi)) *
1191 F2FS_ORPHANS_PER_BLOCK;
127e670a
JK
1192}
1193
6e6093a8 1194int __init create_checkpoint_caches(void)
127e670a 1195{
6451e041
JK
1196 ino_entry_slab = f2fs_kmem_cache_create("f2fs_ino_entry",
1197 sizeof(struct ino_entry));
1198 if (!ino_entry_slab)
127e670a 1199 return -ENOMEM;
06292073
CY
1200 inode_entry_slab = f2fs_kmem_cache_create("f2fs_inode_entry",
1201 sizeof(struct inode_entry));
6bacf52f 1202 if (!inode_entry_slab) {
6451e041 1203 kmem_cache_destroy(ino_entry_slab);
127e670a
JK
1204 return -ENOMEM;
1205 }
1206 return 0;
1207}
1208
1209void destroy_checkpoint_caches(void)
1210{
6451e041 1211 kmem_cache_destroy(ino_entry_slab);
127e670a
JK
1212 kmem_cache_destroy(inode_entry_slab);
1213}
This page took 0.214668 seconds and 5 git commands to generate.