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