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