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