checkpoint.c 41.4 KB
Newer Older
C
Chao Yu 已提交
1
// SPDX-License-Identifier: GPL-2.0
J
Jaegeuk Kim 已提交
2
/*
J
Jaegeuk Kim 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * fs/f2fs/checkpoint.c
 *
 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
 *             http://www.samsung.com/
 */
#include <linux/fs.h>
#include <linux/bio.h>
#include <linux/mpage.h>
#include <linux/writeback.h>
#include <linux/blkdev.h>
#include <linux/f2fs_fs.h>
#include <linux/pagevec.h>
#include <linux/swap.h>

#include "f2fs.h"
#include "node.h"
#include "segment.h"
J
Jaegeuk Kim 已提交
20
#include "trace.h"
21
#include <trace/events/f2fs.h>
J
Jaegeuk Kim 已提交
22

J
Jaegeuk Kim 已提交
23
static struct kmem_cache *ino_entry_slab;
C
Chao Yu 已提交
24
struct kmem_cache *f2fs_inode_entry_slab;
J
Jaegeuk Kim 已提交
25

26 27
void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi, bool end_io)
{
C
Chao Yu 已提交
28
	f2fs_build_fault_attr(sbi, 0, 0);
29
	set_ckpt_flags(sbi, CP_ERROR_FLAG);
30
	if (!end_io)
31
		f2fs_flush_merged_writes(sbi);
32 33
}

J
Jaegeuk Kim 已提交
34
/*
J
Jaegeuk Kim 已提交
35 36
 * We guarantee no failure on the returned page.
 */
C
Chao Yu 已提交
37
struct page *f2fs_grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
J
Jaegeuk Kim 已提交
38
{
G
Gu Zheng 已提交
39
	struct address_space *mapping = META_MAPPING(sbi);
40
	struct page *page;
J
Jaegeuk Kim 已提交
41
repeat:
42
	page = f2fs_grab_cache_page(mapping, index, false);
J
Jaegeuk Kim 已提交
43 44 45 46
	if (!page) {
		cond_resched();
		goto repeat;
	}
47
	f2fs_wait_on_page_writeback(page, META, true, true);
48 49
	if (!PageUptodate(page))
		SetPageUptodate(page);
J
Jaegeuk Kim 已提交
50 51 52
	return page;
}

53 54
static struct page *__get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index,
							bool is_meta)
J
Jaegeuk Kim 已提交
55
{
G
Gu Zheng 已提交
56
	struct address_space *mapping = META_MAPPING(sbi);
J
Jaegeuk Kim 已提交
57
	struct page *page;
58
	struct f2fs_io_info fio = {
59
		.sbi = sbi,
60
		.type = META,
M
Mike Christie 已提交
61
		.op = REQ_OP_READ,
62
		.op_flags = REQ_META | REQ_PRIO,
63 64
		.old_blkaddr = index,
		.new_blkaddr = index,
65
		.encrypted_page = NULL,
C
Chao Yu 已提交
66
		.is_por = !is_meta,
67
	};
68
	int err;
69 70

	if (unlikely(!is_meta))
M
Mike Christie 已提交
71
		fio.op_flags &= ~REQ_META;
J
Jaegeuk Kim 已提交
72
repeat:
73
	page = f2fs_grab_cache_page(mapping, index, false);
J
Jaegeuk Kim 已提交
74 75 76 77
	if (!page) {
		cond_resched();
		goto repeat;
	}
78 79 80
	if (PageUptodate(page))
		goto out;

81 82
	fio.page = page;

83 84 85 86
	err = f2fs_submit_page_bio(&fio);
	if (err) {
		f2fs_put_page(page, 1);
		return ERR_PTR(err);
87
	}
J
Jaegeuk Kim 已提交
88

C
Chao Yu 已提交
89 90
	f2fs_update_iostat(sbi, FS_META_READ_IO, F2FS_BLKSIZE);

91
	lock_page(page);
92
	if (unlikely(page->mapping != mapping)) {
93 94 95
		f2fs_put_page(page, 1);
		goto repeat;
	}
96

97
	if (unlikely(!PageUptodate(page))) {
98 99
		f2fs_put_page(page, 1);
		return ERR_PTR(-EIO);
100
	}
101
out:
J
Jaegeuk Kim 已提交
102 103 104
	return page;
}

C
Chao Yu 已提交
105
struct page *f2fs_get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
106 107 108 109
{
	return __get_meta_page(sbi, index, true);
}

110
struct page *f2fs_get_meta_page_retry(struct f2fs_sb_info *sbi, pgoff_t index)
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
{
	struct page *page;
	int count = 0;

retry:
	page = __get_meta_page(sbi, index, true);
	if (IS_ERR(page)) {
		if (PTR_ERR(page) == -EIO &&
				++count <= DEFAULT_RETRY_IO_COUNT)
			goto retry;
		f2fs_stop_checkpoint(sbi, false);
	}
	return page;
}

126
/* for POR only */
C
Chao Yu 已提交
127
struct page *f2fs_get_tmp_page(struct f2fs_sb_info *sbi, pgoff_t index)
128 129 130 131
{
	return __get_meta_page(sbi, index, false);
}

C
Chao Yu 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
static bool __is_bitmap_valid(struct f2fs_sb_info *sbi, block_t blkaddr,
							int type)
{
	struct seg_entry *se;
	unsigned int segno, offset;
	bool exist;

	if (type != DATA_GENERIC_ENHANCE && type != DATA_GENERIC_ENHANCE_READ)
		return true;

	segno = GET_SEGNO(sbi, blkaddr);
	offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
	se = get_seg_entry(sbi, segno);

	exist = f2fs_test_bit(offset, se->cur_valid_map);
	if (!exist && type == DATA_GENERIC_ENHANCE) {
148 149
		f2fs_err(sbi, "Inconsistent error blkaddr:%u, sit bitmap:%d",
			 blkaddr, exist);
C
Chao Yu 已提交
150 151 152 153 154 155
		set_sbi_flag(sbi, SBI_NEED_FSCK);
		WARN_ON(1);
	}
	return exist;
}

156
bool f2fs_is_valid_blkaddr(struct f2fs_sb_info *sbi,
C
Chao Yu 已提交
157
					block_t blkaddr, int type)
158 159 160
{
	switch (type) {
	case META_NAT:
161
		break;
162
	case META_SIT:
163 164 165
		if (unlikely(blkaddr >= SIT_BLK_CNT(sbi)))
			return false;
		break;
166
	case META_SSA:
167 168 169 170
		if (unlikely(blkaddr >= MAIN_BLKADDR(sbi) ||
			blkaddr < SM_I(sbi)->ssa_blkaddr))
			return false;
		break;
171
	case META_CP:
172 173 174 175
		if (unlikely(blkaddr >= SIT_I(sbi)->sit_base_addr ||
			blkaddr < __start_cp_addr(sbi)))
			return false;
		break;
176
	case META_POR:
C
Chao Yu 已提交
177 178 179 180
		if (unlikely(blkaddr >= MAX_BLKADDR(sbi) ||
			blkaddr < MAIN_BLKADDR(sbi)))
			return false;
		break;
181
	case DATA_GENERIC:
C
Chao Yu 已提交
182 183
	case DATA_GENERIC_ENHANCE:
	case DATA_GENERIC_ENHANCE_READ:
184
		if (unlikely(blkaddr >= MAX_BLKADDR(sbi) ||
C
Chao Yu 已提交
185
				blkaddr < MAIN_BLKADDR(sbi))) {
186 187
			f2fs_warn(sbi, "access invalid blkaddr:%u",
				  blkaddr);
C
Chao Yu 已提交
188 189
			set_sbi_flag(sbi, SBI_NEED_FSCK);
			WARN_ON(1);
190
			return false;
C
Chao Yu 已提交
191 192
		} else {
			return __is_bitmap_valid(sbi, blkaddr, type);
193
		}
194
		break;
195 196 197 198 199
	case META_GENERIC:
		if (unlikely(blkaddr < SEG0_BLKADDR(sbi) ||
			blkaddr >= MAIN_BLKADDR(sbi)))
			return false;
		break;
200 201 202
	default:
		BUG();
	}
203 204

	return true;
205 206 207
}

/*
C
Chao Yu 已提交
208
 * Readahead CP/NAT/SIT/SSA/POR pages
209
 */
C
Chao Yu 已提交
210
int f2fs_ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages,
211
							int type, bool sync)
212 213
{
	struct page *page;
214
	block_t blkno = start;
215
	struct f2fs_io_info fio = {
216
		.sbi = sbi,
217
		.type = META,
M
Mike Christie 已提交
218
		.op = REQ_OP_READ,
219
		.op_flags = sync ? (REQ_META | REQ_PRIO) : REQ_RAHEAD,
220
		.encrypted_page = NULL,
221
		.in_list = false,
C
Chao Yu 已提交
222
		.is_por = (type == META_POR),
223
	};
C
Chao Yu 已提交
224
	struct blk_plug plug;
225
	int err;
226

227
	if (unlikely(type == META_POR))
M
Mike Christie 已提交
228
		fio.op_flags &= ~REQ_META;
229

C
Chao Yu 已提交
230
	blk_start_plug(&plug);
231 232
	for (; nrpages-- > 0; blkno++) {

233
		if (!f2fs_is_valid_blkaddr(sbi, blkno, type))
234 235
			goto out;

236 237
		switch (type) {
		case META_NAT:
238 239
			if (unlikely(blkno >=
					NAT_BLOCK_OFFSET(NM_I(sbi)->max_nid)))
240
				blkno = 0;
241
			/* get nat block addr */
242
			fio.new_blkaddr = current_nat_addr(sbi,
243 244 245
					blkno * NAT_ENTRY_PER_BLOCK);
			break;
		case META_SIT:
246 247
			if (unlikely(blkno >= TOTAL_SEGS(sbi)))
				goto out;
248
			/* get sit block addr */
249
			fio.new_blkaddr = current_sit_addr(sbi,
250 251
					blkno * SIT_ENTRY_PER_BLOCK);
			break;
252
		case META_SSA:
253
		case META_CP:
254
		case META_POR:
255
			fio.new_blkaddr = blkno;
256 257 258 259 260
			break;
		default:
			BUG();
		}

261 262
		page = f2fs_grab_cache_page(META_MAPPING(sbi),
						fio.new_blkaddr, false);
263 264 265 266 267 268 269
		if (!page)
			continue;
		if (PageUptodate(page)) {
			f2fs_put_page(page, 1);
			continue;
		}

270
		fio.page = page;
271 272
		err = f2fs_submit_page_bio(&fio);
		f2fs_put_page(page, err ? 1 : 0);
C
Chao Yu 已提交
273 274 275

		if (!err)
			f2fs_update_iostat(sbi, FS_META_READ_IO, F2FS_BLKSIZE);
276 277
	}
out:
C
Chao Yu 已提交
278
	blk_finish_plug(&plug);
279 280 281
	return blkno - start;
}

C
Chao Yu 已提交
282
void f2fs_ra_meta_pages_cond(struct f2fs_sb_info *sbi, pgoff_t index)
283 284 285 286 287
{
	struct page *page;
	bool readahead = false;

	page = find_get_page(META_MAPPING(sbi), index);
288
	if (!page || !PageUptodate(page))
289 290 291 292
		readahead = true;
	f2fs_put_page(page, 0);

	if (readahead)
C
Chao Yu 已提交
293
		f2fs_ra_meta_pages(sbi, index, BIO_MAX_PAGES, META_POR, true);
294 295
}

C
Chao Yu 已提交
296 297 298
static int __f2fs_write_meta_page(struct page *page,
				struct writeback_control *wbc,
				enum iostat_type io_type)
J
Jaegeuk Kim 已提交
299
{
300
	struct f2fs_sb_info *sbi = F2FS_P_SB(page);
J
Jaegeuk Kim 已提交
301

302 303
	trace_f2fs_writepage(page, META);

304 305
	if (unlikely(f2fs_cp_error(sbi)))
		goto redirty_out;
306
	if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
307
		goto redirty_out;
308
	if (wbc->for_reclaim && page->index < GET_SUM_BLOCK(sbi, 0))
309
		goto redirty_out;
J
Jaegeuk Kim 已提交
310

C
Chao Yu 已提交
311
	f2fs_do_write_meta_page(sbi, page, io_type);
312
	dec_page_count(sbi, F2FS_DIRTY_META);
313 314

	if (wbc->for_reclaim)
315
		f2fs_submit_merged_write_cond(sbi, NULL, page, 0, META);
316

317
	unlock_page(page);
318

319
	if (unlikely(f2fs_cp_error(sbi)))
320
		f2fs_submit_merged_write(sbi, META);
321

322
	return 0;
323 324

redirty_out:
325
	redirty_page_for_writepage(wbc, page);
326
	return AOP_WRITEPAGE_ACTIVATE;
J
Jaegeuk Kim 已提交
327 328
}

C
Chao Yu 已提交
329 330 331 332 333 334
static int f2fs_write_meta_page(struct page *page,
				struct writeback_control *wbc)
{
	return __f2fs_write_meta_page(page, wbc, FS_META_IO);
}

J
Jaegeuk Kim 已提交
335 336 337
static int f2fs_write_meta_pages(struct address_space *mapping,
				struct writeback_control *wbc)
{
338
	struct f2fs_sb_info *sbi = F2FS_M_SB(mapping);
339
	long diff, written;
J
Jaegeuk Kim 已提交
340

341 342 343
	if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
		goto skip_write;

344
	/* collect a number of dirty meta pages and write together */
345 346 347
	if (wbc->sync_mode != WB_SYNC_ALL &&
			get_pages(sbi, F2FS_DIRTY_META) <
					nr_pages_to_skip(sbi, META))
348
		goto skip_write;
J
Jaegeuk Kim 已提交
349

350 351 352
	/* if locked failed, cp will flush dirty pages instead */
	if (!mutex_trylock(&sbi->cp_mutex))
		goto skip_write;
Y
Yunlei He 已提交
353

354
	trace_f2fs_writepages(mapping->host, wbc, META);
355
	diff = nr_pages_to_write(sbi, META, wbc);
C
Chao Yu 已提交
356
	written = f2fs_sync_meta_pages(sbi, META, wbc->nr_to_write, FS_META_IO);
J
Jaegeuk Kim 已提交
357
	mutex_unlock(&sbi->cp_mutex);
358
	wbc->nr_to_write = max((long)0, wbc->nr_to_write - written - diff);
J
Jaegeuk Kim 已提交
359
	return 0;
360 361 362

skip_write:
	wbc->pages_skipped += get_pages(sbi, F2FS_DIRTY_META);
Y
Yunlei He 已提交
363
	trace_f2fs_writepages(mapping->host, wbc, META);
364
	return 0;
J
Jaegeuk Kim 已提交
365 366
}

C
Chao Yu 已提交
367
long f2fs_sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type,
C
Chao Yu 已提交
368
				long nr_to_write, enum iostat_type io_type)
J
Jaegeuk Kim 已提交
369
{
G
Gu Zheng 已提交
370
	struct address_space *mapping = META_MAPPING(sbi);
J
Jan Kara 已提交
371
	pgoff_t index = 0, prev = ULONG_MAX;
J
Jaegeuk Kim 已提交
372 373
	struct pagevec pvec;
	long nwritten = 0;
J
Jan Kara 已提交
374
	int nr_pages;
J
Jaegeuk Kim 已提交
375 376 377
	struct writeback_control wbc = {
		.for_reclaim = 0,
	};
C
Chao Yu 已提交
378
	struct blk_plug plug;
J
Jaegeuk Kim 已提交
379

380
	pagevec_init(&pvec);
J
Jaegeuk Kim 已提交
381

C
Chao Yu 已提交
382 383
	blk_start_plug(&plug);

J
Jan Kara 已提交
384
	while ((nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
385
				PAGECACHE_TAG_DIRTY))) {
J
Jan Kara 已提交
386
		int i;
J
Jaegeuk Kim 已提交
387 388 389

		for (i = 0; i < nr_pages; i++) {
			struct page *page = pvec.pages[i];
390

391
			if (prev == ULONG_MAX)
392 393 394 395 396 397
				prev = page->index - 1;
			if (nr_to_write != LONG_MAX && page->index != prev + 1) {
				pagevec_release(&pvec);
				goto stop;
			}

J
Jaegeuk Kim 已提交
398
			lock_page(page);
399 400 401 402 403 404 405 406 407 408 409

			if (unlikely(page->mapping != mapping)) {
continue_unlock:
				unlock_page(page);
				continue;
			}
			if (!PageDirty(page)) {
				/* someone wrote it for us */
				goto continue_unlock;
			}

410
			f2fs_wait_on_page_writeback(page, META, true, true);
411

412 413 414
			if (!clear_page_dirty_for_io(page))
				goto continue_unlock;

C
Chao Yu 已提交
415
			if (__f2fs_write_meta_page(page, &wbc, io_type)) {
416 417 418
				unlock_page(page);
				break;
			}
419
			nwritten++;
420
			prev = page->index;
421
			if (unlikely(nwritten >= nr_to_write))
J
Jaegeuk Kim 已提交
422 423 424 425 426
				break;
		}
		pagevec_release(&pvec);
		cond_resched();
	}
427
stop:
J
Jaegeuk Kim 已提交
428
	if (nwritten)
429
		f2fs_submit_merged_write(sbi, type);
J
Jaegeuk Kim 已提交
430

C
Chao Yu 已提交
431 432
	blk_finish_plug(&plug);

J
Jaegeuk Kim 已提交
433 434 435 436 437
	return nwritten;
}

static int f2fs_set_meta_page_dirty(struct page *page)
{
438 439
	trace_f2fs_set_page_dirty(page, META);

440 441
	if (!PageUptodate(page))
		SetPageUptodate(page);
J
Jaegeuk Kim 已提交
442
	if (!PageDirty(page)) {
443
		__set_page_dirty_nobuffers(page);
444
		inc_page_count(F2FS_P_SB(page), F2FS_DIRTY_META);
445
		f2fs_set_page_private(page, 0);
J
Jaegeuk Kim 已提交
446
		f2fs_trace_pid(page);
J
Jaegeuk Kim 已提交
447 448 449 450 451 452 453 454 455
		return 1;
	}
	return 0;
}

const struct address_space_operations f2fs_meta_aops = {
	.writepage	= f2fs_write_meta_page,
	.writepages	= f2fs_write_meta_pages,
	.set_page_dirty	= f2fs_set_meta_page_dirty,
456 457
	.invalidatepage = f2fs_invalidate_page,
	.releasepage	= f2fs_release_page,
458 459 460
#ifdef CONFIG_MIGRATION
	.migratepage    = f2fs_migrate_page,
#endif
J
Jaegeuk Kim 已提交
461 462
};

C
Chao Yu 已提交
463 464
static void __add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino,
						unsigned int devidx, int type)
465
{
466
	struct inode_management *im = &sbi->im[type];
467 468 469
	struct ino_entry *e, *tmp;

	tmp = f2fs_kmem_cache_alloc(ino_entry_slab, GFP_NOFS);
470

471
	radix_tree_preload(GFP_NOFS | __GFP_NOFAIL);
472

473 474
	spin_lock(&im->ino_lock);
	e = radix_tree_lookup(&im->ino_root, ino);
475
	if (!e) {
476
		e = tmp;
477 478 479
		if (unlikely(radix_tree_insert(&im->ino_root, ino, e)))
			f2fs_bug_on(sbi, 1);

480 481
		memset(e, 0, sizeof(struct ino_entry));
		e->ino = ino;
482

483
		list_add_tail(&e->list, &im->ino_list);
484
		if (type != ORPHAN_INO)
485
			im->ino_num++;
486
	}
C
Chao Yu 已提交
487 488 489 490

	if (type == FLUSH_INO)
		f2fs_set_bit(devidx, (char *)&e->dirty_device);

491
	spin_unlock(&im->ino_lock);
492
	radix_tree_preload_end();
493 494 495

	if (e != tmp)
		kmem_cache_free(ino_entry_slab, tmp);
496 497
}

J
Jaegeuk Kim 已提交
498
static void __remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
499
{
500
	struct inode_management *im = &sbi->im[type];
J
Jaegeuk Kim 已提交
501
	struct ino_entry *e;
502

503 504
	spin_lock(&im->ino_lock);
	e = radix_tree_lookup(&im->ino_root, ino);
505 506
	if (e) {
		list_del(&e->list);
507 508 509
		radix_tree_delete(&im->ino_root, ino);
		im->ino_num--;
		spin_unlock(&im->ino_lock);
510 511
		kmem_cache_free(ino_entry_slab, e);
		return;
512
	}
513
	spin_unlock(&im->ino_lock);
514 515
}

C
Chao Yu 已提交
516
void f2fs_add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
517 518
{
	/* add new dirty ino entry into list */
C
Chao Yu 已提交
519
	__add_ino_entry(sbi, ino, 0, type);
520 521
}

C
Chao Yu 已提交
522
void f2fs_remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
523 524 525 526 527
{
	/* remove dirty ino entry from list */
	__remove_ino_entry(sbi, ino, type);
}

528
/* mode should be APPEND_INO, UPDATE_INO or TRANS_DIR_INO */
C
Chao Yu 已提交
529
bool f2fs_exist_written_data(struct f2fs_sb_info *sbi, nid_t ino, int mode)
530
{
531
	struct inode_management *im = &sbi->im[mode];
532
	struct ino_entry *e;
533 534 535 536

	spin_lock(&im->ino_lock);
	e = radix_tree_lookup(&im->ino_root, ino);
	spin_unlock(&im->ino_lock);
537 538 539
	return e ? true : false;
}

C
Chao Yu 已提交
540
void f2fs_release_ino_entry(struct f2fs_sb_info *sbi, bool all)
541 542 543 544
{
	struct ino_entry *e, *tmp;
	int i;

C
Chao Yu 已提交
545
	for (i = all ? ORPHAN_INO : APPEND_INO; i < MAX_INO_ENTRY; i++) {
546 547 548 549
		struct inode_management *im = &sbi->im[i];

		spin_lock(&im->ino_lock);
		list_for_each_entry_safe(e, tmp, &im->ino_list, list) {
550
			list_del(&e->list);
551
			radix_tree_delete(&im->ino_root, e->ino);
552
			kmem_cache_free(ino_entry_slab, e);
553
			im->ino_num--;
554
		}
555
		spin_unlock(&im->ino_lock);
556 557 558
	}
}

C
Chao Yu 已提交
559
void f2fs_set_dirty_device(struct f2fs_sb_info *sbi, nid_t ino,
C
Chao Yu 已提交
560 561 562 563 564
					unsigned int devidx, int type)
{
	__add_ino_entry(sbi, ino, devidx, type);
}

C
Chao Yu 已提交
565
bool f2fs_is_dirty_device(struct f2fs_sb_info *sbi, nid_t ino,
C
Chao Yu 已提交
566 567 568 569 570 571 572 573 574 575 576 577 578 579
					unsigned int devidx, int type)
{
	struct inode_management *im = &sbi->im[type];
	struct ino_entry *e;
	bool is_dirty = false;

	spin_lock(&im->ino_lock);
	e = radix_tree_lookup(&im->ino_root, ino);
	if (e && f2fs_test_bit(devidx, (char *)&e->dirty_device))
		is_dirty = true;
	spin_unlock(&im->ino_lock);
	return is_dirty;
}

C
Chao Yu 已提交
580
int f2fs_acquire_orphan_inode(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
581
{
582
	struct inode_management *im = &sbi->im[ORPHAN_INO];
J
Jaegeuk Kim 已提交
583 584
	int err = 0;

585
	spin_lock(&im->ino_lock);
J
Jaegeuk Kim 已提交
586

587
	if (time_to_inject(sbi, FAULT_ORPHAN)) {
J
Jaegeuk Kim 已提交
588
		spin_unlock(&im->ino_lock);
589
		f2fs_show_injection_info(sbi, FAULT_ORPHAN);
J
Jaegeuk Kim 已提交
590 591
		return -ENOSPC;
	}
592

593
	if (unlikely(im->ino_num >= sbi->max_orphans))
J
Jaegeuk Kim 已提交
594
		err = -ENOSPC;
J
Jaegeuk Kim 已提交
595
	else
596 597
		im->ino_num++;
	spin_unlock(&im->ino_lock);
598

J
Jaegeuk Kim 已提交
599 600 601
	return err;
}

C
Chao Yu 已提交
602
void f2fs_release_orphan_inode(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
603
{
604 605 606 607 608 609
	struct inode_management *im = &sbi->im[ORPHAN_INO];

	spin_lock(&im->ino_lock);
	f2fs_bug_on(sbi, im->ino_num == 0);
	im->ino_num--;
	spin_unlock(&im->ino_lock);
J
Jaegeuk Kim 已提交
610 611
}

C
Chao Yu 已提交
612
void f2fs_add_orphan_inode(struct inode *inode)
J
Jaegeuk Kim 已提交
613
{
614
	/* add new orphan ino entry into list */
C
Chao Yu 已提交
615
	__add_ino_entry(F2FS_I_SB(inode), inode->i_ino, 0, ORPHAN_INO);
C
Chao Yu 已提交
616
	f2fs_update_inode_page(inode);
J
Jaegeuk Kim 已提交
617 618
}

C
Chao Yu 已提交
619
void f2fs_remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
J
Jaegeuk Kim 已提交
620
{
621
	/* remove orphan entry from orphan list */
J
Jaegeuk Kim 已提交
622
	__remove_ino_entry(sbi, ino, ORPHAN_INO);
J
Jaegeuk Kim 已提交
623 624
}

625
static int recover_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
J
Jaegeuk Kim 已提交
626
{
627
	struct inode *inode;
628
	struct node_info ni;
629
	int err;
630

631
	inode = f2fs_iget_retry(sbi->sb, ino);
632 633 634 635 636 637 638 639 640
	if (IS_ERR(inode)) {
		/*
		 * there should be a bug that we can't find the entry
		 * to orphan inode.
		 */
		f2fs_bug_on(sbi, PTR_ERR(inode) == -ENOENT);
		return PTR_ERR(inode);
	}

641
	err = dquot_initialize(inode);
642 643
	if (err) {
		iput(inode);
644
		goto err_out;
645
	}
646

J
Jaegeuk Kim 已提交
647 648 649 650
	clear_nlink(inode);

	/* truncate all the data during iput */
	iput(inode);
651

652 653 654
	err = f2fs_get_node_info(sbi, ino, &ni);
	if (err)
		goto err_out;
655 656 657

	/* ENOMEM was fully retried in f2fs_evict_inode. */
	if (ni.blk_addr != NULL_ADDR) {
658 659
		err = -EIO;
		goto err_out;
660
	}
661
	return 0;
662 663 664

err_out:
	set_sbi_flag(sbi, SBI_NEED_FSCK);
665 666
	f2fs_warn(sbi, "%s: orphan failed (ino=%x), run fsck to fix.",
		  __func__, ino);
667
	return err;
J
Jaegeuk Kim 已提交
668 669
}

C
Chao Yu 已提交
670
int f2fs_recover_orphan_inodes(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
671
{
672
	block_t start_blk, orphan_blocks, i, j;
C
Chao Yu 已提交
673 674
	unsigned int s_flags = sbi->sb->s_flags;
	int err = 0;
J
Jaegeuk Kim 已提交
675 676 677
#ifdef CONFIG_QUOTA
	int quota_enabled;
#endif
J
Jaegeuk Kim 已提交
678

679
	if (!is_set_ckpt_flags(sbi, CP_ORPHAN_PRESENT_FLAG))
680
		return 0;
J
Jaegeuk Kim 已提交
681

682
	if (bdev_read_only(sbi->sb->s_bdev)) {
683
		f2fs_info(sbi, "write access unavailable, skipping orphan cleanup");
684 685 686
		return 0;
	}

687
	if (s_flags & SB_RDONLY) {
688
		f2fs_info(sbi, "orphan cleanup on readonly fs");
689
		sbi->sb->s_flags &= ~SB_RDONLY;
C
Chao Yu 已提交
690 691 692 693
	}

#ifdef CONFIG_QUOTA
	/* Needed for iput() to work correctly and not trash data */
694
	sbi->sb->s_flags |= SB_ACTIVE;
J
Jaegeuk Kim 已提交
695

S
Sheng Yong 已提交
696 697 698 699
	/*
	 * Turn on quotas which were not enabled for read-only mounts if
	 * filesystem has quota feature, so that they are updated correctly.
	 */
700
	quota_enabled = f2fs_enable_quota_files(sbi, s_flags & SB_RDONLY);
C
Chao Yu 已提交
701 702
#endif

W
Wanpeng Li 已提交
703
	start_blk = __start_cp_addr(sbi) + 1 + __cp_payload(sbi);
704
	orphan_blocks = __start_sum_addr(sbi) - 1 - __cp_payload(sbi);
J
Jaegeuk Kim 已提交
705

C
Chao Yu 已提交
706
	f2fs_ra_meta_pages(sbi, start_blk, orphan_blocks, META_CP, true);
707

708
	for (i = 0; i < orphan_blocks; i++) {
709
		struct page *page;
J
Jaegeuk Kim 已提交
710 711
		struct f2fs_orphan_block *orphan_blk;

712 713 714 715 716 717
		page = f2fs_get_meta_page(sbi, start_blk + i);
		if (IS_ERR(page)) {
			err = PTR_ERR(page);
			goto out;
		}

J
Jaegeuk Kim 已提交
718 719 720
		orphan_blk = (struct f2fs_orphan_block *)page_address(page);
		for (j = 0; j < le32_to_cpu(orphan_blk->entry_count); j++) {
			nid_t ino = le32_to_cpu(orphan_blk->ino[j]);
721 722 723
			err = recover_orphan_inode(sbi, ino);
			if (err) {
				f2fs_put_page(page, 1);
C
Chao Yu 已提交
724
				goto out;
725
			}
J
Jaegeuk Kim 已提交
726 727 728 729
		}
		f2fs_put_page(page, 1);
	}
	/* clear Orphan Flag */
730
	clear_ckpt_flags(sbi, CP_ORPHAN_PRESENT_FLAG);
C
Chao Yu 已提交
731
out:
732 733
	set_sbi_flag(sbi, SBI_IS_RECOVERED);

C
Chao Yu 已提交
734 735
#ifdef CONFIG_QUOTA
	/* Turn quotas off */
J
Jaegeuk Kim 已提交
736 737
	if (quota_enabled)
		f2fs_quota_off_umount(sbi->sb);
C
Chao Yu 已提交
738
#endif
739
	sbi->sb->s_flags = s_flags; /* Restore SB_RDONLY status */
C
Chao Yu 已提交
740 741

	return err;
J
Jaegeuk Kim 已提交
742 743 744 745
}

static void write_orphan_inodes(struct f2fs_sb_info *sbi, block_t start_blk)
{
746
	struct list_head *head;
J
Jaegeuk Kim 已提交
747 748
	struct f2fs_orphan_block *orphan_blk = NULL;
	unsigned int nentries = 0;
C
Chao Yu 已提交
749
	unsigned short index = 1;
750
	unsigned short orphan_blocks;
751
	struct page *page = NULL;
J
Jaegeuk Kim 已提交
752
	struct ino_entry *orphan = NULL;
753
	struct inode_management *im = &sbi->im[ORPHAN_INO];
J
Jaegeuk Kim 已提交
754

755
	orphan_blocks = GET_ORPHAN_BLOCKS(im->ino_num);
756

757 758 759 760 761
	/*
	 * we don't need to do spin_lock(&im->ino_lock) here, since all the
	 * orphan inode operations are covered under f2fs_lock_op().
	 * And, spin_lock should be avoided due to page operations below.
	 */
762
	head = &im->ino_list;
J
Jaegeuk Kim 已提交
763 764

	/* loop for each orphan inode entry and write them in Jornal block */
765 766
	list_for_each_entry(orphan, head, list) {
		if (!page) {
C
Chao Yu 已提交
767
			page = f2fs_grab_meta_page(sbi, start_blk++);
768 769 770 771
			orphan_blk =
				(struct f2fs_orphan_block *)page_address(page);
			memset(orphan_blk, 0, sizeof(*orphan_blk));
		}
J
Jaegeuk Kim 已提交
772

773
		orphan_blk->ino[nentries++] = cpu_to_le32(orphan->ino);
J
Jaegeuk Kim 已提交
774

775
		if (nentries == F2FS_ORPHANS_PER_BLOCK) {
J
Jaegeuk Kim 已提交
776 777 778 779 780 781 782 783 784 785 786 787 788 789
			/*
			 * an orphan block is full of 1020 entries,
			 * then we need to flush current orphan blocks
			 * and bring another one in memory
			 */
			orphan_blk->blk_addr = cpu_to_le16(index);
			orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
			orphan_blk->entry_count = cpu_to_le32(nentries);
			set_page_dirty(page);
			f2fs_put_page(page, 1);
			index++;
			nentries = 0;
			page = NULL;
		}
790
	}
J
Jaegeuk Kim 已提交
791

792 793 794 795 796 797
	if (page) {
		orphan_blk->blk_addr = cpu_to_le16(index);
		orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
		orphan_blk->entry_count = cpu_to_le32(nentries);
		set_page_dirty(page);
		f2fs_put_page(page, 1);
J
Jaegeuk Kim 已提交
798 799 800
	}
}

801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
static __u32 f2fs_checkpoint_chksum(struct f2fs_sb_info *sbi,
						struct f2fs_checkpoint *ckpt)
{
	unsigned int chksum_ofs = le32_to_cpu(ckpt->checksum_offset);
	__u32 chksum;

	chksum = f2fs_crc32(sbi, ckpt, chksum_ofs);
	if (chksum_ofs < CP_CHKSUM_OFFSET) {
		chksum_ofs += sizeof(chksum);
		chksum = f2fs_chksum(sbi, chksum, (__u8 *)ckpt + chksum_ofs,
						F2FS_BLKSIZE - chksum_ofs);
	}
	return chksum;
}

816 817 818
static int get_checkpoint_version(struct f2fs_sb_info *sbi, block_t cp_addr,
		struct f2fs_checkpoint **cp_block, struct page **cp_page,
		unsigned long long *version)
J
Jaegeuk Kim 已提交
819
{
820
	size_t crc_offset = 0;
821
	__u32 crc;
J
Jaegeuk Kim 已提交
822

C
Chao Yu 已提交
823
	*cp_page = f2fs_get_meta_page(sbi, cp_addr);
824 825 826
	if (IS_ERR(*cp_page))
		return PTR_ERR(*cp_page);

827
	*cp_block = (struct f2fs_checkpoint *)page_address(*cp_page);
J
Jaegeuk Kim 已提交
828

829
	crc_offset = le32_to_cpu((*cp_block)->checksum_offset);
830 831
	if (crc_offset < CP_MIN_CHKSUM_OFFSET ||
			crc_offset > CP_CHKSUM_OFFSET) {
C
Chao Yu 已提交
832
		f2fs_put_page(*cp_page, 1);
833
		f2fs_warn(sbi, "invalid crc_offset: %zu", crc_offset);
834 835
		return -EINVAL;
	}
J
Jaegeuk Kim 已提交
836

837 838
	crc = f2fs_checkpoint_chksum(sbi, *cp_block);
	if (crc != cur_cp_crc(*cp_block)) {
C
Chao Yu 已提交
839
		f2fs_put_page(*cp_page, 1);
840
		f2fs_warn(sbi, "invalid crc value");
841 842
		return -EINVAL;
	}
J
Jaegeuk Kim 已提交
843

844 845 846
	*version = cur_cp_version(*cp_block);
	return 0;
}
J
Jaegeuk Kim 已提交
847

848 849 850 851 852 853 854
static struct page *validate_checkpoint(struct f2fs_sb_info *sbi,
				block_t cp_addr, unsigned long long *version)
{
	struct page *cp_page_1 = NULL, *cp_page_2 = NULL;
	struct f2fs_checkpoint *cp_block = NULL;
	unsigned long long cur_version = 0, pre_version = 0;
	int err;
J
Jaegeuk Kim 已提交
855

856 857 858
	err = get_checkpoint_version(sbi, cp_addr, &cp_block,
					&cp_page_1, version);
	if (err)
C
Chao Yu 已提交
859
		return NULL;
860 861 862

	if (le32_to_cpu(cp_block->cp_pack_total_block_count) >
					sbi->blocks_per_seg) {
863 864
		f2fs_warn(sbi, "invalid cp_pack_total_block_count:%u",
			  le32_to_cpu(cp_block->cp_pack_total_block_count));
C
Chao Yu 已提交
865
		goto invalid_cp;
866
	}
867
	pre_version = *version;
J
Jaegeuk Kim 已提交
868

869 870 871 872
	cp_addr += le32_to_cpu(cp_block->cp_pack_total_block_count) - 1;
	err = get_checkpoint_version(sbi, cp_addr, &cp_block,
					&cp_page_2, version);
	if (err)
C
Chao Yu 已提交
873
		goto invalid_cp;
874
	cur_version = *version;
J
Jaegeuk Kim 已提交
875 876 877 878 879 880 881

	if (cur_version == pre_version) {
		*version = cur_version;
		f2fs_put_page(cp_page_2, 1);
		return cp_page_1;
	}
	f2fs_put_page(cp_page_2, 1);
C
Chao Yu 已提交
882
invalid_cp:
J
Jaegeuk Kim 已提交
883 884 885 886
	f2fs_put_page(cp_page_1, 1);
	return NULL;
}

C
Chao Yu 已提交
887
int f2fs_get_valid_checkpoint(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
888 889 890 891 892 893 894
{
	struct f2fs_checkpoint *cp_block;
	struct f2fs_super_block *fsb = sbi->raw_super;
	struct page *cp1, *cp2, *cur_page;
	unsigned long blk_size = sbi->blocksize;
	unsigned long long cp1_version = 0, cp2_version = 0;
	unsigned long long cp_start_blk_no;
W
Wanpeng Li 已提交
895
	unsigned int cp_blks = 1 + __cp_payload(sbi);
C
Changman Lee 已提交
896 897
	block_t cp_blk_no;
	int i;
898
	int err;
J
Jaegeuk Kim 已提交
899

900 901
	sbi->ckpt = f2fs_kvzalloc(sbi, array_size(blk_size, cp_blks),
				  GFP_KERNEL);
J
Jaegeuk Kim 已提交
902 903 904 905
	if (!sbi->ckpt)
		return -ENOMEM;
	/*
	 * Finding out valid cp block involves read both
C
Chao Yu 已提交
906
	 * sets( cp pack 1 and cp pack 2)
J
Jaegeuk Kim 已提交
907 908 909 910 911
	 */
	cp_start_blk_no = le32_to_cpu(fsb->cp_blkaddr);
	cp1 = validate_checkpoint(sbi, cp_start_blk_no, &cp1_version);

	/* The second checkpoint pack should start at the next segment */
912 913
	cp_start_blk_no += ((unsigned long long)1) <<
				le32_to_cpu(fsb->log_blocks_per_seg);
J
Jaegeuk Kim 已提交
914 915 916 917 918 919 920 921 922 923 924 925
	cp2 = validate_checkpoint(sbi, cp_start_blk_no, &cp2_version);

	if (cp1 && cp2) {
		if (ver_after(cp2_version, cp1_version))
			cur_page = cp2;
		else
			cur_page = cp1;
	} else if (cp1) {
		cur_page = cp1;
	} else if (cp2) {
		cur_page = cp2;
	} else {
926
		err = -EFSCORRUPTED;
J
Jaegeuk Kim 已提交
927 928 929 930 931 932
		goto fail_no_cp;
	}

	cp_block = (struct f2fs_checkpoint *)page_address(cur_page);
	memcpy(sbi->ckpt, cp_block, blk_size);

933 934 935 936
	if (cur_page == cp1)
		sbi->cur_cp_pack = 1;
	else
		sbi->cur_cp_pack = 2;
937

938
	/* Sanity checking of checkpoint */
939 940
	if (f2fs_sanity_check_ckpt(sbi)) {
		err = -EFSCORRUPTED;
941
		goto free_fail_no_cp;
942
	}
943

C
Changman Lee 已提交
944 945 946 947 948 949 950 951 952 953 954
	if (cp_blks <= 1)
		goto done;

	cp_blk_no = le32_to_cpu(fsb->cp_blkaddr);
	if (cur_page == cp2)
		cp_blk_no += 1 << le32_to_cpu(fsb->log_blocks_per_seg);

	for (i = 1; i < cp_blks; i++) {
		void *sit_bitmap_ptr;
		unsigned char *ckpt = (unsigned char *)sbi->ckpt;

C
Chao Yu 已提交
955
		cur_page = f2fs_get_meta_page(sbi, cp_blk_no + i);
956 957
		if (IS_ERR(cur_page)) {
			err = PTR_ERR(cur_page);
958
			goto free_fail_no_cp;
959
		}
C
Changman Lee 已提交
960 961 962 963 964
		sit_bitmap_ptr = page_address(cur_page);
		memcpy(ckpt + i * blk_size, sit_bitmap_ptr, blk_size);
		f2fs_put_page(cur_page, 1);
	}
done:
J
Jaegeuk Kim 已提交
965 966 967 968
	f2fs_put_page(cp1, 1);
	f2fs_put_page(cp2, 1);
	return 0;

969 970 971
free_fail_no_cp:
	f2fs_put_page(cp1, 1);
	f2fs_put_page(cp2, 1);
J
Jaegeuk Kim 已提交
972
fail_no_cp:
973
	kvfree(sbi->ckpt);
974
	return err;
J
Jaegeuk Kim 已提交
975 976
}

977
static void __add_dirty_inode(struct inode *inode, enum inode_type type)
J
Jaegeuk Kim 已提交
978
{
979
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
980
	int flag = (type == DIR_INODE) ? FI_DIRTY_DIR : FI_DIRTY_FILE;
J
Jaegeuk Kim 已提交
981

982
	if (is_inode_flag_set(inode, flag))
983
		return;
984

985
	set_inode_flag(inode, flag);
986 987 988
	if (!f2fs_is_volatile_file(inode))
		list_add_tail(&F2FS_I(inode)->dirty_list,
						&sbi->inode_list[type]);
C
Chao Yu 已提交
989
	stat_inc_dirty_inode(sbi, type);
990 991
}

992
static void __remove_dirty_inode(struct inode *inode, enum inode_type type)
C
Chao Yu 已提交
993
{
994
	int flag = (type == DIR_INODE) ? FI_DIRTY_DIR : FI_DIRTY_FILE;
C
Chao Yu 已提交
995

996
	if (get_dirty_pages(inode) || !is_inode_flag_set(inode, flag))
C
Chao Yu 已提交
997 998
		return;

999 1000
	list_del_init(&F2FS_I(inode)->dirty_list);
	clear_inode_flag(inode, flag);
C
Chao Yu 已提交
1001
	stat_dec_dirty_inode(F2FS_I_SB(inode), type);
C
Chao Yu 已提交
1002 1003
}

C
Chao Yu 已提交
1004
void f2fs_update_dirty_page(struct inode *inode, struct page *page)
1005
{
1006
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1007
	enum inode_type type = S_ISDIR(inode->i_mode) ? DIR_INODE : FILE_INODE;
1008

1009 1010
	if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
			!S_ISLNK(inode->i_mode))
J
Jaegeuk Kim 已提交
1011
		return;
1012

1013 1014
	spin_lock(&sbi->inode_lock[type]);
	if (type != FILE_INODE || test_opt(sbi, DATA_FLUSH))
1015
		__add_dirty_inode(inode, type);
1016
	inode_inc_dirty_pages(inode);
1017 1018
	spin_unlock(&sbi->inode_lock[type]);

1019
	f2fs_set_page_private(page, 0);
J
Jaegeuk Kim 已提交
1020
	f2fs_trace_pid(page);
1021 1022
}

C
Chao Yu 已提交
1023
void f2fs_remove_dirty_inode(struct inode *inode)
J
Jaegeuk Kim 已提交
1024
{
1025
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1026
	enum inode_type type = S_ISDIR(inode->i_mode) ? DIR_INODE : FILE_INODE;
J
Jaegeuk Kim 已提交
1027

1028 1029
	if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
			!S_ISLNK(inode->i_mode))
J
Jaegeuk Kim 已提交
1030 1031
		return;

1032 1033 1034
	if (type == FILE_INODE && !test_opt(sbi, DATA_FLUSH))
		return;

1035 1036 1037
	spin_lock(&sbi->inode_lock[type]);
	__remove_dirty_inode(inode, type);
	spin_unlock(&sbi->inode_lock[type]);
1038 1039
}

C
Chao Yu 已提交
1040
int f2fs_sync_dirty_inodes(struct f2fs_sb_info *sbi, enum inode_type type)
J
Jaegeuk Kim 已提交
1041
{
1042
	struct list_head *head;
J
Jaegeuk Kim 已提交
1043
	struct inode *inode;
1044
	struct f2fs_inode_info *fi;
1045
	bool is_dir = (type == DIR_INODE);
J
Jaegeuk Kim 已提交
1046
	unsigned long ino = 0;
1047 1048 1049 1050

	trace_f2fs_sync_dirty_inodes_enter(sbi->sb, is_dir,
				get_pages(sbi, is_dir ?
				F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA));
J
Jaegeuk Kim 已提交
1051
retry:
1052 1053 1054 1055
	if (unlikely(f2fs_cp_error(sbi))) {
		trace_f2fs_sync_dirty_inodes_exit(sbi->sb, is_dir,
				get_pages(sbi, is_dir ?
				F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA));
C
Chao Yu 已提交
1056
		return -EIO;
1057
	}
1058

1059
	spin_lock(&sbi->inode_lock[type]);
1060

1061
	head = &sbi->inode_list[type];
J
Jaegeuk Kim 已提交
1062
	if (list_empty(head)) {
1063
		spin_unlock(&sbi->inode_lock[type]);
1064 1065 1066
		trace_f2fs_sync_dirty_inodes_exit(sbi->sb, is_dir,
				get_pages(sbi, is_dir ?
				F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA));
C
Chao Yu 已提交
1067
		return 0;
J
Jaegeuk Kim 已提交
1068
	}
1069
	fi = list_first_entry(head, struct f2fs_inode_info, dirty_list);
1070
	inode = igrab(&fi->vfs_inode);
1071
	spin_unlock(&sbi->inode_lock[type]);
J
Jaegeuk Kim 已提交
1072
	if (inode) {
J
Jaegeuk Kim 已提交
1073 1074
		unsigned long cur_ino = inode->i_ino;

1075
		F2FS_I(inode)->cp_task = current;
C
Chao Yu 已提交
1076

1077
		filemap_fdatawrite(inode->i_mapping);
C
Chao Yu 已提交
1078

1079
		F2FS_I(inode)->cp_task = NULL;
C
Chao Yu 已提交
1080

J
Jaegeuk Kim 已提交
1081
		iput(inode);
J
Jaegeuk Kim 已提交
1082
		/* We need to give cpu to another writers. */
1083
		if (ino == cur_ino)
J
Jaegeuk Kim 已提交
1084
			cond_resched();
1085
		else
J
Jaegeuk Kim 已提交
1086
			ino = cur_ino;
J
Jaegeuk Kim 已提交
1087 1088 1089 1090 1091
	} else {
		/*
		 * We should submit bio, since it exists several
		 * wribacking dentry pages in the freeing inode.
		 */
1092
		f2fs_submit_merged_write(sbi, DATA);
1093
		cond_resched();
J
Jaegeuk Kim 已提交
1094 1095 1096 1097
	}
	goto retry;
}

1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
int f2fs_sync_inode_meta(struct f2fs_sb_info *sbi)
{
	struct list_head *head = &sbi->inode_list[DIRTY_META];
	struct inode *inode;
	struct f2fs_inode_info *fi;
	s64 total = get_pages(sbi, F2FS_DIRTY_IMETA);

	while (total--) {
		if (unlikely(f2fs_cp_error(sbi)))
			return -EIO;

		spin_lock(&sbi->inode_lock[DIRTY_META]);
		if (list_empty(head)) {
			spin_unlock(&sbi->inode_lock[DIRTY_META]);
			return 0;
		}
1114
		fi = list_first_entry(head, struct f2fs_inode_info,
1115 1116 1117 1118
							gdirty_list);
		inode = igrab(&fi->vfs_inode);
		spin_unlock(&sbi->inode_lock[DIRTY_META]);
		if (inode) {
1119 1120 1121 1122
			sync_inode_metadata(inode, 0);

			/* it's on eviction */
			if (is_inode_flag_set(inode, FI_DIRTY_INODE))
C
Chao Yu 已提交
1123
				f2fs_update_inode_page(inode);
1124 1125
			iput(inode);
		}
C
Chao Yu 已提交
1126
	}
1127 1128 1129
	return 0;
}

1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
static void __prepare_cp_block(struct f2fs_sb_info *sbi)
{
	struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
	struct f2fs_nm_info *nm_i = NM_I(sbi);
	nid_t last_nid = nm_i->next_scan_nid;

	next_free_nid(sbi, &last_nid);
	ckpt->valid_block_count = cpu_to_le64(valid_user_blocks(sbi));
	ckpt->valid_node_count = cpu_to_le32(valid_node_count(sbi));
	ckpt->valid_inode_count = cpu_to_le32(valid_inode_count(sbi));
	ckpt->next_free_nid = cpu_to_le32(last_nid);
}

1143 1144
static bool __need_flush_quota(struct f2fs_sb_info *sbi)
{
1145 1146
	bool ret = false;

1147 1148
	if (!is_journalled_quota(sbi))
		return false;
1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162

	down_write(&sbi->quota_sem);
	if (is_sbi_flag_set(sbi, SBI_QUOTA_SKIP_FLUSH)) {
		ret = false;
	} else if (is_sbi_flag_set(sbi, SBI_QUOTA_NEED_REPAIR)) {
		ret = false;
	} else if (is_sbi_flag_set(sbi, SBI_QUOTA_NEED_FLUSH)) {
		clear_sbi_flag(sbi, SBI_QUOTA_NEED_FLUSH);
		ret = true;
	} else if (get_pages(sbi, F2FS_DIRTY_QDATA)) {
		ret = true;
	}
	up_write(&sbi->quota_sem);
	return ret;
1163 1164
}

J
Jaegeuk Kim 已提交
1165
/*
J
Jaegeuk Kim 已提交
1166 1167
 * Freeze all the FS-operations for checkpoint.
 */
1168
static int block_operations(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
1169 1170 1171 1172 1173 1174
{
	struct writeback_control wbc = {
		.sync_mode = WB_SYNC_ALL,
		.nr_to_write = LONG_MAX,
		.for_reclaim = 0,
	};
1175
	int err = 0, cnt = 0;
1176

1177 1178 1179 1180 1181
	/*
	 * Let's flush inline_data in dirty node pages.
	 */
	f2fs_flush_inline_data(sbi);

1182
retry_flush_quotas:
1183
	f2fs_lock_all(sbi);
1184 1185 1186 1187 1188
	if (__need_flush_quota(sbi)) {
		int locked;

		if (++cnt > DEFAULT_RETRY_QUOTA_FLUSH_COUNT) {
			set_sbi_flag(sbi, SBI_QUOTA_SKIP_FLUSH);
1189
			set_sbi_flag(sbi, SBI_QUOTA_NEED_FLUSH);
1190 1191
			goto retry_flush_dents;
		}
1192
		f2fs_unlock_all(sbi);
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203

		/* only failed during mount/umount/freeze/quotactl */
		locked = down_read_trylock(&sbi->sb->s_umount);
		f2fs_quota_sync(sbi->sb, -1);
		if (locked)
			up_read(&sbi->sb->s_umount);
		cond_resched();
		goto retry_flush_quotas;
	}

retry_flush_dents:
J
Jaegeuk Kim 已提交
1204 1205
	/* write all the dirty dentry pages */
	if (get_pages(sbi, F2FS_DIRTY_DENTS)) {
1206
		f2fs_unlock_all(sbi);
C
Chao Yu 已提交
1207
		err = f2fs_sync_dirty_inodes(sbi, DIR_INODE);
C
Chao Yu 已提交
1208
		if (err)
1209
			return err;
1210
		cond_resched();
1211
		goto retry_flush_quotas;
J
Jaegeuk Kim 已提交
1212 1213
	}

1214 1215 1216 1217 1218 1219
	/*
	 * POR: we should ensure that there are no dirty node pages
	 * until finishing nat/sit flush. inode->i_blocks can be updated.
	 */
	down_write(&sbi->node_change);

1220
	if (get_pages(sbi, F2FS_DIRTY_IMETA)) {
1221
		up_write(&sbi->node_change);
1222 1223 1224
		f2fs_unlock_all(sbi);
		err = f2fs_sync_inode_meta(sbi);
		if (err)
1225
			return err;
1226
		cond_resched();
1227
		goto retry_flush_quotas;
1228 1229
	}

1230
retry_flush_nodes:
1231
	down_write(&sbi->node_write);
J
Jaegeuk Kim 已提交
1232 1233

	if (get_pages(sbi, F2FS_DIRTY_NODES)) {
1234
		up_write(&sbi->node_write);
1235
		atomic_inc(&sbi->wb_sync_req[NODE]);
C
Chao Yu 已提交
1236
		err = f2fs_sync_node_pages(sbi, &wbc, false, FS_CP_NODE_IO);
1237
		atomic_dec(&sbi->wb_sync_req[NODE]);
C
Chao Yu 已提交
1238
		if (err) {
1239
			up_write(&sbi->node_change);
1240
			f2fs_unlock_all(sbi);
1241
			return err;
1242
		}
1243
		cond_resched();
1244
		goto retry_flush_nodes;
J
Jaegeuk Kim 已提交
1245
	}
1246 1247 1248 1249 1250 1251 1252

	/*
	 * sbi->node_change is used only for AIO write_begin path which produces
	 * dirty node blocks and some checkpoint values by block allocation.
	 */
	__prepare_cp_block(sbi);
	up_write(&sbi->node_change);
1253
	return err;
J
Jaegeuk Kim 已提交
1254 1255 1256 1257
}

static void unblock_operations(struct f2fs_sb_info *sbi)
{
1258
	up_write(&sbi->node_write);
1259
	f2fs_unlock_all(sbi);
J
Jaegeuk Kim 已提交
1260 1261
}

1262
void f2fs_wait_on_all_pages(struct f2fs_sb_info *sbi, int type)
1263 1264 1265 1266
{
	DEFINE_WAIT(wait);

	for (;;) {
1267
		if (!get_pages(sbi, type))
1268 1269
			break;

1270 1271 1272
		if (unlikely(f2fs_cp_error(sbi)))
			break;

1273 1274 1275
		if (type == F2FS_DIRTY_META)
			f2fs_sync_meta_pages(sbi, META, LONG_MAX,
							FS_CP_META_IO);
1276 1277
		else if (type == F2FS_WB_CP_DATA)
			f2fs_submit_merged_write(sbi, DATA);
1278 1279

		prepare_to_wait(&sbi->cp_wait, &wait, TASK_UNINTERRUPTIBLE);
C
Chao Yu 已提交
1280
		io_schedule_timeout(DEFAULT_IO_TIMEOUT);
1281 1282 1283 1284
	}
	finish_wait(&sbi->cp_wait, &wait);
}

1285 1286 1287 1288
static void update_ckpt_flags(struct f2fs_sb_info *sbi, struct cp_control *cpc)
{
	unsigned long orphan_num = sbi->im[ORPHAN_INO].ino_num;
	struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1289
	unsigned long flags;
1290

1291
	spin_lock_irqsave(&sbi->cp_lock, flags);
1292

1293
	if ((cpc->reason & CP_UMOUNT) &&
1294
			le32_to_cpu(ckpt->cp_pack_total_block_count) >
1295 1296 1297
			sbi->blocks_per_seg - NM_I(sbi)->nat_bits_blocks)
		disable_nat_bits(sbi, false);

1298 1299
	if (cpc->reason & CP_TRIMMED)
		__set_ckpt_flags(ckpt, CP_TRIMMED_FLAG);
C
Chao Yu 已提交
1300 1301
	else
		__clear_ckpt_flags(ckpt, CP_TRIMMED_FLAG);
1302

1303
	if (cpc->reason & CP_UMOUNT)
1304 1305 1306 1307
		__set_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
	else
		__clear_ckpt_flags(ckpt, CP_UMOUNT_FLAG);

1308
	if (cpc->reason & CP_FASTBOOT)
1309 1310 1311 1312 1313 1314 1315 1316 1317
		__set_ckpt_flags(ckpt, CP_FASTBOOT_FLAG);
	else
		__clear_ckpt_flags(ckpt, CP_FASTBOOT_FLAG);

	if (orphan_num)
		__set_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);
	else
		__clear_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);

1318
	if (is_sbi_flag_set(sbi, SBI_NEED_FSCK))
1319 1320
		__set_ckpt_flags(ckpt, CP_FSCK_FLAG);

1321 1322 1323 1324 1325
	if (is_sbi_flag_set(sbi, SBI_IS_RESIZEFS))
		__set_ckpt_flags(ckpt, CP_RESIZEFS_FLAG);
	else
		__clear_ckpt_flags(ckpt, CP_RESIZEFS_FLAG);

D
Daniel Rosenberg 已提交
1326 1327 1328 1329 1330
	if (is_sbi_flag_set(sbi, SBI_CP_DISABLED))
		__set_ckpt_flags(ckpt, CP_DISABLED_FLAG);
	else
		__clear_ckpt_flags(ckpt, CP_DISABLED_FLAG);

1331 1332 1333 1334 1335
	if (is_sbi_flag_set(sbi, SBI_CP_DISABLED_QUICK))
		__set_ckpt_flags(ckpt, CP_DISABLED_QUICK_FLAG);
	else
		__clear_ckpt_flags(ckpt, CP_DISABLED_QUICK_FLAG);

1336 1337
	if (is_sbi_flag_set(sbi, SBI_QUOTA_SKIP_FLUSH))
		__set_ckpt_flags(ckpt, CP_QUOTA_NEED_FSCK_FLAG);
1338 1339
	else
		__clear_ckpt_flags(ckpt, CP_QUOTA_NEED_FSCK_FLAG);
1340 1341 1342 1343

	if (is_sbi_flag_set(sbi, SBI_QUOTA_NEED_REPAIR))
		__set_ckpt_flags(ckpt, CP_QUOTA_NEED_FSCK_FLAG);

1344 1345
	/* set this flag to activate crc|cp_ver for recovery */
	__set_ckpt_flags(ckpt, CP_CRC_RECOVERY_FLAG);
1346
	__clear_ckpt_flags(ckpt, CP_NOCRC_RECOVERY_FLAG);
1347

1348
	spin_unlock_irqrestore(&sbi->cp_lock, flags);
1349 1350
}

1351 1352 1353 1354 1355 1356 1357 1358 1359
static void commit_checkpoint(struct f2fs_sb_info *sbi,
	void *src, block_t blk_addr)
{
	struct writeback_control wbc = {
		.for_reclaim = 0,
	};

	/*
	 * pagevec_lookup_tag and lock_page again will take
C
Chao Yu 已提交
1360 1361
	 * some extra time. Therefore, f2fs_update_meta_pages and
	 * f2fs_sync_meta_pages are combined in this function.
1362
	 */
C
Chao Yu 已提交
1363
	struct page *page = f2fs_grab_meta_page(sbi, blk_addr);
1364 1365
	int err;

1366
	f2fs_wait_on_page_writeback(page, META, true, true);
1367 1368 1369 1370

	memcpy(page_address(page), src, PAGE_SIZE);

	set_page_dirty(page);
1371 1372 1373 1374 1375
	if (unlikely(!clear_page_dirty_for_io(page)))
		f2fs_bug_on(sbi, 1);

	/* writeout cp pack 2 page */
	err = __f2fs_write_meta_page(page, &wbc, FS_CP_META_IO);
1376 1377 1378 1379
	if (unlikely(err && f2fs_cp_error(sbi))) {
		f2fs_put_page(page, 1);
		return;
	}
1380

1381
	f2fs_bug_on(sbi, err);
1382 1383 1384 1385 1386 1387
	f2fs_put_page(page, 0);

	/* submit checkpoint (with barrier if NOBARRIER is not set) */
	f2fs_submit_merged_write(sbi, META_FLUSH);
}

C
Chao Yu 已提交
1388
static int do_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc)
J
Jaegeuk Kim 已提交
1389 1390
{
	struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1391
	struct f2fs_nm_info *nm_i = NM_I(sbi);
1392
	unsigned long orphan_num = sbi->im[ORPHAN_INO].ino_num, flags;
J
Jaegeuk Kim 已提交
1393 1394
	block_t start_blk;
	unsigned int data_sum_blocks, orphan_blocks;
J
Jaegeuk Kim 已提交
1395
	__u32 crc32 = 0;
J
Jaegeuk Kim 已提交
1396
	int i;
W
Wanpeng Li 已提交
1397
	int cp_payload_blks = __cp_payload(sbi);
1398 1399 1400
	struct super_block *sb = sbi->sb;
	struct curseg_info *seg_i = CURSEG_I(sbi, CURSEG_HOT_NODE);
	u64 kbytes_written;
1401
	int err;
J
Jaegeuk Kim 已提交
1402 1403

	/* Flush all the NAT/SIT pages */
C
Chao Yu 已提交
1404
	f2fs_sync_meta_pages(sbi, META, LONG_MAX, FS_CP_META_IO);
J
Jaegeuk Kim 已提交
1405

C
Chao Yu 已提交
1406
	/* start to update checkpoint, cp ver is already updated previously */
C
Chao Yu 已提交
1407
	ckpt->elapsed_time = cpu_to_le64(get_mtime(sbi, true));
J
Jaegeuk Kim 已提交
1408
	ckpt->free_segment_count = cpu_to_le32(free_segments(sbi));
C
Chao Yu 已提交
1409
	for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
J
Jaegeuk Kim 已提交
1410 1411 1412 1413 1414 1415 1416
		ckpt->cur_node_segno[i] =
			cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_NODE));
		ckpt->cur_node_blkoff[i] =
			cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_NODE));
		ckpt->alloc_type[i + CURSEG_HOT_NODE] =
				curseg_alloc_type(sbi, i + CURSEG_HOT_NODE);
	}
C
Chao Yu 已提交
1417
	for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) {
J
Jaegeuk Kim 已提交
1418 1419 1420 1421 1422 1423 1424 1425
		ckpt->cur_data_segno[i] =
			cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_DATA));
		ckpt->cur_data_blkoff[i] =
			cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_DATA));
		ckpt->alloc_type[i + CURSEG_HOT_DATA] =
				curseg_alloc_type(sbi, i + CURSEG_HOT_DATA);
	}

J
Jack Qiu 已提交
1426
	/* 2 cp + n data seg summary + orphan inode blocks */
C
Chao Yu 已提交
1427
	data_sum_blocks = f2fs_npages_for_summary_flush(sbi, false);
1428
	spin_lock_irqsave(&sbi->cp_lock, flags);
C
Chao Yu 已提交
1429
	if (data_sum_blocks < NR_CURSEG_DATA_TYPE)
1430
		__set_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
J
Jaegeuk Kim 已提交
1431
	else
1432
		__clear_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
1433
	spin_unlock_irqrestore(&sbi->cp_lock, flags);
J
Jaegeuk Kim 已提交
1434

1435
	orphan_blocks = GET_ORPHAN_BLOCKS(orphan_num);
C
Changman Lee 已提交
1436 1437
	ckpt->cp_pack_start_sum = cpu_to_le32(1 + cp_payload_blks +
			orphan_blocks);
J
Jaegeuk Kim 已提交
1438

1439
	if (__remain_node_summaries(cpc->reason))
C
Chao Yu 已提交
1440
		ckpt->cp_pack_total_block_count = cpu_to_le32(F2FS_CP_PACKS+
C
Changman Lee 已提交
1441 1442
				cp_payload_blks + data_sum_blocks +
				orphan_blocks + NR_CURSEG_NODE_TYPE);
1443
	else
C
Chao Yu 已提交
1444
		ckpt->cp_pack_total_block_count = cpu_to_le32(F2FS_CP_PACKS +
C
Changman Lee 已提交
1445 1446
				cp_payload_blks + data_sum_blocks +
				orphan_blocks);
1447

1448 1449
	/* update ckpt flag for checkpoint */
	update_ckpt_flags(sbi, cpc);
1450

J
Jaegeuk Kim 已提交
1451 1452 1453 1454
	/* update SIT/NAT bitmap */
	get_sit_bitmap(sbi, __bitmap_ptr(sbi, SIT_BITMAP));
	get_nat_bitmap(sbi, __bitmap_ptr(sbi, NAT_BITMAP));

1455
	crc32 = f2fs_checkpoint_chksum(sbi, ckpt);
J
Jaegeuk Kim 已提交
1456 1457
	*((__le32 *)((unsigned char *)ckpt +
				le32_to_cpu(ckpt->checksum_offset)))
J
Jaegeuk Kim 已提交
1458 1459
				= cpu_to_le32(crc32);

1460
	start_blk = __start_cp_next_addr(sbi);
J
Jaegeuk Kim 已提交
1461

1462 1463 1464 1465 1466 1467 1468 1469 1470 1471
	/* write nat bits */
	if (enabled_nat_bits(sbi, cpc)) {
		__u64 cp_ver = cur_cp_version(ckpt);
		block_t blk;

		cp_ver |= ((__u64)crc32 << 32);
		*(__le64 *)nm_i->nat_bits = cpu_to_le64(cp_ver);

		blk = start_blk + sbi->blocks_per_seg - nm_i->nat_bits_blocks;
		for (i = 0; i < nm_i->nat_bits_blocks; i++)
C
Chao Yu 已提交
1472
			f2fs_update_meta_page(sbi, nm_i->nat_bits +
1473 1474 1475
					(i << F2FS_BLKSIZE_BITS), blk + i);
	}

J
Jaegeuk Kim 已提交
1476
	/* write out checkpoint buffer at block 0 */
C
Chao Yu 已提交
1477
	f2fs_update_meta_page(sbi, ckpt, start_blk++);
C
Chao Yu 已提交
1478 1479

	for (i = 1; i < 1 + cp_payload_blks; i++)
C
Chao Yu 已提交
1480
		f2fs_update_meta_page(sbi, (char *)ckpt + i * F2FS_BLKSIZE,
C
Chao Yu 已提交
1481
							start_blk++);
C
Changman Lee 已提交
1482

1483
	if (orphan_num) {
J
Jaegeuk Kim 已提交
1484 1485 1486 1487
		write_orphan_inodes(sbi, start_blk);
		start_blk += orphan_blocks;
	}

C
Chao Yu 已提交
1488
	f2fs_write_data_summaries(sbi, start_blk);
J
Jaegeuk Kim 已提交
1489
	start_blk += data_sum_blocks;
1490 1491 1492 1493 1494 1495

	/* Record write statistics in the hot node summary */
	kbytes_written = sbi->kbytes_written;
	if (sb->s_bdev->bd_part)
		kbytes_written += BD_PART_WRITTEN(sbi);

1496
	seg_i->journal->info.kbytes_written = cpu_to_le64(kbytes_written);
1497

1498
	if (__remain_node_summaries(cpc->reason)) {
C
Chao Yu 已提交
1499
		f2fs_write_node_summaries(sbi, start_blk);
J
Jaegeuk Kim 已提交
1500 1501 1502
		start_blk += NR_CURSEG_NODE_TYPE;
	}

1503 1504 1505
	/* update user_block_counts */
	sbi->last_valid_block_count = sbi->total_valid_block_count;
	percpu_counter_set(&sbi->alloc_valid_block_count, 0);
J
Jaegeuk Kim 已提交
1506

1507
	/* Here, we have one bio having CP pack except cp pack 2 page */
C
Chao Yu 已提交
1508
	f2fs_sync_meta_pages(sbi, META, LONG_MAX, FS_CP_META_IO);
1509 1510
	/* Wait for all dirty meta pages to be submitted for IO */
	f2fs_wait_on_all_pages(sbi, F2FS_DIRTY_META);
1511 1512

	/* wait for previous submitted meta pages writeback */
1513
	f2fs_wait_on_all_pages(sbi, F2FS_WB_CP_DATA);
J
Jaegeuk Kim 已提交
1514

1515 1516 1517 1518
	/* flush all device cache */
	err = f2fs_flush_device_cache(sbi);
	if (err)
		return err;
J
Jaegeuk Kim 已提交
1519

1520 1521
	/* barrier and flush checkpoint cp pack 2 page if it can */
	commit_checkpoint(sbi, ckpt, start_blk);
1522
	f2fs_wait_on_all_pages(sbi, F2FS_WB_CP_DATA);
1523

1524
	/*
1525
	 * invalidate intermediate page cache borrowed from meta inode which are
1526
	 * used for migration of encrypted, verity or compressed inode's blocks.
1527
	 */
1528 1529
	if (f2fs_sb_has_encrypt(sbi) || f2fs_sb_has_verity(sbi) ||
		f2fs_sb_has_compression(sbi))
1530 1531 1532
		invalidate_mapping_pages(META_MAPPING(sbi),
				MAIN_BLKADDR(sbi), MAX_BLKADDR(sbi) - 1);

C
Chao Yu 已提交
1533
	f2fs_release_ino_entry(sbi, false);
1534

1535 1536
	f2fs_reset_fsync_node_info(sbi);

1537
	clear_sbi_flag(sbi, SBI_IS_DIRTY);
1538
	clear_sbi_flag(sbi, SBI_NEED_CP);
1539
	clear_sbi_flag(sbi, SBI_QUOTA_SKIP_FLUSH);
1540 1541

	spin_lock(&sbi->stat_lock);
D
Daniel Rosenberg 已提交
1542
	sbi->unusable_block_count = 0;
1543 1544
	spin_unlock(&sbi->stat_lock);

1545
	__set_cp_next_pack(sbi);
C
Chao Yu 已提交
1546

1547 1548 1549 1550 1551 1552 1553 1554 1555 1556
	/*
	 * redirty superblock if metadata like node page or inode cache is
	 * updated during writing checkpoint.
	 */
	if (get_pages(sbi, F2FS_DIRTY_NODES) ||
			get_pages(sbi, F2FS_DIRTY_IMETA))
		set_sbi_flag(sbi, SBI_IS_DIRTY);

	f2fs_bug_on(sbi, get_pages(sbi, F2FS_DIRTY_DENTS));

1557
	return unlikely(f2fs_cp_error(sbi)) ? -EIO : 0;
J
Jaegeuk Kim 已提交
1558 1559
}

C
Chao Yu 已提交
1560
int f2fs_write_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc)
J
Jaegeuk Kim 已提交
1561 1562 1563
{
	struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
	unsigned long long ckpt_ver;
C
Chao Yu 已提交
1564
	int err = 0;
J
Jaegeuk Kim 已提交
1565

1566 1567 1568
	if (f2fs_readonly(sbi->sb) || f2fs_hw_is_readonly(sbi))
		return -EROFS;

D
Daniel Rosenberg 已提交
1569 1570 1571
	if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
		if (cpc->reason != CP_PAUSE)
			return 0;
1572
		f2fs_warn(sbi, "Start checkpoint disabled!");
D
Daniel Rosenberg 已提交
1573
	}
1574 1575
	if (cpc->reason != CP_RESIZE)
		mutex_lock(&sbi->cp_mutex);
J
Jaegeuk Kim 已提交
1576

1577
	if (!is_sbi_flag_set(sbi, SBI_IS_DIRTY) &&
1578 1579
		((cpc->reason & CP_FASTBOOT) || (cpc->reason & CP_SYNC) ||
		((cpc->reason & CP_DISCARD) && !sbi->discard_blks)))
J
Jaegeuk Kim 已提交
1580
		goto out;
C
Chao Yu 已提交
1581 1582
	if (unlikely(f2fs_cp_error(sbi))) {
		err = -EIO;
1583
		goto out;
C
Chao Yu 已提交
1584
	}
W
Wanpeng Li 已提交
1585 1586 1587

	trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "start block_ops");

C
Chao Yu 已提交
1588 1589
	err = block_operations(sbi);
	if (err)
1590
		goto out;
J
Jaegeuk Kim 已提交
1591

1592
	trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "finish block_ops");
1593

1594
	f2fs_flush_merged_writes(sbi);
J
Jaegeuk Kim 已提交
1595

1596
	/* this is the case of multiple fstrims without any changes */
1597
	if (cpc->reason & CP_DISCARD) {
C
Chao Yu 已提交
1598
		if (!f2fs_exist_trim_candidates(sbi, cpc)) {
1599 1600 1601 1602
			unblock_operations(sbi);
			goto out;
		}

1603 1604 1605
		if (NM_I(sbi)->dirty_nat_cnt == 0 &&
				SIT_I(sbi)->dirty_sentries == 0 &&
				prefree_segments(sbi) == 0) {
C
Chao Yu 已提交
1606 1607
			f2fs_flush_sit_entries(sbi, cpc);
			f2fs_clear_prefree_segments(sbi, cpc);
1608 1609 1610
			unblock_operations(sbi);
			goto out;
		}
1611 1612
	}

J
Jaegeuk Kim 已提交
1613 1614 1615 1616 1617
	/*
	 * update checkpoint pack index
	 * Increase the version number so that
	 * SIT entries and seg summaries are written at correct place
	 */
1618
	ckpt_ver = cur_cp_version(ckpt);
J
Jaegeuk Kim 已提交
1619 1620 1621
	ckpt->checkpoint_ver = cpu_to_le64(++ckpt_ver);

	/* write cached NAT/SIT entries to NAT/SIT area */
1622 1623 1624 1625
	err = f2fs_flush_nat_entries(sbi, cpc);
	if (err)
		goto stop;

C
Chao Yu 已提交
1626
	f2fs_flush_sit_entries(sbi, cpc);
J
Jaegeuk Kim 已提交
1627

C
Chao Yu 已提交
1628
	/* save inmem log status */
1629
	f2fs_save_inmem_curseg(sbi);
C
Chao Yu 已提交
1630

C
Chao Yu 已提交
1631
	err = do_checkpoint(sbi, cpc);
1632
	if (err)
C
Chao Yu 已提交
1633
		f2fs_release_discard_addrs(sbi);
1634
	else
C
Chao Yu 已提交
1635
		f2fs_clear_prefree_segments(sbi, cpc);
C
Chao Yu 已提交
1636

1637
	f2fs_restore_inmem_curseg(sbi);
1638
stop:
J
Jaegeuk Kim 已提交
1639
	unblock_operations(sbi);
1640
	stat_inc_cp_count(sbi->stat_info);
1641

1642
	if (cpc->reason & CP_RECOVERY)
1643
		f2fs_notice(sbi, "checkpoint: version = %llx", ckpt_ver);
1644

C
Chao Yu 已提交
1645
	/* update CP_TIME to trigger checkpoint periodically */
1646
	f2fs_update_time(sbi, CP_TIME);
1647
	trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "finish checkpoint");
J
Jaegeuk Kim 已提交
1648
out:
1649 1650
	if (cpc->reason != CP_RESIZE)
		mutex_unlock(&sbi->cp_mutex);
C
Chao Yu 已提交
1651
	return err;
J
Jaegeuk Kim 已提交
1652 1653
}

C
Chao Yu 已提交
1654
void f2fs_init_ino_entry_info(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
1655
{
J
Jaegeuk Kim 已提交
1656 1657 1658
	int i;

	for (i = 0; i < MAX_INO_ENTRY; i++) {
1659 1660 1661 1662 1663 1664
		struct inode_management *im = &sbi->im[i];

		INIT_RADIX_TREE(&im->ino_root, GFP_ATOMIC);
		spin_lock_init(&im->ino_lock);
		INIT_LIST_HEAD(&im->ino_list);
		im->ino_num = 0;
J
Jaegeuk Kim 已提交
1665 1666
	}

C
Chao Yu 已提交
1667
	sbi->max_orphans = (sbi->blocks_per_seg - F2FS_CP_PACKS -
C
Chao Yu 已提交
1668
			NR_CURSEG_PERSIST_TYPE - __cp_payload(sbi)) *
1669
				F2FS_ORPHANS_PER_BLOCK;
J
Jaegeuk Kim 已提交
1670 1671
}

C
Chao Yu 已提交
1672
int __init f2fs_create_checkpoint_caches(void)
J
Jaegeuk Kim 已提交
1673
{
J
Jaegeuk Kim 已提交
1674 1675 1676
	ino_entry_slab = f2fs_kmem_cache_create("f2fs_ino_entry",
			sizeof(struct ino_entry));
	if (!ino_entry_slab)
J
Jaegeuk Kim 已提交
1677
		return -ENOMEM;
C
Chao Yu 已提交
1678
	f2fs_inode_entry_slab = f2fs_kmem_cache_create("f2fs_inode_entry",
1679
			sizeof(struct inode_entry));
C
Chao Yu 已提交
1680
	if (!f2fs_inode_entry_slab) {
J
Jaegeuk Kim 已提交
1681
		kmem_cache_destroy(ino_entry_slab);
J
Jaegeuk Kim 已提交
1682 1683 1684 1685 1686
		return -ENOMEM;
	}
	return 0;
}

C
Chao Yu 已提交
1687
void f2fs_destroy_checkpoint_caches(void)
J
Jaegeuk Kim 已提交
1688
{
J
Jaegeuk Kim 已提交
1689
	kmem_cache_destroy(ino_entry_slab);
C
Chao Yu 已提交
1690
	kmem_cache_destroy(f2fs_inode_entry_slab);
J
Jaegeuk Kim 已提交
1691
}