f2fs: add a tracepoint for f2fs_read_data_page
[deliverable/linux.git] / fs / f2fs / segment.c
CommitLineData
0a8165d7 1/*
351df4b2
JK
2 * fs/f2fs/segment.c
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/fs.h>
12#include <linux/f2fs_fs.h>
13#include <linux/bio.h>
14#include <linux/blkdev.h>
690e4a3e 15#include <linux/prefetch.h>
6b4afdd7 16#include <linux/kthread.h>
351df4b2 17#include <linux/vmalloc.h>
74de593a 18#include <linux/swap.h>
351df4b2
JK
19
20#include "f2fs.h"
21#include "segment.h"
22#include "node.h"
6ec178da 23#include <trace/events/f2fs.h>
351df4b2 24
9a7f143a
CL
25#define __reverse_ffz(x) __reverse_ffs(~(x))
26
7fd9e544 27static struct kmem_cache *discard_entry_slab;
6b4afdd7 28static struct kmem_cache *flush_cmd_slab;
7fd9e544 29
9a7f143a
CL
30/*
31 * __reverse_ffs is copied from include/asm-generic/bitops/__ffs.h since
32 * MSB and LSB are reversed in a byte by f2fs_set_bit.
33 */
34static inline unsigned long __reverse_ffs(unsigned long word)
35{
36 int num = 0;
37
38#if BITS_PER_LONG == 64
39 if ((word & 0xffffffff) == 0) {
40 num += 32;
41 word >>= 32;
42 }
43#endif
44 if ((word & 0xffff) == 0) {
45 num += 16;
46 word >>= 16;
47 }
48 if ((word & 0xff) == 0) {
49 num += 8;
50 word >>= 8;
51 }
52 if ((word & 0xf0) == 0)
53 num += 4;
54 else
55 word >>= 4;
56 if ((word & 0xc) == 0)
57 num += 2;
58 else
59 word >>= 2;
60 if ((word & 0x2) == 0)
61 num += 1;
62 return num;
63}
64
65/*
66 * __find_rev_next(_zero)_bit is copied from lib/find_next_bit.c becasue
67 * f2fs_set_bit makes MSB and LSB reversed in a byte.
68 * Example:
69 * LSB <--> MSB
70 * f2fs_set_bit(0, bitmap) => 0000 0001
71 * f2fs_set_bit(7, bitmap) => 1000 0000
72 */
73static unsigned long __find_rev_next_bit(const unsigned long *addr,
74 unsigned long size, unsigned long offset)
75{
76 const unsigned long *p = addr + BIT_WORD(offset);
77 unsigned long result = offset & ~(BITS_PER_LONG - 1);
78 unsigned long tmp;
79 unsigned long mask, submask;
80 unsigned long quot, rest;
81
82 if (offset >= size)
83 return size;
84
85 size -= result;
86 offset %= BITS_PER_LONG;
87 if (!offset)
88 goto aligned;
89
90 tmp = *(p++);
91 quot = (offset >> 3) << 3;
92 rest = offset & 0x7;
93 mask = ~0UL << quot;
94 submask = (unsigned char)(0xff << rest) >> rest;
95 submask <<= quot;
96 mask &= submask;
97 tmp &= mask;
98 if (size < BITS_PER_LONG)
99 goto found_first;
100 if (tmp)
101 goto found_middle;
102
103 size -= BITS_PER_LONG;
104 result += BITS_PER_LONG;
105aligned:
106 while (size & ~(BITS_PER_LONG-1)) {
107 tmp = *(p++);
108 if (tmp)
109 goto found_middle;
110 result += BITS_PER_LONG;
111 size -= BITS_PER_LONG;
112 }
113 if (!size)
114 return result;
115 tmp = *p;
116found_first:
117 tmp &= (~0UL >> (BITS_PER_LONG - size));
118 if (tmp == 0UL) /* Are any bits set? */
119 return result + size; /* Nope. */
120found_middle:
121 return result + __reverse_ffs(tmp);
122}
123
124static unsigned long __find_rev_next_zero_bit(const unsigned long *addr,
125 unsigned long size, unsigned long offset)
126{
127 const unsigned long *p = addr + BIT_WORD(offset);
128 unsigned long result = offset & ~(BITS_PER_LONG - 1);
129 unsigned long tmp;
130 unsigned long mask, submask;
131 unsigned long quot, rest;
132
133 if (offset >= size)
134 return size;
135
136 size -= result;
137 offset %= BITS_PER_LONG;
138 if (!offset)
139 goto aligned;
140
141 tmp = *(p++);
142 quot = (offset >> 3) << 3;
143 rest = offset & 0x7;
144 mask = ~(~0UL << quot);
145 submask = (unsigned char)~((unsigned char)(0xff << rest) >> rest);
146 submask <<= quot;
147 mask += submask;
148 tmp |= mask;
149 if (size < BITS_PER_LONG)
150 goto found_first;
151 if (~tmp)
152 goto found_middle;
153
154 size -= BITS_PER_LONG;
155 result += BITS_PER_LONG;
156aligned:
157 while (size & ~(BITS_PER_LONG - 1)) {
158 tmp = *(p++);
159 if (~tmp)
160 goto found_middle;
161 result += BITS_PER_LONG;
162 size -= BITS_PER_LONG;
163 }
164 if (!size)
165 return result;
166 tmp = *p;
167
168found_first:
169 tmp |= ~0UL << size;
170 if (tmp == ~0UL) /* Are any bits zero? */
171 return result + size; /* Nope. */
172found_middle:
173 return result + __reverse_ffz(tmp);
174}
175
0a8165d7 176/*
351df4b2
JK
177 * This function balances dirty node and dentry pages.
178 * In addition, it controls garbage collection.
179 */
180void f2fs_balance_fs(struct f2fs_sb_info *sbi)
181{
351df4b2 182 /*
029cd28c
JK
183 * We should do GC or end up with checkpoint, if there are so many dirty
184 * dir/node pages without enough free segments.
351df4b2 185 */
43727527 186 if (has_not_enough_free_secs(sbi, 0)) {
351df4b2 187 mutex_lock(&sbi->gc_mutex);
408e9375 188 f2fs_gc(sbi);
351df4b2
JK
189 }
190}
191
4660f9c0
JK
192void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi)
193{
194 /* check the # of cached NAT entries and prefree segments */
195 if (try_to_free_nats(sbi, NAT_ENTRY_PER_BLOCK) ||
196 excess_prefree_segs(sbi))
197 f2fs_sync_fs(sbi->sb, true);
198}
199
2163d198 200static int issue_flush_thread(void *data)
6b4afdd7
JK
201{
202 struct f2fs_sb_info *sbi = data;
a688b9d9
GZ
203 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
204 wait_queue_head_t *q = &fcc->flush_wait_queue;
6b4afdd7
JK
205repeat:
206 if (kthread_should_stop())
207 return 0;
208
a688b9d9
GZ
209 spin_lock(&fcc->issue_lock);
210 if (fcc->issue_list) {
211 fcc->dispatch_list = fcc->issue_list;
212 fcc->issue_list = fcc->issue_tail = NULL;
6b4afdd7 213 }
a688b9d9 214 spin_unlock(&fcc->issue_lock);
6b4afdd7 215
a688b9d9 216 if (fcc->dispatch_list) {
6b4afdd7
JK
217 struct bio *bio = bio_alloc(GFP_NOIO, 0);
218 struct flush_cmd *cmd, *next;
219 int ret;
220
221 bio->bi_bdev = sbi->sb->s_bdev;
222 ret = submit_bio_wait(WRITE_FLUSH, bio);
223
a688b9d9 224 for (cmd = fcc->dispatch_list; cmd; cmd = next) {
6b4afdd7
JK
225 cmd->ret = ret;
226 next = cmd->next;
227 complete(&cmd->wait);
228 }
a4ed23f2 229 bio_put(bio);
a688b9d9 230 fcc->dispatch_list = NULL;
6b4afdd7
JK
231 }
232
a688b9d9
GZ
233 wait_event_interruptible(*q,
234 kthread_should_stop() || fcc->issue_list);
6b4afdd7
JK
235 goto repeat;
236}
237
238int f2fs_issue_flush(struct f2fs_sb_info *sbi)
239{
a688b9d9 240 struct flush_cmd_control *fcc = SM_I(sbi)->cmd_control_info;
6b4afdd7
JK
241 struct flush_cmd *cmd;
242 int ret;
243
244 if (!test_opt(sbi, FLUSH_MERGE))
245 return blkdev_issue_flush(sbi->sb->s_bdev, GFP_KERNEL, NULL);
246
197d4647 247 cmd = f2fs_kmem_cache_alloc(flush_cmd_slab, GFP_ATOMIC | __GFP_ZERO);
6b4afdd7
JK
248 init_completion(&cmd->wait);
249
a688b9d9
GZ
250 spin_lock(&fcc->issue_lock);
251 if (fcc->issue_list)
252 fcc->issue_tail->next = cmd;
6b4afdd7 253 else
a688b9d9
GZ
254 fcc->issue_list = cmd;
255 fcc->issue_tail = cmd;
256 spin_unlock(&fcc->issue_lock);
6b4afdd7 257
a688b9d9
GZ
258 if (!fcc->dispatch_list)
259 wake_up(&fcc->flush_wait_queue);
6b4afdd7
JK
260
261 wait_for_completion(&cmd->wait);
262 ret = cmd->ret;
263 kmem_cache_free(flush_cmd_slab, cmd);
264 return ret;
265}
266
2163d198
GZ
267int create_flush_cmd_control(struct f2fs_sb_info *sbi)
268{
269 dev_t dev = sbi->sb->s_bdev->bd_dev;
270 struct flush_cmd_control *fcc;
271 int err = 0;
272
273 fcc = kzalloc(sizeof(struct flush_cmd_control), GFP_KERNEL);
274 if (!fcc)
275 return -ENOMEM;
276 spin_lock_init(&fcc->issue_lock);
277 init_waitqueue_head(&fcc->flush_wait_queue);
278 fcc->f2fs_issue_flush = kthread_run(issue_flush_thread, sbi,
279 "f2fs_flush-%u:%u", MAJOR(dev), MINOR(dev));
280 if (IS_ERR(fcc->f2fs_issue_flush)) {
281 err = PTR_ERR(fcc->f2fs_issue_flush);
282 kfree(fcc);
283 return err;
284 }
285 sbi->sm_info->cmd_control_info = fcc;
286
287 return err;
288}
289
290void destroy_flush_cmd_control(struct f2fs_sb_info *sbi)
291{
292 struct flush_cmd_control *fcc =
293 sbi->sm_info->cmd_control_info;
294
295 if (fcc && fcc->f2fs_issue_flush)
296 kthread_stop(fcc->f2fs_issue_flush);
297 kfree(fcc);
298 sbi->sm_info->cmd_control_info = NULL;
299}
300
351df4b2
JK
301static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
302 enum dirty_type dirty_type)
303{
304 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
305
306 /* need not be added */
307 if (IS_CURSEG(sbi, segno))
308 return;
309
310 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[dirty_type]))
311 dirty_i->nr_dirty[dirty_type]++;
312
313 if (dirty_type == DIRTY) {
314 struct seg_entry *sentry = get_seg_entry(sbi, segno);
4625d6aa 315 enum dirty_type t = sentry->type;
b2f2c390 316
4625d6aa
CL
317 if (!test_and_set_bit(segno, dirty_i->dirty_segmap[t]))
318 dirty_i->nr_dirty[t]++;
351df4b2
JK
319 }
320}
321
322static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
323 enum dirty_type dirty_type)
324{
325 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
326
327 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[dirty_type]))
328 dirty_i->nr_dirty[dirty_type]--;
329
330 if (dirty_type == DIRTY) {
4625d6aa
CL
331 struct seg_entry *sentry = get_seg_entry(sbi, segno);
332 enum dirty_type t = sentry->type;
333
334 if (test_and_clear_bit(segno, dirty_i->dirty_segmap[t]))
335 dirty_i->nr_dirty[t]--;
b2f2c390 336
5ec4e49f
JK
337 if (get_valid_blocks(sbi, segno, sbi->segs_per_sec) == 0)
338 clear_bit(GET_SECNO(sbi, segno),
339 dirty_i->victim_secmap);
351df4b2
JK
340 }
341}
342
0a8165d7 343/*
351df4b2
JK
344 * Should not occur error such as -ENOMEM.
345 * Adding dirty entry into seglist is not critical operation.
346 * If a given segment is one of current working segments, it won't be added.
347 */
8d8451af 348static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno)
351df4b2
JK
349{
350 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
351 unsigned short valid_blocks;
352
353 if (segno == NULL_SEGNO || IS_CURSEG(sbi, segno))
354 return;
355
356 mutex_lock(&dirty_i->seglist_lock);
357
358 valid_blocks = get_valid_blocks(sbi, segno, 0);
359
360 if (valid_blocks == 0) {
361 __locate_dirty_segment(sbi, segno, PRE);
362 __remove_dirty_segment(sbi, segno, DIRTY);
363 } else if (valid_blocks < sbi->blocks_per_seg) {
364 __locate_dirty_segment(sbi, segno, DIRTY);
365 } else {
366 /* Recovery routine with SSR needs this */
367 __remove_dirty_segment(sbi, segno, DIRTY);
368 }
369
370 mutex_unlock(&dirty_i->seglist_lock);
351df4b2
JK
371}
372
1e87a78d 373static int f2fs_issue_discard(struct f2fs_sb_info *sbi,
37208879
JK
374 block_t blkstart, block_t blklen)
375{
f9a4e6df
JK
376 sector_t start = SECTOR_FROM_BLOCK(sbi, blkstart);
377 sector_t len = SECTOR_FROM_BLOCK(sbi, blklen);
1661d07c 378 trace_f2fs_issue_discard(sbi->sb, blkstart, blklen);
1e87a78d
JK
379 return blkdev_issue_discard(sbi->sb->s_bdev, start, len, GFP_NOFS, 0);
380}
381
382void discard_next_dnode(struct f2fs_sb_info *sbi)
383{
384 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_WARM_NODE);
385 block_t blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
386
387 if (f2fs_issue_discard(sbi, blkaddr, 1)) {
388 struct page *page = grab_meta_page(sbi, blkaddr);
389 /* zero-filled page */
390 set_page_dirty(page);
391 f2fs_put_page(page, 1);
392 }
37208879
JK
393}
394
b2955550
JK
395static void add_discard_addrs(struct f2fs_sb_info *sbi,
396 unsigned int segno, struct seg_entry *se)
397{
398 struct list_head *head = &SM_I(sbi)->discard_list;
399 struct discard_entry *new;
400 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
401 int max_blocks = sbi->blocks_per_seg;
402 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
403 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
404 unsigned long dmap[entries];
405 unsigned int start = 0, end = -1;
406 int i;
407
408 if (!test_opt(sbi, DISCARD))
409 return;
410
411 /* zero block will be discarded through the prefree list */
412 if (!se->valid_blocks || se->valid_blocks == max_blocks)
413 return;
414
415 /* SIT_VBLOCK_MAP_SIZE should be multiple of sizeof(unsigned long) */
416 for (i = 0; i < entries; i++)
417 dmap[i] = (cur_map[i] ^ ckpt_map[i]) & ckpt_map[i];
418
419 while (SM_I(sbi)->nr_discards <= SM_I(sbi)->max_discards) {
420 start = __find_rev_next_bit(dmap, max_blocks, end + 1);
421 if (start >= max_blocks)
422 break;
423
424 end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
425
426 new = f2fs_kmem_cache_alloc(discard_entry_slab, GFP_NOFS);
427 INIT_LIST_HEAD(&new->list);
428 new->blkaddr = START_BLOCK(sbi, segno) + start;
429 new->len = end - start;
430
431 list_add_tail(&new->list, head);
432 SM_I(sbi)->nr_discards += end - start;
433 }
434}
435
0a8165d7 436/*
351df4b2
JK
437 * Should call clear_prefree_segments after checkpoint is done.
438 */
439static void set_prefree_as_free_segments(struct f2fs_sb_info *sbi)
440{
441 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
81fb5e87 442 unsigned int segno = -1;
351df4b2
JK
443 unsigned int total_segs = TOTAL_SEGS(sbi);
444
445 mutex_lock(&dirty_i->seglist_lock);
446 while (1) {
447 segno = find_next_bit(dirty_i->dirty_segmap[PRE], total_segs,
81fb5e87 448 segno + 1);
351df4b2
JK
449 if (segno >= total_segs)
450 break;
451 __set_test_and_free(sbi, segno);
351df4b2
JK
452 }
453 mutex_unlock(&dirty_i->seglist_lock);
454}
455
456void clear_prefree_segments(struct f2fs_sb_info *sbi)
457{
b2955550 458 struct list_head *head = &(SM_I(sbi)->discard_list);
2d7b822a 459 struct discard_entry *entry, *this;
351df4b2 460 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
29e59c14 461 unsigned long *prefree_map = dirty_i->dirty_segmap[PRE];
351df4b2 462 unsigned int total_segs = TOTAL_SEGS(sbi);
29e59c14 463 unsigned int start = 0, end = -1;
351df4b2
JK
464
465 mutex_lock(&dirty_i->seglist_lock);
29e59c14 466
351df4b2 467 while (1) {
29e59c14
CL
468 int i;
469 start = find_next_bit(prefree_map, total_segs, end + 1);
470 if (start >= total_segs)
351df4b2 471 break;
29e59c14
CL
472 end = find_next_zero_bit(prefree_map, total_segs, start + 1);
473
474 for (i = start; i < end; i++)
475 clear_bit(i, prefree_map);
476
477 dirty_i->nr_dirty[PRE] -= end - start;
478
479 if (!test_opt(sbi, DISCARD))
480 continue;
351df4b2 481
37208879
JK
482 f2fs_issue_discard(sbi, START_BLOCK(sbi, start),
483 (end - start) << sbi->log_blocks_per_seg);
351df4b2
JK
484 }
485 mutex_unlock(&dirty_i->seglist_lock);
b2955550
JK
486
487 /* send small discards */
2d7b822a 488 list_for_each_entry_safe(entry, this, head, list) {
37208879 489 f2fs_issue_discard(sbi, entry->blkaddr, entry->len);
b2955550
JK
490 list_del(&entry->list);
491 SM_I(sbi)->nr_discards -= entry->len;
492 kmem_cache_free(discard_entry_slab, entry);
493 }
351df4b2
JK
494}
495
496static void __mark_sit_entry_dirty(struct f2fs_sb_info *sbi, unsigned int segno)
497{
498 struct sit_info *sit_i = SIT_I(sbi);
499 if (!__test_and_set_bit(segno, sit_i->dirty_sentries_bitmap))
500 sit_i->dirty_sentries++;
501}
502
503static void __set_sit_entry_type(struct f2fs_sb_info *sbi, int type,
504 unsigned int segno, int modified)
505{
506 struct seg_entry *se = get_seg_entry(sbi, segno);
507 se->type = type;
508 if (modified)
509 __mark_sit_entry_dirty(sbi, segno);
510}
511
512static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
513{
514 struct seg_entry *se;
515 unsigned int segno, offset;
516 long int new_vblocks;
517
518 segno = GET_SEGNO(sbi, blkaddr);
519
520 se = get_seg_entry(sbi, segno);
521 new_vblocks = se->valid_blocks + del;
491c0854 522 offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
351df4b2 523
5d56b671 524 f2fs_bug_on((new_vblocks >> (sizeof(unsigned short) << 3) ||
351df4b2
JK
525 (new_vblocks > sbi->blocks_per_seg)));
526
527 se->valid_blocks = new_vblocks;
528 se->mtime = get_mtime(sbi);
529 SIT_I(sbi)->max_mtime = se->mtime;
530
531 /* Update valid block bitmap */
532 if (del > 0) {
533 if (f2fs_set_bit(offset, se->cur_valid_map))
534 BUG();
535 } else {
536 if (!f2fs_clear_bit(offset, se->cur_valid_map))
537 BUG();
538 }
539 if (!f2fs_test_bit(offset, se->ckpt_valid_map))
540 se->ckpt_valid_blocks += del;
541
542 __mark_sit_entry_dirty(sbi, segno);
543
544 /* update total number of valid blocks to be written in ckpt area */
545 SIT_I(sbi)->written_valid_blocks += del;
546
547 if (sbi->segs_per_sec > 1)
548 get_sec_entry(sbi, segno)->valid_blocks += del;
549}
550
5e443818 551void refresh_sit_entry(struct f2fs_sb_info *sbi, block_t old, block_t new)
351df4b2 552{
5e443818
JK
553 update_sit_entry(sbi, new, 1);
554 if (GET_SEGNO(sbi, old) != NULL_SEGNO)
555 update_sit_entry(sbi, old, -1);
556
557 locate_dirty_segment(sbi, GET_SEGNO(sbi, old));
558 locate_dirty_segment(sbi, GET_SEGNO(sbi, new));
351df4b2
JK
559}
560
561void invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr)
562{
563 unsigned int segno = GET_SEGNO(sbi, addr);
564 struct sit_info *sit_i = SIT_I(sbi);
565
5d56b671 566 f2fs_bug_on(addr == NULL_ADDR);
351df4b2
JK
567 if (addr == NEW_ADDR)
568 return;
569
570 /* add it into sit main buffer */
571 mutex_lock(&sit_i->sentry_lock);
572
573 update_sit_entry(sbi, addr, -1);
574
575 /* add it into dirty seglist */
576 locate_dirty_segment(sbi, segno);
577
578 mutex_unlock(&sit_i->sentry_lock);
579}
580
0a8165d7 581/*
351df4b2
JK
582 * This function should be resided under the curseg_mutex lock
583 */
584static void __add_sum_entry(struct f2fs_sb_info *sbi, int type,
e79efe3b 585 struct f2fs_summary *sum)
351df4b2
JK
586{
587 struct curseg_info *curseg = CURSEG_I(sbi, type);
588 void *addr = curseg->sum_blk;
e79efe3b 589 addr += curseg->next_blkoff * sizeof(struct f2fs_summary);
351df4b2 590 memcpy(addr, sum, sizeof(struct f2fs_summary));
351df4b2
JK
591}
592
0a8165d7 593/*
351df4b2
JK
594 * Calculate the number of current summary pages for writing
595 */
596int npages_for_summary_flush(struct f2fs_sb_info *sbi)
597{
351df4b2 598 int valid_sum_count = 0;
9a47938b 599 int i, sum_in_page;
351df4b2
JK
600
601 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
602 if (sbi->ckpt->alloc_type[i] == SSR)
603 valid_sum_count += sbi->blocks_per_seg;
604 else
605 valid_sum_count += curseg_blkoff(sbi, i);
606 }
607
9a47938b
FL
608 sum_in_page = (PAGE_CACHE_SIZE - 2 * SUM_JOURNAL_SIZE -
609 SUM_FOOTER_SIZE) / SUMMARY_SIZE;
610 if (valid_sum_count <= sum_in_page)
351df4b2 611 return 1;
9a47938b
FL
612 else if ((valid_sum_count - sum_in_page) <=
613 (PAGE_CACHE_SIZE - SUM_FOOTER_SIZE) / SUMMARY_SIZE)
351df4b2
JK
614 return 2;
615 return 3;
616}
617
0a8165d7 618/*
351df4b2
JK
619 * Caller should put this summary page
620 */
621struct page *get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno)
622{
623 return get_meta_page(sbi, GET_SUM_BLOCK(sbi, segno));
624}
625
626static void write_sum_page(struct f2fs_sb_info *sbi,
627 struct f2fs_summary_block *sum_blk, block_t blk_addr)
628{
629 struct page *page = grab_meta_page(sbi, blk_addr);
630 void *kaddr = page_address(page);
631 memcpy(kaddr, sum_blk, PAGE_CACHE_SIZE);
632 set_page_dirty(page);
633 f2fs_put_page(page, 1);
634}
635
60374688
JK
636static int is_next_segment_free(struct f2fs_sb_info *sbi, int type)
637{
638 struct curseg_info *curseg = CURSEG_I(sbi, type);
81fb5e87 639 unsigned int segno = curseg->segno + 1;
60374688
JK
640 struct free_segmap_info *free_i = FREE_I(sbi);
641
81fb5e87
HL
642 if (segno < TOTAL_SEGS(sbi) && segno % sbi->segs_per_sec)
643 return !test_bit(segno, free_i->free_segmap);
60374688
JK
644 return 0;
645}
646
0a8165d7 647/*
351df4b2
JK
648 * Find a new segment from the free segments bitmap to right order
649 * This function should be returned with success, otherwise BUG
650 */
651static void get_new_segment(struct f2fs_sb_info *sbi,
652 unsigned int *newseg, bool new_sec, int dir)
653{
654 struct free_segmap_info *free_i = FREE_I(sbi);
351df4b2 655 unsigned int segno, secno, zoneno;
53cf9522 656 unsigned int total_zones = TOTAL_SECS(sbi) / sbi->secs_per_zone;
351df4b2
JK
657 unsigned int hint = *newseg / sbi->segs_per_sec;
658 unsigned int old_zoneno = GET_ZONENO_FROM_SEGNO(sbi, *newseg);
659 unsigned int left_start = hint;
660 bool init = true;
661 int go_left = 0;
662 int i;
663
664 write_lock(&free_i->segmap_lock);
665
666 if (!new_sec && ((*newseg + 1) % sbi->segs_per_sec)) {
667 segno = find_next_zero_bit(free_i->free_segmap,
668 TOTAL_SEGS(sbi), *newseg + 1);
33afa7fd
JK
669 if (segno - *newseg < sbi->segs_per_sec -
670 (*newseg % sbi->segs_per_sec))
351df4b2
JK
671 goto got_it;
672 }
673find_other_zone:
53cf9522
JK
674 secno = find_next_zero_bit(free_i->free_secmap, TOTAL_SECS(sbi), hint);
675 if (secno >= TOTAL_SECS(sbi)) {
351df4b2
JK
676 if (dir == ALLOC_RIGHT) {
677 secno = find_next_zero_bit(free_i->free_secmap,
53cf9522 678 TOTAL_SECS(sbi), 0);
5d56b671 679 f2fs_bug_on(secno >= TOTAL_SECS(sbi));
351df4b2
JK
680 } else {
681 go_left = 1;
682 left_start = hint - 1;
683 }
684 }
685 if (go_left == 0)
686 goto skip_left;
687
688 while (test_bit(left_start, free_i->free_secmap)) {
689 if (left_start > 0) {
690 left_start--;
691 continue;
692 }
693 left_start = find_next_zero_bit(free_i->free_secmap,
53cf9522 694 TOTAL_SECS(sbi), 0);
5d56b671 695 f2fs_bug_on(left_start >= TOTAL_SECS(sbi));
351df4b2
JK
696 break;
697 }
698 secno = left_start;
699skip_left:
700 hint = secno;
701 segno = secno * sbi->segs_per_sec;
702 zoneno = secno / sbi->secs_per_zone;
703
704 /* give up on finding another zone */
705 if (!init)
706 goto got_it;
707 if (sbi->secs_per_zone == 1)
708 goto got_it;
709 if (zoneno == old_zoneno)
710 goto got_it;
711 if (dir == ALLOC_LEFT) {
712 if (!go_left && zoneno + 1 >= total_zones)
713 goto got_it;
714 if (go_left && zoneno == 0)
715 goto got_it;
716 }
717 for (i = 0; i < NR_CURSEG_TYPE; i++)
718 if (CURSEG_I(sbi, i)->zone == zoneno)
719 break;
720
721 if (i < NR_CURSEG_TYPE) {
722 /* zone is in user, try another */
723 if (go_left)
724 hint = zoneno * sbi->secs_per_zone - 1;
725 else if (zoneno + 1 >= total_zones)
726 hint = 0;
727 else
728 hint = (zoneno + 1) * sbi->secs_per_zone;
729 init = false;
730 goto find_other_zone;
731 }
732got_it:
733 /* set it as dirty segment in free segmap */
5d56b671 734 f2fs_bug_on(test_bit(segno, free_i->free_segmap));
351df4b2
JK
735 __set_inuse(sbi, segno);
736 *newseg = segno;
737 write_unlock(&free_i->segmap_lock);
738}
739
740static void reset_curseg(struct f2fs_sb_info *sbi, int type, int modified)
741{
742 struct curseg_info *curseg = CURSEG_I(sbi, type);
743 struct summary_footer *sum_footer;
744
745 curseg->segno = curseg->next_segno;
746 curseg->zone = GET_ZONENO_FROM_SEGNO(sbi, curseg->segno);
747 curseg->next_blkoff = 0;
748 curseg->next_segno = NULL_SEGNO;
749
750 sum_footer = &(curseg->sum_blk->footer);
751 memset(sum_footer, 0, sizeof(struct summary_footer));
752 if (IS_DATASEG(type))
753 SET_SUM_TYPE(sum_footer, SUM_TYPE_DATA);
754 if (IS_NODESEG(type))
755 SET_SUM_TYPE(sum_footer, SUM_TYPE_NODE);
756 __set_sit_entry_type(sbi, type, curseg->segno, modified);
757}
758
0a8165d7 759/*
351df4b2
JK
760 * Allocate a current working segment.
761 * This function always allocates a free segment in LFS manner.
762 */
763static void new_curseg(struct f2fs_sb_info *sbi, int type, bool new_sec)
764{
765 struct curseg_info *curseg = CURSEG_I(sbi, type);
766 unsigned int segno = curseg->segno;
767 int dir = ALLOC_LEFT;
768
769 write_sum_page(sbi, curseg->sum_blk,
81fb5e87 770 GET_SUM_BLOCK(sbi, segno));
351df4b2
JK
771 if (type == CURSEG_WARM_DATA || type == CURSEG_COLD_DATA)
772 dir = ALLOC_RIGHT;
773
774 if (test_opt(sbi, NOHEAP))
775 dir = ALLOC_RIGHT;
776
777 get_new_segment(sbi, &segno, new_sec, dir);
778 curseg->next_segno = segno;
779 reset_curseg(sbi, type, 1);
780 curseg->alloc_type = LFS;
781}
782
783static void __next_free_blkoff(struct f2fs_sb_info *sbi,
784 struct curseg_info *seg, block_t start)
785{
786 struct seg_entry *se = get_seg_entry(sbi, seg->segno);
e81c93cf
CL
787 int entries = SIT_VBLOCK_MAP_SIZE / sizeof(unsigned long);
788 unsigned long target_map[entries];
789 unsigned long *ckpt_map = (unsigned long *)se->ckpt_valid_map;
790 unsigned long *cur_map = (unsigned long *)se->cur_valid_map;
791 int i, pos;
792
793 for (i = 0; i < entries; i++)
794 target_map[i] = ckpt_map[i] | cur_map[i];
795
796 pos = __find_rev_next_zero_bit(target_map, sbi->blocks_per_seg, start);
797
798 seg->next_blkoff = pos;
351df4b2
JK
799}
800
0a8165d7 801/*
351df4b2
JK
802 * If a segment is written by LFS manner, next block offset is just obtained
803 * by increasing the current block offset. However, if a segment is written by
804 * SSR manner, next block offset obtained by calling __next_free_blkoff
805 */
806static void __refresh_next_blkoff(struct f2fs_sb_info *sbi,
807 struct curseg_info *seg)
808{
809 if (seg->alloc_type == SSR)
810 __next_free_blkoff(sbi, seg, seg->next_blkoff + 1);
811 else
812 seg->next_blkoff++;
813}
814
0a8165d7 815/*
351df4b2
JK
816 * This function always allocates a used segment (from dirty seglist) by SSR
817 * manner, so it should recover the existing segment information of valid blocks
818 */
819static void change_curseg(struct f2fs_sb_info *sbi, int type, bool reuse)
820{
821 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
822 struct curseg_info *curseg = CURSEG_I(sbi, type);
823 unsigned int new_segno = curseg->next_segno;
824 struct f2fs_summary_block *sum_node;
825 struct page *sum_page;
826
827 write_sum_page(sbi, curseg->sum_blk,
828 GET_SUM_BLOCK(sbi, curseg->segno));
829 __set_test_and_inuse(sbi, new_segno);
830
831 mutex_lock(&dirty_i->seglist_lock);
832 __remove_dirty_segment(sbi, new_segno, PRE);
833 __remove_dirty_segment(sbi, new_segno, DIRTY);
834 mutex_unlock(&dirty_i->seglist_lock);
835
836 reset_curseg(sbi, type, 1);
837 curseg->alloc_type = SSR;
838 __next_free_blkoff(sbi, curseg, 0);
839
840 if (reuse) {
841 sum_page = get_sum_page(sbi, new_segno);
842 sum_node = (struct f2fs_summary_block *)page_address(sum_page);
843 memcpy(curseg->sum_blk, sum_node, SUM_ENTRY_SIZE);
844 f2fs_put_page(sum_page, 1);
845 }
846}
847
43727527
JK
848static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
849{
850 struct curseg_info *curseg = CURSEG_I(sbi, type);
851 const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
852
853 if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0))
854 return v_ops->get_victim(sbi,
855 &(curseg)->next_segno, BG_GC, type, SSR);
856
857 /* For data segments, let's do SSR more intensively */
858 for (; type >= CURSEG_HOT_DATA; type--)
859 if (v_ops->get_victim(sbi, &(curseg)->next_segno,
860 BG_GC, type, SSR))
861 return 1;
862 return 0;
863}
864
351df4b2
JK
865/*
866 * flush out current segment and replace it with new segment
867 * This function should be returned with success, otherwise BUG
868 */
869static void allocate_segment_by_default(struct f2fs_sb_info *sbi,
870 int type, bool force)
871{
872 struct curseg_info *curseg = CURSEG_I(sbi, type);
351df4b2 873
7b405275 874 if (force)
351df4b2 875 new_curseg(sbi, type, true);
7b405275 876 else if (type == CURSEG_WARM_NODE)
351df4b2 877 new_curseg(sbi, type, false);
60374688
JK
878 else if (curseg->alloc_type == LFS && is_next_segment_free(sbi, type))
879 new_curseg(sbi, type, false);
351df4b2
JK
880 else if (need_SSR(sbi) && get_ssr_segment(sbi, type))
881 change_curseg(sbi, type, true);
882 else
883 new_curseg(sbi, type, false);
dcdfff65
JK
884
885 stat_inc_seg_type(sbi, curseg);
351df4b2
JK
886}
887
888void allocate_new_segments(struct f2fs_sb_info *sbi)
889{
890 struct curseg_info *curseg;
891 unsigned int old_curseg;
892 int i;
893
894 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
895 curseg = CURSEG_I(sbi, i);
896 old_curseg = curseg->segno;
897 SIT_I(sbi)->s_ops->allocate_segment(sbi, i, true);
898 locate_dirty_segment(sbi, old_curseg);
899 }
900}
901
902static const struct segment_allocation default_salloc_ops = {
903 .allocate_segment = allocate_segment_by_default,
904};
905
351df4b2
JK
906static bool __has_curseg_space(struct f2fs_sb_info *sbi, int type)
907{
908 struct curseg_info *curseg = CURSEG_I(sbi, type);
909 if (curseg->next_blkoff < sbi->blocks_per_seg)
910 return true;
911 return false;
912}
913
914static int __get_segment_type_2(struct page *page, enum page_type p_type)
915{
916 if (p_type == DATA)
917 return CURSEG_HOT_DATA;
918 else
919 return CURSEG_HOT_NODE;
920}
921
922static int __get_segment_type_4(struct page *page, enum page_type p_type)
923{
924 if (p_type == DATA) {
925 struct inode *inode = page->mapping->host;
926
927 if (S_ISDIR(inode->i_mode))
928 return CURSEG_HOT_DATA;
929 else
930 return CURSEG_COLD_DATA;
931 } else {
932 if (IS_DNODE(page) && !is_cold_node(page))
933 return CURSEG_HOT_NODE;
934 else
935 return CURSEG_COLD_NODE;
936 }
937}
938
939static int __get_segment_type_6(struct page *page, enum page_type p_type)
940{
941 if (p_type == DATA) {
942 struct inode *inode = page->mapping->host;
943
944 if (S_ISDIR(inode->i_mode))
945 return CURSEG_HOT_DATA;
354a3399 946 else if (is_cold_data(page) || file_is_cold(inode))
351df4b2
JK
947 return CURSEG_COLD_DATA;
948 else
949 return CURSEG_WARM_DATA;
950 } else {
951 if (IS_DNODE(page))
952 return is_cold_node(page) ? CURSEG_WARM_NODE :
953 CURSEG_HOT_NODE;
954 else
955 return CURSEG_COLD_NODE;
956 }
957}
958
959static int __get_segment_type(struct page *page, enum page_type p_type)
960{
961 struct f2fs_sb_info *sbi = F2FS_SB(page->mapping->host->i_sb);
962 switch (sbi->active_logs) {
963 case 2:
964 return __get_segment_type_2(page, p_type);
965 case 4:
966 return __get_segment_type_4(page, p_type);
351df4b2 967 }
12a67146 968 /* NR_CURSEG_TYPE(6) logs by default */
5d56b671 969 f2fs_bug_on(sbi->active_logs != NR_CURSEG_TYPE);
12a67146 970 return __get_segment_type_6(page, p_type);
351df4b2
JK
971}
972
bfad7c2d
JK
973void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
974 block_t old_blkaddr, block_t *new_blkaddr,
975 struct f2fs_summary *sum, int type)
351df4b2
JK
976{
977 struct sit_info *sit_i = SIT_I(sbi);
978 struct curseg_info *curseg;
979 unsigned int old_cursegno;
351df4b2 980
351df4b2
JK
981 curseg = CURSEG_I(sbi, type);
982
983 mutex_lock(&curseg->curseg_mutex);
984
985 *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
986 old_cursegno = curseg->segno;
987
988 /*
989 * __add_sum_entry should be resided under the curseg_mutex
990 * because, this function updates a summary entry in the
991 * current summary block.
992 */
e79efe3b 993 __add_sum_entry(sbi, type, sum);
351df4b2
JK
994
995 mutex_lock(&sit_i->sentry_lock);
996 __refresh_next_blkoff(sbi, curseg);
dcdfff65
JK
997
998 stat_inc_block_count(sbi, curseg);
351df4b2 999
5e443818
JK
1000 if (!__has_curseg_space(sbi, type))
1001 sit_i->s_ops->allocate_segment(sbi, type, false);
351df4b2
JK
1002 /*
1003 * SIT information should be updated before segment allocation,
1004 * since SSR needs latest valid block information.
1005 */
1006 refresh_sit_entry(sbi, old_blkaddr, *new_blkaddr);
351df4b2 1007 locate_dirty_segment(sbi, old_cursegno);
5e443818 1008
351df4b2
JK
1009 mutex_unlock(&sit_i->sentry_lock);
1010
bfad7c2d 1011 if (page && IS_NODESEG(type))
351df4b2
JK
1012 fill_node_footer_blkaddr(page, NEXT_FREE_BLKADDR(sbi, curseg));
1013
bfad7c2d
JK
1014 mutex_unlock(&curseg->curseg_mutex);
1015}
1016
1017static void do_write_page(struct f2fs_sb_info *sbi, struct page *page,
1018 block_t old_blkaddr, block_t *new_blkaddr,
1019 struct f2fs_summary *sum, struct f2fs_io_info *fio)
1020{
1021 int type = __get_segment_type(page, fio->type);
1022
1023 allocate_data_block(sbi, page, old_blkaddr, new_blkaddr, sum, type);
1024
351df4b2 1025 /* writeout dirty page into bdev */
458e6197 1026 f2fs_submit_page_mbio(sbi, page, *new_blkaddr, fio);
351df4b2
JK
1027}
1028
577e3495 1029void write_meta_page(struct f2fs_sb_info *sbi, struct page *page)
351df4b2 1030{
458e6197
JK
1031 struct f2fs_io_info fio = {
1032 .type = META,
7e8f2308 1033 .rw = WRITE_SYNC | REQ_META | REQ_PRIO
458e6197
JK
1034 };
1035
351df4b2 1036 set_page_writeback(page);
458e6197 1037 f2fs_submit_page_mbio(sbi, page, page->index, &fio);
351df4b2
JK
1038}
1039
1040void write_node_page(struct f2fs_sb_info *sbi, struct page *page,
fb5566da 1041 struct f2fs_io_info *fio,
351df4b2
JK
1042 unsigned int nid, block_t old_blkaddr, block_t *new_blkaddr)
1043{
1044 struct f2fs_summary sum;
1045 set_summary(&sum, nid, 0, 0);
fb5566da 1046 do_write_page(sbi, page, old_blkaddr, new_blkaddr, &sum, fio);
351df4b2
JK
1047}
1048
458e6197
JK
1049void write_data_page(struct page *page, struct dnode_of_data *dn,
1050 block_t *new_blkaddr, struct f2fs_io_info *fio)
351df4b2 1051{
458e6197 1052 struct f2fs_sb_info *sbi = F2FS_SB(dn->inode->i_sb);
351df4b2
JK
1053 struct f2fs_summary sum;
1054 struct node_info ni;
1055
458e6197 1056 f2fs_bug_on(dn->data_blkaddr == NULL_ADDR);
351df4b2
JK
1057 get_node_info(sbi, dn->nid, &ni);
1058 set_summary(&sum, dn->nid, dn->ofs_in_node, ni.version);
1059
458e6197 1060 do_write_page(sbi, page, dn->data_blkaddr, new_blkaddr, &sum, fio);
351df4b2
JK
1061}
1062
6c311ec6
CF
1063void rewrite_data_page(struct page *page, block_t old_blkaddr,
1064 struct f2fs_io_info *fio)
351df4b2 1065{
458e6197
JK
1066 struct inode *inode = page->mapping->host;
1067 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
1068 f2fs_submit_page_mbio(sbi, page, old_blkaddr, fio);
351df4b2
JK
1069}
1070
1071void recover_data_page(struct f2fs_sb_info *sbi,
1072 struct page *page, struct f2fs_summary *sum,
1073 block_t old_blkaddr, block_t new_blkaddr)
1074{
1075 struct sit_info *sit_i = SIT_I(sbi);
1076 struct curseg_info *curseg;
1077 unsigned int segno, old_cursegno;
1078 struct seg_entry *se;
1079 int type;
1080
1081 segno = GET_SEGNO(sbi, new_blkaddr);
1082 se = get_seg_entry(sbi, segno);
1083 type = se->type;
1084
1085 if (se->valid_blocks == 0 && !IS_CURSEG(sbi, segno)) {
1086 if (old_blkaddr == NULL_ADDR)
1087 type = CURSEG_COLD_DATA;
1088 else
1089 type = CURSEG_WARM_DATA;
1090 }
1091 curseg = CURSEG_I(sbi, type);
1092
1093 mutex_lock(&curseg->curseg_mutex);
1094 mutex_lock(&sit_i->sentry_lock);
1095
1096 old_cursegno = curseg->segno;
1097
1098 /* change the current segment */
1099 if (segno != curseg->segno) {
1100 curseg->next_segno = segno;
1101 change_curseg(sbi, type, true);
1102 }
1103
491c0854 1104 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
e79efe3b 1105 __add_sum_entry(sbi, type, sum);
351df4b2
JK
1106
1107 refresh_sit_entry(sbi, old_blkaddr, new_blkaddr);
351df4b2 1108 locate_dirty_segment(sbi, old_cursegno);
351df4b2
JK
1109
1110 mutex_unlock(&sit_i->sentry_lock);
1111 mutex_unlock(&curseg->curseg_mutex);
1112}
1113
1114void rewrite_node_page(struct f2fs_sb_info *sbi,
1115 struct page *page, struct f2fs_summary *sum,
1116 block_t old_blkaddr, block_t new_blkaddr)
1117{
1118 struct sit_info *sit_i = SIT_I(sbi);
1119 int type = CURSEG_WARM_NODE;
1120 struct curseg_info *curseg;
1121 unsigned int segno, old_cursegno;
1122 block_t next_blkaddr = next_blkaddr_of_node(page);
1123 unsigned int next_segno = GET_SEGNO(sbi, next_blkaddr);
458e6197
JK
1124 struct f2fs_io_info fio = {
1125 .type = NODE,
1126 .rw = WRITE_SYNC,
458e6197 1127 };
351df4b2
JK
1128
1129 curseg = CURSEG_I(sbi, type);
1130
1131 mutex_lock(&curseg->curseg_mutex);
1132 mutex_lock(&sit_i->sentry_lock);
1133
1134 segno = GET_SEGNO(sbi, new_blkaddr);
1135 old_cursegno = curseg->segno;
1136
1137 /* change the current segment */
1138 if (segno != curseg->segno) {
1139 curseg->next_segno = segno;
1140 change_curseg(sbi, type, true);
1141 }
491c0854 1142 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, new_blkaddr);
e79efe3b 1143 __add_sum_entry(sbi, type, sum);
351df4b2
JK
1144
1145 /* change the current log to the next block addr in advance */
1146 if (next_segno != segno) {
1147 curseg->next_segno = next_segno;
1148 change_curseg(sbi, type, true);
1149 }
491c0854 1150 curseg->next_blkoff = GET_BLKOFF_FROM_SEG0(sbi, next_blkaddr);
351df4b2
JK
1151
1152 /* rewrite node page */
1153 set_page_writeback(page);
458e6197
JK
1154 f2fs_submit_page_mbio(sbi, page, new_blkaddr, &fio);
1155 f2fs_submit_merged_bio(sbi, NODE, WRITE);
351df4b2 1156 refresh_sit_entry(sbi, old_blkaddr, new_blkaddr);
351df4b2 1157 locate_dirty_segment(sbi, old_cursegno);
351df4b2
JK
1158
1159 mutex_unlock(&sit_i->sentry_lock);
1160 mutex_unlock(&curseg->curseg_mutex);
1161}
1162
df0f8dc0
CY
1163static inline bool is_merged_page(struct f2fs_sb_info *sbi,
1164 struct page *page, enum page_type type)
1165{
1166 enum page_type btype = PAGE_TYPE_OF_BIO(type);
1167 struct f2fs_bio_info *io = &sbi->write_io[btype];
df0f8dc0
CY
1168 struct bio_vec *bvec;
1169 int i;
1170
1171 down_read(&io->io_rwsem);
ce23447f 1172 if (!io->bio)
df0f8dc0
CY
1173 goto out;
1174
ce23447f 1175 bio_for_each_segment_all(bvec, io->bio, i) {
df0f8dc0
CY
1176 if (page == bvec->bv_page) {
1177 up_read(&io->io_rwsem);
1178 return true;
1179 }
1180 }
1181
1182out:
1183 up_read(&io->io_rwsem);
1184 return false;
1185}
1186
93dfe2ac 1187void f2fs_wait_on_page_writeback(struct page *page,
5514f0aa 1188 enum page_type type)
93dfe2ac
JK
1189{
1190 struct f2fs_sb_info *sbi = F2FS_SB(page->mapping->host->i_sb);
1191 if (PageWriteback(page)) {
df0f8dc0
CY
1192 if (is_merged_page(sbi, page, type))
1193 f2fs_submit_merged_bio(sbi, type, WRITE);
93dfe2ac
JK
1194 wait_on_page_writeback(page);
1195 }
1196}
1197
351df4b2
JK
1198static int read_compacted_summaries(struct f2fs_sb_info *sbi)
1199{
1200 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1201 struct curseg_info *seg_i;
1202 unsigned char *kaddr;
1203 struct page *page;
1204 block_t start;
1205 int i, j, offset;
1206
1207 start = start_sum_block(sbi);
1208
1209 page = get_meta_page(sbi, start++);
1210 kaddr = (unsigned char *)page_address(page);
1211
1212 /* Step 1: restore nat cache */
1213 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
1214 memcpy(&seg_i->sum_blk->n_nats, kaddr, SUM_JOURNAL_SIZE);
1215
1216 /* Step 2: restore sit cache */
1217 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
1218 memcpy(&seg_i->sum_blk->n_sits, kaddr + SUM_JOURNAL_SIZE,
1219 SUM_JOURNAL_SIZE);
1220 offset = 2 * SUM_JOURNAL_SIZE;
1221
1222 /* Step 3: restore summary entries */
1223 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1224 unsigned short blk_off;
1225 unsigned int segno;
1226
1227 seg_i = CURSEG_I(sbi, i);
1228 segno = le32_to_cpu(ckpt->cur_data_segno[i]);
1229 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[i]);
1230 seg_i->next_segno = segno;
1231 reset_curseg(sbi, i, 0);
1232 seg_i->alloc_type = ckpt->alloc_type[i];
1233 seg_i->next_blkoff = blk_off;
1234
1235 if (seg_i->alloc_type == SSR)
1236 blk_off = sbi->blocks_per_seg;
1237
1238 for (j = 0; j < blk_off; j++) {
1239 struct f2fs_summary *s;
1240 s = (struct f2fs_summary *)(kaddr + offset);
1241 seg_i->sum_blk->entries[j] = *s;
1242 offset += SUMMARY_SIZE;
1243 if (offset + SUMMARY_SIZE <= PAGE_CACHE_SIZE -
1244 SUM_FOOTER_SIZE)
1245 continue;
1246
1247 f2fs_put_page(page, 1);
1248 page = NULL;
1249
1250 page = get_meta_page(sbi, start++);
1251 kaddr = (unsigned char *)page_address(page);
1252 offset = 0;
1253 }
1254 }
1255 f2fs_put_page(page, 1);
1256 return 0;
1257}
1258
1259static int read_normal_summaries(struct f2fs_sb_info *sbi, int type)
1260{
1261 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1262 struct f2fs_summary_block *sum;
1263 struct curseg_info *curseg;
1264 struct page *new;
1265 unsigned short blk_off;
1266 unsigned int segno = 0;
1267 block_t blk_addr = 0;
1268
1269 /* get segment number and block addr */
1270 if (IS_DATASEG(type)) {
1271 segno = le32_to_cpu(ckpt->cur_data_segno[type]);
1272 blk_off = le16_to_cpu(ckpt->cur_data_blkoff[type -
1273 CURSEG_HOT_DATA]);
25ca923b 1274 if (is_set_ckpt_flags(ckpt, CP_UMOUNT_FLAG))
351df4b2
JK
1275 blk_addr = sum_blk_addr(sbi, NR_CURSEG_TYPE, type);
1276 else
1277 blk_addr = sum_blk_addr(sbi, NR_CURSEG_DATA_TYPE, type);
1278 } else {
1279 segno = le32_to_cpu(ckpt->cur_node_segno[type -
1280 CURSEG_HOT_NODE]);
1281 blk_off = le16_to_cpu(ckpt->cur_node_blkoff[type -
1282 CURSEG_HOT_NODE]);
25ca923b 1283 if (is_set_ckpt_flags(ckpt, CP_UMOUNT_FLAG))
351df4b2
JK
1284 blk_addr = sum_blk_addr(sbi, NR_CURSEG_NODE_TYPE,
1285 type - CURSEG_HOT_NODE);
1286 else
1287 blk_addr = GET_SUM_BLOCK(sbi, segno);
1288 }
1289
1290 new = get_meta_page(sbi, blk_addr);
1291 sum = (struct f2fs_summary_block *)page_address(new);
1292
1293 if (IS_NODESEG(type)) {
25ca923b 1294 if (is_set_ckpt_flags(ckpt, CP_UMOUNT_FLAG)) {
351df4b2
JK
1295 struct f2fs_summary *ns = &sum->entries[0];
1296 int i;
1297 for (i = 0; i < sbi->blocks_per_seg; i++, ns++) {
1298 ns->version = 0;
1299 ns->ofs_in_node = 0;
1300 }
1301 } else {
d653788a
GZ
1302 int err;
1303
1304 err = restore_node_summary(sbi, segno, sum);
1305 if (err) {
351df4b2 1306 f2fs_put_page(new, 1);
d653788a 1307 return err;
351df4b2
JK
1308 }
1309 }
1310 }
1311
1312 /* set uncompleted segment to curseg */
1313 curseg = CURSEG_I(sbi, type);
1314 mutex_lock(&curseg->curseg_mutex);
1315 memcpy(curseg->sum_blk, sum, PAGE_CACHE_SIZE);
1316 curseg->next_segno = segno;
1317 reset_curseg(sbi, type, 0);
1318 curseg->alloc_type = ckpt->alloc_type[type];
1319 curseg->next_blkoff = blk_off;
1320 mutex_unlock(&curseg->curseg_mutex);
1321 f2fs_put_page(new, 1);
1322 return 0;
1323}
1324
1325static int restore_curseg_summaries(struct f2fs_sb_info *sbi)
1326{
1327 int type = CURSEG_HOT_DATA;
e4fc5fbf 1328 int err;
351df4b2 1329
25ca923b 1330 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG)) {
351df4b2
JK
1331 /* restore for compacted data summary */
1332 if (read_compacted_summaries(sbi))
1333 return -EINVAL;
1334 type = CURSEG_HOT_NODE;
1335 }
1336
e4fc5fbf
CY
1337 for (; type <= CURSEG_COLD_NODE; type++) {
1338 err = read_normal_summaries(sbi, type);
1339 if (err)
1340 return err;
1341 }
1342
351df4b2
JK
1343 return 0;
1344}
1345
1346static void write_compacted_summaries(struct f2fs_sb_info *sbi, block_t blkaddr)
1347{
1348 struct page *page;
1349 unsigned char *kaddr;
1350 struct f2fs_summary *summary;
1351 struct curseg_info *seg_i;
1352 int written_size = 0;
1353 int i, j;
1354
1355 page = grab_meta_page(sbi, blkaddr++);
1356 kaddr = (unsigned char *)page_address(page);
1357
1358 /* Step 1: write nat cache */
1359 seg_i = CURSEG_I(sbi, CURSEG_HOT_DATA);
1360 memcpy(kaddr, &seg_i->sum_blk->n_nats, SUM_JOURNAL_SIZE);
1361 written_size += SUM_JOURNAL_SIZE;
1362
1363 /* Step 2: write sit cache */
1364 seg_i = CURSEG_I(sbi, CURSEG_COLD_DATA);
1365 memcpy(kaddr + written_size, &seg_i->sum_blk->n_sits,
1366 SUM_JOURNAL_SIZE);
1367 written_size += SUM_JOURNAL_SIZE;
1368
351df4b2
JK
1369 /* Step 3: write summary entries */
1370 for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) {
1371 unsigned short blkoff;
1372 seg_i = CURSEG_I(sbi, i);
1373 if (sbi->ckpt->alloc_type[i] == SSR)
1374 blkoff = sbi->blocks_per_seg;
1375 else
1376 blkoff = curseg_blkoff(sbi, i);
1377
1378 for (j = 0; j < blkoff; j++) {
1379 if (!page) {
1380 page = grab_meta_page(sbi, blkaddr++);
1381 kaddr = (unsigned char *)page_address(page);
1382 written_size = 0;
1383 }
1384 summary = (struct f2fs_summary *)(kaddr + written_size);
1385 *summary = seg_i->sum_blk->entries[j];
1386 written_size += SUMMARY_SIZE;
351df4b2
JK
1387
1388 if (written_size + SUMMARY_SIZE <= PAGE_CACHE_SIZE -
1389 SUM_FOOTER_SIZE)
1390 continue;
1391
e8d61a74 1392 set_page_dirty(page);
351df4b2
JK
1393 f2fs_put_page(page, 1);
1394 page = NULL;
1395 }
1396 }
e8d61a74
CY
1397 if (page) {
1398 set_page_dirty(page);
351df4b2 1399 f2fs_put_page(page, 1);
e8d61a74 1400 }
351df4b2
JK
1401}
1402
1403static void write_normal_summaries(struct f2fs_sb_info *sbi,
1404 block_t blkaddr, int type)
1405{
1406 int i, end;
1407 if (IS_DATASEG(type))
1408 end = type + NR_CURSEG_DATA_TYPE;
1409 else
1410 end = type + NR_CURSEG_NODE_TYPE;
1411
1412 for (i = type; i < end; i++) {
1413 struct curseg_info *sum = CURSEG_I(sbi, i);
1414 mutex_lock(&sum->curseg_mutex);
1415 write_sum_page(sbi, sum->sum_blk, blkaddr + (i - type));
1416 mutex_unlock(&sum->curseg_mutex);
1417 }
1418}
1419
1420void write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1421{
25ca923b 1422 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_COMPACT_SUM_FLAG))
351df4b2
JK
1423 write_compacted_summaries(sbi, start_blk);
1424 else
1425 write_normal_summaries(sbi, start_blk, CURSEG_HOT_DATA);
1426}
1427
1428void write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk)
1429{
25ca923b 1430 if (is_set_ckpt_flags(F2FS_CKPT(sbi), CP_UMOUNT_FLAG))
351df4b2 1431 write_normal_summaries(sbi, start_blk, CURSEG_HOT_NODE);
351df4b2
JK
1432}
1433
1434int lookup_journal_in_cursum(struct f2fs_summary_block *sum, int type,
1435 unsigned int val, int alloc)
1436{
1437 int i;
1438
1439 if (type == NAT_JOURNAL) {
1440 for (i = 0; i < nats_in_cursum(sum); i++) {
1441 if (le32_to_cpu(nid_in_journal(sum, i)) == val)
1442 return i;
1443 }
1444 if (alloc && nats_in_cursum(sum) < NAT_JOURNAL_ENTRIES)
1445 return update_nats_in_cursum(sum, 1);
1446 } else if (type == SIT_JOURNAL) {
1447 for (i = 0; i < sits_in_cursum(sum); i++)
1448 if (le32_to_cpu(segno_in_journal(sum, i)) == val)
1449 return i;
1450 if (alloc && sits_in_cursum(sum) < SIT_JOURNAL_ENTRIES)
1451 return update_sits_in_cursum(sum, 1);
1452 }
1453 return -1;
1454}
1455
1456static struct page *get_current_sit_page(struct f2fs_sb_info *sbi,
1457 unsigned int segno)
1458{
1459 struct sit_info *sit_i = SIT_I(sbi);
1460 unsigned int offset = SIT_BLOCK_OFFSET(sit_i, segno);
1461 block_t blk_addr = sit_i->sit_base_addr + offset;
1462
1463 check_seg_range(sbi, segno);
1464
1465 /* calculate sit block address */
1466 if (f2fs_test_bit(offset, sit_i->sit_bitmap))
1467 blk_addr += sit_i->sit_blocks;
1468
1469 return get_meta_page(sbi, blk_addr);
1470}
1471
1472static struct page *get_next_sit_page(struct f2fs_sb_info *sbi,
1473 unsigned int start)
1474{
1475 struct sit_info *sit_i = SIT_I(sbi);
1476 struct page *src_page, *dst_page;
1477 pgoff_t src_off, dst_off;
1478 void *src_addr, *dst_addr;
1479
1480 src_off = current_sit_addr(sbi, start);
1481 dst_off = next_sit_addr(sbi, src_off);
1482
1483 /* get current sit block page without lock */
1484 src_page = get_meta_page(sbi, src_off);
1485 dst_page = grab_meta_page(sbi, dst_off);
5d56b671 1486 f2fs_bug_on(PageDirty(src_page));
351df4b2
JK
1487
1488 src_addr = page_address(src_page);
1489 dst_addr = page_address(dst_page);
1490 memcpy(dst_addr, src_addr, PAGE_CACHE_SIZE);
1491
1492 set_page_dirty(dst_page);
1493 f2fs_put_page(src_page, 1);
1494
1495 set_to_next_sit(sit_i, start);
1496
1497 return dst_page;
1498}
1499
1500static bool flush_sits_in_journal(struct f2fs_sb_info *sbi)
1501{
1502 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
1503 struct f2fs_summary_block *sum = curseg->sum_blk;
1504 int i;
1505
1506 /*
1507 * If the journal area in the current summary is full of sit entries,
1508 * all the sit entries will be flushed. Otherwise the sit entries
1509 * are not able to replace with newly hot sit entries.
1510 */
1511 if (sits_in_cursum(sum) >= SIT_JOURNAL_ENTRIES) {
1512 for (i = sits_in_cursum(sum) - 1; i >= 0; i--) {
1513 unsigned int segno;
1514 segno = le32_to_cpu(segno_in_journal(sum, i));
1515 __mark_sit_entry_dirty(sbi, segno);
1516 }
1517 update_sits_in_cursum(sum, -sits_in_cursum(sum));
cffbfa66 1518 return true;
351df4b2 1519 }
cffbfa66 1520 return false;
351df4b2
JK
1521}
1522
0a8165d7 1523/*
351df4b2
JK
1524 * CP calls this function, which flushes SIT entries including sit_journal,
1525 * and moves prefree segs to free segs.
1526 */
1527void flush_sit_entries(struct f2fs_sb_info *sbi)
1528{
1529 struct sit_info *sit_i = SIT_I(sbi);
1530 unsigned long *bitmap = sit_i->dirty_sentries_bitmap;
1531 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
1532 struct f2fs_summary_block *sum = curseg->sum_blk;
1533 unsigned long nsegs = TOTAL_SEGS(sbi);
1534 struct page *page = NULL;
1535 struct f2fs_sit_block *raw_sit = NULL;
1536 unsigned int start = 0, end = 0;
1537 unsigned int segno = -1;
1538 bool flushed;
1539
1540 mutex_lock(&curseg->curseg_mutex);
1541 mutex_lock(&sit_i->sentry_lock);
1542
1543 /*
1544 * "flushed" indicates whether sit entries in journal are flushed
1545 * to the SIT area or not.
1546 */
1547 flushed = flush_sits_in_journal(sbi);
1548
1549 while ((segno = find_next_bit(bitmap, nsegs, segno + 1)) < nsegs) {
1550 struct seg_entry *se = get_seg_entry(sbi, segno);
1551 int sit_offset, offset;
1552
1553 sit_offset = SIT_ENTRY_OFFSET(sit_i, segno);
1554
b2955550
JK
1555 /* add discard candidates */
1556 if (SM_I(sbi)->nr_discards < SM_I(sbi)->max_discards)
1557 add_discard_addrs(sbi, segno, se);
1558
351df4b2
JK
1559 if (flushed)
1560 goto to_sit_page;
1561
1562 offset = lookup_journal_in_cursum(sum, SIT_JOURNAL, segno, 1);
1563 if (offset >= 0) {
1564 segno_in_journal(sum, offset) = cpu_to_le32(segno);
1565 seg_info_to_raw_sit(se, &sit_in_journal(sum, offset));
1566 goto flush_done;
1567 }
1568to_sit_page:
1569 if (!page || (start > segno) || (segno > end)) {
1570 if (page) {
1571 f2fs_put_page(page, 1);
1572 page = NULL;
1573 }
1574
1575 start = START_SEGNO(sit_i, segno);
1576 end = start + SIT_ENTRY_PER_BLOCK - 1;
1577
1578 /* read sit block that will be updated */
1579 page = get_next_sit_page(sbi, start);
1580 raw_sit = page_address(page);
1581 }
1582
1583 /* udpate entry in SIT block */
1584 seg_info_to_raw_sit(se, &raw_sit->entries[sit_offset]);
1585flush_done:
1586 __clear_bit(segno, bitmap);
1587 sit_i->dirty_sentries--;
1588 }
1589 mutex_unlock(&sit_i->sentry_lock);
1590 mutex_unlock(&curseg->curseg_mutex);
1591
1592 /* writeout last modified SIT block */
1593 f2fs_put_page(page, 1);
1594
1595 set_prefree_as_free_segments(sbi);
1596}
1597
1598static int build_sit_info(struct f2fs_sb_info *sbi)
1599{
1600 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
1601 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1602 struct sit_info *sit_i;
1603 unsigned int sit_segs, start;
1604 char *src_bitmap, *dst_bitmap;
1605 unsigned int bitmap_size;
1606
1607 /* allocate memory for SIT information */
1608 sit_i = kzalloc(sizeof(struct sit_info), GFP_KERNEL);
1609 if (!sit_i)
1610 return -ENOMEM;
1611
1612 SM_I(sbi)->sit_info = sit_i;
1613
1614 sit_i->sentries = vzalloc(TOTAL_SEGS(sbi) * sizeof(struct seg_entry));
1615 if (!sit_i->sentries)
1616 return -ENOMEM;
1617
1618 bitmap_size = f2fs_bitmap_size(TOTAL_SEGS(sbi));
1619 sit_i->dirty_sentries_bitmap = kzalloc(bitmap_size, GFP_KERNEL);
1620 if (!sit_i->dirty_sentries_bitmap)
1621 return -ENOMEM;
1622
1623 for (start = 0; start < TOTAL_SEGS(sbi); start++) {
1624 sit_i->sentries[start].cur_valid_map
1625 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
1626 sit_i->sentries[start].ckpt_valid_map
1627 = kzalloc(SIT_VBLOCK_MAP_SIZE, GFP_KERNEL);
1628 if (!sit_i->sentries[start].cur_valid_map
1629 || !sit_i->sentries[start].ckpt_valid_map)
1630 return -ENOMEM;
1631 }
1632
1633 if (sbi->segs_per_sec > 1) {
53cf9522 1634 sit_i->sec_entries = vzalloc(TOTAL_SECS(sbi) *
351df4b2
JK
1635 sizeof(struct sec_entry));
1636 if (!sit_i->sec_entries)
1637 return -ENOMEM;
1638 }
1639
1640 /* get information related with SIT */
1641 sit_segs = le32_to_cpu(raw_super->segment_count_sit) >> 1;
1642
1643 /* setup SIT bitmap from ckeckpoint pack */
1644 bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
1645 src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
1646
79b5793b 1647 dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
351df4b2
JK
1648 if (!dst_bitmap)
1649 return -ENOMEM;
351df4b2
JK
1650
1651 /* init SIT information */
1652 sit_i->s_ops = &default_salloc_ops;
1653
1654 sit_i->sit_base_addr = le32_to_cpu(raw_super->sit_blkaddr);
1655 sit_i->sit_blocks = sit_segs << sbi->log_blocks_per_seg;
1656 sit_i->written_valid_blocks = le64_to_cpu(ckpt->valid_block_count);
1657 sit_i->sit_bitmap = dst_bitmap;
1658 sit_i->bitmap_size = bitmap_size;
1659 sit_i->dirty_sentries = 0;
1660 sit_i->sents_per_block = SIT_ENTRY_PER_BLOCK;
1661 sit_i->elapsed_time = le64_to_cpu(sbi->ckpt->elapsed_time);
1662 sit_i->mounted_time = CURRENT_TIME_SEC.tv_sec;
1663 mutex_init(&sit_i->sentry_lock);
1664 return 0;
1665}
1666
1667static int build_free_segmap(struct f2fs_sb_info *sbi)
1668{
1669 struct f2fs_sm_info *sm_info = SM_I(sbi);
1670 struct free_segmap_info *free_i;
1671 unsigned int bitmap_size, sec_bitmap_size;
1672
1673 /* allocate memory for free segmap information */
1674 free_i = kzalloc(sizeof(struct free_segmap_info), GFP_KERNEL);
1675 if (!free_i)
1676 return -ENOMEM;
1677
1678 SM_I(sbi)->free_info = free_i;
1679
1680 bitmap_size = f2fs_bitmap_size(TOTAL_SEGS(sbi));
1681 free_i->free_segmap = kmalloc(bitmap_size, GFP_KERNEL);
1682 if (!free_i->free_segmap)
1683 return -ENOMEM;
1684
53cf9522 1685 sec_bitmap_size = f2fs_bitmap_size(TOTAL_SECS(sbi));
351df4b2
JK
1686 free_i->free_secmap = kmalloc(sec_bitmap_size, GFP_KERNEL);
1687 if (!free_i->free_secmap)
1688 return -ENOMEM;
1689
1690 /* set all segments as dirty temporarily */
1691 memset(free_i->free_segmap, 0xff, bitmap_size);
1692 memset(free_i->free_secmap, 0xff, sec_bitmap_size);
1693
1694 /* init free segmap information */
1695 free_i->start_segno =
1696 (unsigned int) GET_SEGNO_FROM_SEG0(sbi, sm_info->main_blkaddr);
1697 free_i->free_segments = 0;
1698 free_i->free_sections = 0;
1699 rwlock_init(&free_i->segmap_lock);
1700 return 0;
1701}
1702
1703static int build_curseg(struct f2fs_sb_info *sbi)
1704{
1042d60f 1705 struct curseg_info *array;
351df4b2
JK
1706 int i;
1707
1708 array = kzalloc(sizeof(*array) * NR_CURSEG_TYPE, GFP_KERNEL);
1709 if (!array)
1710 return -ENOMEM;
1711
1712 SM_I(sbi)->curseg_array = array;
1713
1714 for (i = 0; i < NR_CURSEG_TYPE; i++) {
1715 mutex_init(&array[i].curseg_mutex);
1716 array[i].sum_blk = kzalloc(PAGE_CACHE_SIZE, GFP_KERNEL);
1717 if (!array[i].sum_blk)
1718 return -ENOMEM;
1719 array[i].segno = NULL_SEGNO;
1720 array[i].next_blkoff = 0;
1721 }
1722 return restore_curseg_summaries(sbi);
1723}
1724
1725static void build_sit_entries(struct f2fs_sb_info *sbi)
1726{
1727 struct sit_info *sit_i = SIT_I(sbi);
1728 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_COLD_DATA);
1729 struct f2fs_summary_block *sum = curseg->sum_blk;
74de593a
CY
1730 int sit_blk_cnt = SIT_BLK_CNT(sbi);
1731 unsigned int i, start, end;
1732 unsigned int readed, start_blk = 0;
1733 int nrpages = MAX_BIO_BLOCKS(max_hw_blocks(sbi));
351df4b2 1734
74de593a 1735 do {
662befda 1736 readed = ra_meta_pages(sbi, start_blk, nrpages, META_SIT);
74de593a
CY
1737
1738 start = start_blk * sit_i->sents_per_block;
1739 end = (start_blk + readed) * sit_i->sents_per_block;
1740
1741 for (; start < end && start < TOTAL_SEGS(sbi); start++) {
1742 struct seg_entry *se = &sit_i->sentries[start];
1743 struct f2fs_sit_block *sit_blk;
1744 struct f2fs_sit_entry sit;
1745 struct page *page;
1746
1747 mutex_lock(&curseg->curseg_mutex);
1748 for (i = 0; i < sits_in_cursum(sum); i++) {
6c311ec6
CF
1749 if (le32_to_cpu(segno_in_journal(sum, i))
1750 == start) {
74de593a
CY
1751 sit = sit_in_journal(sum, i);
1752 mutex_unlock(&curseg->curseg_mutex);
1753 goto got_it;
1754 }
351df4b2 1755 }
74de593a
CY
1756 mutex_unlock(&curseg->curseg_mutex);
1757
1758 page = get_current_sit_page(sbi, start);
1759 sit_blk = (struct f2fs_sit_block *)page_address(page);
1760 sit = sit_blk->entries[SIT_ENTRY_OFFSET(sit_i, start)];
1761 f2fs_put_page(page, 1);
351df4b2 1762got_it:
74de593a
CY
1763 check_block_count(sbi, start, &sit);
1764 seg_info_from_raw_sit(se, &sit);
1765 if (sbi->segs_per_sec > 1) {
1766 struct sec_entry *e = get_sec_entry(sbi, start);
1767 e->valid_blocks += se->valid_blocks;
1768 }
351df4b2 1769 }
74de593a
CY
1770 start_blk += readed;
1771 } while (start_blk < sit_blk_cnt);
351df4b2
JK
1772}
1773
1774static void init_free_segmap(struct f2fs_sb_info *sbi)
1775{
1776 unsigned int start;
1777 int type;
1778
1779 for (start = 0; start < TOTAL_SEGS(sbi); start++) {
1780 struct seg_entry *sentry = get_seg_entry(sbi, start);
1781 if (!sentry->valid_blocks)
1782 __set_free(sbi, start);
1783 }
1784
1785 /* set use the current segments */
1786 for (type = CURSEG_HOT_DATA; type <= CURSEG_COLD_NODE; type++) {
1787 struct curseg_info *curseg_t = CURSEG_I(sbi, type);
1788 __set_test_and_inuse(sbi, curseg_t->segno);
1789 }
1790}
1791
1792static void init_dirty_segmap(struct f2fs_sb_info *sbi)
1793{
1794 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1795 struct free_segmap_info *free_i = FREE_I(sbi);
8736fbf0 1796 unsigned int segno = 0, offset = 0, total_segs = TOTAL_SEGS(sbi);
351df4b2
JK
1797 unsigned short valid_blocks;
1798
8736fbf0 1799 while (1) {
351df4b2 1800 /* find dirty segment based on free segmap */
8736fbf0
NJ
1801 segno = find_next_inuse(free_i, total_segs, offset);
1802 if (segno >= total_segs)
351df4b2
JK
1803 break;
1804 offset = segno + 1;
1805 valid_blocks = get_valid_blocks(sbi, segno, 0);
1806 if (valid_blocks >= sbi->blocks_per_seg || !valid_blocks)
1807 continue;
1808 mutex_lock(&dirty_i->seglist_lock);
1809 __locate_dirty_segment(sbi, segno, DIRTY);
1810 mutex_unlock(&dirty_i->seglist_lock);
1811 }
1812}
1813
5ec4e49f 1814static int init_victim_secmap(struct f2fs_sb_info *sbi)
351df4b2
JK
1815{
1816 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
5ec4e49f 1817 unsigned int bitmap_size = f2fs_bitmap_size(TOTAL_SECS(sbi));
351df4b2 1818
5ec4e49f
JK
1819 dirty_i->victim_secmap = kzalloc(bitmap_size, GFP_KERNEL);
1820 if (!dirty_i->victim_secmap)
351df4b2
JK
1821 return -ENOMEM;
1822 return 0;
1823}
1824
1825static int build_dirty_segmap(struct f2fs_sb_info *sbi)
1826{
1827 struct dirty_seglist_info *dirty_i;
1828 unsigned int bitmap_size, i;
1829
1830 /* allocate memory for dirty segments list information */
1831 dirty_i = kzalloc(sizeof(struct dirty_seglist_info), GFP_KERNEL);
1832 if (!dirty_i)
1833 return -ENOMEM;
1834
1835 SM_I(sbi)->dirty_info = dirty_i;
1836 mutex_init(&dirty_i->seglist_lock);
1837
1838 bitmap_size = f2fs_bitmap_size(TOTAL_SEGS(sbi));
1839
1840 for (i = 0; i < NR_DIRTY_TYPE; i++) {
1841 dirty_i->dirty_segmap[i] = kzalloc(bitmap_size, GFP_KERNEL);
351df4b2
JK
1842 if (!dirty_i->dirty_segmap[i])
1843 return -ENOMEM;
1844 }
1845
1846 init_dirty_segmap(sbi);
5ec4e49f 1847 return init_victim_secmap(sbi);
351df4b2
JK
1848}
1849
0a8165d7 1850/*
351df4b2
JK
1851 * Update min, max modified time for cost-benefit GC algorithm
1852 */
1853static void init_min_max_mtime(struct f2fs_sb_info *sbi)
1854{
1855 struct sit_info *sit_i = SIT_I(sbi);
1856 unsigned int segno;
1857
1858 mutex_lock(&sit_i->sentry_lock);
1859
1860 sit_i->min_mtime = LLONG_MAX;
1861
1862 for (segno = 0; segno < TOTAL_SEGS(sbi); segno += sbi->segs_per_sec) {
1863 unsigned int i;
1864 unsigned long long mtime = 0;
1865
1866 for (i = 0; i < sbi->segs_per_sec; i++)
1867 mtime += get_seg_entry(sbi, segno + i)->mtime;
1868
1869 mtime = div_u64(mtime, sbi->segs_per_sec);
1870
1871 if (sit_i->min_mtime > mtime)
1872 sit_i->min_mtime = mtime;
1873 }
1874 sit_i->max_mtime = get_mtime(sbi);
1875 mutex_unlock(&sit_i->sentry_lock);
1876}
1877
1878int build_segment_manager(struct f2fs_sb_info *sbi)
1879{
1880 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
1881 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1042d60f 1882 struct f2fs_sm_info *sm_info;
351df4b2
JK
1883 int err;
1884
1885 sm_info = kzalloc(sizeof(struct f2fs_sm_info), GFP_KERNEL);
1886 if (!sm_info)
1887 return -ENOMEM;
1888
1889 /* init sm info */
1890 sbi->sm_info = sm_info;
1891 INIT_LIST_HEAD(&sm_info->wblist_head);
1892 spin_lock_init(&sm_info->wblist_lock);
1893 sm_info->seg0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
1894 sm_info->main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
1895 sm_info->segment_count = le32_to_cpu(raw_super->segment_count);
1896 sm_info->reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
1897 sm_info->ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
1898 sm_info->main_segments = le32_to_cpu(raw_super->segment_count_main);
1899 sm_info->ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
58c41035
JK
1900 sm_info->rec_prefree_segments = sm_info->main_segments *
1901 DEF_RECLAIM_PREFREE_SEGMENTS / 100;
216fbd64
JK
1902 sm_info->ipu_policy = F2FS_IPU_DISABLE;
1903 sm_info->min_ipu_util = DEF_MIN_IPU_UTIL;
351df4b2 1904
7fd9e544
JK
1905 INIT_LIST_HEAD(&sm_info->discard_list);
1906 sm_info->nr_discards = 0;
1907 sm_info->max_discards = 0;
1908
b270ad6f 1909 if (test_opt(sbi, FLUSH_MERGE) && !f2fs_readonly(sbi->sb)) {
2163d198
GZ
1910 err = create_flush_cmd_control(sbi);
1911 if (err)
a688b9d9 1912 return err;
6b4afdd7
JK
1913 }
1914
351df4b2
JK
1915 err = build_sit_info(sbi);
1916 if (err)
1917 return err;
1918 err = build_free_segmap(sbi);
1919 if (err)
1920 return err;
1921 err = build_curseg(sbi);
1922 if (err)
1923 return err;
1924
1925 /* reinit free segmap based on SIT */
1926 build_sit_entries(sbi);
1927
1928 init_free_segmap(sbi);
1929 err = build_dirty_segmap(sbi);
1930 if (err)
1931 return err;
1932
1933 init_min_max_mtime(sbi);
1934 return 0;
1935}
1936
1937static void discard_dirty_segmap(struct f2fs_sb_info *sbi,
1938 enum dirty_type dirty_type)
1939{
1940 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1941
1942 mutex_lock(&dirty_i->seglist_lock);
1943 kfree(dirty_i->dirty_segmap[dirty_type]);
1944 dirty_i->nr_dirty[dirty_type] = 0;
1945 mutex_unlock(&dirty_i->seglist_lock);
1946}
1947
5ec4e49f 1948static void destroy_victim_secmap(struct f2fs_sb_info *sbi)
351df4b2
JK
1949{
1950 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
5ec4e49f 1951 kfree(dirty_i->victim_secmap);
351df4b2
JK
1952}
1953
1954static void destroy_dirty_segmap(struct f2fs_sb_info *sbi)
1955{
1956 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1957 int i;
1958
1959 if (!dirty_i)
1960 return;
1961
1962 /* discard pre-free/dirty segments list */
1963 for (i = 0; i < NR_DIRTY_TYPE; i++)
1964 discard_dirty_segmap(sbi, i);
1965
5ec4e49f 1966 destroy_victim_secmap(sbi);
351df4b2
JK
1967 SM_I(sbi)->dirty_info = NULL;
1968 kfree(dirty_i);
1969}
1970
1971static void destroy_curseg(struct f2fs_sb_info *sbi)
1972{
1973 struct curseg_info *array = SM_I(sbi)->curseg_array;
1974 int i;
1975
1976 if (!array)
1977 return;
1978 SM_I(sbi)->curseg_array = NULL;
1979 for (i = 0; i < NR_CURSEG_TYPE; i++)
1980 kfree(array[i].sum_blk);
1981 kfree(array);
1982}
1983
1984static void destroy_free_segmap(struct f2fs_sb_info *sbi)
1985{
1986 struct free_segmap_info *free_i = SM_I(sbi)->free_info;
1987 if (!free_i)
1988 return;
1989 SM_I(sbi)->free_info = NULL;
1990 kfree(free_i->free_segmap);
1991 kfree(free_i->free_secmap);
1992 kfree(free_i);
1993}
1994
1995static void destroy_sit_info(struct f2fs_sb_info *sbi)
1996{
1997 struct sit_info *sit_i = SIT_I(sbi);
1998 unsigned int start;
1999
2000 if (!sit_i)
2001 return;
2002
2003 if (sit_i->sentries) {
2004 for (start = 0; start < TOTAL_SEGS(sbi); start++) {
2005 kfree(sit_i->sentries[start].cur_valid_map);
2006 kfree(sit_i->sentries[start].ckpt_valid_map);
2007 }
2008 }
2009 vfree(sit_i->sentries);
2010 vfree(sit_i->sec_entries);
2011 kfree(sit_i->dirty_sentries_bitmap);
2012
2013 SM_I(sbi)->sit_info = NULL;
2014 kfree(sit_i->sit_bitmap);
2015 kfree(sit_i);
2016}
2017
2018void destroy_segment_manager(struct f2fs_sb_info *sbi)
2019{
2020 struct f2fs_sm_info *sm_info = SM_I(sbi);
a688b9d9 2021
3b03f724
CY
2022 if (!sm_info)
2023 return;
2163d198 2024 destroy_flush_cmd_control(sbi);
351df4b2
JK
2025 destroy_dirty_segmap(sbi);
2026 destroy_curseg(sbi);
2027 destroy_free_segmap(sbi);
2028 destroy_sit_info(sbi);
2029 sbi->sm_info = NULL;
2030 kfree(sm_info);
2031}
7fd9e544
JK
2032
2033int __init create_segment_manager_caches(void)
2034{
2035 discard_entry_slab = f2fs_kmem_cache_create("discard_entry",
e8512d2e 2036 sizeof(struct discard_entry));
7fd9e544
JK
2037 if (!discard_entry_slab)
2038 return -ENOMEM;
6b4afdd7
JK
2039 flush_cmd_slab = f2fs_kmem_cache_create("flush_command",
2040 sizeof(struct flush_cmd));
2041 if (!flush_cmd_slab) {
2042 kmem_cache_destroy(discard_entry_slab);
2043 return -ENOMEM;
2044 }
7fd9e544
JK
2045 return 0;
2046}
2047
2048void destroy_segment_manager_caches(void)
2049{
2050 kmem_cache_destroy(discard_entry_slab);
6b4afdd7 2051 kmem_cache_destroy(flush_cmd_slab);
7fd9e544 2052}
This page took 0.418791 seconds and 5 git commands to generate.