checkpoint.c 36.6 KB
Newer Older
J
Jaegeuk Kim 已提交
1
/*
J
Jaegeuk Kim 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * fs/f2fs/checkpoint.c
 *
 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
 *             http://www.samsung.com/
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#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 已提交
23
#include "trace.h"
24
#include <trace/events/f2fs.h>
J
Jaegeuk Kim 已提交
25

J
Jaegeuk Kim 已提交
26
static struct kmem_cache *ino_entry_slab;
C
Chao Yu 已提交
27
struct kmem_cache *f2fs_inode_entry_slab;
J
Jaegeuk Kim 已提交
28

29 30
void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi, bool end_io)
{
31
	f2fs_build_fault_attr(sbi, 0);
32
	set_ckpt_flags(sbi, CP_ERROR_FLAG);
33
	if (!end_io)
34
		f2fs_flush_merged_writes(sbi);
35 36
}

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

J
Jaegeuk Kim 已提交
56
/*
J
Jaegeuk Kim 已提交
57 58
 * We guarantee no failure on the returned page.
 */
59 60
static struct page *__get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index,
							bool is_meta)
J
Jaegeuk Kim 已提交
61
{
G
Gu Zheng 已提交
62
	struct address_space *mapping = META_MAPPING(sbi);
J
Jaegeuk Kim 已提交
63
	struct page *page;
64
	struct f2fs_io_info fio = {
65
		.sbi = sbi,
66
		.type = META,
M
Mike Christie 已提交
67
		.op = REQ_OP_READ,
68
		.op_flags = REQ_META | REQ_PRIO,
69 70
		.old_blkaddr = index,
		.new_blkaddr = index,
71
		.encrypted_page = NULL,
72
		.is_meta = is_meta,
73
	};
74 75

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

86 87
	fio.page = page;

88 89
	if (f2fs_submit_page_bio(&fio)) {
		f2fs_put_page(page, 1);
J
Jaegeuk Kim 已提交
90
		goto repeat;
91
	}
J
Jaegeuk Kim 已提交
92

93
	lock_page(page);
94
	if (unlikely(page->mapping != mapping)) {
95 96 97
		f2fs_put_page(page, 1);
		goto repeat;
	}
98 99 100 101 102 103

	/*
	 * if there is any IO error when accessing device, make our filesystem
	 * readonly and make sure do not write checkpoint with non-uptodate
	 * meta page.
	 */
104 105
	if (unlikely(!PageUptodate(page))) {
		memset(page_address(page), 0, PAGE_SIZE);
106
		f2fs_stop_checkpoint(sbi, false);
107
	}
108
out:
J
Jaegeuk Kim 已提交
109 110 111
	return page;
}

C
Chao Yu 已提交
112
struct page *f2fs_get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
113 114 115 116 117
{
	return __get_meta_page(sbi, index, true);
}

/* for POR only */
C
Chao Yu 已提交
118
struct page *f2fs_get_tmp_page(struct f2fs_sb_info *sbi, pgoff_t index)
119 120 121 122
{
	return __get_meta_page(sbi, index, false);
}

C
Chao Yu 已提交
123 124
bool f2fs_is_valid_meta_blkaddr(struct f2fs_sb_info *sbi,
					block_t blkaddr, int type)
125 126 127
{
	switch (type) {
	case META_NAT:
128
		break;
129
	case META_SIT:
130 131 132
		if (unlikely(blkaddr >= SIT_BLK_CNT(sbi)))
			return false;
		break;
133
	case META_SSA:
134 135 136 137
		if (unlikely(blkaddr >= MAIN_BLKADDR(sbi) ||
			blkaddr < SM_I(sbi)->ssa_blkaddr))
			return false;
		break;
138
	case META_CP:
139 140 141 142
		if (unlikely(blkaddr >= SIT_I(sbi)->sit_base_addr ||
			blkaddr < __start_cp_addr(sbi)))
			return false;
		break;
143
	case META_POR:
144 145 146 147
		if (unlikely(blkaddr >= MAX_BLKADDR(sbi) ||
			blkaddr < MAIN_BLKADDR(sbi)))
			return false;
		break;
148 149 150
	default:
		BUG();
	}
151 152

	return true;
153 154 155
}

/*
156
 * Readahead CP/NAT/SIT/SSA pages
157
 */
C
Chao Yu 已提交
158
int f2fs_ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages,
159
							int type, bool sync)
160 161
{
	struct page *page;
162
	block_t blkno = start;
163
	struct f2fs_io_info fio = {
164
		.sbi = sbi,
165
		.type = META,
M
Mike Christie 已提交
166
		.op = REQ_OP_READ,
167
		.op_flags = sync ? (REQ_META | REQ_PRIO) : REQ_RAHEAD,
168
		.encrypted_page = NULL,
169
		.in_list = false,
170
		.is_meta = (type != META_POR),
171
	};
C
Chao Yu 已提交
172
	struct blk_plug plug;
173

174
	if (unlikely(type == META_POR))
M
Mike Christie 已提交
175
		fio.op_flags &= ~REQ_META;
176

C
Chao Yu 已提交
177
	blk_start_plug(&plug);
178 179
	for (; nrpages-- > 0; blkno++) {

C
Chao Yu 已提交
180
		if (!f2fs_is_valid_meta_blkaddr(sbi, blkno, type))
181 182
			goto out;

183 184
		switch (type) {
		case META_NAT:
185 186
			if (unlikely(blkno >=
					NAT_BLOCK_OFFSET(NM_I(sbi)->max_nid)))
187
				blkno = 0;
188
			/* get nat block addr */
189
			fio.new_blkaddr = current_nat_addr(sbi,
190 191 192 193
					blkno * NAT_ENTRY_PER_BLOCK);
			break;
		case META_SIT:
			/* get sit block addr */
194
			fio.new_blkaddr = current_sit_addr(sbi,
195 196
					blkno * SIT_ENTRY_PER_BLOCK);
			break;
197
		case META_SSA:
198
		case META_CP:
199
		case META_POR:
200
			fio.new_blkaddr = blkno;
201 202 203 204 205
			break;
		default:
			BUG();
		}

206 207
		page = f2fs_grab_cache_page(META_MAPPING(sbi),
						fio.new_blkaddr, false);
208 209 210 211 212 213 214
		if (!page)
			continue;
		if (PageUptodate(page)) {
			f2fs_put_page(page, 1);
			continue;
		}

215
		fio.page = page;
216
		f2fs_submit_page_bio(&fio);
217 218 219
		f2fs_put_page(page, 0);
	}
out:
C
Chao Yu 已提交
220
	blk_finish_plug(&plug);
221 222 223
	return blkno - start;
}

C
Chao Yu 已提交
224
void f2fs_ra_meta_pages_cond(struct f2fs_sb_info *sbi, pgoff_t index)
225 226 227 228 229
{
	struct page *page;
	bool readahead = false;

	page = find_get_page(META_MAPPING(sbi), index);
230
	if (!page || !PageUptodate(page))
231 232 233 234
		readahead = true;
	f2fs_put_page(page, 0);

	if (readahead)
C
Chao Yu 已提交
235
		f2fs_ra_meta_pages(sbi, index, BIO_MAX_PAGES, META_POR, true);
236 237
}

C
Chao Yu 已提交
238 239 240
static int __f2fs_write_meta_page(struct page *page,
				struct writeback_control *wbc,
				enum iostat_type io_type)
J
Jaegeuk Kim 已提交
241
{
242
	struct f2fs_sb_info *sbi = F2FS_P_SB(page);
J
Jaegeuk Kim 已提交
243

244 245
	trace_f2fs_writepage(page, META);

246 247
	if (unlikely(f2fs_cp_error(sbi)))
		goto redirty_out;
248
	if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
249
		goto redirty_out;
250
	if (wbc->for_reclaim && page->index < GET_SUM_BLOCK(sbi, 0))
251
		goto redirty_out;
J
Jaegeuk Kim 已提交
252

C
Chao Yu 已提交
253
	f2fs_do_write_meta_page(sbi, page, io_type);
254
	dec_page_count(sbi, F2FS_DIRTY_META);
255 256

	if (wbc->for_reclaim)
257 258
		f2fs_submit_merged_write_cond(sbi, page->mapping->host,
						0, page->index, META);
259

260
	unlock_page(page);
261

262
	if (unlikely(f2fs_cp_error(sbi)))
263
		f2fs_submit_merged_write(sbi, META);
264

265
	return 0;
266 267

redirty_out:
268
	redirty_page_for_writepage(wbc, page);
269
	return AOP_WRITEPAGE_ACTIVATE;
J
Jaegeuk Kim 已提交
270 271
}

C
Chao Yu 已提交
272 273 274 275 276 277
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 已提交
278 279 280
static int f2fs_write_meta_pages(struct address_space *mapping,
				struct writeback_control *wbc)
{
281
	struct f2fs_sb_info *sbi = F2FS_M_SB(mapping);
282
	long diff, written;
J
Jaegeuk Kim 已提交
283

284 285 286
	if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
		goto skip_write;

287
	/* collect a number of dirty meta pages and write together */
288 289
	if (wbc->for_kupdate ||
		get_pages(sbi, F2FS_DIRTY_META) < nr_pages_to_skip(sbi, META))
290
		goto skip_write;
J
Jaegeuk Kim 已提交
291

292 293 294
	/* if locked failed, cp will flush dirty pages instead */
	if (!mutex_trylock(&sbi->cp_mutex))
		goto skip_write;
Y
Yunlei He 已提交
295

296
	trace_f2fs_writepages(mapping->host, wbc, META);
297
	diff = nr_pages_to_write(sbi, META, wbc);
C
Chao Yu 已提交
298
	written = f2fs_sync_meta_pages(sbi, META, wbc->nr_to_write, FS_META_IO);
J
Jaegeuk Kim 已提交
299
	mutex_unlock(&sbi->cp_mutex);
300
	wbc->nr_to_write = max((long)0, wbc->nr_to_write - written - diff);
J
Jaegeuk Kim 已提交
301
	return 0;
302 303 304

skip_write:
	wbc->pages_skipped += get_pages(sbi, F2FS_DIRTY_META);
Y
Yunlei He 已提交
305
	trace_f2fs_writepages(mapping->host, wbc, META);
306
	return 0;
J
Jaegeuk Kim 已提交
307 308
}

C
Chao Yu 已提交
309
long f2fs_sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type,
C
Chao Yu 已提交
310
				long nr_to_write, enum iostat_type io_type)
J
Jaegeuk Kim 已提交
311
{
G
Gu Zheng 已提交
312
	struct address_space *mapping = META_MAPPING(sbi);
J
Jan Kara 已提交
313
	pgoff_t index = 0, prev = ULONG_MAX;
J
Jaegeuk Kim 已提交
314 315
	struct pagevec pvec;
	long nwritten = 0;
J
Jan Kara 已提交
316
	int nr_pages;
J
Jaegeuk Kim 已提交
317 318 319
	struct writeback_control wbc = {
		.for_reclaim = 0,
	};
C
Chao Yu 已提交
320
	struct blk_plug plug;
J
Jaegeuk Kim 已提交
321

322
	pagevec_init(&pvec);
J
Jaegeuk Kim 已提交
323

C
Chao Yu 已提交
324 325
	blk_start_plug(&plug);

J
Jan Kara 已提交
326
	while ((nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
327
				PAGECACHE_TAG_DIRTY))) {
J
Jan Kara 已提交
328
		int i;
J
Jaegeuk Kim 已提交
329 330 331

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

333
			if (prev == ULONG_MAX)
334 335 336 337 338 339
				prev = page->index - 1;
			if (nr_to_write != LONG_MAX && page->index != prev + 1) {
				pagevec_release(&pvec);
				goto stop;
			}

J
Jaegeuk Kim 已提交
340
			lock_page(page);
341 342 343 344 345 346 347 348 349 350 351

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

352 353 354
			f2fs_wait_on_page_writeback(page, META, true);

			BUG_ON(PageWriteback(page));
355 356 357
			if (!clear_page_dirty_for_io(page))
				goto continue_unlock;

C
Chao Yu 已提交
358
			if (__f2fs_write_meta_page(page, &wbc, io_type)) {
359 360 361
				unlock_page(page);
				break;
			}
362
			nwritten++;
363
			prev = page->index;
364
			if (unlikely(nwritten >= nr_to_write))
J
Jaegeuk Kim 已提交
365 366 367 368 369
				break;
		}
		pagevec_release(&pvec);
		cond_resched();
	}
370
stop:
J
Jaegeuk Kim 已提交
371
	if (nwritten)
372
		f2fs_submit_merged_write(sbi, type);
J
Jaegeuk Kim 已提交
373

C
Chao Yu 已提交
374 375
	blk_finish_plug(&plug);

J
Jaegeuk Kim 已提交
376 377 378 379 380
	return nwritten;
}

static int f2fs_set_meta_page_dirty(struct page *page)
{
381 382
	trace_f2fs_set_page_dirty(page, META);

383 384
	if (!PageUptodate(page))
		SetPageUptodate(page);
J
Jaegeuk Kim 已提交
385
	if (!PageDirty(page)) {
386
		__set_page_dirty_nobuffers(page);
387
		inc_page_count(F2FS_P_SB(page), F2FS_DIRTY_META);
388
		SetPagePrivate(page);
J
Jaegeuk Kim 已提交
389
		f2fs_trace_pid(page);
J
Jaegeuk Kim 已提交
390 391 392 393 394 395 396 397 398
		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,
399 400
	.invalidatepage = f2fs_invalidate_page,
	.releasepage	= f2fs_release_page,
401 402 403
#ifdef CONFIG_MIGRATION
	.migratepage    = f2fs_migrate_page,
#endif
J
Jaegeuk Kim 已提交
404 405
};

C
Chao Yu 已提交
406 407
static void __add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino,
						unsigned int devidx, int type)
408
{
409
	struct inode_management *im = &sbi->im[type];
410 411 412
	struct ino_entry *e, *tmp;

	tmp = f2fs_kmem_cache_alloc(ino_entry_slab, GFP_NOFS);
413

414
	radix_tree_preload(GFP_NOFS | __GFP_NOFAIL);
415

416 417
	spin_lock(&im->ino_lock);
	e = radix_tree_lookup(&im->ino_root, ino);
418
	if (!e) {
419
		e = tmp;
420 421 422
		if (unlikely(radix_tree_insert(&im->ino_root, ino, e)))
			f2fs_bug_on(sbi, 1);

423 424
		memset(e, 0, sizeof(struct ino_entry));
		e->ino = ino;
425

426
		list_add_tail(&e->list, &im->ino_list);
427
		if (type != ORPHAN_INO)
428
			im->ino_num++;
429
	}
C
Chao Yu 已提交
430 431 432 433

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

434
	spin_unlock(&im->ino_lock);
435
	radix_tree_preload_end();
436 437 438

	if (e != tmp)
		kmem_cache_free(ino_entry_slab, tmp);
439 440
}

J
Jaegeuk Kim 已提交
441
static void __remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
442
{
443
	struct inode_management *im = &sbi->im[type];
J
Jaegeuk Kim 已提交
444
	struct ino_entry *e;
445

446 447
	spin_lock(&im->ino_lock);
	e = radix_tree_lookup(&im->ino_root, ino);
448 449
	if (e) {
		list_del(&e->list);
450 451 452
		radix_tree_delete(&im->ino_root, ino);
		im->ino_num--;
		spin_unlock(&im->ino_lock);
453 454
		kmem_cache_free(ino_entry_slab, e);
		return;
455
	}
456
	spin_unlock(&im->ino_lock);
457 458
}

C
Chao Yu 已提交
459
void f2fs_add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
460 461
{
	/* add new dirty ino entry into list */
C
Chao Yu 已提交
462
	__add_ino_entry(sbi, ino, 0, type);
463 464
}

C
Chao Yu 已提交
465
void f2fs_remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
466 467 468 469 470 471
{
	/* remove dirty ino entry from list */
	__remove_ino_entry(sbi, ino, type);
}

/* mode should be APPEND_INO or UPDATE_INO */
C
Chao Yu 已提交
472
bool f2fs_exist_written_data(struct f2fs_sb_info *sbi, nid_t ino, int mode)
473
{
474
	struct inode_management *im = &sbi->im[mode];
475
	struct ino_entry *e;
476 477 478 479

	spin_lock(&im->ino_lock);
	e = radix_tree_lookup(&im->ino_root, ino);
	spin_unlock(&im->ino_lock);
480 481 482
	return e ? true : false;
}

C
Chao Yu 已提交
483
void f2fs_release_ino_entry(struct f2fs_sb_info *sbi, bool all)
484 485 486 487
{
	struct ino_entry *e, *tmp;
	int i;

C
Chao Yu 已提交
488
	for (i = all ? ORPHAN_INO : APPEND_INO; i < MAX_INO_ENTRY; i++) {
489 490 491 492
		struct inode_management *im = &sbi->im[i];

		spin_lock(&im->ino_lock);
		list_for_each_entry_safe(e, tmp, &im->ino_list, list) {
493
			list_del(&e->list);
494
			radix_tree_delete(&im->ino_root, e->ino);
495
			kmem_cache_free(ino_entry_slab, e);
496
			im->ino_num--;
497
		}
498
		spin_unlock(&im->ino_lock);
499 500 501
	}
}

C
Chao Yu 已提交
502
void f2fs_set_dirty_device(struct f2fs_sb_info *sbi, nid_t ino,
C
Chao Yu 已提交
503 504 505 506 507
					unsigned int devidx, int type)
{
	__add_ino_entry(sbi, ino, devidx, type);
}

C
Chao Yu 已提交
508
bool f2fs_is_dirty_device(struct f2fs_sb_info *sbi, nid_t ino,
C
Chao Yu 已提交
509 510 511 512 513 514 515 516 517 518 519 520 521 522
					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 已提交
523
int f2fs_acquire_orphan_inode(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
524
{
525
	struct inode_management *im = &sbi->im[ORPHAN_INO];
J
Jaegeuk Kim 已提交
526 527
	int err = 0;

528
	spin_lock(&im->ino_lock);
J
Jaegeuk Kim 已提交
529 530

#ifdef CONFIG_F2FS_FAULT_INJECTION
531
	if (time_to_inject(sbi, FAULT_ORPHAN)) {
J
Jaegeuk Kim 已提交
532
		spin_unlock(&im->ino_lock);
533
		f2fs_show_injection_info(FAULT_ORPHAN);
J
Jaegeuk Kim 已提交
534 535 536
		return -ENOSPC;
	}
#endif
537
	if (unlikely(im->ino_num >= sbi->max_orphans))
J
Jaegeuk Kim 已提交
538
		err = -ENOSPC;
J
Jaegeuk Kim 已提交
539
	else
540 541
		im->ino_num++;
	spin_unlock(&im->ino_lock);
542

J
Jaegeuk Kim 已提交
543 544 545
	return err;
}

C
Chao Yu 已提交
546
void f2fs_release_orphan_inode(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
547
{
548 549 550 551 552 553
	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 已提交
554 555
}

C
Chao Yu 已提交
556
void f2fs_add_orphan_inode(struct inode *inode)
J
Jaegeuk Kim 已提交
557
{
558
	/* add new orphan ino entry into list */
C
Chao Yu 已提交
559
	__add_ino_entry(F2FS_I_SB(inode), inode->i_ino, 0, ORPHAN_INO);
C
Chao Yu 已提交
560
	f2fs_update_inode_page(inode);
J
Jaegeuk Kim 已提交
561 562
}

C
Chao Yu 已提交
563
void f2fs_remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
J
Jaegeuk Kim 已提交
564
{
565
	/* remove orphan entry from orphan list */
J
Jaegeuk Kim 已提交
566
	__remove_ino_entry(sbi, ino, ORPHAN_INO);
J
Jaegeuk Kim 已提交
567 568
}

569
static int recover_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
J
Jaegeuk Kim 已提交
570
{
571
	struct inode *inode;
572
	struct node_info ni;
573
	int err;
574

575
	inode = f2fs_iget_retry(sbi->sb, ino);
576 577 578 579 580 581 582 583 584
	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);
	}

585
	err = dquot_initialize(inode);
586 587
	if (err) {
		iput(inode);
588
		goto err_out;
589
	}
590

J
Jaegeuk Kim 已提交
591 592 593 594
	clear_nlink(inode);

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

C
Chao Yu 已提交
596
	f2fs_get_node_info(sbi, ino, &ni);
597 598 599

	/* ENOMEM was fully retried in f2fs_evict_inode. */
	if (ni.blk_addr != NULL_ADDR) {
600 601
		err = -EIO;
		goto err_out;
602
	}
603
	return 0;
604 605 606 607 608 609 610

err_out:
	set_sbi_flag(sbi, SBI_NEED_FSCK);
	f2fs_msg(sbi->sb, KERN_WARNING,
			"%s: orphan failed (ino=%x), run fsck to fix.",
			__func__, ino);
	return err;
J
Jaegeuk Kim 已提交
611 612
}

C
Chao Yu 已提交
613
int f2fs_recover_orphan_inodes(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
614
{
615
	block_t start_blk, orphan_blocks, i, j;
C
Chao Yu 已提交
616 617
	unsigned int s_flags = sbi->sb->s_flags;
	int err = 0;
J
Jaegeuk Kim 已提交
618 619 620
#ifdef CONFIG_QUOTA
	int quota_enabled;
#endif
J
Jaegeuk Kim 已提交
621

622
	if (!is_set_ckpt_flags(sbi, CP_ORPHAN_PRESENT_FLAG))
623
		return 0;
J
Jaegeuk Kim 已提交
624

625
	if (s_flags & SB_RDONLY) {
C
Chao Yu 已提交
626
		f2fs_msg(sbi->sb, KERN_INFO, "orphan cleanup on readonly fs");
627
		sbi->sb->s_flags &= ~SB_RDONLY;
C
Chao Yu 已提交
628 629 630 631
	}

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

C
Chao Yu 已提交
634
	/* Turn on quotas so that they are updated correctly */
635
	quota_enabled = f2fs_enable_quota_files(sbi, s_flags & SB_RDONLY);
C
Chao Yu 已提交
636 637
#endif

W
Wanpeng Li 已提交
638
	start_blk = __start_cp_addr(sbi) + 1 + __cp_payload(sbi);
639
	orphan_blocks = __start_sum_addr(sbi) - 1 - __cp_payload(sbi);
J
Jaegeuk Kim 已提交
640

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

643
	for (i = 0; i < orphan_blocks; i++) {
C
Chao Yu 已提交
644
		struct page *page = f2fs_get_meta_page(sbi, start_blk + i);
J
Jaegeuk Kim 已提交
645 646 647 648 649
		struct f2fs_orphan_block *orphan_blk;

		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]);
650 651 652
			err = recover_orphan_inode(sbi, ino);
			if (err) {
				f2fs_put_page(page, 1);
C
Chao Yu 已提交
653
				goto out;
654
			}
J
Jaegeuk Kim 已提交
655 656 657 658
		}
		f2fs_put_page(page, 1);
	}
	/* clear Orphan Flag */
659
	clear_ckpt_flags(sbi, CP_ORPHAN_PRESENT_FLAG);
C
Chao Yu 已提交
660 661 662
out:
#ifdef CONFIG_QUOTA
	/* Turn quotas off */
J
Jaegeuk Kim 已提交
663 664
	if (quota_enabled)
		f2fs_quota_off_umount(sbi->sb);
C
Chao Yu 已提交
665
#endif
666
	sbi->sb->s_flags = s_flags; /* Restore SB_RDONLY status */
C
Chao Yu 已提交
667 668

	return err;
J
Jaegeuk Kim 已提交
669 670 671 672
}

static void write_orphan_inodes(struct f2fs_sb_info *sbi, block_t start_blk)
{
673
	struct list_head *head;
J
Jaegeuk Kim 已提交
674 675
	struct f2fs_orphan_block *orphan_blk = NULL;
	unsigned int nentries = 0;
C
Chao Yu 已提交
676
	unsigned short index = 1;
677
	unsigned short orphan_blocks;
678
	struct page *page = NULL;
J
Jaegeuk Kim 已提交
679
	struct ino_entry *orphan = NULL;
680
	struct inode_management *im = &sbi->im[ORPHAN_INO];
J
Jaegeuk Kim 已提交
681

682
	orphan_blocks = GET_ORPHAN_BLOCKS(im->ino_num);
683

684 685 686 687 688
	/*
	 * 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.
	 */
689
	head = &im->ino_list;
J
Jaegeuk Kim 已提交
690 691

	/* loop for each orphan inode entry and write them in Jornal block */
692 693
	list_for_each_entry(orphan, head, list) {
		if (!page) {
C
Chao Yu 已提交
694
			page = f2fs_grab_meta_page(sbi, start_blk++);
695 696 697 698
			orphan_blk =
				(struct f2fs_orphan_block *)page_address(page);
			memset(orphan_blk, 0, sizeof(*orphan_blk));
		}
J
Jaegeuk Kim 已提交
699

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

702
		if (nentries == F2FS_ORPHANS_PER_BLOCK) {
J
Jaegeuk Kim 已提交
703 704 705 706 707 708 709 710 711 712 713 714 715 716
			/*
			 * 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;
		}
717
	}
J
Jaegeuk Kim 已提交
718

719 720 721 722 723 724
	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 已提交
725 726 727
	}
}

728 729 730
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 已提交
731 732
{
	unsigned long blk_size = sbi->blocksize;
733
	size_t crc_offset = 0;
J
Jaegeuk Kim 已提交
734
	__u32 crc = 0;
J
Jaegeuk Kim 已提交
735

C
Chao Yu 已提交
736
	*cp_page = f2fs_get_meta_page(sbi, cp_addr);
737
	*cp_block = (struct f2fs_checkpoint *)page_address(*cp_page);
J
Jaegeuk Kim 已提交
738

739
	crc_offset = le32_to_cpu((*cp_block)->checksum_offset);
740
	if (crc_offset > (blk_size - sizeof(__le32))) {
741 742 743 744
		f2fs_msg(sbi->sb, KERN_WARNING,
			"invalid crc_offset: %zu", crc_offset);
		return -EINVAL;
	}
J
Jaegeuk Kim 已提交
745

746
	crc = cur_cp_crc(*cp_block);
747 748 749 750
	if (!f2fs_crc_valid(sbi, crc, *cp_block, crc_offset)) {
		f2fs_msg(sbi->sb, KERN_WARNING, "invalid crc value");
		return -EINVAL;
	}
J
Jaegeuk Kim 已提交
751

752 753 754
	*version = cur_cp_version(*cp_block);
	return 0;
}
J
Jaegeuk Kim 已提交
755

756 757 758 759 760 761 762
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 已提交
763

764 765 766 767 768
	err = get_checkpoint_version(sbi, cp_addr, &cp_block,
					&cp_page_1, version);
	if (err)
		goto invalid_cp1;
	pre_version = *version;
J
Jaegeuk Kim 已提交
769

770 771 772 773
	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)
J
Jaegeuk Kim 已提交
774
		goto invalid_cp2;
775
	cur_version = *version;
J
Jaegeuk Kim 已提交
776 777 778 779 780 781 782 783 784 785 786 787 788

	if (cur_version == pre_version) {
		*version = cur_version;
		f2fs_put_page(cp_page_2, 1);
		return cp_page_1;
	}
invalid_cp2:
	f2fs_put_page(cp_page_2, 1);
invalid_cp1:
	f2fs_put_page(cp_page_1, 1);
	return NULL;
}

C
Chao Yu 已提交
789
int f2fs_get_valid_checkpoint(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
790 791 792 793 794 795 796
{
	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 已提交
797
	unsigned int cp_blks = 1 + __cp_payload(sbi);
C
Changman Lee 已提交
798 799
	block_t cp_blk_no;
	int i;
J
Jaegeuk Kim 已提交
800

801 802
	sbi->ckpt = f2fs_kzalloc(sbi, array_size(blk_size, cp_blks),
				 GFP_KERNEL);
J
Jaegeuk Kim 已提交
803 804 805 806 807 808 809 810 811 812
	if (!sbi->ckpt)
		return -ENOMEM;
	/*
	 * Finding out valid cp block involves read both
	 * sets( cp pack1 and cp pack 2)
	 */
	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 */
813 814
	cp_start_blk_no += ((unsigned long long)1) <<
				le32_to_cpu(fsb->log_blocks_per_seg);
J
Jaegeuk Kim 已提交
815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
	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 {
		goto fail_no_cp;
	}

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

833
	/* Sanity checking of checkpoint */
C
Chao Yu 已提交
834
	if (f2fs_sanity_check_ckpt(sbi))
835
		goto free_fail_no_cp;
836

837 838 839 840
	if (cur_page == cp1)
		sbi->cur_cp_pack = 1;
	else
		sbi->cur_cp_pack = 2;
841

C
Changman Lee 已提交
842 843 844 845 846 847 848 849 850 851 852
	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 已提交
853
		cur_page = f2fs_get_meta_page(sbi, cp_blk_no + i);
C
Changman Lee 已提交
854 855 856 857 858
		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 已提交
859 860 861 862
	f2fs_put_page(cp1, 1);
	f2fs_put_page(cp2, 1);
	return 0;

863 864 865
free_fail_no_cp:
	f2fs_put_page(cp1, 1);
	f2fs_put_page(cp2, 1);
J
Jaegeuk Kim 已提交
866 867 868 869 870
fail_no_cp:
	kfree(sbi->ckpt);
	return -EINVAL;
}

871
static void __add_dirty_inode(struct inode *inode, enum inode_type type)
J
Jaegeuk Kim 已提交
872
{
873
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
874
	int flag = (type == DIR_INODE) ? FI_DIRTY_DIR : FI_DIRTY_FILE;
J
Jaegeuk Kim 已提交
875

876
	if (is_inode_flag_set(inode, flag))
877
		return;
878

879
	set_inode_flag(inode, flag);
880 881 882
	if (!f2fs_is_volatile_file(inode))
		list_add_tail(&F2FS_I(inode)->dirty_list,
						&sbi->inode_list[type]);
C
Chao Yu 已提交
883
	stat_inc_dirty_inode(sbi, type);
884 885
}

886
static void __remove_dirty_inode(struct inode *inode, enum inode_type type)
C
Chao Yu 已提交
887
{
888
	int flag = (type == DIR_INODE) ? FI_DIRTY_DIR : FI_DIRTY_FILE;
C
Chao Yu 已提交
889

890
	if (get_dirty_pages(inode) || !is_inode_flag_set(inode, flag))
C
Chao Yu 已提交
891 892
		return;

893 894
	list_del_init(&F2FS_I(inode)->dirty_list);
	clear_inode_flag(inode, flag);
C
Chao Yu 已提交
895
	stat_dec_dirty_inode(F2FS_I_SB(inode), type);
C
Chao Yu 已提交
896 897
}

C
Chao Yu 已提交
898
void f2fs_update_dirty_page(struct inode *inode, struct page *page)
899
{
900
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
901
	enum inode_type type = S_ISDIR(inode->i_mode) ? DIR_INODE : FILE_INODE;
902

903 904
	if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
			!S_ISLNK(inode->i_mode))
J
Jaegeuk Kim 已提交
905
		return;
906

907 908
	spin_lock(&sbi->inode_lock[type]);
	if (type != FILE_INODE || test_opt(sbi, DATA_FLUSH))
909
		__add_dirty_inode(inode, type);
910
	inode_inc_dirty_pages(inode);
911 912
	spin_unlock(&sbi->inode_lock[type]);

913
	SetPagePrivate(page);
J
Jaegeuk Kim 已提交
914
	f2fs_trace_pid(page);
915 916
}

C
Chao Yu 已提交
917
void f2fs_remove_dirty_inode(struct inode *inode)
J
Jaegeuk Kim 已提交
918
{
919
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
920
	enum inode_type type = S_ISDIR(inode->i_mode) ? DIR_INODE : FILE_INODE;
J
Jaegeuk Kim 已提交
921

922 923
	if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
			!S_ISLNK(inode->i_mode))
J
Jaegeuk Kim 已提交
924 925
		return;

926 927 928
	if (type == FILE_INODE && !test_opt(sbi, DATA_FLUSH))
		return;

929 930 931
	spin_lock(&sbi->inode_lock[type]);
	__remove_dirty_inode(inode, type);
	spin_unlock(&sbi->inode_lock[type]);
932 933
}

C
Chao Yu 已提交
934
int f2fs_sync_dirty_inodes(struct f2fs_sb_info *sbi, enum inode_type type)
J
Jaegeuk Kim 已提交
935
{
936
	struct list_head *head;
J
Jaegeuk Kim 已提交
937
	struct inode *inode;
938
	struct f2fs_inode_info *fi;
939
	bool is_dir = (type == DIR_INODE);
J
Jaegeuk Kim 已提交
940
	unsigned long ino = 0;
941 942 943 944

	trace_f2fs_sync_dirty_inodes_enter(sbi->sb, is_dir,
				get_pages(sbi, is_dir ?
				F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA));
J
Jaegeuk Kim 已提交
945
retry:
946
	if (unlikely(f2fs_cp_error(sbi)))
C
Chao Yu 已提交
947
		return -EIO;
948

949
	spin_lock(&sbi->inode_lock[type]);
950

951
	head = &sbi->inode_list[type];
J
Jaegeuk Kim 已提交
952
	if (list_empty(head)) {
953
		spin_unlock(&sbi->inode_lock[type]);
954 955 956
		trace_f2fs_sync_dirty_inodes_exit(sbi->sb, is_dir,
				get_pages(sbi, is_dir ?
				F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA));
C
Chao Yu 已提交
957
		return 0;
J
Jaegeuk Kim 已提交
958
	}
959
	fi = list_first_entry(head, struct f2fs_inode_info, dirty_list);
960
	inode = igrab(&fi->vfs_inode);
961
	spin_unlock(&sbi->inode_lock[type]);
J
Jaegeuk Kim 已提交
962
	if (inode) {
J
Jaegeuk Kim 已提交
963 964
		unsigned long cur_ino = inode->i_ino;

C
Chao Yu 已提交
965 966 967
		if (is_dir)
			F2FS_I(inode)->cp_task = current;

968
		filemap_fdatawrite(inode->i_mapping);
C
Chao Yu 已提交
969 970 971 972

		if (is_dir)
			F2FS_I(inode)->cp_task = NULL;

J
Jaegeuk Kim 已提交
973
		iput(inode);
J
Jaegeuk Kim 已提交
974 975 976 977 978 979 980
		/* We need to give cpu to another writers. */
		if (ino == cur_ino) {
			congestion_wait(BLK_RW_ASYNC, HZ/50);
			cond_resched();
		} else {
			ino = cur_ino;
		}
J
Jaegeuk Kim 已提交
981 982 983 984 985
	} else {
		/*
		 * We should submit bio, since it exists several
		 * wribacking dentry pages in the freeing inode.
		 */
986
		f2fs_submit_merged_write(sbi, DATA);
987
		cond_resched();
J
Jaegeuk Kim 已提交
988 989 990 991
	}
	goto retry;
}

992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
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;
		}
1008
		fi = list_first_entry(head, struct f2fs_inode_info,
1009 1010 1011 1012
							gdirty_list);
		inode = igrab(&fi->vfs_inode);
		spin_unlock(&sbi->inode_lock[DIRTY_META]);
		if (inode) {
1013 1014 1015 1016
			sync_inode_metadata(inode, 0);

			/* it's on eviction */
			if (is_inode_flag_set(inode, FI_DIRTY_INODE))
C
Chao Yu 已提交
1017
				f2fs_update_inode_page(inode);
1018 1019
			iput(inode);
		}
C
Chao Yu 已提交
1020
	}
1021 1022 1023
	return 0;
}

1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
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);
}

J
Jaegeuk Kim 已提交
1037
/*
J
Jaegeuk Kim 已提交
1038 1039
 * Freeze all the FS-operations for checkpoint.
 */
1040
static int block_operations(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
1041 1042 1043 1044 1045 1046
{
	struct writeback_control wbc = {
		.sync_mode = WB_SYNC_ALL,
		.nr_to_write = LONG_MAX,
		.for_reclaim = 0,
	};
1047
	struct blk_plug plug;
1048
	int err = 0;
1049 1050 1051

	blk_start_plug(&plug);

1052
retry_flush_dents:
1053
	f2fs_lock_all(sbi);
J
Jaegeuk Kim 已提交
1054 1055
	/* write all the dirty dentry pages */
	if (get_pages(sbi, F2FS_DIRTY_DENTS)) {
1056
		f2fs_unlock_all(sbi);
C
Chao Yu 已提交
1057
		err = f2fs_sync_dirty_inodes(sbi, DIR_INODE);
C
Chao Yu 已提交
1058
		if (err)
1059
			goto out;
1060
		cond_resched();
1061
		goto retry_flush_dents;
J
Jaegeuk Kim 已提交
1062 1063
	}

1064 1065 1066 1067 1068 1069
	/*
	 * 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);

1070
	if (get_pages(sbi, F2FS_DIRTY_IMETA)) {
1071
		up_write(&sbi->node_change);
1072 1073 1074 1075
		f2fs_unlock_all(sbi);
		err = f2fs_sync_inode_meta(sbi);
		if (err)
			goto out;
1076
		cond_resched();
1077 1078 1079
		goto retry_flush_dents;
	}

1080
retry_flush_nodes:
1081
	down_write(&sbi->node_write);
J
Jaegeuk Kim 已提交
1082 1083

	if (get_pages(sbi, F2FS_DIRTY_NODES)) {
1084
		up_write(&sbi->node_write);
1085
		atomic_inc(&sbi->wb_sync_req[NODE]);
C
Chao Yu 已提交
1086
		err = f2fs_sync_node_pages(sbi, &wbc, false, FS_CP_NODE_IO);
1087
		atomic_dec(&sbi->wb_sync_req[NODE]);
C
Chao Yu 已提交
1088
		if (err) {
1089
			up_write(&sbi->node_change);
1090 1091 1092
			f2fs_unlock_all(sbi);
			goto out;
		}
1093
		cond_resched();
1094
		goto retry_flush_nodes;
J
Jaegeuk Kim 已提交
1095
	}
1096 1097 1098 1099 1100 1101 1102

	/*
	 * 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);
1103
out:
1104
	blk_finish_plug(&plug);
1105
	return err;
J
Jaegeuk Kim 已提交
1106 1107 1108 1109
}

static void unblock_operations(struct f2fs_sb_info *sbi)
{
1110
	up_write(&sbi->node_write);
1111
	f2fs_unlock_all(sbi);
J
Jaegeuk Kim 已提交
1112 1113
}

1114 1115 1116 1117 1118 1119 1120
static void wait_on_all_pages_writeback(struct f2fs_sb_info *sbi)
{
	DEFINE_WAIT(wait);

	for (;;) {
		prepare_to_wait(&sbi->cp_wait, &wait, TASK_UNINTERRUPTIBLE);

1121
		if (!get_pages(sbi, F2FS_WB_CP_DATA))
1122 1123
			break;

1124 1125 1126
		if (unlikely(f2fs_cp_error(sbi)))
			break;

1127
		io_schedule_timeout(5*HZ);
1128 1129 1130 1131
	}
	finish_wait(&sbi->cp_wait, &wait);
}

1132 1133 1134 1135
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);
1136
	unsigned long flags;
1137

1138
	spin_lock_irqsave(&sbi->cp_lock, flags);
1139

1140
	if ((cpc->reason & CP_UMOUNT) &&
1141
			le32_to_cpu(ckpt->cp_pack_total_block_count) >
1142 1143 1144
			sbi->blocks_per_seg - NM_I(sbi)->nat_bits_blocks)
		disable_nat_bits(sbi, false);

1145 1146
	if (cpc->reason & CP_TRIMMED)
		__set_ckpt_flags(ckpt, CP_TRIMMED_FLAG);
C
Chao Yu 已提交
1147 1148
	else
		__clear_ckpt_flags(ckpt, CP_TRIMMED_FLAG);
1149

1150
	if (cpc->reason & CP_UMOUNT)
1151 1152 1153 1154
		__set_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
	else
		__clear_ckpt_flags(ckpt, CP_UMOUNT_FLAG);

1155
	if (cpc->reason & CP_FASTBOOT)
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
		__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);

	if (is_sbi_flag_set(sbi, SBI_NEED_FSCK))
		__set_ckpt_flags(ckpt, CP_FSCK_FLAG);

	/* set this flag to activate crc|cp_ver for recovery */
	__set_ckpt_flags(ckpt, CP_CRC_RECOVERY_FLAG);
1170
	__clear_ckpt_flags(ckpt, CP_NOCRC_RECOVERY_FLAG);
1171

1172
	spin_unlock_irqrestore(&sbi->cp_lock, flags);
1173 1174
}

1175 1176 1177 1178 1179 1180 1181 1182 1183
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 已提交
1184 1185
	 * some extra time. Therefore, f2fs_update_meta_pages and
	 * f2fs_sync_meta_pages are combined in this function.
1186
	 */
C
Chao Yu 已提交
1187
	struct page *page = f2fs_grab_meta_page(sbi, blk_addr);
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
	int err;

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

	f2fs_wait_on_page_writeback(page, META, true);
	f2fs_bug_on(sbi, PageWriteback(page));
	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);
1200 1201 1202 1203
	if (unlikely(err && f2fs_cp_error(sbi))) {
		f2fs_put_page(page, 1);
		return;
	}
1204

1205
	f2fs_bug_on(sbi, err);
1206 1207 1208 1209 1210 1211
	f2fs_put_page(page, 0);

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

C
Chao Yu 已提交
1212
static int do_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc)
J
Jaegeuk Kim 已提交
1213 1214
{
	struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1215
	struct f2fs_nm_info *nm_i = NM_I(sbi);
1216
	unsigned long orphan_num = sbi->im[ORPHAN_INO].ino_num, flags;
J
Jaegeuk Kim 已提交
1217 1218
	block_t start_blk;
	unsigned int data_sum_blocks, orphan_blocks;
J
Jaegeuk Kim 已提交
1219
	__u32 crc32 = 0;
J
Jaegeuk Kim 已提交
1220
	int i;
W
Wanpeng Li 已提交
1221
	int cp_payload_blks = __cp_payload(sbi);
1222 1223 1224
	struct super_block *sb = sbi->sb;
	struct curseg_info *seg_i = CURSEG_I(sbi, CURSEG_HOT_NODE);
	u64 kbytes_written;
1225
	int err;
J
Jaegeuk Kim 已提交
1226 1227

	/* Flush all the NAT/SIT pages */
1228
	while (get_pages(sbi, F2FS_DIRTY_META)) {
C
Chao Yu 已提交
1229
		f2fs_sync_meta_pages(sbi, META, LONG_MAX, FS_CP_META_IO);
1230
		if (unlikely(f2fs_cp_error(sbi)))
1231
			break;
1232
	}
J
Jaegeuk Kim 已提交
1233 1234 1235 1236 1237

	/*
	 * modify checkpoint
	 * version number is already updated
	 */
C
Chao Yu 已提交
1238
	ckpt->elapsed_time = cpu_to_le64(get_mtime(sbi, true));
J
Jaegeuk Kim 已提交
1239
	ckpt->free_segment_count = cpu_to_le32(free_segments(sbi));
C
Chao Yu 已提交
1240
	for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
J
Jaegeuk Kim 已提交
1241 1242 1243 1244 1245 1246 1247
		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 已提交
1248
	for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) {
J
Jaegeuk Kim 已提交
1249 1250 1251 1252 1253 1254 1255 1256 1257
		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);
	}

	/* 2 cp  + n data seg summary + orphan inode blocks */
C
Chao Yu 已提交
1258
	data_sum_blocks = f2fs_npages_for_summary_flush(sbi, false);
1259
	spin_lock_irqsave(&sbi->cp_lock, flags);
C
Chao Yu 已提交
1260
	if (data_sum_blocks < NR_CURSEG_DATA_TYPE)
1261
		__set_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
J
Jaegeuk Kim 已提交
1262
	else
1263
		__clear_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
1264
	spin_unlock_irqrestore(&sbi->cp_lock, flags);
J
Jaegeuk Kim 已提交
1265

1266
	orphan_blocks = GET_ORPHAN_BLOCKS(orphan_num);
C
Changman Lee 已提交
1267 1268
	ckpt->cp_pack_start_sum = cpu_to_le32(1 + cp_payload_blks +
			orphan_blocks);
J
Jaegeuk Kim 已提交
1269

1270
	if (__remain_node_summaries(cpc->reason))
C
Chao Yu 已提交
1271
		ckpt->cp_pack_total_block_count = cpu_to_le32(F2FS_CP_PACKS+
C
Changman Lee 已提交
1272 1273
				cp_payload_blks + data_sum_blocks +
				orphan_blocks + NR_CURSEG_NODE_TYPE);
1274
	else
C
Chao Yu 已提交
1275
		ckpt->cp_pack_total_block_count = cpu_to_le32(F2FS_CP_PACKS +
C
Changman Lee 已提交
1276 1277
				cp_payload_blks + data_sum_blocks +
				orphan_blocks);
1278

1279 1280
	/* update ckpt flag for checkpoint */
	update_ckpt_flags(sbi, cpc);
1281

J
Jaegeuk Kim 已提交
1282 1283 1284 1285
	/* update SIT/NAT bitmap */
	get_sit_bitmap(sbi, __bitmap_ptr(sbi, SIT_BITMAP));
	get_nat_bitmap(sbi, __bitmap_ptr(sbi, NAT_BITMAP));

K
Keith Mok 已提交
1286
	crc32 = f2fs_crc32(sbi, ckpt, le32_to_cpu(ckpt->checksum_offset));
J
Jaegeuk Kim 已提交
1287 1288
	*((__le32 *)((unsigned char *)ckpt +
				le32_to_cpu(ckpt->checksum_offset)))
J
Jaegeuk Kim 已提交
1289 1290
				= cpu_to_le32(crc32);

1291
	start_blk = __start_cp_next_addr(sbi);
J
Jaegeuk Kim 已提交
1292

1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
	/* 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 已提交
1303
			f2fs_update_meta_page(sbi, nm_i->nat_bits +
1304 1305 1306 1307
					(i << F2FS_BLKSIZE_BITS), blk + i);

		/* Flush all the NAT BITS pages */
		while (get_pages(sbi, F2FS_DIRTY_META)) {
C
Chao Yu 已提交
1308 1309
			f2fs_sync_meta_pages(sbi, META, LONG_MAX,
							FS_CP_META_IO);
1310
			if (unlikely(f2fs_cp_error(sbi)))
1311
				break;
1312 1313 1314
		}
	}

J
Jaegeuk Kim 已提交
1315
	/* write out checkpoint buffer at block 0 */
C
Chao Yu 已提交
1316
	f2fs_update_meta_page(sbi, ckpt, start_blk++);
C
Chao Yu 已提交
1317 1318

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

1322
	if (orphan_num) {
J
Jaegeuk Kim 已提交
1323 1324 1325 1326
		write_orphan_inodes(sbi, start_blk);
		start_blk += orphan_blocks;
	}

C
Chao Yu 已提交
1327
	f2fs_write_data_summaries(sbi, start_blk);
J
Jaegeuk Kim 已提交
1328
	start_blk += data_sum_blocks;
1329 1330 1331 1332 1333 1334

	/* 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);

1335
	seg_i->journal->info.kbytes_written = cpu_to_le64(kbytes_written);
1336

1337
	if (__remain_node_summaries(cpc->reason)) {
C
Chao Yu 已提交
1338
		f2fs_write_node_summaries(sbi, start_blk);
J
Jaegeuk Kim 已提交
1339 1340 1341
		start_blk += NR_CURSEG_NODE_TYPE;
	}

1342 1343 1344
	/* 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 已提交
1345

1346
	/* Here, we have one bio having CP pack except cp pack 2 page */
C
Chao Yu 已提交
1347
	f2fs_sync_meta_pages(sbi, META, LONG_MAX, FS_CP_META_IO);
1348 1349

	/* wait for previous submitted meta pages writeback */
1350
	wait_on_all_pages_writeback(sbi);
J
Jaegeuk Kim 已提交
1351

1352 1353 1354 1355
	/* flush all device cache */
	err = f2fs_flush_device_cache(sbi);
	if (err)
		return err;
J
Jaegeuk Kim 已提交
1356

1357 1358
	/* barrier and flush checkpoint cp pack 2 page if it can */
	commit_checkpoint(sbi, ckpt, start_blk);
1359 1360
	wait_on_all_pages_writeback(sbi);

C
Chao Yu 已提交
1361
	f2fs_release_ino_entry(sbi, false);
1362

1363
	clear_sbi_flag(sbi, SBI_IS_DIRTY);
1364
	clear_sbi_flag(sbi, SBI_NEED_CP);
1365
	__set_cp_next_pack(sbi);
C
Chao Yu 已提交
1366

1367 1368 1369 1370 1371 1372 1373 1374 1375 1376
	/*
	 * 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));

1377
	return unlikely(f2fs_cp_error(sbi)) ? -EIO : 0;
J
Jaegeuk Kim 已提交
1378 1379
}

J
Jaegeuk Kim 已提交
1380
/*
A
arter97 已提交
1381
 * We guarantee that this checkpoint procedure will not fail.
J
Jaegeuk Kim 已提交
1382
 */
C
Chao Yu 已提交
1383
int f2fs_write_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc)
J
Jaegeuk Kim 已提交
1384 1385 1386
{
	struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
	unsigned long long ckpt_ver;
C
Chao Yu 已提交
1387
	int err = 0;
J
Jaegeuk Kim 已提交
1388

1389
	mutex_lock(&sbi->cp_mutex);
J
Jaegeuk Kim 已提交
1390

1391
	if (!is_sbi_flag_set(sbi, SBI_IS_DIRTY) &&
1392 1393
		((cpc->reason & CP_FASTBOOT) || (cpc->reason & CP_SYNC) ||
		((cpc->reason & CP_DISCARD) && !sbi->discard_blks)))
J
Jaegeuk Kim 已提交
1394
		goto out;
C
Chao Yu 已提交
1395 1396
	if (unlikely(f2fs_cp_error(sbi))) {
		err = -EIO;
1397
		goto out;
C
Chao Yu 已提交
1398 1399 1400
	}
	if (f2fs_readonly(sbi->sb)) {
		err = -EROFS;
1401
		goto out;
C
Chao Yu 已提交
1402
	}
W
Wanpeng Li 已提交
1403 1404 1405

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

C
Chao Yu 已提交
1406 1407
	err = block_operations(sbi);
	if (err)
1408
		goto out;
J
Jaegeuk Kim 已提交
1409

1410
	trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "finish block_ops");
1411

1412
	f2fs_flush_merged_writes(sbi);
J
Jaegeuk Kim 已提交
1413

1414
	/* this is the case of multiple fstrims without any changes */
1415
	if (cpc->reason & CP_DISCARD) {
C
Chao Yu 已提交
1416
		if (!f2fs_exist_trim_candidates(sbi, cpc)) {
1417 1418 1419 1420
			unblock_operations(sbi);
			goto out;
		}

1421 1422 1423
		if (NM_I(sbi)->dirty_nat_cnt == 0 &&
				SIT_I(sbi)->dirty_sentries == 0 &&
				prefree_segments(sbi) == 0) {
C
Chao Yu 已提交
1424 1425
			f2fs_flush_sit_entries(sbi, cpc);
			f2fs_clear_prefree_segments(sbi, cpc);
1426 1427 1428
			unblock_operations(sbi);
			goto out;
		}
1429 1430
	}

J
Jaegeuk Kim 已提交
1431 1432 1433 1434 1435
	/*
	 * update checkpoint pack index
	 * Increase the version number so that
	 * SIT entries and seg summaries are written at correct place
	 */
1436
	ckpt_ver = cur_cp_version(ckpt);
J
Jaegeuk Kim 已提交
1437 1438 1439
	ckpt->checkpoint_ver = cpu_to_le64(++ckpt_ver);

	/* write cached NAT/SIT entries to NAT/SIT area */
C
Chao Yu 已提交
1440 1441
	f2fs_flush_nat_entries(sbi, cpc);
	f2fs_flush_sit_entries(sbi, cpc);
J
Jaegeuk Kim 已提交
1442 1443

	/* unlock all the fs_lock[] in do_checkpoint() */
C
Chao Yu 已提交
1444
	err = do_checkpoint(sbi, cpc);
1445
	if (err)
C
Chao Yu 已提交
1446
		f2fs_release_discard_addrs(sbi);
1447
	else
C
Chao Yu 已提交
1448
		f2fs_clear_prefree_segments(sbi, cpc);
C
Chao Yu 已提交
1449

J
Jaegeuk Kim 已提交
1450
	unblock_operations(sbi);
1451
	stat_inc_cp_count(sbi->stat_info);
1452

1453
	if (cpc->reason & CP_RECOVERY)
1454 1455
		f2fs_msg(sbi->sb, KERN_NOTICE,
			"checkpoint: version = %llx", ckpt_ver);
1456 1457

	/* do checkpoint periodically */
1458
	f2fs_update_time(sbi, CP_TIME);
1459
	trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "finish checkpoint");
J
Jaegeuk Kim 已提交
1460 1461
out:
	mutex_unlock(&sbi->cp_mutex);
C
Chao Yu 已提交
1462
	return err;
J
Jaegeuk Kim 已提交
1463 1464
}

C
Chao Yu 已提交
1465
void f2fs_init_ino_entry_info(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
1466
{
J
Jaegeuk Kim 已提交
1467 1468 1469
	int i;

	for (i = 0; i < MAX_INO_ENTRY; i++) {
1470 1471 1472 1473 1474 1475
		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 已提交
1476 1477
	}

C
Chao Yu 已提交
1478
	sbi->max_orphans = (sbi->blocks_per_seg - F2FS_CP_PACKS -
1479 1480
			NR_CURSEG_TYPE - __cp_payload(sbi)) *
				F2FS_ORPHANS_PER_BLOCK;
J
Jaegeuk Kim 已提交
1481 1482
}

C
Chao Yu 已提交
1483
int __init f2fs_create_checkpoint_caches(void)
J
Jaegeuk Kim 已提交
1484
{
J
Jaegeuk Kim 已提交
1485 1486 1487
	ino_entry_slab = f2fs_kmem_cache_create("f2fs_ino_entry",
			sizeof(struct ino_entry));
	if (!ino_entry_slab)
J
Jaegeuk Kim 已提交
1488
		return -ENOMEM;
C
Chao Yu 已提交
1489
	f2fs_inode_entry_slab = f2fs_kmem_cache_create("f2fs_inode_entry",
1490
			sizeof(struct inode_entry));
C
Chao Yu 已提交
1491
	if (!f2fs_inode_entry_slab) {
J
Jaegeuk Kim 已提交
1492
		kmem_cache_destroy(ino_entry_slab);
J
Jaegeuk Kim 已提交
1493 1494 1495 1496 1497
		return -ENOMEM;
	}
	return 0;
}

C
Chao Yu 已提交
1498
void f2fs_destroy_checkpoint_caches(void)
J
Jaegeuk Kim 已提交
1499
{
J
Jaegeuk Kim 已提交
1500
	kmem_cache_destroy(ino_entry_slab);
C
Chao Yu 已提交
1501
	kmem_cache_destroy(f2fs_inode_entry_slab);
J
Jaegeuk Kim 已提交
1502
}