blob: 5f6ef163aa8f34409b8737356d84914cbb6ea1fd [file] [log] [blame]
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002 * fs/f2fs/segment.h
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 */
Jaegeuk Kimac5d1562013-04-29 16:58:39 +090011#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040012#include <linux/backing-dev.h>
Jaegeuk Kimac5d1562013-04-29 16:58:39 +090013
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090014/* constant macro */
15#define NULL_SEGNO ((unsigned int)(~0))
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +090016#define NULL_SECNO ((unsigned int)(~0))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090017
Jaegeuk Kim58c41032014-03-19 14:17:21 +090018#define DEF_RECLAIM_PREFREE_SEGMENTS 5 /* 5% over total segments */
Jaegeuk Kim44a83492016-07-13 18:23:35 -070019#define DEF_MAX_RECLAIM_PREFREE_SEGMENTS 4096 /* 8GB in maximum */
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +090020
Jaegeuk Kim2040fce82016-12-05 13:56:04 -080021#define F2FS_MIN_SEGMENTS 9 /* SB + 2 (CP + SIT + NAT) + SSA + MAIN */
22
Namjae Jeon6224da82013-04-06 14:44:32 +090023/* L: Logical segment # in volume, R: Relative segment # in main area */
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030024#define GET_L2R_SEGNO(free_i, segno) ((segno) - (free_i)->start_segno)
25#define GET_R2L_SEGNO(free_i, segno) ((segno) + (free_i)->start_segno)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090026
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030027#define IS_DATASEG(t) ((t) <= CURSEG_COLD_DATA)
28#define IS_NODESEG(t) ((t) >= CURSEG_HOT_NODE)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090029
Jaegeuk Kim5c773ba2013-03-31 12:30:04 +090030#define IS_CURSEG(sbi, seg) \
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030031 (((seg) == CURSEG_I(sbi, CURSEG_HOT_DATA)->segno) || \
32 ((seg) == CURSEG_I(sbi, CURSEG_WARM_DATA)->segno) || \
33 ((seg) == CURSEG_I(sbi, CURSEG_COLD_DATA)->segno) || \
34 ((seg) == CURSEG_I(sbi, CURSEG_HOT_NODE)->segno) || \
35 ((seg) == CURSEG_I(sbi, CURSEG_WARM_NODE)->segno) || \
36 ((seg) == CURSEG_I(sbi, CURSEG_COLD_NODE)->segno))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090037
38#define IS_CURSEC(sbi, secno) \
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030039 (((secno) == CURSEG_I(sbi, CURSEG_HOT_DATA)->segno / \
40 (sbi)->segs_per_sec) || \
41 ((secno) == CURSEG_I(sbi, CURSEG_WARM_DATA)->segno / \
42 (sbi)->segs_per_sec) || \
43 ((secno) == CURSEG_I(sbi, CURSEG_COLD_DATA)->segno / \
44 (sbi)->segs_per_sec) || \
45 ((secno) == CURSEG_I(sbi, CURSEG_HOT_NODE)->segno / \
46 (sbi)->segs_per_sec) || \
47 ((secno) == CURSEG_I(sbi, CURSEG_WARM_NODE)->segno / \
48 (sbi)->segs_per_sec) || \
49 ((secno) == CURSEG_I(sbi, CURSEG_COLD_NODE)->segno / \
50 (sbi)->segs_per_sec)) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090051
Jaegeuk Kim7cd85582014-09-23 11:23:01 -070052#define MAIN_BLKADDR(sbi) (SM_I(sbi)->main_blkaddr)
53#define SEG0_BLKADDR(sbi) (SM_I(sbi)->seg0_blkaddr)
54
55#define MAIN_SEGS(sbi) (SM_I(sbi)->main_segments)
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030056#define MAIN_SECS(sbi) ((sbi)->total_sections)
Jaegeuk Kim7cd85582014-09-23 11:23:01 -070057
58#define TOTAL_SEGS(sbi) (SM_I(sbi)->segment_count)
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030059#define TOTAL_BLKS(sbi) (TOTAL_SEGS(sbi) << (sbi)->log_blocks_per_seg)
Jaegeuk Kim7cd85582014-09-23 11:23:01 -070060
61#define MAX_BLKADDR(sbi) (SEG0_BLKADDR(sbi) + TOTAL_BLKS(sbi))
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030062#define SEGMENT_SIZE(sbi) (1ULL << ((sbi)->log_blocksize + \
63 (sbi)->log_blocks_per_seg))
Jaegeuk Kim7cd85582014-09-23 11:23:01 -070064
65#define START_BLOCK(sbi, segno) (SEG0_BLKADDR(sbi) + \
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030066 (GET_R2L_SEGNO(FREE_I(sbi), segno) << (sbi)->log_blocks_per_seg))
Jaegeuk Kim7cd85582014-09-23 11:23:01 -070067
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090068#define NEXT_FREE_BLKADDR(sbi, curseg) \
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030069 (START_BLOCK(sbi, (curseg)->segno) + (curseg)->next_blkoff)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090070
Jaegeuk Kim7cd85582014-09-23 11:23:01 -070071#define GET_SEGOFF_FROM_SEG0(sbi, blk_addr) ((blk_addr) - SEG0_BLKADDR(sbi))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090072#define GET_SEGNO_FROM_SEG0(sbi, blk_addr) \
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030073 (GET_SEGOFF_FROM_SEG0(sbi, blk_addr) >> (sbi)->log_blocks_per_seg)
Jaegeuk Kim491c0852014-02-04 13:01:10 +090074#define GET_BLKOFF_FROM_SEG0(sbi, blk_addr) \
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030075 (GET_SEGOFF_FROM_SEG0(sbi, blk_addr) & ((sbi)->blocks_per_seg - 1))
Jaegeuk Kim491c0852014-02-04 13:01:10 +090076
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090077#define GET_SEGNO(sbi, blk_addr) \
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030078 ((((blk_addr) == NULL_ADDR) || ((blk_addr) == NEW_ADDR)) ? \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090079 NULL_SEGNO : GET_L2R_SEGNO(FREE_I(sbi), \
80 GET_SEGNO_FROM_SEG0(sbi, blk_addr)))
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -070081#define BLKS_PER_SEC(sbi) \
82 ((sbi)->segs_per_sec * (sbi)->blocks_per_seg)
83#define GET_SEC_FROM_SEG(sbi, segno) \
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030084 ((segno) / (sbi)->segs_per_sec)
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -070085#define GET_SEG_FROM_SEC(sbi, secno) \
Jaegeuk Kim63fcf8e2017-04-07 14:27:07 -070086 ((secno) * (sbi)->segs_per_sec)
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -070087#define GET_ZONE_FROM_SEC(sbi, secno) \
88 ((secno) / (sbi)->secs_per_zone)
89#define GET_ZONE_FROM_SEG(sbi, segno) \
90 GET_ZONE_FROM_SEC(sbi, GET_SEC_FROM_SEG(sbi, segno))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090091
92#define GET_SUM_BLOCK(sbi, segno) \
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030093 ((sbi)->sm_info->ssa_blkaddr + (segno))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090094
95#define GET_SUM_TYPE(footer) ((footer)->entry_type)
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030096#define SET_SUM_TYPE(footer, type) ((footer)->entry_type = (type))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090097
98#define SIT_ENTRY_OFFSET(sit_i, segno) \
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +030099 ((segno) % (sit_i)->sents_per_block)
Chao Yud3a14af2014-09-04 18:11:47 +0800100#define SIT_BLOCK_OFFSET(segno) \
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +0300101 ((segno) / SIT_ENTRY_PER_BLOCK)
Chao Yud3a14af2014-09-04 18:11:47 +0800102#define START_SEGNO(segno) \
103 (SIT_BLOCK_OFFSET(segno) * SIT_ENTRY_PER_BLOCK)
Chao Yu74de5932013-11-22 09:09:59 +0800104#define SIT_BLK_CNT(sbi) \
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700105 ((MAIN_SEGS(sbi) + SIT_ENTRY_PER_BLOCK - 1) / SIT_ENTRY_PER_BLOCK)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900106#define f2fs_bitmap_size(nr) \
107 (BITS_TO_LONGS(nr) * sizeof(unsigned long))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900108
Chao Yu55cf9cb2014-09-15 18:01:10 +0800109#define SECTOR_FROM_BLOCK(blk_addr) \
110 (((sector_t)blk_addr) << F2FS_LOG_SECTORS_PER_BLOCK)
111#define SECTOR_TO_BLOCK(sectors) \
Tomohiro Kusumi68afcf22017-04-09 02:11:36 +0300112 ((sectors) >> F2FS_LOG_SECTORS_PER_BLOCK)
Jaegeuk Kim3cd8a232012-12-10 09:26:05 +0900113
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900114/*
115 * indicate a block allocation direction: RIGHT and LEFT.
116 * RIGHT means allocating new sections towards the end of volume.
117 * LEFT means the opposite direction.
118 */
119enum {
120 ALLOC_RIGHT = 0,
121 ALLOC_LEFT
122};
123
124/*
125 * In the victim_sel_policy->alloc_mode, there are two block allocation modes.
126 * LFS writes data sequentially with cleaning operations.
127 * SSR (Slack Space Recycle) reuses obsolete space without cleaning operations.
128 */
129enum {
130 LFS = 0,
131 SSR
132};
133
134/*
135 * In the victim_sel_policy->gc_mode, there are two gc, aka cleaning, modes.
136 * GC_CB is based on cost-benefit algorithm.
137 * GC_GREEDY is based on greedy algorithm.
138 */
139enum {
140 GC_CB = 0,
141 GC_GREEDY
142};
143
144/*
145 * BG_GC means the background cleaning job.
146 * FG_GC means the on-demand cleaning job.
Jaegeuk Kim6aefd932015-10-05 11:02:54 -0700147 * FORCE_FG_GC means on-demand cleaning job in background.
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900148 */
149enum {
150 BG_GC = 0,
Jaegeuk Kim6aefd932015-10-05 11:02:54 -0700151 FG_GC,
152 FORCE_FG_GC,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900153};
154
155/* for a function parameter to select a victim segment */
156struct victim_sel_policy {
157 int alloc_mode; /* LFS or SSR */
158 int gc_mode; /* GC_CB or GC_GREEDY */
159 unsigned long *dirty_segmap; /* dirty segment bitmap */
Jin Xua26b7c82013-09-05 12:45:26 +0800160 unsigned int max_search; /* maximum # of segments to search */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900161 unsigned int offset; /* last scanned bitmap offset */
162 unsigned int ofs_unit; /* bitmap search unit */
163 unsigned int min_cost; /* minimum cost */
164 unsigned int min_segno; /* segment # having min. cost */
165};
166
167struct seg_entry {
Chao Yuf51b4ce2016-05-04 23:19:48 +0800168 unsigned int type:6; /* segment type like CURSEG_XXX_TYPE */
169 unsigned int valid_blocks:10; /* # of valid blocks */
170 unsigned int ckpt_valid_blocks:10; /* # of valid blocks last cp */
171 unsigned int padding:6; /* padding */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900172 unsigned char *cur_valid_map; /* validity bitmap of blocks */
Chao Yu355e7892017-01-07 18:51:01 +0800173#ifdef CONFIG_F2FS_CHECK_FS
174 unsigned char *cur_valid_map_mir; /* mirror of current valid bitmap */
175#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900176 /*
177 * # of valid blocks and the validity bitmap stored in the the last
178 * checkpoint pack. This information is used by the SSR mode.
179 */
Chao Yuf51b4ce2016-05-04 23:19:48 +0800180 unsigned char *ckpt_valid_map; /* validity bitmap of blocks last cp */
Jaegeuk Kima66cdd92015-04-30 22:37:50 -0700181 unsigned char *discard_map;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900182 unsigned long long mtime; /* modification time of the segment */
183};
184
185struct sec_entry {
186 unsigned int valid_blocks; /* # of valid blocks in a section */
187};
188
189struct segment_allocation {
190 void (*allocate_segment)(struct f2fs_sb_info *, int, bool);
191};
192
Chao Yudecd36b2015-08-07 18:42:09 +0800193/*
194 * this value is set in page as a private data which indicate that
195 * the page is atomically written, and it is in inmem_pages list.
196 */
Jaegeuk Kimd48dfc22016-01-29 16:21:15 -0800197#define ATOMIC_WRITTEN_PAGE ((unsigned long)-1)
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -0800198#define DUMMY_WRITTEN_PAGE ((unsigned long)-2)
Chao Yudecd36b2015-08-07 18:42:09 +0800199
200#define IS_ATOMIC_WRITTEN_PAGE(page) \
201 (page_private(page) == (unsigned long)ATOMIC_WRITTEN_PAGE)
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -0800202#define IS_DUMMY_WRITTEN_PAGE(page) \
203 (page_private(page) == (unsigned long)DUMMY_WRITTEN_PAGE)
Chao Yudecd36b2015-08-07 18:42:09 +0800204
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700205struct inmem_pages {
206 struct list_head list;
207 struct page *page;
Chao Yu28bc1062016-02-06 14:40:34 +0800208 block_t old_addr; /* for revoking when fail to commit */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700209};
210
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900211struct sit_info {
212 const struct segment_allocation *s_ops;
213
214 block_t sit_base_addr; /* start block address of SIT area */
215 block_t sit_blocks; /* # of blocks used by SIT area */
216 block_t written_valid_blocks; /* # of valid blocks in main area */
217 char *sit_bitmap; /* SIT bitmap pointer */
Chao Yuae27d622017-01-07 18:52:34 +0800218#ifdef CONFIG_F2FS_CHECK_FS
219 char *sit_bitmap_mir; /* SIT bitmap mirror */
220#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900221 unsigned int bitmap_size; /* SIT bitmap size */
222
Jaegeuk Kim60a3b782015-02-10 16:44:29 -0800223 unsigned long *tmp_map; /* bitmap for temporal use */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900224 unsigned long *dirty_sentries_bitmap; /* bitmap for dirty sentries */
225 unsigned int dirty_sentries; /* # of dirty sentries */
226 unsigned int sents_per_block; /* # of SIT entries per block */
227 struct mutex sentry_lock; /* to protect SIT cache */
228 struct seg_entry *sentries; /* SIT segment-level cache */
229 struct sec_entry *sec_entries; /* SIT section-level cache */
230
231 /* for cost-benefit algorithm in cleaning procedure */
232 unsigned long long elapsed_time; /* elapsed time after mount */
233 unsigned long long mounted_time; /* mount time */
234 unsigned long long min_mtime; /* min. modification time */
235 unsigned long long max_mtime; /* max. modification time */
236};
237
238struct free_segmap_info {
239 unsigned int start_segno; /* start segment number logically */
240 unsigned int free_segments; /* # of free segments */
241 unsigned int free_sections; /* # of free sections */
Chao Yu1a118cc2015-02-11 18:20:38 +0800242 spinlock_t segmap_lock; /* free segmap lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900243 unsigned long *free_segmap; /* free segment bitmap */
244 unsigned long *free_secmap; /* free section bitmap */
245};
246
247/* Notice: The order of dirty type is same with CURSEG_XXX in f2fs.h */
248enum dirty_type {
249 DIRTY_HOT_DATA, /* dirty segments assigned as hot data logs */
250 DIRTY_WARM_DATA, /* dirty segments assigned as warm data logs */
251 DIRTY_COLD_DATA, /* dirty segments assigned as cold data logs */
252 DIRTY_HOT_NODE, /* dirty segments assigned as hot node logs */
253 DIRTY_WARM_NODE, /* dirty segments assigned as warm node logs */
254 DIRTY_COLD_NODE, /* dirty segments assigned as cold node logs */
255 DIRTY, /* to count # of dirty segments */
256 PRE, /* to count # of entirely obsolete segments */
257 NR_DIRTY_TYPE
258};
259
260struct dirty_seglist_info {
261 const struct victim_selection *v_ops; /* victim selction operation */
262 unsigned long *dirty_segmap[NR_DIRTY_TYPE];
263 struct mutex seglist_lock; /* lock for segment bitmaps */
264 int nr_dirty[NR_DIRTY_TYPE]; /* # of dirty segments */
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900265 unsigned long *victim_secmap; /* background GC victims */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900266};
267
268/* victim selection function for cleaning and SSR */
269struct victim_selection {
270 int (*get_victim)(struct f2fs_sb_info *, unsigned int *,
271 int, int, char);
272};
273
274/* for active log information */
275struct curseg_info {
276 struct mutex curseg_mutex; /* lock for consistency */
277 struct f2fs_summary_block *sum_blk; /* cached summary block */
Chao Yub7ad7512016-02-19 18:08:46 +0800278 struct rw_semaphore journal_rwsem; /* protect journal area */
279 struct f2fs_journal *journal; /* cached journal info */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900280 unsigned char alloc_type; /* current allocation type */
281 unsigned int segno; /* current segment number */
282 unsigned short next_blkoff; /* next block offset to write */
283 unsigned int zone; /* current zone number */
284 unsigned int next_segno; /* preallocated segment */
285};
286
Chao Yu184a5cd2014-09-04 18:13:01 +0800287struct sit_entry_set {
288 struct list_head set_list; /* link with all sit sets */
289 unsigned int start_segno; /* start segno of sits in set */
290 unsigned int entry_cnt; /* the # of sit entries in set */
291};
292
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900293/*
294 * inline functions
295 */
296static inline struct curseg_info *CURSEG_I(struct f2fs_sb_info *sbi, int type)
297{
298 return (struct curseg_info *)(SM_I(sbi)->curseg_array + type);
299}
300
301static inline struct seg_entry *get_seg_entry(struct f2fs_sb_info *sbi,
302 unsigned int segno)
303{
304 struct sit_info *sit_i = SIT_I(sbi);
305 return &sit_i->sentries[segno];
306}
307
308static inline struct sec_entry *get_sec_entry(struct f2fs_sb_info *sbi,
309 unsigned int segno)
310{
311 struct sit_info *sit_i = SIT_I(sbi);
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700312 return &sit_i->sec_entries[GET_SEC_FROM_SEG(sbi, segno)];
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900313}
314
315static inline unsigned int get_valid_blocks(struct f2fs_sb_info *sbi,
Jaegeuk Kim302bd342017-04-07 14:33:22 -0700316 unsigned int segno, bool use_section)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900317{
318 /*
319 * In order to get # of valid blocks in a section instantly from many
320 * segments, f2fs manages two counting structures separately.
321 */
Jaegeuk Kim302bd342017-04-07 14:33:22 -0700322 if (use_section && sbi->segs_per_sec > 1)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900323 return get_sec_entry(sbi, segno)->valid_blocks;
324 else
325 return get_seg_entry(sbi, segno)->valid_blocks;
326}
327
328static inline void seg_info_from_raw_sit(struct seg_entry *se,
329 struct f2fs_sit_entry *rs)
330{
331 se->valid_blocks = GET_SIT_VBLOCKS(rs);
332 se->ckpt_valid_blocks = GET_SIT_VBLOCKS(rs);
333 memcpy(se->cur_valid_map, rs->valid_map, SIT_VBLOCK_MAP_SIZE);
334 memcpy(se->ckpt_valid_map, rs->valid_map, SIT_VBLOCK_MAP_SIZE);
Chao Yu355e7892017-01-07 18:51:01 +0800335#ifdef CONFIG_F2FS_CHECK_FS
336 memcpy(se->cur_valid_map_mir, rs->valid_map, SIT_VBLOCK_MAP_SIZE);
337#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900338 se->type = GET_SIT_TYPE(rs);
339 se->mtime = le64_to_cpu(rs->mtime);
340}
341
342static inline void seg_info_to_raw_sit(struct seg_entry *se,
343 struct f2fs_sit_entry *rs)
344{
345 unsigned short raw_vblocks = (se->type << SIT_VBLOCKS_SHIFT) |
346 se->valid_blocks;
347 rs->vblocks = cpu_to_le16(raw_vblocks);
348 memcpy(rs->valid_map, se->cur_valid_map, SIT_VBLOCK_MAP_SIZE);
349 memcpy(se->ckpt_valid_map, rs->valid_map, SIT_VBLOCK_MAP_SIZE);
350 se->ckpt_valid_blocks = se->valid_blocks;
351 rs->mtime = cpu_to_le64(se->mtime);
352}
353
354static inline unsigned int find_next_inuse(struct free_segmap_info *free_i,
355 unsigned int max, unsigned int segno)
356{
357 unsigned int ret;
Chao Yu1a118cc2015-02-11 18:20:38 +0800358 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900359 ret = find_next_bit(free_i->free_segmap, max, segno);
Chao Yu1a118cc2015-02-11 18:20:38 +0800360 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900361 return ret;
362}
363
364static inline void __set_free(struct f2fs_sb_info *sbi, unsigned int segno)
365{
366 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700367 unsigned int secno = GET_SEC_FROM_SEG(sbi, segno);
368 unsigned int start_segno = GET_SEG_FROM_SEC(sbi, secno);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900369 unsigned int next;
370
Chao Yu1a118cc2015-02-11 18:20:38 +0800371 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900372 clear_bit(segno, free_i->free_segmap);
373 free_i->free_segments++;
374
Wanpeng Li7fd97012015-03-06 15:00:55 +0800375 next = find_next_bit(free_i->free_segmap,
376 start_segno + sbi->segs_per_sec, start_segno);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900377 if (next >= start_segno + sbi->segs_per_sec) {
378 clear_bit(secno, free_i->free_secmap);
379 free_i->free_sections++;
380 }
Chao Yu1a118cc2015-02-11 18:20:38 +0800381 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900382}
383
384static inline void __set_inuse(struct f2fs_sb_info *sbi,
385 unsigned int segno)
386{
387 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700388 unsigned int secno = GET_SEC_FROM_SEG(sbi, segno);
389
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900390 set_bit(segno, free_i->free_segmap);
391 free_i->free_segments--;
392 if (!test_and_set_bit(secno, free_i->free_secmap))
393 free_i->free_sections--;
394}
395
396static inline void __set_test_and_free(struct f2fs_sb_info *sbi,
397 unsigned int segno)
398{
399 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700400 unsigned int secno = GET_SEC_FROM_SEG(sbi, segno);
401 unsigned int start_segno = GET_SEG_FROM_SEC(sbi, secno);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900402 unsigned int next;
403
Chao Yu1a118cc2015-02-11 18:20:38 +0800404 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900405 if (test_and_clear_bit(segno, free_i->free_segmap)) {
406 free_i->free_segments++;
407
Chao Yuf1121ab2014-07-14 16:45:15 +0800408 next = find_next_bit(free_i->free_segmap,
409 start_segno + sbi->segs_per_sec, start_segno);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900410 if (next >= start_segno + sbi->segs_per_sec) {
411 if (test_and_clear_bit(secno, free_i->free_secmap))
412 free_i->free_sections++;
413 }
414 }
Chao Yu1a118cc2015-02-11 18:20:38 +0800415 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900416}
417
418static inline void __set_test_and_inuse(struct f2fs_sb_info *sbi,
419 unsigned int segno)
420{
421 struct free_segmap_info *free_i = FREE_I(sbi);
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700422 unsigned int secno = GET_SEC_FROM_SEG(sbi, segno);
423
Chao Yu1a118cc2015-02-11 18:20:38 +0800424 spin_lock(&free_i->segmap_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900425 if (!test_and_set_bit(segno, free_i->free_segmap)) {
426 free_i->free_segments--;
427 if (!test_and_set_bit(secno, free_i->free_secmap))
428 free_i->free_sections--;
429 }
Chao Yu1a118cc2015-02-11 18:20:38 +0800430 spin_unlock(&free_i->segmap_lock);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900431}
432
433static inline void get_sit_bitmap(struct f2fs_sb_info *sbi,
434 void *dst_addr)
435{
436 struct sit_info *sit_i = SIT_I(sbi);
Chao Yuae27d622017-01-07 18:52:34 +0800437
438#ifdef CONFIG_F2FS_CHECK_FS
439 if (memcmp(sit_i->sit_bitmap, sit_i->sit_bitmap_mir,
440 sit_i->bitmap_size))
441 f2fs_bug_on(sbi, 1);
442#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900443 memcpy(dst_addr, sit_i->sit_bitmap, sit_i->bitmap_size);
444}
445
446static inline block_t written_block_count(struct f2fs_sb_info *sbi)
447{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +0900448 return SIT_I(sbi)->written_valid_blocks;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900449}
450
451static inline unsigned int free_segments(struct f2fs_sb_info *sbi)
452{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +0900453 return FREE_I(sbi)->free_segments;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900454}
455
456static inline int reserved_segments(struct f2fs_sb_info *sbi)
457{
458 return SM_I(sbi)->reserved_segments;
459}
460
461static inline unsigned int free_sections(struct f2fs_sb_info *sbi)
462{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +0900463 return FREE_I(sbi)->free_sections;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900464}
465
466static inline unsigned int prefree_segments(struct f2fs_sb_info *sbi)
467{
468 return DIRTY_I(sbi)->nr_dirty[PRE];
469}
470
471static inline unsigned int dirty_segments(struct f2fs_sb_info *sbi)
472{
473 return DIRTY_I(sbi)->nr_dirty[DIRTY_HOT_DATA] +
474 DIRTY_I(sbi)->nr_dirty[DIRTY_WARM_DATA] +
475 DIRTY_I(sbi)->nr_dirty[DIRTY_COLD_DATA] +
476 DIRTY_I(sbi)->nr_dirty[DIRTY_HOT_NODE] +
477 DIRTY_I(sbi)->nr_dirty[DIRTY_WARM_NODE] +
478 DIRTY_I(sbi)->nr_dirty[DIRTY_COLD_NODE];
479}
480
481static inline int overprovision_segments(struct f2fs_sb_info *sbi)
482{
483 return SM_I(sbi)->ovp_segments;
484}
485
486static inline int overprovision_sections(struct f2fs_sb_info *sbi)
487{
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700488 return GET_SEC_FROM_SEG(sbi, (unsigned int)overprovision_segments(sbi));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900489}
490
491static inline int reserved_sections(struct f2fs_sb_info *sbi)
492{
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700493 return GET_SEC_FROM_SEG(sbi, (unsigned int)reserved_segments(sbi));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900494}
495
496static inline bool need_SSR(struct f2fs_sb_info *sbi)
497{
Jaegeuk Kim95dd8972014-09-17 17:52:58 -0700498 int node_secs = get_blocktype_secs(sbi, F2FS_DIRTY_NODES);
499 int dent_secs = get_blocktype_secs(sbi, F2FS_DIRTY_DENTS);
Jaegeuk Kimb9610bd2016-10-14 13:28:05 -0700500 int imeta_secs = get_blocktype_secs(sbi, F2FS_DIRTY_IMETA);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700501
502 if (test_opt(sbi, LFS))
503 return false;
504
Jaegeuk Kimb9610bd2016-10-14 13:28:05 -0700505 return free_sections(sbi) <= (node_secs + 2 * dent_secs + imeta_secs +
Jaegeuk Kim796dbbf2017-03-24 21:08:56 -0400506 2 * reserved_sections(sbi));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900507}
508
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700509static inline bool has_not_enough_free_secs(struct f2fs_sb_info *sbi,
510 int freed, int needed)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900511{
Namjae Jeon5ac206c2013-02-02 23:52:59 +0900512 int node_secs = get_blocktype_secs(sbi, F2FS_DIRTY_NODES);
513 int dent_secs = get_blocktype_secs(sbi, F2FS_DIRTY_DENTS);
Jaegeuk Kimb9610bd2016-10-14 13:28:05 -0700514 int imeta_secs = get_blocktype_secs(sbi, F2FS_DIRTY_IMETA);
Jaegeuk Kim0f18b462016-05-20 11:10:10 -0700515
Chao Yucaf00472015-01-28 17:48:42 +0800516 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
Jaegeuk Kim029cd282012-12-21 17:20:21 +0900517 return false;
518
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700519 return (free_sections(sbi) + freed) <=
Jaegeuk Kimb9610bd2016-10-14 13:28:05 -0700520 (node_secs + 2 * dent_secs + imeta_secs +
521 reserved_sections(sbi) + needed);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900522}
523
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +0900524static inline bool excess_prefree_segs(struct f2fs_sb_info *sbi)
525{
Chris Fries6c311ec2014-01-17 14:44:39 -0600526 return prefree_segments(sbi) > SM_I(sbi)->rec_prefree_segments;
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +0900527}
528
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900529static inline int utilization(struct f2fs_sb_info *sbi)
530{
Chris Fries6c311ec2014-01-17 14:44:39 -0600531 return div_u64((u64)valid_user_blocks(sbi) * 100,
532 sbi->user_block_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900533}
534
535/*
536 * Sometimes f2fs may be better to drop out-of-place update policy.
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900537 * And, users can control the policy through sysfs entries.
538 * There are five policies with triggering conditions as follows.
539 * F2FS_IPU_FORCE - all the time,
540 * F2FS_IPU_SSR - if SSR mode is activated,
541 * F2FS_IPU_UTIL - if FS utilization is over threashold,
542 * F2FS_IPU_SSR_UTIL - if SSR mode is activated and FS utilization is over
543 * threashold,
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -0700544 * F2FS_IPU_FSYNC - activated in fsync path only for high performance flash
545 * storages. IPU will be triggered only if the # of dirty
546 * pages over min_fsync_blocks.
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900547 * F2FS_IPUT_DISABLE - disable IPU. (=default option)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900548 */
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900549#define DEF_MIN_IPU_UTIL 70
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -0700550#define DEF_MIN_FSYNC_BLOCKS 8
Jaegeuk Kimef095d12017-03-24 20:05:13 -0400551#define DEF_MIN_HOT_BLOCKS 16
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900552
553enum {
554 F2FS_IPU_FORCE,
555 F2FS_IPU_SSR,
556 F2FS_IPU_UTIL,
557 F2FS_IPU_SSR_UTIL,
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -0700558 F2FS_IPU_FSYNC,
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900559};
560
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900561static inline bool need_inplace_update(struct inode *inode)
562{
Jaegeuk Kim40813632014-09-02 15:31:18 -0700563 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim9b5f1362014-09-16 18:30:54 -0700564 unsigned int policy = SM_I(sbi)->ipu_policy;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900565
566 /* IPU can be done only for the user data */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700567 if (S_ISDIR(inode->i_mode) || f2fs_is_atomic_file(inode))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900568 return false;
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900569
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700570 if (test_opt(sbi, LFS))
571 return false;
572
Jaegeuk Kim9b5f1362014-09-16 18:30:54 -0700573 if (policy & (0x1 << F2FS_IPU_FORCE))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900574 return true;
Jaegeuk Kim9b5f1362014-09-16 18:30:54 -0700575 if (policy & (0x1 << F2FS_IPU_SSR) && need_SSR(sbi))
576 return true;
577 if (policy & (0x1 << F2FS_IPU_UTIL) &&
578 utilization(sbi) > SM_I(sbi)->min_ipu_util)
579 return true;
580 if (policy & (0x1 << F2FS_IPU_SSR_UTIL) && need_SSR(sbi) &&
581 utilization(sbi) > SM_I(sbi)->min_ipu_util)
582 return true;
583
584 /* this is only set during fdatasync */
585 if (policy & (0x1 << F2FS_IPU_FSYNC) &&
Jaegeuk Kim91942322016-05-20 10:13:22 -0700586 is_inode_flag_set(inode, FI_NEED_IPU))
Jaegeuk Kim9b5f1362014-09-16 18:30:54 -0700587 return true;
588
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900589 return false;
590}
591
592static inline unsigned int curseg_segno(struct f2fs_sb_info *sbi,
593 int type)
594{
595 struct curseg_info *curseg = CURSEG_I(sbi, type);
596 return curseg->segno;
597}
598
599static inline unsigned char curseg_alloc_type(struct f2fs_sb_info *sbi,
600 int type)
601{
602 struct curseg_info *curseg = CURSEG_I(sbi, type);
603 return curseg->alloc_type;
604}
605
606static inline unsigned short curseg_blkoff(struct f2fs_sb_info *sbi, int type)
607{
608 struct curseg_info *curseg = CURSEG_I(sbi, type);
609 return curseg->next_blkoff;
610}
611
612static inline void check_seg_range(struct f2fs_sb_info *sbi, unsigned int segno)
613{
Liu Xue7a04f642015-07-27 10:17:59 +0000614 f2fs_bug_on(sbi, segno > TOTAL_SEGS(sbi) - 1);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900615}
616
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900617static inline void verify_block_addr(struct f2fs_sb_info *sbi, block_t blk_addr)
618{
Yunlei Hebb413d62016-07-28 12:12:38 +0800619 BUG_ON(blk_addr < SEG0_BLKADDR(sbi)
620 || blk_addr >= MAX_BLKADDR(sbi));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900621}
622
623/*
arter97e1c42042014-08-06 23:22:50 +0900624 * Summary block is always treated as an invalid block
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900625 */
626static inline void check_block_count(struct f2fs_sb_info *sbi,
627 int segno, struct f2fs_sit_entry *raw_sit)
628{
Jaegeuk Kim4c278392015-08-11 16:01:30 -0700629#ifdef CONFIG_F2FS_CHECK_FS
Chao Yu44c60bf2013-10-29 14:50:40 +0800630 bool is_valid = test_bit_le(0, raw_sit->valid_map) ? true : false;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900631 int valid_blocks = 0;
Chao Yu44c60bf2013-10-29 14:50:40 +0800632 int cur_pos = 0, next_pos;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900633
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900634 /* check bitmap with valid block count */
Chao Yu44c60bf2013-10-29 14:50:40 +0800635 do {
636 if (is_valid) {
637 next_pos = find_next_zero_bit_le(&raw_sit->valid_map,
638 sbi->blocks_per_seg,
639 cur_pos);
640 valid_blocks += next_pos - cur_pos;
641 } else
642 next_pos = find_next_bit_le(&raw_sit->valid_map,
643 sbi->blocks_per_seg,
644 cur_pos);
645 cur_pos = next_pos;
646 is_valid = !is_valid;
647 } while (cur_pos < sbi->blocks_per_seg);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900648 BUG_ON(GET_SIT_VBLOCKS(raw_sit) != valid_blocks);
Jaegeuk Kim5d56b672013-10-29 15:14:54 +0900649#endif
Jaegeuk Kim4c278392015-08-11 16:01:30 -0700650 /* check segment usage, and check boundary of a given segment number */
651 f2fs_bug_on(sbi, GET_SIT_VBLOCKS(raw_sit) > sbi->blocks_per_seg
652 || segno > TOTAL_SEGS(sbi) - 1);
Liu Xue7a04f642015-07-27 10:17:59 +0000653}
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900654
655static inline pgoff_t current_sit_addr(struct f2fs_sb_info *sbi,
656 unsigned int start)
657{
658 struct sit_info *sit_i = SIT_I(sbi);
Chao Yud3a14af2014-09-04 18:11:47 +0800659 unsigned int offset = SIT_BLOCK_OFFSET(start);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900660 block_t blk_addr = sit_i->sit_base_addr + offset;
661
662 check_seg_range(sbi, start);
663
Chao Yuae27d622017-01-07 18:52:34 +0800664#ifdef CONFIG_F2FS_CHECK_FS
665 if (f2fs_test_bit(offset, sit_i->sit_bitmap) !=
666 f2fs_test_bit(offset, sit_i->sit_bitmap_mir))
667 f2fs_bug_on(sbi, 1);
668#endif
669
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900670 /* calculate sit block address */
671 if (f2fs_test_bit(offset, sit_i->sit_bitmap))
672 blk_addr += sit_i->sit_blocks;
673
674 return blk_addr;
675}
676
677static inline pgoff_t next_sit_addr(struct f2fs_sb_info *sbi,
678 pgoff_t block_addr)
679{
680 struct sit_info *sit_i = SIT_I(sbi);
681 block_addr -= sit_i->sit_base_addr;
682 if (block_addr < sit_i->sit_blocks)
683 block_addr += sit_i->sit_blocks;
684 else
685 block_addr -= sit_i->sit_blocks;
686
687 return block_addr + sit_i->sit_base_addr;
688}
689
690static inline void set_to_next_sit(struct sit_info *sit_i, unsigned int start)
691{
Chao Yud3a14af2014-09-04 18:11:47 +0800692 unsigned int block_off = SIT_BLOCK_OFFSET(start);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900693
Gu Zhengc6ac4c02014-10-20 17:45:50 +0800694 f2fs_change_bit(block_off, sit_i->sit_bitmap);
Chao Yuae27d622017-01-07 18:52:34 +0800695#ifdef CONFIG_F2FS_CHECK_FS
696 f2fs_change_bit(block_off, sit_i->sit_bitmap_mir);
697#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900698}
699
700static inline unsigned long long get_mtime(struct f2fs_sb_info *sbi)
701{
702 struct sit_info *sit_i = SIT_I(sbi);
703 return sit_i->elapsed_time + CURRENT_TIME_SEC.tv_sec -
704 sit_i->mounted_time;
705}
706
707static inline void set_summary(struct f2fs_summary *sum, nid_t nid,
708 unsigned int ofs_in_node, unsigned char version)
709{
710 sum->nid = cpu_to_le32(nid);
711 sum->ofs_in_node = cpu_to_le16(ofs_in_node);
712 sum->version = version;
713}
714
715static inline block_t start_sum_block(struct f2fs_sb_info *sbi)
716{
717 return __start_cp_addr(sbi) +
718 le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
719}
720
721static inline block_t sum_blk_addr(struct f2fs_sb_info *sbi, int base, int type)
722{
723 return __start_cp_addr(sbi) +
724 le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_total_block_count)
725 - (base + 1) + type;
726}
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900727
Hou Pengyange93b9862017-02-16 12:34:31 +0000728static inline bool no_fggc_candidate(struct f2fs_sb_info *sbi,
729 unsigned int secno)
730{
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700731 if (get_valid_blocks(sbi, GET_SEG_FROM_SEC(sbi, secno), true) >=
Jaegeuk Kim302bd342017-04-07 14:33:22 -0700732 sbi->fggc_threshold)
Hou Pengyange93b9862017-02-16 12:34:31 +0000733 return true;
734 return false;
735}
736
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900737static inline bool sec_usage_check(struct f2fs_sb_info *sbi, unsigned int secno)
738{
739 if (IS_CURSEC(sbi, secno) || (sbi->cur_victim_sec == secno))
740 return true;
741 return false;
742}
Jaegeuk Kimac5d1562013-04-29 16:58:39 +0900743
Jaegeuk Kim87d6f892014-03-18 12:40:49 +0900744/*
745 * It is very important to gather dirty pages and write at once, so that we can
746 * submit a big bio without interfering other data writes.
747 * By default, 512 pages for directory data,
Kinglong Mee727ebb02017-02-25 19:32:21 +0800748 * 512 pages (2MB) * 8 for nodes, and
749 * 256 pages * 8 for meta are set.
Jaegeuk Kim87d6f892014-03-18 12:40:49 +0900750 */
751static inline int nr_pages_to_skip(struct f2fs_sb_info *sbi, int type)
752{
Tejun Heoa88a3412015-05-22 17:13:28 -0400753 if (sbi->sb->s_bdi->wb.dirty_exceeded)
Jaegeuk Kim510184c2014-11-06 17:23:08 -0800754 return 0;
755
Jaegeuk Kima1257022015-10-08 10:40:07 -0700756 if (type == DATA)
757 return sbi->blocks_per_seg;
758 else if (type == NODE)
Jaegeuk Kim2c237eb2016-06-16 16:44:11 -0700759 return 8 * sbi->blocks_per_seg;
Jaegeuk Kim87d6f892014-03-18 12:40:49 +0900760 else if (type == META)
Jaegeuk Kim664ba972016-10-18 11:07:45 -0700761 return 8 * BIO_MAX_PAGES;
Jaegeuk Kim87d6f892014-03-18 12:40:49 +0900762 else
763 return 0;
764}
Jaegeuk Kim50c8cdb2014-03-18 13:47:11 +0900765
766/*
767 * When writing pages, it'd better align nr_to_write for segment size.
768 */
769static inline long nr_pages_to_write(struct f2fs_sb_info *sbi, int type,
770 struct writeback_control *wbc)
771{
772 long nr_to_write, desired;
773
774 if (wbc->sync_mode != WB_SYNC_NONE)
775 return 0;
776
777 nr_to_write = wbc->nr_to_write;
Jaegeuk Kim664ba972016-10-18 11:07:45 -0700778 desired = BIO_MAX_PAGES;
Jaegeuk Kim28ea6162016-05-25 17:17:56 -0700779 if (type == NODE)
Jaegeuk Kim664ba972016-10-18 11:07:45 -0700780 desired <<= 1;
Jaegeuk Kim50c8cdb2014-03-18 13:47:11 +0900781
782 wbc->nr_to_write = desired;
783 return desired - nr_to_write;
784}