2 * f2fs debugging statistics
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 * Copyright (c) 2012 Linux Foundation
7 * Copyright (c) 2012 Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
15 #include <linux/backing-dev.h>
16 #include <linux/f2fs_fs.h>
17 #include <linux/blkdev.h>
18 #include <linux/debugfs.h>
19 #include <linux/seq_file.h>
26 static LIST_HEAD(f2fs_stat_list
);
27 static struct dentry
*f2fs_debugfs_root
;
28 static DEFINE_MUTEX(f2fs_stat_mutex
);
30 static void update_general_status(struct f2fs_sb_info
*sbi
)
32 struct f2fs_stat_info
*si
= F2FS_STAT(sbi
);
35 /* validation check of the segment numbers */
36 si
->hit_largest
= atomic64_read(&sbi
->read_hit_largest
);
37 si
->hit_cached
= atomic64_read(&sbi
->read_hit_cached
);
38 si
->hit_rbtree
= atomic64_read(&sbi
->read_hit_rbtree
);
39 si
->hit_total
= si
->hit_largest
+ si
->hit_cached
+ si
->hit_rbtree
;
40 si
->total_ext
= atomic64_read(&sbi
->total_hit_ext
);
41 si
->ext_tree
= atomic_read(&sbi
->total_ext_tree
);
42 si
->zombie_tree
= atomic_read(&sbi
->total_zombie_tree
);
43 si
->ext_node
= atomic_read(&sbi
->total_ext_node
);
44 si
->ndirty_node
= get_pages(sbi
, F2FS_DIRTY_NODES
);
45 si
->ndirty_dent
= get_pages(sbi
, F2FS_DIRTY_DENTS
);
46 si
->ndirty_meta
= get_pages(sbi
, F2FS_DIRTY_META
);
47 si
->ndirty_data
= get_pages(sbi
, F2FS_DIRTY_DATA
);
48 si
->ndirty_qdata
= get_pages(sbi
, F2FS_DIRTY_QDATA
);
49 si
->ndirty_imeta
= get_pages(sbi
, F2FS_DIRTY_IMETA
);
50 si
->ndirty_dirs
= sbi
->ndirty_inode
[DIR_INODE
];
51 si
->ndirty_files
= sbi
->ndirty_inode
[FILE_INODE
];
52 si
->nquota_files
= sbi
->nquota_files
;
53 si
->ndirty_all
= sbi
->ndirty_inode
[DIRTY_META
];
54 si
->inmem_pages
= get_pages(sbi
, F2FS_INMEM_PAGES
);
55 si
->aw_cnt
= atomic_read(&sbi
->aw_cnt
);
56 si
->vw_cnt
= atomic_read(&sbi
->vw_cnt
);
57 si
->max_aw_cnt
= atomic_read(&sbi
->max_aw_cnt
);
58 si
->max_vw_cnt
= atomic_read(&sbi
->max_vw_cnt
);
59 si
->nr_wb_cp_data
= get_pages(sbi
, F2FS_WB_CP_DATA
);
60 si
->nr_wb_data
= get_pages(sbi
, F2FS_WB_DATA
);
61 if (SM_I(sbi
) && SM_I(sbi
)->fcc_info
) {
63 atomic_read(&SM_I(sbi
)->fcc_info
->issued_flush
);
65 atomic_read(&SM_I(sbi
)->fcc_info
->issing_flush
);
66 si
->flush_list_empty
=
67 llist_empty(&SM_I(sbi
)->fcc_info
->issue_list
);
69 if (SM_I(sbi
) && SM_I(sbi
)->dcc_info
) {
71 atomic_read(&SM_I(sbi
)->dcc_info
->issued_discard
);
73 atomic_read(&SM_I(sbi
)->dcc_info
->issing_discard
);
75 atomic_read(&SM_I(sbi
)->dcc_info
->discard_cmd_cnt
);
76 si
->undiscard_blks
= SM_I(sbi
)->dcc_info
->undiscard_blks
;
78 si
->total_count
= (int)sbi
->user_block_count
/ sbi
->blocks_per_seg
;
79 si
->rsvd_segs
= reserved_segments(sbi
);
80 si
->overp_segs
= overprovision_segments(sbi
);
81 si
->valid_count
= valid_user_blocks(sbi
);
82 si
->discard_blks
= discard_blocks(sbi
);
83 si
->valid_node_count
= valid_node_count(sbi
);
84 si
->valid_inode_count
= valid_inode_count(sbi
);
85 si
->inline_xattr
= atomic_read(&sbi
->inline_xattr
);
86 si
->inline_inode
= atomic_read(&sbi
->inline_inode
);
87 si
->inline_dir
= atomic_read(&sbi
->inline_dir
);
88 si
->append
= sbi
->im
[APPEND_INO
].ino_num
;
89 si
->update
= sbi
->im
[UPDATE_INO
].ino_num
;
90 si
->orphans
= sbi
->im
[ORPHAN_INO
].ino_num
;
91 si
->utilization
= utilization(sbi
);
93 si
->free_segs
= free_segments(sbi
);
94 si
->free_secs
= free_sections(sbi
);
95 si
->prefree_count
= prefree_segments(sbi
);
96 si
->dirty_count
= dirty_segments(sbi
);
97 si
->node_pages
= NODE_MAPPING(sbi
)->nrpages
;
98 si
->meta_pages
= META_MAPPING(sbi
)->nrpages
;
99 si
->nats
= NM_I(sbi
)->nat_cnt
;
100 si
->dirty_nats
= NM_I(sbi
)->dirty_nat_cnt
;
101 si
->sits
= MAIN_SEGS(sbi
);
102 si
->dirty_sits
= SIT_I(sbi
)->dirty_sentries
;
103 si
->free_nids
= NM_I(sbi
)->nid_cnt
[FREE_NID
];
104 si
->avail_nids
= NM_I(sbi
)->available_nids
;
105 si
->alloc_nids
= NM_I(sbi
)->nid_cnt
[PREALLOC_NID
];
106 si
->bg_gc
= sbi
->bg_gc
;
107 si
->util_free
= (int)(free_user_blocks(sbi
) >> sbi
->log_blocks_per_seg
)
108 * 100 / (int)(sbi
->user_block_count
>> sbi
->log_blocks_per_seg
)
110 si
->util_valid
= (int)(written_block_count(sbi
) >>
111 sbi
->log_blocks_per_seg
)
112 * 100 / (int)(sbi
->user_block_count
>> sbi
->log_blocks_per_seg
)
114 si
->util_invalid
= 50 - si
->util_free
- si
->util_valid
;
115 for (i
= CURSEG_HOT_DATA
; i
<= CURSEG_COLD_NODE
; i
++) {
116 struct curseg_info
*curseg
= CURSEG_I(sbi
, i
);
117 si
->curseg
[i
] = curseg
->segno
;
118 si
->cursec
[i
] = GET_SEC_FROM_SEG(sbi
, curseg
->segno
);
119 si
->curzone
[i
] = GET_ZONE_FROM_SEC(sbi
, si
->cursec
[i
]);
122 for (i
= 0; i
< 2; i
++) {
123 si
->segment_count
[i
] = sbi
->segment_count
[i
];
124 si
->block_count
[i
] = sbi
->block_count
[i
];
127 si
->inplace_count
= atomic_read(&sbi
->inplace_count
);
131 * This function calculates BDF of every segments
133 static void update_sit_info(struct f2fs_sb_info
*sbi
)
135 struct f2fs_stat_info
*si
= F2FS_STAT(sbi
);
136 unsigned long long blks_per_sec
, hblks_per_sec
, total_vblocks
;
137 unsigned long long bimodal
, dist
;
138 unsigned int segno
, vblocks
;
143 blks_per_sec
= BLKS_PER_SEC(sbi
);
144 hblks_per_sec
= blks_per_sec
/ 2;
145 for (segno
= 0; segno
< MAIN_SEGS(sbi
); segno
+= sbi
->segs_per_sec
) {
146 vblocks
= get_valid_blocks(sbi
, segno
, true);
147 dist
= abs(vblocks
- hblks_per_sec
);
148 bimodal
+= dist
* dist
;
150 if (vblocks
> 0 && vblocks
< blks_per_sec
) {
151 total_vblocks
+= vblocks
;
155 dist
= div_u64(MAIN_SECS(sbi
) * hblks_per_sec
* hblks_per_sec
, 100);
156 si
->bimodal
= div64_u64(bimodal
, dist
);
158 si
->avg_vblocks
= div_u64(total_vblocks
, ndirty
);
164 * This function calculates memory footprint.
166 static void update_mem_info(struct f2fs_sb_info
*sbi
)
168 struct f2fs_stat_info
*si
= F2FS_STAT(sbi
);
176 si
->base_mem
= sizeof(struct f2fs_stat_info
);
178 /* build superblock */
179 si
->base_mem
+= sizeof(struct f2fs_sb_info
) + sbi
->sb
->s_blocksize
;
180 si
->base_mem
+= 2 * sizeof(struct f2fs_inode_info
);
181 si
->base_mem
+= sizeof(*sbi
->ckpt
);
184 si
->base_mem
+= sizeof(struct f2fs_sm_info
);
187 si
->base_mem
+= sizeof(struct sit_info
);
188 si
->base_mem
+= MAIN_SEGS(sbi
) * sizeof(struct seg_entry
);
189 si
->base_mem
+= f2fs_bitmap_size(MAIN_SEGS(sbi
));
190 si
->base_mem
+= 2 * SIT_VBLOCK_MAP_SIZE
* MAIN_SEGS(sbi
);
191 if (f2fs_discard_en(sbi
))
192 si
->base_mem
+= SIT_VBLOCK_MAP_SIZE
* MAIN_SEGS(sbi
);
193 si
->base_mem
+= SIT_VBLOCK_MAP_SIZE
;
194 if (sbi
->segs_per_sec
> 1)
195 si
->base_mem
+= MAIN_SECS(sbi
) * sizeof(struct sec_entry
);
196 si
->base_mem
+= __bitmap_size(sbi
, SIT_BITMAP
);
198 /* build free segmap */
199 si
->base_mem
+= sizeof(struct free_segmap_info
);
200 si
->base_mem
+= f2fs_bitmap_size(MAIN_SEGS(sbi
));
201 si
->base_mem
+= f2fs_bitmap_size(MAIN_SECS(sbi
));
204 si
->base_mem
+= sizeof(struct curseg_info
) * NR_CURSEG_TYPE
;
205 si
->base_mem
+= PAGE_SIZE
* NR_CURSEG_TYPE
;
207 /* build dirty segmap */
208 si
->base_mem
+= sizeof(struct dirty_seglist_info
);
209 si
->base_mem
+= NR_DIRTY_TYPE
* f2fs_bitmap_size(MAIN_SEGS(sbi
));
210 si
->base_mem
+= f2fs_bitmap_size(MAIN_SECS(sbi
));
213 si
->base_mem
+= sizeof(struct f2fs_nm_info
);
214 si
->base_mem
+= __bitmap_size(sbi
, NAT_BITMAP
);
215 si
->base_mem
+= (NM_I(sbi
)->nat_bits_blocks
<< F2FS_BLKSIZE_BITS
);
216 si
->base_mem
+= NM_I(sbi
)->nat_blocks
* NAT_ENTRY_BITMAP_SIZE
;
217 si
->base_mem
+= NM_I(sbi
)->nat_blocks
/ 8;
218 si
->base_mem
+= NM_I(sbi
)->nat_blocks
* sizeof(unsigned short);
225 si
->cache_mem
+= sizeof(struct f2fs_gc_kthread
);
227 /* build merge flush thread */
228 if (SM_I(sbi
)->fcc_info
)
229 si
->cache_mem
+= sizeof(struct flush_cmd_control
);
230 if (SM_I(sbi
)->dcc_info
) {
231 si
->cache_mem
+= sizeof(struct discard_cmd_control
);
232 si
->cache_mem
+= sizeof(struct discard_cmd
) *
233 atomic_read(&SM_I(sbi
)->dcc_info
->discard_cmd_cnt
);
237 si
->cache_mem
+= (NM_I(sbi
)->nid_cnt
[FREE_NID
] +
238 NM_I(sbi
)->nid_cnt
[PREALLOC_NID
]) *
239 sizeof(struct free_nid
);
240 si
->cache_mem
+= NM_I(sbi
)->nat_cnt
* sizeof(struct nat_entry
);
241 si
->cache_mem
+= NM_I(sbi
)->dirty_nat_cnt
*
242 sizeof(struct nat_entry_set
);
243 si
->cache_mem
+= si
->inmem_pages
* sizeof(struct inmem_pages
);
244 for (i
= 0; i
< MAX_INO_ENTRY
; i
++)
245 si
->cache_mem
+= sbi
->im
[i
].ino_num
* sizeof(struct ino_entry
);
246 si
->cache_mem
+= atomic_read(&sbi
->total_ext_tree
) *
247 sizeof(struct extent_tree
);
248 si
->cache_mem
+= atomic_read(&sbi
->total_ext_node
) *
249 sizeof(struct extent_node
);
252 npages
= NODE_MAPPING(sbi
)->nrpages
;
253 si
->page_mem
+= (unsigned long long)npages
<< PAGE_SHIFT
;
254 npages
= META_MAPPING(sbi
)->nrpages
;
255 si
->page_mem
+= (unsigned long long)npages
<< PAGE_SHIFT
;
258 static int stat_show(struct seq_file
*s
, void *v
)
260 struct f2fs_stat_info
*si
;
264 mutex_lock(&f2fs_stat_mutex
);
265 list_for_each_entry(si
, &f2fs_stat_list
, stat_list
) {
266 update_general_status(si
->sbi
);
268 seq_printf(s
, "\n=====[ partition info(%pg). #%d, %s, CP: %s]=====\n",
269 si
->sbi
->sb
->s_bdev
, i
++,
270 f2fs_readonly(si
->sbi
->sb
) ? "RO": "RW",
271 f2fs_cp_error(si
->sbi
) ? "Error": "Good");
272 seq_printf(s
, "[SB: 1] [CP: 2] [SIT: %d] [NAT: %d] ",
273 si
->sit_area_segs
, si
->nat_area_segs
);
274 seq_printf(s
, "[SSA: %d] [MAIN: %d",
275 si
->ssa_area_segs
, si
->main_area_segs
);
276 seq_printf(s
, "(OverProv:%d Resv:%d)]\n\n",
277 si
->overp_segs
, si
->rsvd_segs
);
278 if (test_opt(si
->sbi
, DISCARD
))
279 seq_printf(s
, "Utilization: %u%% (%u valid blocks, %u discard blocks)\n",
280 si
->utilization
, si
->valid_count
, si
->discard_blks
);
282 seq_printf(s
, "Utilization: %u%% (%u valid blocks)\n",
283 si
->utilization
, si
->valid_count
);
285 seq_printf(s
, " - Node: %u (Inode: %u, ",
286 si
->valid_node_count
, si
->valid_inode_count
);
287 seq_printf(s
, "Other: %u)\n - Data: %u\n",
288 si
->valid_node_count
- si
->valid_inode_count
,
289 si
->valid_count
- si
->valid_node_count
);
290 seq_printf(s
, " - Inline_xattr Inode: %u\n",
292 seq_printf(s
, " - Inline_data Inode: %u\n",
294 seq_printf(s
, " - Inline_dentry Inode: %u\n",
296 seq_printf(s
, " - Orphan/Append/Update Inode: %u, %u, %u\n",
297 si
->orphans
, si
->append
, si
->update
);
298 seq_printf(s
, "\nMain area: %d segs, %d secs %d zones\n",
299 si
->main_area_segs
, si
->main_area_sections
,
300 si
->main_area_zones
);
301 seq_printf(s
, " - COLD data: %d, %d, %d\n",
302 si
->curseg
[CURSEG_COLD_DATA
],
303 si
->cursec
[CURSEG_COLD_DATA
],
304 si
->curzone
[CURSEG_COLD_DATA
]);
305 seq_printf(s
, " - WARM data: %d, %d, %d\n",
306 si
->curseg
[CURSEG_WARM_DATA
],
307 si
->cursec
[CURSEG_WARM_DATA
],
308 si
->curzone
[CURSEG_WARM_DATA
]);
309 seq_printf(s
, " - HOT data: %d, %d, %d\n",
310 si
->curseg
[CURSEG_HOT_DATA
],
311 si
->cursec
[CURSEG_HOT_DATA
],
312 si
->curzone
[CURSEG_HOT_DATA
]);
313 seq_printf(s
, " - Dir dnode: %d, %d, %d\n",
314 si
->curseg
[CURSEG_HOT_NODE
],
315 si
->cursec
[CURSEG_HOT_NODE
],
316 si
->curzone
[CURSEG_HOT_NODE
]);
317 seq_printf(s
, " - File dnode: %d, %d, %d\n",
318 si
->curseg
[CURSEG_WARM_NODE
],
319 si
->cursec
[CURSEG_WARM_NODE
],
320 si
->curzone
[CURSEG_WARM_NODE
]);
321 seq_printf(s
, " - Indir nodes: %d, %d, %d\n",
322 si
->curseg
[CURSEG_COLD_NODE
],
323 si
->cursec
[CURSEG_COLD_NODE
],
324 si
->curzone
[CURSEG_COLD_NODE
]);
325 seq_printf(s
, "\n - Valid: %d\n - Dirty: %d\n",
326 si
->main_area_segs
- si
->dirty_count
-
327 si
->prefree_count
- si
->free_segs
,
329 seq_printf(s
, " - Prefree: %d\n - Free: %d (%d)\n\n",
330 si
->prefree_count
, si
->free_segs
, si
->free_secs
);
331 seq_printf(s
, "CP calls: %d (BG: %d)\n",
332 si
->cp_count
, si
->bg_cp_count
);
333 seq_printf(s
, "GC calls: %d (BG: %d)\n",
334 si
->call_count
, si
->bg_gc
);
335 seq_printf(s
, " - data segments : %d (%d)\n",
336 si
->data_segs
, si
->bg_data_segs
);
337 seq_printf(s
, " - node segments : %d (%d)\n",
338 si
->node_segs
, si
->bg_node_segs
);
339 seq_printf(s
, "Try to move %d blocks (BG: %d)\n", si
->tot_blks
,
340 si
->bg_data_blks
+ si
->bg_node_blks
);
341 seq_printf(s
, " - data blocks : %d (%d)\n", si
->data_blks
,
343 seq_printf(s
, " - node blocks : %d (%d)\n", si
->node_blks
,
345 seq_puts(s
, "\nExtent Cache:\n");
346 seq_printf(s
, " - Hit Count: L1-1:%llu L1-2:%llu L2:%llu\n",
347 si
->hit_largest
, si
->hit_cached
,
349 seq_printf(s
, " - Hit Ratio: %llu%% (%llu / %llu)\n",
351 div64_u64(si
->hit_total
* 100, si
->total_ext
),
352 si
->hit_total
, si
->total_ext
);
353 seq_printf(s
, " - Inner Struct Count: tree: %d(%d), node: %d\n",
354 si
->ext_tree
, si
->zombie_tree
, si
->ext_node
);
355 seq_puts(s
, "\nBalancing F2FS Async:\n");
356 seq_printf(s
, " - IO (CP: %4d, Data: %4d, Flush: (%4d %4d %4d), "
357 "Discard: (%4d %4d)) cmd: %4d undiscard:%4u\n",
358 si
->nr_wb_cp_data
, si
->nr_wb_data
,
359 si
->nr_flushing
, si
->nr_flushed
,
360 si
->flush_list_empty
,
361 si
->nr_discarding
, si
->nr_discarded
,
362 si
->nr_discard_cmd
, si
->undiscard_blks
);
363 seq_printf(s
, " - inmem: %4d, atomic IO: %4d (Max. %4d), "
364 "volatile IO: %4d (Max. %4d)\n",
365 si
->inmem_pages
, si
->aw_cnt
, si
->max_aw_cnt
,
366 si
->vw_cnt
, si
->max_vw_cnt
);
367 seq_printf(s
, " - nodes: %4d in %4d\n",
368 si
->ndirty_node
, si
->node_pages
);
369 seq_printf(s
, " - dents: %4d in dirs:%4d (%4d)\n",
370 si
->ndirty_dent
, si
->ndirty_dirs
, si
->ndirty_all
);
371 seq_printf(s
, " - datas: %4d in files:%4d\n",
372 si
->ndirty_data
, si
->ndirty_files
);
373 seq_printf(s
, " - quota datas: %4d in quota files:%4d\n",
374 si
->ndirty_qdata
, si
->nquota_files
);
375 seq_printf(s
, " - meta: %4d in %4d\n",
376 si
->ndirty_meta
, si
->meta_pages
);
377 seq_printf(s
, " - imeta: %4d\n",
379 seq_printf(s
, " - NATs: %9d/%9d\n - SITs: %9d/%9d\n",
380 si
->dirty_nats
, si
->nats
, si
->dirty_sits
, si
->sits
);
381 seq_printf(s
, " - free_nids: %9d/%9d\n - alloc_nids: %9d\n",
382 si
->free_nids
, si
->avail_nids
, si
->alloc_nids
);
383 seq_puts(s
, "\nDistribution of User Blocks:");
384 seq_puts(s
, " [ valid | invalid | free ]\n");
387 for (j
= 0; j
< si
->util_valid
; j
++)
391 for (j
= 0; j
< si
->util_invalid
; j
++)
395 for (j
= 0; j
< si
->util_free
; j
++)
397 seq_puts(s
, "]\n\n");
398 seq_printf(s
, "IPU: %u blocks\n", si
->inplace_count
);
399 seq_printf(s
, "SSR: %u blocks in %u segments\n",
400 si
->block_count
[SSR
], si
->segment_count
[SSR
]);
401 seq_printf(s
, "LFS: %u blocks in %u segments\n",
402 si
->block_count
[LFS
], si
->segment_count
[LFS
]);
404 /* segment usage info */
405 update_sit_info(si
->sbi
);
406 seq_printf(s
, "\nBDF: %u, avg. vblocks: %u\n",
407 si
->bimodal
, si
->avg_vblocks
);
409 /* memory footprint */
410 update_mem_info(si
->sbi
);
411 seq_printf(s
, "\nMemory: %llu KB\n",
412 (si
->base_mem
+ si
->cache_mem
+ si
->page_mem
) >> 10);
413 seq_printf(s
, " - static: %llu KB\n",
415 seq_printf(s
, " - cached: %llu KB\n",
416 si
->cache_mem
>> 10);
417 seq_printf(s
, " - paged : %llu KB\n",
420 mutex_unlock(&f2fs_stat_mutex
);
424 static int stat_open(struct inode
*inode
, struct file
*file
)
426 return single_open(file
, stat_show
, inode
->i_private
);
429 static const struct file_operations stat_fops
= {
430 .owner
= THIS_MODULE
,
434 .release
= single_release
,
437 int f2fs_build_stats(struct f2fs_sb_info
*sbi
)
439 struct f2fs_super_block
*raw_super
= F2FS_RAW_SUPER(sbi
);
440 struct f2fs_stat_info
*si
;
442 si
= f2fs_kzalloc(sbi
, sizeof(struct f2fs_stat_info
), GFP_KERNEL
);
446 si
->all_area_segs
= le32_to_cpu(raw_super
->segment_count
);
447 si
->sit_area_segs
= le32_to_cpu(raw_super
->segment_count_sit
);
448 si
->nat_area_segs
= le32_to_cpu(raw_super
->segment_count_nat
);
449 si
->ssa_area_segs
= le32_to_cpu(raw_super
->segment_count_ssa
);
450 si
->main_area_segs
= le32_to_cpu(raw_super
->segment_count_main
);
451 si
->main_area_sections
= le32_to_cpu(raw_super
->section_count
);
452 si
->main_area_zones
= si
->main_area_sections
/
453 le32_to_cpu(raw_super
->secs_per_zone
);
457 atomic64_set(&sbi
->total_hit_ext
, 0);
458 atomic64_set(&sbi
->read_hit_rbtree
, 0);
459 atomic64_set(&sbi
->read_hit_largest
, 0);
460 atomic64_set(&sbi
->read_hit_cached
, 0);
462 atomic_set(&sbi
->inline_xattr
, 0);
463 atomic_set(&sbi
->inline_inode
, 0);
464 atomic_set(&sbi
->inline_dir
, 0);
465 atomic_set(&sbi
->inplace_count
, 0);
467 atomic_set(&sbi
->aw_cnt
, 0);
468 atomic_set(&sbi
->vw_cnt
, 0);
469 atomic_set(&sbi
->max_aw_cnt
, 0);
470 atomic_set(&sbi
->max_vw_cnt
, 0);
472 mutex_lock(&f2fs_stat_mutex
);
473 list_add_tail(&si
->stat_list
, &f2fs_stat_list
);
474 mutex_unlock(&f2fs_stat_mutex
);
479 void f2fs_destroy_stats(struct f2fs_sb_info
*sbi
)
481 struct f2fs_stat_info
*si
= F2FS_STAT(sbi
);
483 mutex_lock(&f2fs_stat_mutex
);
484 list_del(&si
->stat_list
);
485 mutex_unlock(&f2fs_stat_mutex
);
490 int __init
f2fs_create_root_stats(void)
494 f2fs_debugfs_root
= debugfs_create_dir("f2fs", NULL
);
495 if (!f2fs_debugfs_root
)
498 file
= debugfs_create_file("status", S_IRUGO
, f2fs_debugfs_root
,
501 debugfs_remove(f2fs_debugfs_root
);
502 f2fs_debugfs_root
= NULL
;
509 void f2fs_destroy_root_stats(void)
511 if (!f2fs_debugfs_root
)
514 debugfs_remove_recursive(f2fs_debugfs_root
);
515 f2fs_debugfs_root
= NULL
;