1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
9 #include <linux/compiler.h>
10 #include <linux/proc_fs.h>
11 #include <linux/f2fs_fs.h>
12 #include <linux/seq_file.h>
13 #include <linux/unicode.h>
14 #include <linux/ioprio.h>
15 #include <linux/sysfs.h>
21 #include <trace/events/f2fs.h>
23 static struct proc_dir_entry *f2fs_proc_root;
25 /* Sysfs support for f2fs */
27 GC_THREAD, /* struct f2fs_gc_thread */
28 SM_INFO, /* struct f2fs_sm_info */
29 DCC_INFO, /* struct discard_cmd_control */
30 NM_INFO, /* struct f2fs_nm_info */
31 F2FS_SBI, /* struct f2fs_sb_info */
32 #ifdef CONFIG_F2FS_STAT_FS
33 STAT_INFO, /* struct f2fs_stat_info */
35 #ifdef CONFIG_F2FS_FAULT_INJECTION
36 FAULT_INFO_RATE, /* struct f2fs_fault_info */
37 FAULT_INFO_TYPE, /* struct f2fs_fault_info */
39 RESERVED_BLOCKS, /* struct f2fs_sb_info */
40 CPRC_INFO, /* struct ckpt_req_control */
41 ATGC_INFO, /* struct atgc_management */
44 static const char *gc_mode_names[MAX_GC_MODE] = {
55 struct attribute attr;
56 ssize_t (*show)(struct f2fs_attr *a, struct f2fs_sb_info *sbi, char *buf);
57 ssize_t (*store)(struct f2fs_attr *a, struct f2fs_sb_info *sbi,
58 const char *buf, size_t len);
64 static ssize_t f2fs_sbi_show(struct f2fs_attr *a,
65 struct f2fs_sb_info *sbi, char *buf);
67 static unsigned char *__struct_ptr(struct f2fs_sb_info *sbi, int struct_type)
69 if (struct_type == GC_THREAD)
70 return (unsigned char *)sbi->gc_thread;
71 else if (struct_type == SM_INFO)
72 return (unsigned char *)SM_I(sbi);
73 else if (struct_type == DCC_INFO)
74 return (unsigned char *)SM_I(sbi)->dcc_info;
75 else if (struct_type == NM_INFO)
76 return (unsigned char *)NM_I(sbi);
77 else if (struct_type == F2FS_SBI || struct_type == RESERVED_BLOCKS)
78 return (unsigned char *)sbi;
79 #ifdef CONFIG_F2FS_FAULT_INJECTION
80 else if (struct_type == FAULT_INFO_RATE ||
81 struct_type == FAULT_INFO_TYPE)
82 return (unsigned char *)&F2FS_OPTION(sbi).fault_info;
84 #ifdef CONFIG_F2FS_STAT_FS
85 else if (struct_type == STAT_INFO)
86 return (unsigned char *)F2FS_STAT(sbi);
88 else if (struct_type == CPRC_INFO)
89 return (unsigned char *)&sbi->cprc_info;
90 else if (struct_type == ATGC_INFO)
91 return (unsigned char *)&sbi->am;
95 static ssize_t dirty_segments_show(struct f2fs_attr *a,
96 struct f2fs_sb_info *sbi, char *buf)
98 return sysfs_emit(buf, "%llu\n",
99 (unsigned long long)(dirty_segments(sbi)));
102 static ssize_t free_segments_show(struct f2fs_attr *a,
103 struct f2fs_sb_info *sbi, char *buf)
105 return sysfs_emit(buf, "%llu\n",
106 (unsigned long long)(free_segments(sbi)));
109 static ssize_t ovp_segments_show(struct f2fs_attr *a,
110 struct f2fs_sb_info *sbi, char *buf)
112 return sysfs_emit(buf, "%llu\n",
113 (unsigned long long)(overprovision_segments(sbi)));
116 static ssize_t lifetime_write_kbytes_show(struct f2fs_attr *a,
117 struct f2fs_sb_info *sbi, char *buf)
119 return sysfs_emit(buf, "%llu\n",
120 (unsigned long long)(sbi->kbytes_written +
121 ((f2fs_get_sectors_written(sbi) -
122 sbi->sectors_written_start) >> 1)));
125 static ssize_t sb_status_show(struct f2fs_attr *a,
126 struct f2fs_sb_info *sbi, char *buf)
128 return sysfs_emit(buf, "%lx\n", sbi->s_flag);
131 static ssize_t cp_status_show(struct f2fs_attr *a,
132 struct f2fs_sb_info *sbi, char *buf)
134 return sysfs_emit(buf, "%x\n", le32_to_cpu(F2FS_CKPT(sbi)->ckpt_flags));
137 static ssize_t pending_discard_show(struct f2fs_attr *a,
138 struct f2fs_sb_info *sbi, char *buf)
140 if (!SM_I(sbi)->dcc_info)
142 return sysfs_emit(buf, "%llu\n", (unsigned long long)atomic_read(
143 &SM_I(sbi)->dcc_info->discard_cmd_cnt));
146 static ssize_t issued_discard_show(struct f2fs_attr *a,
147 struct f2fs_sb_info *sbi, char *buf)
149 if (!SM_I(sbi)->dcc_info)
151 return sysfs_emit(buf, "%llu\n", (unsigned long long)atomic_read(
152 &SM_I(sbi)->dcc_info->issued_discard));
155 static ssize_t queued_discard_show(struct f2fs_attr *a,
156 struct f2fs_sb_info *sbi, char *buf)
158 if (!SM_I(sbi)->dcc_info)
160 return sysfs_emit(buf, "%llu\n", (unsigned long long)atomic_read(
161 &SM_I(sbi)->dcc_info->queued_discard));
164 static ssize_t undiscard_blks_show(struct f2fs_attr *a,
165 struct f2fs_sb_info *sbi, char *buf)
167 if (!SM_I(sbi)->dcc_info)
169 return sysfs_emit(buf, "%u\n",
170 SM_I(sbi)->dcc_info->undiscard_blks);
173 static ssize_t gc_mode_show(struct f2fs_attr *a,
174 struct f2fs_sb_info *sbi, char *buf)
176 return sysfs_emit(buf, "%s\n", gc_mode_names[sbi->gc_mode]);
179 static ssize_t features_show(struct f2fs_attr *a,
180 struct f2fs_sb_info *sbi, char *buf)
184 if (f2fs_sb_has_encrypt(sbi))
185 len += scnprintf(buf, PAGE_SIZE - len, "%s",
187 if (f2fs_sb_has_blkzoned(sbi))
188 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
189 len ? ", " : "", "blkzoned");
190 if (f2fs_sb_has_extra_attr(sbi))
191 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
192 len ? ", " : "", "extra_attr");
193 if (f2fs_sb_has_project_quota(sbi))
194 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
195 len ? ", " : "", "projquota");
196 if (f2fs_sb_has_inode_chksum(sbi))
197 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
198 len ? ", " : "", "inode_checksum");
199 if (f2fs_sb_has_flexible_inline_xattr(sbi))
200 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
201 len ? ", " : "", "flexible_inline_xattr");
202 if (f2fs_sb_has_quota_ino(sbi))
203 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
204 len ? ", " : "", "quota_ino");
205 if (f2fs_sb_has_inode_crtime(sbi))
206 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
207 len ? ", " : "", "inode_crtime");
208 if (f2fs_sb_has_lost_found(sbi))
209 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
210 len ? ", " : "", "lost_found");
211 if (f2fs_sb_has_verity(sbi))
212 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
213 len ? ", " : "", "verity");
214 if (f2fs_sb_has_sb_chksum(sbi))
215 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
216 len ? ", " : "", "sb_checksum");
217 if (f2fs_sb_has_casefold(sbi))
218 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
219 len ? ", " : "", "casefold");
220 if (f2fs_sb_has_readonly(sbi))
221 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
222 len ? ", " : "", "readonly");
223 if (f2fs_sb_has_compression(sbi))
224 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
225 len ? ", " : "", "compression");
226 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
227 len ? ", " : "", "pin_file");
228 len += scnprintf(buf + len, PAGE_SIZE - len, "\n");
232 static ssize_t current_reserved_blocks_show(struct f2fs_attr *a,
233 struct f2fs_sb_info *sbi, char *buf)
235 return sysfs_emit(buf, "%u\n", sbi->current_reserved_blocks);
238 static ssize_t unusable_show(struct f2fs_attr *a,
239 struct f2fs_sb_info *sbi, char *buf)
243 if (test_opt(sbi, DISABLE_CHECKPOINT))
244 unusable = sbi->unusable_block_count;
246 unusable = f2fs_get_unusable_blocks(sbi);
247 return sysfs_emit(buf, "%llu\n", (unsigned long long)unusable);
250 static ssize_t encoding_show(struct f2fs_attr *a,
251 struct f2fs_sb_info *sbi, char *buf)
253 #if IS_ENABLED(CONFIG_UNICODE)
254 struct super_block *sb = sbi->sb;
256 if (f2fs_sb_has_casefold(sbi))
257 return sysfs_emit(buf, "UTF-8 (%d.%d.%d)\n",
258 (sb->s_encoding->version >> 16) & 0xff,
259 (sb->s_encoding->version >> 8) & 0xff,
260 sb->s_encoding->version & 0xff);
262 return sysfs_emit(buf, "(none)\n");
265 static ssize_t mounted_time_sec_show(struct f2fs_attr *a,
266 struct f2fs_sb_info *sbi, char *buf)
268 return sysfs_emit(buf, "%llu\n", SIT_I(sbi)->mounted_time);
271 #ifdef CONFIG_F2FS_STAT_FS
272 static ssize_t moved_blocks_foreground_show(struct f2fs_attr *a,
273 struct f2fs_sb_info *sbi, char *buf)
275 struct f2fs_stat_info *si = F2FS_STAT(sbi);
277 return sysfs_emit(buf, "%llu\n",
278 (unsigned long long)(si->tot_blks -
279 (si->bg_data_blks + si->bg_node_blks)));
282 static ssize_t moved_blocks_background_show(struct f2fs_attr *a,
283 struct f2fs_sb_info *sbi, char *buf)
285 struct f2fs_stat_info *si = F2FS_STAT(sbi);
287 return sysfs_emit(buf, "%llu\n",
288 (unsigned long long)(si->bg_data_blks + si->bg_node_blks));
291 static ssize_t avg_vblocks_show(struct f2fs_attr *a,
292 struct f2fs_sb_info *sbi, char *buf)
294 struct f2fs_stat_info *si = F2FS_STAT(sbi);
296 si->dirty_count = dirty_segments(sbi);
297 f2fs_update_sit_info(sbi);
298 return sysfs_emit(buf, "%llu\n", (unsigned long long)(si->avg_vblocks));
302 static ssize_t main_blkaddr_show(struct f2fs_attr *a,
303 struct f2fs_sb_info *sbi, char *buf)
305 return sysfs_emit(buf, "%llu\n",
306 (unsigned long long)MAIN_BLKADDR(sbi));
309 static ssize_t f2fs_sbi_show(struct f2fs_attr *a,
310 struct f2fs_sb_info *sbi, char *buf)
312 unsigned char *ptr = NULL;
315 ptr = __struct_ptr(sbi, a->struct_type);
319 if (!strcmp(a->attr.name, "extension_list")) {
320 __u8 (*extlist)[F2FS_EXTENSION_LEN] =
321 sbi->raw_super->extension_list;
322 int cold_count = le32_to_cpu(sbi->raw_super->extension_count);
323 int hot_count = sbi->raw_super->hot_ext_count;
326 len += scnprintf(buf + len, PAGE_SIZE - len,
327 "cold file extension:\n");
328 for (i = 0; i < cold_count; i++)
329 len += scnprintf(buf + len, PAGE_SIZE - len, "%s\n",
332 len += scnprintf(buf + len, PAGE_SIZE - len,
333 "hot file extension:\n");
334 for (i = cold_count; i < cold_count + hot_count; i++)
335 len += scnprintf(buf + len, PAGE_SIZE - len, "%s\n",
340 if (!strcmp(a->attr.name, "ckpt_thread_ioprio")) {
341 struct ckpt_req_control *cprc = &sbi->cprc_info;
342 int class = IOPRIO_PRIO_CLASS(cprc->ckpt_thread_ioprio);
343 int level = IOPRIO_PRIO_LEVEL(cprc->ckpt_thread_ioprio);
345 if (class != IOPRIO_CLASS_RT && class != IOPRIO_CLASS_BE)
348 return sysfs_emit(buf, "%s,%d\n",
349 class == IOPRIO_CLASS_RT ? "rt" : "be", level);
352 #ifdef CONFIG_F2FS_FS_COMPRESSION
353 if (!strcmp(a->attr.name, "compr_written_block"))
354 return sysfs_emit(buf, "%llu\n", sbi->compr_written_block);
356 if (!strcmp(a->attr.name, "compr_saved_block"))
357 return sysfs_emit(buf, "%llu\n", sbi->compr_saved_block);
359 if (!strcmp(a->attr.name, "compr_new_inode"))
360 return sysfs_emit(buf, "%u\n", sbi->compr_new_inode);
363 if (!strcmp(a->attr.name, "gc_segment_mode"))
364 return sysfs_emit(buf, "%u\n", sbi->gc_segment_mode);
366 if (!strcmp(a->attr.name, "gc_reclaimed_segments")) {
367 return sysfs_emit(buf, "%u\n",
368 sbi->gc_reclaimed_segs[sbi->gc_segment_mode]);
371 if (!strcmp(a->attr.name, "current_atomic_write")) {
372 s64 current_write = atomic64_read(&sbi->current_atomic_write);
374 return sysfs_emit(buf, "%lld\n", current_write);
377 if (!strcmp(a->attr.name, "peak_atomic_write"))
378 return sysfs_emit(buf, "%lld\n", sbi->peak_atomic_write);
380 if (!strcmp(a->attr.name, "committed_atomic_block"))
381 return sysfs_emit(buf, "%llu\n", sbi->committed_atomic_block);
383 if (!strcmp(a->attr.name, "revoked_atomic_block"))
384 return sysfs_emit(buf, "%llu\n", sbi->revoked_atomic_block);
386 #ifdef CONFIG_F2FS_STAT_FS
387 if (!strcmp(a->attr.name, "cp_foreground_calls"))
388 return sysfs_emit(buf, "%d\n",
389 atomic_read(&sbi->cp_call_count[TOTAL_CALL]) -
390 atomic_read(&sbi->cp_call_count[BACKGROUND]));
391 if (!strcmp(a->attr.name, "cp_background_calls"))
392 return sysfs_emit(buf, "%d\n",
393 atomic_read(&sbi->cp_call_count[BACKGROUND]));
396 ui = (unsigned int *)(ptr + a->offset);
398 return sysfs_emit(buf, "%u\n", *ui);
401 static ssize_t __sbi_store(struct f2fs_attr *a,
402 struct f2fs_sb_info *sbi,
403 const char *buf, size_t count)
410 ptr = __struct_ptr(sbi, a->struct_type);
414 if (!strcmp(a->attr.name, "extension_list")) {
415 const char *name = strim((char *)buf);
416 bool set = true, hot;
418 if (!strncmp(name, "[h]", 3))
420 else if (!strncmp(name, "[c]", 3))
432 if (!strlen(name) || strlen(name) >= F2FS_EXTENSION_LEN)
435 f2fs_down_write(&sbi->sb_lock);
437 ret = f2fs_update_extension_list(sbi, name, hot, set);
441 ret = f2fs_commit_super(sbi, false);
443 f2fs_update_extension_list(sbi, name, hot, !set);
445 f2fs_up_write(&sbi->sb_lock);
446 return ret ? ret : count;
449 if (!strcmp(a->attr.name, "ckpt_thread_ioprio")) {
450 const char *name = strim((char *)buf);
451 struct ckpt_req_control *cprc = &sbi->cprc_info;
456 if (!strncmp(name, "rt,", 3))
457 class = IOPRIO_CLASS_RT;
458 else if (!strncmp(name, "be,", 3))
459 class = IOPRIO_CLASS_BE;
464 ret = kstrtol(name, 10, &level);
467 if (level >= IOPRIO_NR_LEVELS || level < 0)
470 cprc->ckpt_thread_ioprio = IOPRIO_PRIO_VALUE(class, level);
471 if (test_opt(sbi, MERGE_CHECKPOINT)) {
472 ret = set_task_ioprio(cprc->f2fs_issue_ckpt,
473 cprc->ckpt_thread_ioprio);
481 ui = (unsigned int *)(ptr + a->offset);
483 ret = kstrtoul(skip_spaces(buf), 0, &t);
486 #ifdef CONFIG_F2FS_FAULT_INJECTION
487 if (a->struct_type == FAULT_INFO_TYPE) {
488 if (f2fs_build_fault_attr(sbi, 0, t))
492 if (a->struct_type == FAULT_INFO_RATE) {
493 if (f2fs_build_fault_attr(sbi, t, 0))
498 if (a->struct_type == RESERVED_BLOCKS) {
499 spin_lock(&sbi->stat_lock);
500 if (t > (unsigned long)(sbi->user_block_count -
501 F2FS_OPTION(sbi).root_reserved_blocks -
503 SM_I(sbi)->additional_reserved_segments))) {
504 spin_unlock(&sbi->stat_lock);
508 sbi->current_reserved_blocks = min(sbi->reserved_blocks,
509 sbi->user_block_count - valid_user_blocks(sbi));
510 spin_unlock(&sbi->stat_lock);
514 if (!strcmp(a->attr.name, "discard_io_aware_gran")) {
515 if (t > MAX_PLIST_NUM)
517 if (!f2fs_block_unit_discard(sbi))
525 if (!strcmp(a->attr.name, "discard_granularity")) {
526 if (t == 0 || t > MAX_PLIST_NUM)
528 if (!f2fs_block_unit_discard(sbi))
536 if (!strcmp(a->attr.name, "max_ordered_discard")) {
537 if (t == 0 || t > MAX_PLIST_NUM)
539 if (!f2fs_block_unit_discard(sbi))
545 if (!strcmp(a->attr.name, "discard_urgent_util")) {
552 if (!strcmp(a->attr.name, "discard_io_aware")) {
553 if (t >= DPOLICY_IO_AWARE_MAX)
559 if (!strcmp(a->attr.name, "migration_granularity")) {
560 if (t == 0 || t > SEGS_PER_SEC(sbi))
564 if (!strcmp(a->attr.name, "gc_urgent")) {
566 sbi->gc_mode = GC_NORMAL;
568 sbi->gc_mode = GC_URGENT_HIGH;
569 if (sbi->gc_thread) {
570 sbi->gc_thread->gc_wake = true;
571 wake_up_interruptible_all(
572 &sbi->gc_thread->gc_wait_queue_head);
573 wake_up_discard_thread(sbi, true);
576 sbi->gc_mode = GC_URGENT_LOW;
578 sbi->gc_mode = GC_URGENT_MID;
579 if (sbi->gc_thread) {
580 sbi->gc_thread->gc_wake = true;
581 wake_up_interruptible_all(
582 &sbi->gc_thread->gc_wait_queue_head);
589 if (!strcmp(a->attr.name, "gc_idle")) {
590 if (t == GC_IDLE_CB) {
591 sbi->gc_mode = GC_IDLE_CB;
592 } else if (t == GC_IDLE_GREEDY) {
593 sbi->gc_mode = GC_IDLE_GREEDY;
594 } else if (t == GC_IDLE_AT) {
595 if (!sbi->am.atgc_enabled)
597 sbi->gc_mode = GC_IDLE_AT;
599 sbi->gc_mode = GC_NORMAL;
604 if (!strcmp(a->attr.name, "gc_remaining_trials")) {
605 spin_lock(&sbi->gc_remaining_trials_lock);
606 sbi->gc_remaining_trials = t;
607 spin_unlock(&sbi->gc_remaining_trials_lock);
612 #ifdef CONFIG_F2FS_IOSTAT
613 if (!strcmp(a->attr.name, "iostat_enable")) {
614 sbi->iostat_enable = !!t;
615 if (!sbi->iostat_enable)
616 f2fs_reset_iostat(sbi);
620 if (!strcmp(a->attr.name, "iostat_period_ms")) {
621 if (t < MIN_IOSTAT_PERIOD_MS || t > MAX_IOSTAT_PERIOD_MS)
623 spin_lock_irq(&sbi->iostat_lock);
624 sbi->iostat_period_ms = (unsigned int)t;
625 spin_unlock_irq(&sbi->iostat_lock);
630 #ifdef CONFIG_F2FS_FS_COMPRESSION
631 if (!strcmp(a->attr.name, "compr_written_block") ||
632 !strcmp(a->attr.name, "compr_saved_block")) {
635 sbi->compr_written_block = 0;
636 sbi->compr_saved_block = 0;
640 if (!strcmp(a->attr.name, "compr_new_inode")) {
643 sbi->compr_new_inode = 0;
647 if (!strcmp(a->attr.name, "compress_percent")) {
648 if (t == 0 || t > 100)
654 if (!strcmp(a->attr.name, "compress_watermark")) {
655 if (t == 0 || t > 100)
662 if (!strcmp(a->attr.name, "atgc_candidate_ratio")) {
665 sbi->am.candidate_ratio = t;
669 if (!strcmp(a->attr.name, "atgc_age_weight")) {
672 sbi->am.age_weight = t;
676 if (!strcmp(a->attr.name, "gc_segment_mode")) {
678 sbi->gc_segment_mode = t;
684 if (!strcmp(a->attr.name, "gc_pin_file_threshold")) {
685 if (t > MAX_GC_FAILED_PINNED_FILES)
687 sbi->gc_pin_file_threshold = t;
691 if (!strcmp(a->attr.name, "gc_reclaimed_segments")) {
694 sbi->gc_reclaimed_segs[sbi->gc_segment_mode] = 0;
698 if (!strcmp(a->attr.name, "seq_file_ra_mul")) {
699 if (t >= MIN_RA_MUL && t <= MAX_RA_MUL)
700 sbi->seq_file_ra_mul = t;
706 if (!strcmp(a->attr.name, "max_fragment_chunk")) {
707 if (t >= MIN_FRAGMENT_SIZE && t <= MAX_FRAGMENT_SIZE)
708 sbi->max_fragment_chunk = t;
714 if (!strcmp(a->attr.name, "max_fragment_hole")) {
715 if (t >= MIN_FRAGMENT_SIZE && t <= MAX_FRAGMENT_SIZE)
716 sbi->max_fragment_hole = t;
722 if (!strcmp(a->attr.name, "peak_atomic_write")) {
725 sbi->peak_atomic_write = 0;
729 if (!strcmp(a->attr.name, "committed_atomic_block")) {
732 sbi->committed_atomic_block = 0;
736 if (!strcmp(a->attr.name, "revoked_atomic_block")) {
739 sbi->revoked_atomic_block = 0;
743 if (!strcmp(a->attr.name, "readdir_ra")) {
744 sbi->readdir_ra = !!t;
748 if (!strcmp(a->attr.name, "hot_data_age_threshold")) {
749 if (t == 0 || t >= sbi->warm_data_age_threshold)
753 *ui = (unsigned int)t;
757 if (!strcmp(a->attr.name, "warm_data_age_threshold")) {
758 if (t <= sbi->hot_data_age_threshold)
762 *ui = (unsigned int)t;
766 if (!strcmp(a->attr.name, "last_age_weight")) {
771 *ui = (unsigned int)t;
775 if (!strcmp(a->attr.name, "ipu_policy")) {
776 if (t >= BIT(F2FS_IPU_MAX))
778 if (t && f2fs_lfs_mode(sbi))
780 SM_I(sbi)->ipu_policy = (unsigned int)t;
784 if (!strcmp(a->attr.name, "dir_level")) {
785 if (t > MAX_DIR_HASH_DEPTH)
791 *ui = (unsigned int)t;
796 static ssize_t f2fs_sbi_store(struct f2fs_attr *a,
797 struct f2fs_sb_info *sbi,
798 const char *buf, size_t count)
801 bool gc_entry = (!strcmp(a->attr.name, "gc_urgent") ||
802 a->struct_type == GC_THREAD);
805 if (!down_read_trylock(&sbi->sb->s_umount))
808 ret = __sbi_store(a, sbi, buf, count);
810 up_read(&sbi->sb->s_umount);
815 static ssize_t f2fs_attr_show(struct kobject *kobj,
816 struct attribute *attr, char *buf)
818 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
820 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
822 return a->show ? a->show(a, sbi, buf) : 0;
825 static ssize_t f2fs_attr_store(struct kobject *kobj, struct attribute *attr,
826 const char *buf, size_t len)
828 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
830 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
832 return a->store ? a->store(a, sbi, buf, len) : 0;
835 static void f2fs_sb_release(struct kobject *kobj)
837 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
839 complete(&sbi->s_kobj_unregister);
843 * Note that there are three feature list entries:
844 * 1) /sys/fs/f2fs/features
845 * : shows runtime features supported by in-kernel f2fs along with Kconfig.
846 * - ref. F2FS_FEATURE_RO_ATTR()
848 * 2) /sys/fs/f2fs/$s_id/features <deprecated>
849 * : shows on-disk features enabled by mkfs.f2fs, used for old kernels. This
850 * won't add new feature anymore, and thus, users should check entries in 3)
851 * instead of this 2).
853 * 3) /sys/fs/f2fs/$s_id/feature_list
854 * : shows on-disk features enabled by mkfs.f2fs per instance, which follows
855 * sysfs entry rule where each entry should expose single value.
856 * This list covers old feature list provided by 2) and beyond. Therefore,
857 * please add new on-disk feature in this list only.
858 * - ref. F2FS_SB_FEATURE_RO_ATTR()
860 static ssize_t f2fs_feature_show(struct f2fs_attr *a,
861 struct f2fs_sb_info *sbi, char *buf)
863 return sysfs_emit(buf, "supported\n");
866 #define F2FS_FEATURE_RO_ATTR(_name) \
867 static struct f2fs_attr f2fs_attr_##_name = { \
868 .attr = {.name = __stringify(_name), .mode = 0444 }, \
869 .show = f2fs_feature_show, \
872 static ssize_t f2fs_sb_feature_show(struct f2fs_attr *a,
873 struct f2fs_sb_info *sbi, char *buf)
875 if (F2FS_HAS_FEATURE(sbi, a->id))
876 return sysfs_emit(buf, "supported\n");
877 return sysfs_emit(buf, "unsupported\n");
880 #define F2FS_SB_FEATURE_RO_ATTR(_name, _feat) \
881 static struct f2fs_attr f2fs_attr_sb_##_name = { \
882 .attr = {.name = __stringify(_name), .mode = 0444 }, \
883 .show = f2fs_sb_feature_show, \
884 .id = F2FS_FEATURE_##_feat, \
887 #define F2FS_ATTR_OFFSET(_struct_type, _name, _mode, _show, _store, _offset) \
888 static struct f2fs_attr f2fs_attr_##_name = { \
889 .attr = {.name = __stringify(_name), .mode = _mode }, \
892 .struct_type = _struct_type, \
896 #define F2FS_RO_ATTR(struct_type, struct_name, name, elname) \
897 F2FS_ATTR_OFFSET(struct_type, name, 0444, \
898 f2fs_sbi_show, NULL, \
899 offsetof(struct struct_name, elname))
901 #define F2FS_RW_ATTR(struct_type, struct_name, name, elname) \
902 F2FS_ATTR_OFFSET(struct_type, name, 0644, \
903 f2fs_sbi_show, f2fs_sbi_store, \
904 offsetof(struct struct_name, elname))
906 #define F2FS_GENERAL_RO_ATTR(name) \
907 static struct f2fs_attr f2fs_attr_##name = __ATTR(name, 0444, name##_show, NULL)
909 #ifdef CONFIG_F2FS_STAT_FS
910 #define STAT_INFO_RO_ATTR(name, elname) \
911 F2FS_RO_ATTR(STAT_INFO, f2fs_stat_info, name, elname)
914 #define GC_THREAD_RW_ATTR(name, elname) \
915 F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, name, elname)
917 #define SM_INFO_RW_ATTR(name, elname) \
918 F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, name, elname)
920 #define SM_INFO_GENERAL_RW_ATTR(elname) \
921 SM_INFO_RW_ATTR(elname, elname)
923 #define DCC_INFO_RW_ATTR(name, elname) \
924 F2FS_RW_ATTR(DCC_INFO, discard_cmd_control, name, elname)
926 #define DCC_INFO_GENERAL_RW_ATTR(elname) \
927 DCC_INFO_RW_ATTR(elname, elname)
929 #define NM_INFO_RW_ATTR(name, elname) \
930 F2FS_RW_ATTR(NM_INFO, f2fs_nm_info, name, elname)
932 #define NM_INFO_GENERAL_RW_ATTR(elname) \
933 NM_INFO_RW_ATTR(elname, elname)
935 #define F2FS_SBI_RW_ATTR(name, elname) \
936 F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, name, elname)
938 #define F2FS_SBI_GENERAL_RW_ATTR(elname) \
939 F2FS_SBI_RW_ATTR(elname, elname)
941 #define F2FS_SBI_GENERAL_RO_ATTR(elname) \
942 F2FS_RO_ATTR(F2FS_SBI, f2fs_sb_info, elname, elname)
944 #ifdef CONFIG_F2FS_FAULT_INJECTION
945 #define FAULT_INFO_GENERAL_RW_ATTR(type, elname) \
946 F2FS_RW_ATTR(type, f2fs_fault_info, elname, elname)
949 #define RESERVED_BLOCKS_GENERAL_RW_ATTR(elname) \
950 F2FS_RW_ATTR(RESERVED_BLOCKS, f2fs_sb_info, elname, elname)
952 #define CPRC_INFO_GENERAL_RW_ATTR(elname) \
953 F2FS_RW_ATTR(CPRC_INFO, ckpt_req_control, elname, elname)
955 #define ATGC_INFO_RW_ATTR(name, elname) \
956 F2FS_RW_ATTR(ATGC_INFO, atgc_management, name, elname)
959 GC_THREAD_RW_ATTR(gc_urgent_sleep_time, urgent_sleep_time);
960 GC_THREAD_RW_ATTR(gc_min_sleep_time, min_sleep_time);
961 GC_THREAD_RW_ATTR(gc_max_sleep_time, max_sleep_time);
962 GC_THREAD_RW_ATTR(gc_no_gc_sleep_time, no_gc_sleep_time);
965 SM_INFO_RW_ATTR(reclaim_segments, rec_prefree_segments);
966 SM_INFO_GENERAL_RW_ATTR(ipu_policy);
967 SM_INFO_GENERAL_RW_ATTR(min_ipu_util);
968 SM_INFO_GENERAL_RW_ATTR(min_fsync_blocks);
969 SM_INFO_GENERAL_RW_ATTR(min_seq_blocks);
970 SM_INFO_GENERAL_RW_ATTR(min_hot_blocks);
971 SM_INFO_GENERAL_RW_ATTR(min_ssr_sections);
974 DCC_INFO_RW_ATTR(max_small_discards, max_discards);
975 DCC_INFO_GENERAL_RW_ATTR(max_discard_request);
976 DCC_INFO_GENERAL_RW_ATTR(min_discard_issue_time);
977 DCC_INFO_GENERAL_RW_ATTR(mid_discard_issue_time);
978 DCC_INFO_GENERAL_RW_ATTR(max_discard_issue_time);
979 DCC_INFO_GENERAL_RW_ATTR(discard_io_aware_gran);
980 DCC_INFO_GENERAL_RW_ATTR(discard_urgent_util);
981 DCC_INFO_GENERAL_RW_ATTR(discard_granularity);
982 DCC_INFO_GENERAL_RW_ATTR(max_ordered_discard);
983 DCC_INFO_GENERAL_RW_ATTR(discard_io_aware);
986 NM_INFO_RW_ATTR(max_roll_forward_node_blocks, max_rf_node_blocks);
987 NM_INFO_GENERAL_RW_ATTR(ram_thresh);
988 NM_INFO_GENERAL_RW_ATTR(ra_nid_pages);
989 NM_INFO_GENERAL_RW_ATTR(dirty_nats_ratio);
992 F2FS_RW_ATTR(F2FS_SBI, f2fs_super_block, extension_list, extension_list);
993 F2FS_SBI_RW_ATTR(gc_idle, gc_mode);
994 F2FS_SBI_RW_ATTR(gc_urgent, gc_mode);
995 F2FS_SBI_RW_ATTR(cp_interval, interval_time[CP_TIME]);
996 F2FS_SBI_RW_ATTR(idle_interval, interval_time[REQ_TIME]);
997 F2FS_SBI_RW_ATTR(discard_idle_interval, interval_time[DISCARD_TIME]);
998 F2FS_SBI_RW_ATTR(gc_idle_interval, interval_time[GC_TIME]);
999 F2FS_SBI_RW_ATTR(umount_discard_timeout, interval_time[UMOUNT_DISCARD_TIMEOUT]);
1000 F2FS_SBI_RW_ATTR(gc_pin_file_thresh, gc_pin_file_threshold);
1001 F2FS_SBI_RW_ATTR(gc_reclaimed_segments, gc_reclaimed_segs);
1002 F2FS_SBI_GENERAL_RW_ATTR(max_victim_search);
1003 F2FS_SBI_GENERAL_RW_ATTR(migration_granularity);
1004 F2FS_SBI_GENERAL_RW_ATTR(dir_level);
1005 #ifdef CONFIG_F2FS_IOSTAT
1006 F2FS_SBI_GENERAL_RW_ATTR(iostat_enable);
1007 F2FS_SBI_GENERAL_RW_ATTR(iostat_period_ms);
1009 F2FS_SBI_GENERAL_RW_ATTR(readdir_ra);
1010 F2FS_SBI_GENERAL_RW_ATTR(max_io_bytes);
1011 F2FS_SBI_GENERAL_RW_ATTR(data_io_flag);
1012 F2FS_SBI_GENERAL_RW_ATTR(node_io_flag);
1013 F2FS_SBI_GENERAL_RW_ATTR(gc_remaining_trials);
1014 F2FS_SBI_GENERAL_RW_ATTR(seq_file_ra_mul);
1015 F2FS_SBI_GENERAL_RW_ATTR(gc_segment_mode);
1016 F2FS_SBI_GENERAL_RW_ATTR(max_fragment_chunk);
1017 F2FS_SBI_GENERAL_RW_ATTR(max_fragment_hole);
1018 #ifdef CONFIG_F2FS_FS_COMPRESSION
1019 F2FS_SBI_GENERAL_RW_ATTR(compr_written_block);
1020 F2FS_SBI_GENERAL_RW_ATTR(compr_saved_block);
1021 F2FS_SBI_GENERAL_RW_ATTR(compr_new_inode);
1022 F2FS_SBI_GENERAL_RW_ATTR(compress_percent);
1023 F2FS_SBI_GENERAL_RW_ATTR(compress_watermark);
1026 F2FS_SBI_GENERAL_RO_ATTR(current_atomic_write);
1027 F2FS_SBI_GENERAL_RW_ATTR(peak_atomic_write);
1028 F2FS_SBI_GENERAL_RW_ATTR(committed_atomic_block);
1029 F2FS_SBI_GENERAL_RW_ATTR(revoked_atomic_block);
1030 /* block age extent cache */
1031 F2FS_SBI_GENERAL_RW_ATTR(hot_data_age_threshold);
1032 F2FS_SBI_GENERAL_RW_ATTR(warm_data_age_threshold);
1033 F2FS_SBI_GENERAL_RW_ATTR(last_age_weight);
1034 #ifdef CONFIG_BLK_DEV_ZONED
1035 F2FS_SBI_GENERAL_RO_ATTR(unusable_blocks_per_sec);
1038 /* STAT_INFO ATTR */
1039 #ifdef CONFIG_F2FS_STAT_FS
1040 STAT_INFO_RO_ATTR(cp_foreground_calls, cp_call_count[FOREGROUND]);
1041 STAT_INFO_RO_ATTR(cp_background_calls, cp_call_count[BACKGROUND]);
1042 STAT_INFO_RO_ATTR(gc_foreground_calls, gc_call_count[FOREGROUND]);
1043 STAT_INFO_RO_ATTR(gc_background_calls, gc_call_count[BACKGROUND]);
1046 /* FAULT_INFO ATTR */
1047 #ifdef CONFIG_F2FS_FAULT_INJECTION
1048 FAULT_INFO_GENERAL_RW_ATTR(FAULT_INFO_RATE, inject_rate);
1049 FAULT_INFO_GENERAL_RW_ATTR(FAULT_INFO_TYPE, inject_type);
1052 /* RESERVED_BLOCKS ATTR */
1053 RESERVED_BLOCKS_GENERAL_RW_ATTR(reserved_blocks);
1055 /* CPRC_INFO ATTR */
1056 CPRC_INFO_GENERAL_RW_ATTR(ckpt_thread_ioprio);
1058 /* ATGC_INFO ATTR */
1059 ATGC_INFO_RW_ATTR(atgc_candidate_ratio, candidate_ratio);
1060 ATGC_INFO_RW_ATTR(atgc_candidate_count, max_candidate_count);
1061 ATGC_INFO_RW_ATTR(atgc_age_weight, age_weight);
1062 ATGC_INFO_RW_ATTR(atgc_age_threshold, age_threshold);
1064 F2FS_GENERAL_RO_ATTR(dirty_segments);
1065 F2FS_GENERAL_RO_ATTR(free_segments);
1066 F2FS_GENERAL_RO_ATTR(ovp_segments);
1067 F2FS_GENERAL_RO_ATTR(lifetime_write_kbytes);
1068 F2FS_GENERAL_RO_ATTR(features);
1069 F2FS_GENERAL_RO_ATTR(current_reserved_blocks);
1070 F2FS_GENERAL_RO_ATTR(unusable);
1071 F2FS_GENERAL_RO_ATTR(encoding);
1072 F2FS_GENERAL_RO_ATTR(mounted_time_sec);
1073 F2FS_GENERAL_RO_ATTR(main_blkaddr);
1074 F2FS_GENERAL_RO_ATTR(pending_discard);
1075 F2FS_GENERAL_RO_ATTR(gc_mode);
1076 #ifdef CONFIG_F2FS_STAT_FS
1077 F2FS_GENERAL_RO_ATTR(moved_blocks_background);
1078 F2FS_GENERAL_RO_ATTR(moved_blocks_foreground);
1079 F2FS_GENERAL_RO_ATTR(avg_vblocks);
1082 #ifdef CONFIG_FS_ENCRYPTION
1083 F2FS_FEATURE_RO_ATTR(encryption);
1084 F2FS_FEATURE_RO_ATTR(test_dummy_encryption_v2);
1085 #if IS_ENABLED(CONFIG_UNICODE)
1086 F2FS_FEATURE_RO_ATTR(encrypted_casefold);
1088 #endif /* CONFIG_FS_ENCRYPTION */
1089 #ifdef CONFIG_BLK_DEV_ZONED
1090 F2FS_FEATURE_RO_ATTR(block_zoned);
1092 F2FS_FEATURE_RO_ATTR(atomic_write);
1093 F2FS_FEATURE_RO_ATTR(extra_attr);
1094 F2FS_FEATURE_RO_ATTR(project_quota);
1095 F2FS_FEATURE_RO_ATTR(inode_checksum);
1096 F2FS_FEATURE_RO_ATTR(flexible_inline_xattr);
1097 F2FS_FEATURE_RO_ATTR(quota_ino);
1098 F2FS_FEATURE_RO_ATTR(inode_crtime);
1099 F2FS_FEATURE_RO_ATTR(lost_found);
1100 #ifdef CONFIG_FS_VERITY
1101 F2FS_FEATURE_RO_ATTR(verity);
1103 F2FS_FEATURE_RO_ATTR(sb_checksum);
1104 #if IS_ENABLED(CONFIG_UNICODE)
1105 F2FS_FEATURE_RO_ATTR(casefold);
1107 F2FS_FEATURE_RO_ATTR(readonly);
1108 #ifdef CONFIG_F2FS_FS_COMPRESSION
1109 F2FS_FEATURE_RO_ATTR(compression);
1111 F2FS_FEATURE_RO_ATTR(pin_file);
1113 #define ATTR_LIST(name) (&f2fs_attr_##name.attr)
1114 static struct attribute *f2fs_attrs[] = {
1115 ATTR_LIST(gc_urgent_sleep_time),
1116 ATTR_LIST(gc_min_sleep_time),
1117 ATTR_LIST(gc_max_sleep_time),
1118 ATTR_LIST(gc_no_gc_sleep_time),
1120 ATTR_LIST(gc_urgent),
1121 ATTR_LIST(reclaim_segments),
1122 ATTR_LIST(main_blkaddr),
1123 ATTR_LIST(max_small_discards),
1124 ATTR_LIST(max_discard_request),
1125 ATTR_LIST(min_discard_issue_time),
1126 ATTR_LIST(mid_discard_issue_time),
1127 ATTR_LIST(max_discard_issue_time),
1128 ATTR_LIST(discard_io_aware_gran),
1129 ATTR_LIST(discard_urgent_util),
1130 ATTR_LIST(discard_granularity),
1131 ATTR_LIST(max_ordered_discard),
1132 ATTR_LIST(discard_io_aware),
1133 ATTR_LIST(pending_discard),
1135 ATTR_LIST(ipu_policy),
1136 ATTR_LIST(min_ipu_util),
1137 ATTR_LIST(min_fsync_blocks),
1138 ATTR_LIST(min_seq_blocks),
1139 ATTR_LIST(min_hot_blocks),
1140 ATTR_LIST(min_ssr_sections),
1141 ATTR_LIST(max_victim_search),
1142 ATTR_LIST(migration_granularity),
1143 ATTR_LIST(dir_level),
1144 ATTR_LIST(ram_thresh),
1145 ATTR_LIST(ra_nid_pages),
1146 ATTR_LIST(dirty_nats_ratio),
1147 ATTR_LIST(max_roll_forward_node_blocks),
1148 ATTR_LIST(cp_interval),
1149 ATTR_LIST(idle_interval),
1150 ATTR_LIST(discard_idle_interval),
1151 ATTR_LIST(gc_idle_interval),
1152 ATTR_LIST(umount_discard_timeout),
1153 #ifdef CONFIG_F2FS_IOSTAT
1154 ATTR_LIST(iostat_enable),
1155 ATTR_LIST(iostat_period_ms),
1157 ATTR_LIST(readdir_ra),
1158 ATTR_LIST(max_io_bytes),
1159 ATTR_LIST(gc_pin_file_thresh),
1160 ATTR_LIST(extension_list),
1161 #ifdef CONFIG_F2FS_FAULT_INJECTION
1162 ATTR_LIST(inject_rate),
1163 ATTR_LIST(inject_type),
1165 ATTR_LIST(data_io_flag),
1166 ATTR_LIST(node_io_flag),
1167 ATTR_LIST(gc_remaining_trials),
1168 ATTR_LIST(ckpt_thread_ioprio),
1169 ATTR_LIST(dirty_segments),
1170 ATTR_LIST(free_segments),
1171 ATTR_LIST(ovp_segments),
1172 ATTR_LIST(unusable),
1173 ATTR_LIST(lifetime_write_kbytes),
1174 ATTR_LIST(features),
1175 ATTR_LIST(reserved_blocks),
1176 ATTR_LIST(current_reserved_blocks),
1177 ATTR_LIST(encoding),
1178 ATTR_LIST(mounted_time_sec),
1179 #ifdef CONFIG_F2FS_STAT_FS
1180 ATTR_LIST(cp_foreground_calls),
1181 ATTR_LIST(cp_background_calls),
1182 ATTR_LIST(gc_foreground_calls),
1183 ATTR_LIST(gc_background_calls),
1184 ATTR_LIST(moved_blocks_foreground),
1185 ATTR_LIST(moved_blocks_background),
1186 ATTR_LIST(avg_vblocks),
1188 #ifdef CONFIG_BLK_DEV_ZONED
1189 ATTR_LIST(unusable_blocks_per_sec),
1191 #ifdef CONFIG_F2FS_FS_COMPRESSION
1192 ATTR_LIST(compr_written_block),
1193 ATTR_LIST(compr_saved_block),
1194 ATTR_LIST(compr_new_inode),
1195 ATTR_LIST(compress_percent),
1196 ATTR_LIST(compress_watermark),
1199 ATTR_LIST(atgc_candidate_ratio),
1200 ATTR_LIST(atgc_candidate_count),
1201 ATTR_LIST(atgc_age_weight),
1202 ATTR_LIST(atgc_age_threshold),
1203 ATTR_LIST(seq_file_ra_mul),
1204 ATTR_LIST(gc_segment_mode),
1205 ATTR_LIST(gc_reclaimed_segments),
1206 ATTR_LIST(max_fragment_chunk),
1207 ATTR_LIST(max_fragment_hole),
1208 ATTR_LIST(current_atomic_write),
1209 ATTR_LIST(peak_atomic_write),
1210 ATTR_LIST(committed_atomic_block),
1211 ATTR_LIST(revoked_atomic_block),
1212 ATTR_LIST(hot_data_age_threshold),
1213 ATTR_LIST(warm_data_age_threshold),
1214 ATTR_LIST(last_age_weight),
1217 ATTRIBUTE_GROUPS(f2fs);
1219 static struct attribute *f2fs_feat_attrs[] = {
1220 #ifdef CONFIG_FS_ENCRYPTION
1221 ATTR_LIST(encryption),
1222 ATTR_LIST(test_dummy_encryption_v2),
1223 #if IS_ENABLED(CONFIG_UNICODE)
1224 ATTR_LIST(encrypted_casefold),
1226 #endif /* CONFIG_FS_ENCRYPTION */
1227 #ifdef CONFIG_BLK_DEV_ZONED
1228 ATTR_LIST(block_zoned),
1230 ATTR_LIST(atomic_write),
1231 ATTR_LIST(extra_attr),
1232 ATTR_LIST(project_quota),
1233 ATTR_LIST(inode_checksum),
1234 ATTR_LIST(flexible_inline_xattr),
1235 ATTR_LIST(quota_ino),
1236 ATTR_LIST(inode_crtime),
1237 ATTR_LIST(lost_found),
1238 #ifdef CONFIG_FS_VERITY
1241 ATTR_LIST(sb_checksum),
1242 #if IS_ENABLED(CONFIG_UNICODE)
1243 ATTR_LIST(casefold),
1245 ATTR_LIST(readonly),
1246 #ifdef CONFIG_F2FS_FS_COMPRESSION
1247 ATTR_LIST(compression),
1249 ATTR_LIST(pin_file),
1252 ATTRIBUTE_GROUPS(f2fs_feat);
1254 F2FS_GENERAL_RO_ATTR(sb_status);
1255 F2FS_GENERAL_RO_ATTR(cp_status);
1256 F2FS_GENERAL_RO_ATTR(issued_discard);
1257 F2FS_GENERAL_RO_ATTR(queued_discard);
1258 F2FS_GENERAL_RO_ATTR(undiscard_blks);
1260 static struct attribute *f2fs_stat_attrs[] = {
1261 ATTR_LIST(sb_status),
1262 ATTR_LIST(cp_status),
1263 ATTR_LIST(issued_discard),
1264 ATTR_LIST(queued_discard),
1265 ATTR_LIST(undiscard_blks),
1268 ATTRIBUTE_GROUPS(f2fs_stat);
1270 F2FS_SB_FEATURE_RO_ATTR(encryption, ENCRYPT);
1271 F2FS_SB_FEATURE_RO_ATTR(block_zoned, BLKZONED);
1272 F2FS_SB_FEATURE_RO_ATTR(extra_attr, EXTRA_ATTR);
1273 F2FS_SB_FEATURE_RO_ATTR(project_quota, PRJQUOTA);
1274 F2FS_SB_FEATURE_RO_ATTR(inode_checksum, INODE_CHKSUM);
1275 F2FS_SB_FEATURE_RO_ATTR(flexible_inline_xattr, FLEXIBLE_INLINE_XATTR);
1276 F2FS_SB_FEATURE_RO_ATTR(quota_ino, QUOTA_INO);
1277 F2FS_SB_FEATURE_RO_ATTR(inode_crtime, INODE_CRTIME);
1278 F2FS_SB_FEATURE_RO_ATTR(lost_found, LOST_FOUND);
1279 F2FS_SB_FEATURE_RO_ATTR(verity, VERITY);
1280 F2FS_SB_FEATURE_RO_ATTR(sb_checksum, SB_CHKSUM);
1281 F2FS_SB_FEATURE_RO_ATTR(casefold, CASEFOLD);
1282 F2FS_SB_FEATURE_RO_ATTR(compression, COMPRESSION);
1283 F2FS_SB_FEATURE_RO_ATTR(readonly, RO);
1285 static struct attribute *f2fs_sb_feat_attrs[] = {
1286 ATTR_LIST(sb_encryption),
1287 ATTR_LIST(sb_block_zoned),
1288 ATTR_LIST(sb_extra_attr),
1289 ATTR_LIST(sb_project_quota),
1290 ATTR_LIST(sb_inode_checksum),
1291 ATTR_LIST(sb_flexible_inline_xattr),
1292 ATTR_LIST(sb_quota_ino),
1293 ATTR_LIST(sb_inode_crtime),
1294 ATTR_LIST(sb_lost_found),
1295 ATTR_LIST(sb_verity),
1296 ATTR_LIST(sb_sb_checksum),
1297 ATTR_LIST(sb_casefold),
1298 ATTR_LIST(sb_compression),
1299 ATTR_LIST(sb_readonly),
1302 ATTRIBUTE_GROUPS(f2fs_sb_feat);
1304 static const struct sysfs_ops f2fs_attr_ops = {
1305 .show = f2fs_attr_show,
1306 .store = f2fs_attr_store,
1309 static const struct kobj_type f2fs_sb_ktype = {
1310 .default_groups = f2fs_groups,
1311 .sysfs_ops = &f2fs_attr_ops,
1312 .release = f2fs_sb_release,
1315 static const struct kobj_type f2fs_ktype = {
1316 .sysfs_ops = &f2fs_attr_ops,
1319 static struct kset f2fs_kset = {
1320 .kobj = {.ktype = &f2fs_ktype},
1323 static const struct kobj_type f2fs_feat_ktype = {
1324 .default_groups = f2fs_feat_groups,
1325 .sysfs_ops = &f2fs_attr_ops,
1328 static struct kobject f2fs_feat = {
1332 static ssize_t f2fs_stat_attr_show(struct kobject *kobj,
1333 struct attribute *attr, char *buf)
1335 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
1337 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
1339 return a->show ? a->show(a, sbi, buf) : 0;
1342 static ssize_t f2fs_stat_attr_store(struct kobject *kobj, struct attribute *attr,
1343 const char *buf, size_t len)
1345 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
1347 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
1349 return a->store ? a->store(a, sbi, buf, len) : 0;
1352 static void f2fs_stat_kobj_release(struct kobject *kobj)
1354 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
1356 complete(&sbi->s_stat_kobj_unregister);
1359 static const struct sysfs_ops f2fs_stat_attr_ops = {
1360 .show = f2fs_stat_attr_show,
1361 .store = f2fs_stat_attr_store,
1364 static const struct kobj_type f2fs_stat_ktype = {
1365 .default_groups = f2fs_stat_groups,
1366 .sysfs_ops = &f2fs_stat_attr_ops,
1367 .release = f2fs_stat_kobj_release,
1370 static ssize_t f2fs_sb_feat_attr_show(struct kobject *kobj,
1371 struct attribute *attr, char *buf)
1373 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
1374 s_feature_list_kobj);
1375 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
1377 return a->show ? a->show(a, sbi, buf) : 0;
1380 static void f2fs_feature_list_kobj_release(struct kobject *kobj)
1382 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
1383 s_feature_list_kobj);
1384 complete(&sbi->s_feature_list_kobj_unregister);
1387 static const struct sysfs_ops f2fs_feature_list_attr_ops = {
1388 .show = f2fs_sb_feat_attr_show,
1391 static const struct kobj_type f2fs_feature_list_ktype = {
1392 .default_groups = f2fs_sb_feat_groups,
1393 .sysfs_ops = &f2fs_feature_list_attr_ops,
1394 .release = f2fs_feature_list_kobj_release,
1397 static int __maybe_unused segment_info_seq_show(struct seq_file *seq,
1400 struct super_block *sb = seq->private;
1401 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1402 unsigned int total_segs =
1403 le32_to_cpu(sbi->raw_super->segment_count_main);
1406 seq_puts(seq, "format: segment_type|valid_blocks\n"
1407 "segment_type(0:HD, 1:WD, 2:CD, 3:HN, 4:WN, 5:CN)\n");
1409 for (i = 0; i < total_segs; i++) {
1410 struct seg_entry *se = get_seg_entry(sbi, i);
1413 seq_printf(seq, "%-10d", i);
1414 seq_printf(seq, "%d|%-3u", se->type, se->valid_blocks);
1415 if ((i % 10) == 9 || i == (total_segs - 1))
1416 seq_putc(seq, '\n');
1424 static int __maybe_unused segment_bits_seq_show(struct seq_file *seq,
1427 struct super_block *sb = seq->private;
1428 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1429 unsigned int total_segs =
1430 le32_to_cpu(sbi->raw_super->segment_count_main);
1433 seq_puts(seq, "format: segment_type|valid_blocks|bitmaps\n"
1434 "segment_type(0:HD, 1:WD, 2:CD, 3:HN, 4:WN, 5:CN)\n");
1436 for (i = 0; i < total_segs; i++) {
1437 struct seg_entry *se = get_seg_entry(sbi, i);
1439 seq_printf(seq, "%-10d", i);
1440 seq_printf(seq, "%d|%-3u|", se->type, se->valid_blocks);
1441 for (j = 0; j < SIT_VBLOCK_MAP_SIZE; j++)
1442 seq_printf(seq, " %.2x", se->cur_valid_map[j]);
1443 seq_putc(seq, '\n');
1448 static int __maybe_unused victim_bits_seq_show(struct seq_file *seq,
1451 struct super_block *sb = seq->private;
1452 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1453 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1456 seq_puts(seq, "format: victim_secmap bitmaps\n");
1458 for (i = 0; i < MAIN_SECS(sbi); i++) {
1460 seq_printf(seq, "%-10d", i);
1461 seq_printf(seq, "%d", test_bit(i, dirty_i->victim_secmap) ? 1 : 0);
1462 if ((i % 10) == 9 || i == (MAIN_SECS(sbi) - 1))
1463 seq_putc(seq, '\n');
1470 static int __maybe_unused discard_plist_seq_show(struct seq_file *seq,
1473 struct super_block *sb = seq->private;
1474 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1475 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1478 seq_puts(seq, "Discard pend list(Show diacrd_cmd count on each entry, .:not exist):\n");
1479 if (!f2fs_realtime_discard_enable(sbi))
1483 mutex_lock(&dcc->cmd_lock);
1484 for (i = 0; i < MAX_PLIST_NUM; i++) {
1485 struct list_head *pend_list;
1486 struct discard_cmd *dc, *tmp;
1489 seq_printf(seq, " %-3d", i);
1491 pend_list = &dcc->pend_list[i];
1492 list_for_each_entry_safe(dc, tmp, pend_list, list)
1495 seq_printf(seq, " %7d", count);
1497 seq_puts(seq, " .");
1499 seq_putc(seq, '\n');
1501 seq_putc(seq, '\n');
1502 mutex_unlock(&dcc->cmd_lock);
1508 static int __maybe_unused disk_map_seq_show(struct seq_file *seq,
1511 struct super_block *sb = seq->private;
1512 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1515 seq_printf(seq, "Address Layout : %5luB Block address (# of Segments)\n",
1517 seq_printf(seq, " SB : %12s\n", "0/1024B");
1518 seq_printf(seq, " seg0_blkaddr : 0x%010x\n", SEG0_BLKADDR(sbi));
1519 seq_printf(seq, " Checkpoint : 0x%010x (%10d)\n",
1520 le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr), 2);
1521 seq_printf(seq, " SIT : 0x%010x (%10d)\n",
1522 SIT_I(sbi)->sit_base_addr,
1523 le32_to_cpu(F2FS_RAW_SUPER(sbi)->segment_count_sit));
1524 seq_printf(seq, " NAT : 0x%010x (%10d)\n",
1525 NM_I(sbi)->nat_blkaddr,
1526 le32_to_cpu(F2FS_RAW_SUPER(sbi)->segment_count_nat));
1527 seq_printf(seq, " SSA : 0x%010x (%10d)\n",
1528 SM_I(sbi)->ssa_blkaddr,
1529 le32_to_cpu(F2FS_RAW_SUPER(sbi)->segment_count_ssa));
1530 seq_printf(seq, " Main : 0x%010x (%10d)\n",
1531 SM_I(sbi)->main_blkaddr,
1532 le32_to_cpu(F2FS_RAW_SUPER(sbi)->segment_count_main));
1533 seq_printf(seq, " # of Sections : %12d\n",
1534 le32_to_cpu(F2FS_RAW_SUPER(sbi)->section_count));
1535 seq_printf(seq, " Segs/Sections : %12d\n",
1537 seq_printf(seq, " Section size : %12d MB\n",
1538 SEGS_PER_SEC(sbi) << 1);
1540 if (!f2fs_is_multi_device(sbi))
1543 seq_puts(seq, "\nDisk Map for multi devices:\n");
1544 for (i = 0; i < sbi->s_ndevs; i++)
1545 seq_printf(seq, "Disk:%2d (zoned=%d): 0x%010x - 0x%010x on %s\n",
1546 i, bdev_is_zoned(FDEV(i).bdev),
1547 FDEV(i).start_blk, FDEV(i).end_blk,
1552 int __init f2fs_init_sysfs(void)
1556 kobject_set_name(&f2fs_kset.kobj, "f2fs");
1557 f2fs_kset.kobj.parent = fs_kobj;
1558 ret = kset_register(&f2fs_kset);
1562 ret = kobject_init_and_add(&f2fs_feat, &f2fs_feat_ktype,
1567 f2fs_proc_root = proc_mkdir("fs/f2fs", NULL);
1568 if (!f2fs_proc_root) {
1575 kobject_put(&f2fs_feat);
1576 kset_unregister(&f2fs_kset);
1580 void f2fs_exit_sysfs(void)
1582 kobject_put(&f2fs_feat);
1583 kset_unregister(&f2fs_kset);
1584 remove_proc_entry("fs/f2fs", NULL);
1585 f2fs_proc_root = NULL;
1588 int f2fs_register_sysfs(struct f2fs_sb_info *sbi)
1590 struct super_block *sb = sbi->sb;
1593 sbi->s_kobj.kset = &f2fs_kset;
1594 init_completion(&sbi->s_kobj_unregister);
1595 err = kobject_init_and_add(&sbi->s_kobj, &f2fs_sb_ktype, NULL,
1600 sbi->s_stat_kobj.kset = &f2fs_kset;
1601 init_completion(&sbi->s_stat_kobj_unregister);
1602 err = kobject_init_and_add(&sbi->s_stat_kobj, &f2fs_stat_ktype,
1603 &sbi->s_kobj, "stat");
1607 sbi->s_feature_list_kobj.kset = &f2fs_kset;
1608 init_completion(&sbi->s_feature_list_kobj_unregister);
1609 err = kobject_init_and_add(&sbi->s_feature_list_kobj,
1610 &f2fs_feature_list_ktype,
1611 &sbi->s_kobj, "feature_list");
1613 goto put_feature_list_kobj;
1615 sbi->s_proc = proc_mkdir(sb->s_id, f2fs_proc_root);
1618 goto put_feature_list_kobj;
1621 proc_create_single_data("segment_info", 0444, sbi->s_proc,
1622 segment_info_seq_show, sb);
1623 proc_create_single_data("segment_bits", 0444, sbi->s_proc,
1624 segment_bits_seq_show, sb);
1625 #ifdef CONFIG_F2FS_IOSTAT
1626 proc_create_single_data("iostat_info", 0444, sbi->s_proc,
1627 iostat_info_seq_show, sb);
1629 proc_create_single_data("victim_bits", 0444, sbi->s_proc,
1630 victim_bits_seq_show, sb);
1631 proc_create_single_data("discard_plist_info", 0444, sbi->s_proc,
1632 discard_plist_seq_show, sb);
1633 proc_create_single_data("disk_map", 0444, sbi->s_proc,
1634 disk_map_seq_show, sb);
1636 put_feature_list_kobj:
1637 kobject_put(&sbi->s_feature_list_kobj);
1638 wait_for_completion(&sbi->s_feature_list_kobj_unregister);
1640 kobject_put(&sbi->s_stat_kobj);
1641 wait_for_completion(&sbi->s_stat_kobj_unregister);
1643 kobject_put(&sbi->s_kobj);
1644 wait_for_completion(&sbi->s_kobj_unregister);
1648 void f2fs_unregister_sysfs(struct f2fs_sb_info *sbi)
1650 remove_proc_subtree(sbi->sb->s_id, f2fs_proc_root);
1652 kobject_put(&sbi->s_stat_kobj);
1653 wait_for_completion(&sbi->s_stat_kobj_unregister);
1654 kobject_put(&sbi->s_feature_list_kobj);
1655 wait_for_completion(&sbi->s_feature_list_kobj_unregister);
1657 kobject_put(&sbi->s_kobj);
1658 wait_for_completion(&sbi->s_kobj_unregister);