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 gc_mode_show(struct f2fs_attr *a,
147 struct f2fs_sb_info *sbi, char *buf)
149 return sysfs_emit(buf, "%s\n", gc_mode_names[sbi->gc_mode]);
152 static ssize_t features_show(struct f2fs_attr *a,
153 struct f2fs_sb_info *sbi, char *buf)
157 if (f2fs_sb_has_encrypt(sbi))
158 len += scnprintf(buf, PAGE_SIZE - len, "%s",
160 if (f2fs_sb_has_blkzoned(sbi))
161 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
162 len ? ", " : "", "blkzoned");
163 if (f2fs_sb_has_extra_attr(sbi))
164 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
165 len ? ", " : "", "extra_attr");
166 if (f2fs_sb_has_project_quota(sbi))
167 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
168 len ? ", " : "", "projquota");
169 if (f2fs_sb_has_inode_chksum(sbi))
170 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
171 len ? ", " : "", "inode_checksum");
172 if (f2fs_sb_has_flexible_inline_xattr(sbi))
173 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
174 len ? ", " : "", "flexible_inline_xattr");
175 if (f2fs_sb_has_quota_ino(sbi))
176 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
177 len ? ", " : "", "quota_ino");
178 if (f2fs_sb_has_inode_crtime(sbi))
179 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
180 len ? ", " : "", "inode_crtime");
181 if (f2fs_sb_has_lost_found(sbi))
182 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
183 len ? ", " : "", "lost_found");
184 if (f2fs_sb_has_verity(sbi))
185 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
186 len ? ", " : "", "verity");
187 if (f2fs_sb_has_sb_chksum(sbi))
188 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
189 len ? ", " : "", "sb_checksum");
190 if (f2fs_sb_has_casefold(sbi))
191 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
192 len ? ", " : "", "casefold");
193 if (f2fs_sb_has_readonly(sbi))
194 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
195 len ? ", " : "", "readonly");
196 if (f2fs_sb_has_compression(sbi))
197 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
198 len ? ", " : "", "compression");
199 len += scnprintf(buf + len, PAGE_SIZE - len, "%s%s",
200 len ? ", " : "", "pin_file");
201 len += scnprintf(buf + len, PAGE_SIZE - len, "\n");
205 static ssize_t current_reserved_blocks_show(struct f2fs_attr *a,
206 struct f2fs_sb_info *sbi, char *buf)
208 return sysfs_emit(buf, "%u\n", sbi->current_reserved_blocks);
211 static ssize_t unusable_show(struct f2fs_attr *a,
212 struct f2fs_sb_info *sbi, char *buf)
216 if (test_opt(sbi, DISABLE_CHECKPOINT))
217 unusable = sbi->unusable_block_count;
219 unusable = f2fs_get_unusable_blocks(sbi);
220 return sysfs_emit(buf, "%llu\n", (unsigned long long)unusable);
223 static ssize_t encoding_show(struct f2fs_attr *a,
224 struct f2fs_sb_info *sbi, char *buf)
226 #if IS_ENABLED(CONFIG_UNICODE)
227 struct super_block *sb = sbi->sb;
229 if (f2fs_sb_has_casefold(sbi))
230 return sysfs_emit(buf, "UTF-8 (%d.%d.%d)\n",
231 (sb->s_encoding->version >> 16) & 0xff,
232 (sb->s_encoding->version >> 8) & 0xff,
233 sb->s_encoding->version & 0xff);
235 return sysfs_emit(buf, "(none)\n");
238 static ssize_t mounted_time_sec_show(struct f2fs_attr *a,
239 struct f2fs_sb_info *sbi, char *buf)
241 return sysfs_emit(buf, "%llu\n", SIT_I(sbi)->mounted_time);
244 #ifdef CONFIG_F2FS_STAT_FS
245 static ssize_t moved_blocks_foreground_show(struct f2fs_attr *a,
246 struct f2fs_sb_info *sbi, char *buf)
248 struct f2fs_stat_info *si = F2FS_STAT(sbi);
250 return sysfs_emit(buf, "%llu\n",
251 (unsigned long long)(si->tot_blks -
252 (si->bg_data_blks + si->bg_node_blks)));
255 static ssize_t moved_blocks_background_show(struct f2fs_attr *a,
256 struct f2fs_sb_info *sbi, char *buf)
258 struct f2fs_stat_info *si = F2FS_STAT(sbi);
260 return sysfs_emit(buf, "%llu\n",
261 (unsigned long long)(si->bg_data_blks + si->bg_node_blks));
264 static ssize_t avg_vblocks_show(struct f2fs_attr *a,
265 struct f2fs_sb_info *sbi, char *buf)
267 struct f2fs_stat_info *si = F2FS_STAT(sbi);
269 si->dirty_count = dirty_segments(sbi);
270 f2fs_update_sit_info(sbi);
271 return sysfs_emit(buf, "%llu\n", (unsigned long long)(si->avg_vblocks));
275 static ssize_t main_blkaddr_show(struct f2fs_attr *a,
276 struct f2fs_sb_info *sbi, char *buf)
278 return sysfs_emit(buf, "%llu\n",
279 (unsigned long long)MAIN_BLKADDR(sbi));
282 static ssize_t f2fs_sbi_show(struct f2fs_attr *a,
283 struct f2fs_sb_info *sbi, char *buf)
285 unsigned char *ptr = NULL;
288 ptr = __struct_ptr(sbi, a->struct_type);
292 if (!strcmp(a->attr.name, "extension_list")) {
293 __u8 (*extlist)[F2FS_EXTENSION_LEN] =
294 sbi->raw_super->extension_list;
295 int cold_count = le32_to_cpu(sbi->raw_super->extension_count);
296 int hot_count = sbi->raw_super->hot_ext_count;
299 len += scnprintf(buf + len, PAGE_SIZE - len,
300 "cold file extension:\n");
301 for (i = 0; i < cold_count; i++)
302 len += scnprintf(buf + len, PAGE_SIZE - len, "%s\n",
305 len += scnprintf(buf + len, PAGE_SIZE - len,
306 "hot file extension:\n");
307 for (i = cold_count; i < cold_count + hot_count; i++)
308 len += scnprintf(buf + len, PAGE_SIZE - len, "%s\n",
313 if (!strcmp(a->attr.name, "ckpt_thread_ioprio")) {
314 struct ckpt_req_control *cprc = &sbi->cprc_info;
315 int class = IOPRIO_PRIO_CLASS(cprc->ckpt_thread_ioprio);
316 int data = IOPRIO_PRIO_DATA(cprc->ckpt_thread_ioprio);
318 if (class != IOPRIO_CLASS_RT && class != IOPRIO_CLASS_BE)
321 return sysfs_emit(buf, "%s,%d\n",
322 class == IOPRIO_CLASS_RT ? "rt" : "be", data);
325 #ifdef CONFIG_F2FS_FS_COMPRESSION
326 if (!strcmp(a->attr.name, "compr_written_block"))
327 return sysfs_emit(buf, "%llu\n", sbi->compr_written_block);
329 if (!strcmp(a->attr.name, "compr_saved_block"))
330 return sysfs_emit(buf, "%llu\n", sbi->compr_saved_block);
332 if (!strcmp(a->attr.name, "compr_new_inode"))
333 return sysfs_emit(buf, "%u\n", sbi->compr_new_inode);
336 if (!strcmp(a->attr.name, "gc_segment_mode"))
337 return sysfs_emit(buf, "%u\n", sbi->gc_segment_mode);
339 if (!strcmp(a->attr.name, "gc_reclaimed_segments")) {
340 return sysfs_emit(buf, "%u\n",
341 sbi->gc_reclaimed_segs[sbi->gc_segment_mode]);
344 if (!strcmp(a->attr.name, "current_atomic_write")) {
345 s64 current_write = atomic64_read(&sbi->current_atomic_write);
347 return sysfs_emit(buf, "%lld\n", current_write);
350 if (!strcmp(a->attr.name, "peak_atomic_write"))
351 return sysfs_emit(buf, "%lld\n", sbi->peak_atomic_write);
353 if (!strcmp(a->attr.name, "committed_atomic_block"))
354 return sysfs_emit(buf, "%llu\n", sbi->committed_atomic_block);
356 if (!strcmp(a->attr.name, "revoked_atomic_block"))
357 return sysfs_emit(buf, "%llu\n", sbi->revoked_atomic_block);
359 ui = (unsigned int *)(ptr + a->offset);
361 return sysfs_emit(buf, "%u\n", *ui);
364 static ssize_t __sbi_store(struct f2fs_attr *a,
365 struct f2fs_sb_info *sbi,
366 const char *buf, size_t count)
373 ptr = __struct_ptr(sbi, a->struct_type);
377 if (!strcmp(a->attr.name, "extension_list")) {
378 const char *name = strim((char *)buf);
379 bool set = true, hot;
381 if (!strncmp(name, "[h]", 3))
383 else if (!strncmp(name, "[c]", 3))
395 if (!strlen(name) || strlen(name) >= F2FS_EXTENSION_LEN)
398 f2fs_down_write(&sbi->sb_lock);
400 ret = f2fs_update_extension_list(sbi, name, hot, set);
404 ret = f2fs_commit_super(sbi, false);
406 f2fs_update_extension_list(sbi, name, hot, !set);
408 f2fs_up_write(&sbi->sb_lock);
409 return ret ? ret : count;
412 if (!strcmp(a->attr.name, "ckpt_thread_ioprio")) {
413 const char *name = strim((char *)buf);
414 struct ckpt_req_control *cprc = &sbi->cprc_info;
419 if (!strncmp(name, "rt,", 3))
420 class = IOPRIO_CLASS_RT;
421 else if (!strncmp(name, "be,", 3))
422 class = IOPRIO_CLASS_BE;
427 ret = kstrtol(name, 10, &data);
430 if (data >= IOPRIO_NR_LEVELS || data < 0)
433 cprc->ckpt_thread_ioprio = IOPRIO_PRIO_VALUE(class, data);
434 if (test_opt(sbi, MERGE_CHECKPOINT)) {
435 ret = set_task_ioprio(cprc->f2fs_issue_ckpt,
436 cprc->ckpt_thread_ioprio);
444 ui = (unsigned int *)(ptr + a->offset);
446 ret = kstrtoul(skip_spaces(buf), 0, &t);
449 #ifdef CONFIG_F2FS_FAULT_INJECTION
450 if (a->struct_type == FAULT_INFO_TYPE && t >= BIT(FAULT_MAX))
452 if (a->struct_type == FAULT_INFO_RATE && t >= UINT_MAX)
455 if (a->struct_type == RESERVED_BLOCKS) {
456 spin_lock(&sbi->stat_lock);
457 if (t > (unsigned long)(sbi->user_block_count -
458 F2FS_OPTION(sbi).root_reserved_blocks -
459 sbi->blocks_per_seg *
460 SM_I(sbi)->additional_reserved_segments)) {
461 spin_unlock(&sbi->stat_lock);
465 sbi->current_reserved_blocks = min(sbi->reserved_blocks,
466 sbi->user_block_count - valid_user_blocks(sbi));
467 spin_unlock(&sbi->stat_lock);
471 if (!strcmp(a->attr.name, "discard_io_aware_gran")) {
472 if (t > MAX_PLIST_NUM)
474 if (!f2fs_block_unit_discard(sbi))
482 if (!strcmp(a->attr.name, "discard_granularity")) {
483 if (t == 0 || t > MAX_PLIST_NUM)
485 if (!f2fs_block_unit_discard(sbi))
493 if (!strcmp(a->attr.name, "max_ordered_discard")) {
494 if (t == 0 || t > MAX_PLIST_NUM)
496 if (!f2fs_block_unit_discard(sbi))
502 if (!strcmp(a->attr.name, "discard_urgent_util")) {
509 if (!strcmp(a->attr.name, "migration_granularity")) {
510 if (t == 0 || t > sbi->segs_per_sec)
514 if (!strcmp(a->attr.name, "gc_urgent")) {
516 sbi->gc_mode = GC_NORMAL;
518 sbi->gc_mode = GC_URGENT_HIGH;
519 if (sbi->gc_thread) {
520 sbi->gc_thread->gc_wake = true;
521 wake_up_interruptible_all(
522 &sbi->gc_thread->gc_wait_queue_head);
523 wake_up_discard_thread(sbi, true);
526 sbi->gc_mode = GC_URGENT_LOW;
528 sbi->gc_mode = GC_URGENT_MID;
529 if (sbi->gc_thread) {
530 sbi->gc_thread->gc_wake = true;
531 wake_up_interruptible_all(
532 &sbi->gc_thread->gc_wait_queue_head);
539 if (!strcmp(a->attr.name, "gc_idle")) {
540 if (t == GC_IDLE_CB) {
541 sbi->gc_mode = GC_IDLE_CB;
542 } else if (t == GC_IDLE_GREEDY) {
543 sbi->gc_mode = GC_IDLE_GREEDY;
544 } else if (t == GC_IDLE_AT) {
545 if (!sbi->am.atgc_enabled)
547 sbi->gc_mode = GC_IDLE_AT;
549 sbi->gc_mode = GC_NORMAL;
554 if (!strcmp(a->attr.name, "gc_remaining_trials")) {
555 spin_lock(&sbi->gc_remaining_trials_lock);
556 sbi->gc_remaining_trials = t;
557 spin_unlock(&sbi->gc_remaining_trials_lock);
562 #ifdef CONFIG_F2FS_IOSTAT
563 if (!strcmp(a->attr.name, "iostat_enable")) {
564 sbi->iostat_enable = !!t;
565 if (!sbi->iostat_enable)
566 f2fs_reset_iostat(sbi);
570 if (!strcmp(a->attr.name, "iostat_period_ms")) {
571 if (t < MIN_IOSTAT_PERIOD_MS || t > MAX_IOSTAT_PERIOD_MS)
573 spin_lock_irq(&sbi->iostat_lock);
574 sbi->iostat_period_ms = (unsigned int)t;
575 spin_unlock_irq(&sbi->iostat_lock);
580 #ifdef CONFIG_F2FS_FS_COMPRESSION
581 if (!strcmp(a->attr.name, "compr_written_block") ||
582 !strcmp(a->attr.name, "compr_saved_block")) {
585 sbi->compr_written_block = 0;
586 sbi->compr_saved_block = 0;
590 if (!strcmp(a->attr.name, "compr_new_inode")) {
593 sbi->compr_new_inode = 0;
597 if (!strcmp(a->attr.name, "compress_percent")) {
598 if (t == 0 || t > 100)
604 if (!strcmp(a->attr.name, "compress_watermark")) {
605 if (t == 0 || t > 100)
612 if (!strcmp(a->attr.name, "atgc_candidate_ratio")) {
615 sbi->am.candidate_ratio = t;
619 if (!strcmp(a->attr.name, "atgc_age_weight")) {
622 sbi->am.age_weight = t;
626 if (!strcmp(a->attr.name, "gc_segment_mode")) {
628 sbi->gc_segment_mode = t;
634 if (!strcmp(a->attr.name, "gc_reclaimed_segments")) {
637 sbi->gc_reclaimed_segs[sbi->gc_segment_mode] = 0;
641 if (!strcmp(a->attr.name, "seq_file_ra_mul")) {
642 if (t >= MIN_RA_MUL && t <= MAX_RA_MUL)
643 sbi->seq_file_ra_mul = t;
649 if (!strcmp(a->attr.name, "max_fragment_chunk")) {
650 if (t >= MIN_FRAGMENT_SIZE && t <= MAX_FRAGMENT_SIZE)
651 sbi->max_fragment_chunk = t;
657 if (!strcmp(a->attr.name, "max_fragment_hole")) {
658 if (t >= MIN_FRAGMENT_SIZE && t <= MAX_FRAGMENT_SIZE)
659 sbi->max_fragment_hole = t;
665 if (!strcmp(a->attr.name, "peak_atomic_write")) {
668 sbi->peak_atomic_write = 0;
672 if (!strcmp(a->attr.name, "committed_atomic_block")) {
675 sbi->committed_atomic_block = 0;
679 if (!strcmp(a->attr.name, "revoked_atomic_block")) {
682 sbi->revoked_atomic_block = 0;
686 if (!strcmp(a->attr.name, "readdir_ra")) {
687 sbi->readdir_ra = !!t;
691 if (!strcmp(a->attr.name, "hot_data_age_threshold")) {
692 if (t == 0 || t >= sbi->warm_data_age_threshold)
696 *ui = (unsigned int)t;
700 if (!strcmp(a->attr.name, "warm_data_age_threshold")) {
701 if (t <= sbi->hot_data_age_threshold)
705 *ui = (unsigned int)t;
709 if (!strcmp(a->attr.name, "last_age_weight")) {
714 *ui = (unsigned int)t;
718 if (!strcmp(a->attr.name, "ipu_policy")) {
719 if (t >= BIT(F2FS_IPU_MAX))
721 if (t && f2fs_lfs_mode(sbi))
723 SM_I(sbi)->ipu_policy = (unsigned int)t;
727 *ui = (unsigned int)t;
732 static ssize_t f2fs_sbi_store(struct f2fs_attr *a,
733 struct f2fs_sb_info *sbi,
734 const char *buf, size_t count)
737 bool gc_entry = (!strcmp(a->attr.name, "gc_urgent") ||
738 a->struct_type == GC_THREAD);
741 if (!down_read_trylock(&sbi->sb->s_umount))
744 ret = __sbi_store(a, sbi, buf, count);
746 up_read(&sbi->sb->s_umount);
751 static ssize_t f2fs_attr_show(struct kobject *kobj,
752 struct attribute *attr, char *buf)
754 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
756 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
758 return a->show ? a->show(a, sbi, buf) : 0;
761 static ssize_t f2fs_attr_store(struct kobject *kobj, struct attribute *attr,
762 const char *buf, size_t len)
764 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
766 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
768 return a->store ? a->store(a, sbi, buf, len) : 0;
771 static void f2fs_sb_release(struct kobject *kobj)
773 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
775 complete(&sbi->s_kobj_unregister);
779 * Note that there are three feature list entries:
780 * 1) /sys/fs/f2fs/features
781 * : shows runtime features supported by in-kernel f2fs along with Kconfig.
782 * - ref. F2FS_FEATURE_RO_ATTR()
784 * 2) /sys/fs/f2fs/$s_id/features <deprecated>
785 * : shows on-disk features enabled by mkfs.f2fs, used for old kernels. This
786 * won't add new feature anymore, and thus, users should check entries in 3)
787 * instead of this 2).
789 * 3) /sys/fs/f2fs/$s_id/feature_list
790 * : shows on-disk features enabled by mkfs.f2fs per instance, which follows
791 * sysfs entry rule where each entry should expose single value.
792 * This list covers old feature list provided by 2) and beyond. Therefore,
793 * please add new on-disk feature in this list only.
794 * - ref. F2FS_SB_FEATURE_RO_ATTR()
796 static ssize_t f2fs_feature_show(struct f2fs_attr *a,
797 struct f2fs_sb_info *sbi, char *buf)
799 return sysfs_emit(buf, "supported\n");
802 #define F2FS_FEATURE_RO_ATTR(_name) \
803 static struct f2fs_attr f2fs_attr_##_name = { \
804 .attr = {.name = __stringify(_name), .mode = 0444 }, \
805 .show = f2fs_feature_show, \
808 static ssize_t f2fs_sb_feature_show(struct f2fs_attr *a,
809 struct f2fs_sb_info *sbi, char *buf)
811 if (F2FS_HAS_FEATURE(sbi, a->id))
812 return sysfs_emit(buf, "supported\n");
813 return sysfs_emit(buf, "unsupported\n");
816 #define F2FS_SB_FEATURE_RO_ATTR(_name, _feat) \
817 static struct f2fs_attr f2fs_attr_sb_##_name = { \
818 .attr = {.name = __stringify(_name), .mode = 0444 }, \
819 .show = f2fs_sb_feature_show, \
820 .id = F2FS_FEATURE_##_feat, \
823 #define F2FS_ATTR_OFFSET(_struct_type, _name, _mode, _show, _store, _offset) \
824 static struct f2fs_attr f2fs_attr_##_name = { \
825 .attr = {.name = __stringify(_name), .mode = _mode }, \
828 .struct_type = _struct_type, \
832 #define F2FS_RO_ATTR(struct_type, struct_name, name, elname) \
833 F2FS_ATTR_OFFSET(struct_type, name, 0444, \
834 f2fs_sbi_show, NULL, \
835 offsetof(struct struct_name, elname))
837 #define F2FS_RW_ATTR(struct_type, struct_name, name, elname) \
838 F2FS_ATTR_OFFSET(struct_type, name, 0644, \
839 f2fs_sbi_show, f2fs_sbi_store, \
840 offsetof(struct struct_name, elname))
842 #define F2FS_GENERAL_RO_ATTR(name) \
843 static struct f2fs_attr f2fs_attr_##name = __ATTR(name, 0444, name##_show, NULL)
845 #ifdef CONFIG_F2FS_STAT_FS
846 #define STAT_INFO_RO_ATTR(name, elname) \
847 F2FS_RO_ATTR(STAT_INFO, f2fs_stat_info, name, elname)
850 #define GC_THREAD_RW_ATTR(name, elname) \
851 F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, name, elname)
853 #define SM_INFO_RW_ATTR(name, elname) \
854 F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, name, elname)
856 #define SM_INFO_GENERAL_RW_ATTR(elname) \
857 SM_INFO_RW_ATTR(elname, elname)
859 #define DCC_INFO_RW_ATTR(name, elname) \
860 F2FS_RW_ATTR(DCC_INFO, discard_cmd_control, name, elname)
862 #define DCC_INFO_GENERAL_RW_ATTR(elname) \
863 DCC_INFO_RW_ATTR(elname, elname)
865 #define NM_INFO_RW_ATTR(name, elname) \
866 F2FS_RW_ATTR(NM_INFO, f2fs_nm_info, name, elname)
868 #define NM_INFO_GENERAL_RW_ATTR(elname) \
869 NM_INFO_RW_ATTR(elname, elname)
871 #define F2FS_SBI_RW_ATTR(name, elname) \
872 F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, name, elname)
874 #define F2FS_SBI_GENERAL_RW_ATTR(elname) \
875 F2FS_SBI_RW_ATTR(elname, elname)
877 #define F2FS_SBI_GENERAL_RO_ATTR(elname) \
878 F2FS_RO_ATTR(F2FS_SBI, f2fs_sb_info, elname, elname)
880 #ifdef CONFIG_F2FS_FAULT_INJECTION
881 #define FAULT_INFO_GENERAL_RW_ATTR(type, elname) \
882 F2FS_RW_ATTR(type, f2fs_fault_info, elname, elname)
885 #define RESERVED_BLOCKS_GENERAL_RW_ATTR(elname) \
886 F2FS_RW_ATTR(RESERVED_BLOCKS, f2fs_sb_info, elname, elname)
888 #define CPRC_INFO_GENERAL_RW_ATTR(elname) \
889 F2FS_RW_ATTR(CPRC_INFO, ckpt_req_control, elname, elname)
891 #define ATGC_INFO_RW_ATTR(name, elname) \
892 F2FS_RW_ATTR(ATGC_INFO, atgc_management, name, elname)
895 GC_THREAD_RW_ATTR(gc_urgent_sleep_time, urgent_sleep_time);
896 GC_THREAD_RW_ATTR(gc_min_sleep_time, min_sleep_time);
897 GC_THREAD_RW_ATTR(gc_max_sleep_time, max_sleep_time);
898 GC_THREAD_RW_ATTR(gc_no_gc_sleep_time, no_gc_sleep_time);
901 SM_INFO_RW_ATTR(reclaim_segments, rec_prefree_segments);
902 SM_INFO_GENERAL_RW_ATTR(ipu_policy);
903 SM_INFO_GENERAL_RW_ATTR(min_ipu_util);
904 SM_INFO_GENERAL_RW_ATTR(min_fsync_blocks);
905 SM_INFO_GENERAL_RW_ATTR(min_seq_blocks);
906 SM_INFO_GENERAL_RW_ATTR(min_hot_blocks);
907 SM_INFO_GENERAL_RW_ATTR(min_ssr_sections);
910 DCC_INFO_RW_ATTR(max_small_discards, max_discards);
911 DCC_INFO_GENERAL_RW_ATTR(max_discard_request);
912 DCC_INFO_GENERAL_RW_ATTR(min_discard_issue_time);
913 DCC_INFO_GENERAL_RW_ATTR(mid_discard_issue_time);
914 DCC_INFO_GENERAL_RW_ATTR(max_discard_issue_time);
915 DCC_INFO_GENERAL_RW_ATTR(discard_io_aware_gran);
916 DCC_INFO_GENERAL_RW_ATTR(discard_urgent_util);
917 DCC_INFO_GENERAL_RW_ATTR(discard_granularity);
918 DCC_INFO_GENERAL_RW_ATTR(max_ordered_discard);
921 NM_INFO_RW_ATTR(max_roll_forward_node_blocks, max_rf_node_blocks);
922 NM_INFO_GENERAL_RW_ATTR(ram_thresh);
923 NM_INFO_GENERAL_RW_ATTR(ra_nid_pages);
924 NM_INFO_GENERAL_RW_ATTR(dirty_nats_ratio);
927 F2FS_RW_ATTR(F2FS_SBI, f2fs_super_block, extension_list, extension_list);
928 F2FS_SBI_RW_ATTR(gc_idle, gc_mode);
929 F2FS_SBI_RW_ATTR(gc_urgent, gc_mode);
930 F2FS_SBI_RW_ATTR(cp_interval, interval_time[CP_TIME]);
931 F2FS_SBI_RW_ATTR(idle_interval, interval_time[REQ_TIME]);
932 F2FS_SBI_RW_ATTR(discard_idle_interval, interval_time[DISCARD_TIME]);
933 F2FS_SBI_RW_ATTR(gc_idle_interval, interval_time[GC_TIME]);
934 F2FS_SBI_RW_ATTR(umount_discard_timeout, interval_time[UMOUNT_DISCARD_TIMEOUT]);
935 F2FS_SBI_RW_ATTR(gc_pin_file_thresh, gc_pin_file_threshold);
936 F2FS_SBI_RW_ATTR(gc_reclaimed_segments, gc_reclaimed_segs);
937 F2FS_SBI_GENERAL_RW_ATTR(max_victim_search);
938 F2FS_SBI_GENERAL_RW_ATTR(migration_granularity);
939 F2FS_SBI_GENERAL_RW_ATTR(dir_level);
940 #ifdef CONFIG_F2FS_IOSTAT
941 F2FS_SBI_GENERAL_RW_ATTR(iostat_enable);
942 F2FS_SBI_GENERAL_RW_ATTR(iostat_period_ms);
944 F2FS_SBI_GENERAL_RW_ATTR(readdir_ra);
945 F2FS_SBI_GENERAL_RW_ATTR(max_io_bytes);
946 F2FS_SBI_GENERAL_RW_ATTR(data_io_flag);
947 F2FS_SBI_GENERAL_RW_ATTR(node_io_flag);
948 F2FS_SBI_GENERAL_RW_ATTR(gc_remaining_trials);
949 F2FS_SBI_GENERAL_RW_ATTR(seq_file_ra_mul);
950 F2FS_SBI_GENERAL_RW_ATTR(gc_segment_mode);
951 F2FS_SBI_GENERAL_RW_ATTR(max_fragment_chunk);
952 F2FS_SBI_GENERAL_RW_ATTR(max_fragment_hole);
953 #ifdef CONFIG_F2FS_FS_COMPRESSION
954 F2FS_SBI_GENERAL_RW_ATTR(compr_written_block);
955 F2FS_SBI_GENERAL_RW_ATTR(compr_saved_block);
956 F2FS_SBI_GENERAL_RW_ATTR(compr_new_inode);
957 F2FS_SBI_GENERAL_RW_ATTR(compress_percent);
958 F2FS_SBI_GENERAL_RW_ATTR(compress_watermark);
961 F2FS_SBI_GENERAL_RO_ATTR(current_atomic_write);
962 F2FS_SBI_GENERAL_RW_ATTR(peak_atomic_write);
963 F2FS_SBI_GENERAL_RW_ATTR(committed_atomic_block);
964 F2FS_SBI_GENERAL_RW_ATTR(revoked_atomic_block);
965 /* block age extent cache */
966 F2FS_SBI_GENERAL_RW_ATTR(hot_data_age_threshold);
967 F2FS_SBI_GENERAL_RW_ATTR(warm_data_age_threshold);
968 F2FS_SBI_GENERAL_RW_ATTR(last_age_weight);
969 #ifdef CONFIG_BLK_DEV_ZONED
970 F2FS_SBI_GENERAL_RO_ATTR(unusable_blocks_per_sec);
974 #ifdef CONFIG_F2FS_STAT_FS
975 STAT_INFO_RO_ATTR(cp_foreground_calls, cp_count);
976 STAT_INFO_RO_ATTR(cp_background_calls, bg_cp_count);
977 STAT_INFO_RO_ATTR(gc_foreground_calls, call_count);
978 STAT_INFO_RO_ATTR(gc_background_calls, bg_gc);
981 /* FAULT_INFO ATTR */
982 #ifdef CONFIG_F2FS_FAULT_INJECTION
983 FAULT_INFO_GENERAL_RW_ATTR(FAULT_INFO_RATE, inject_rate);
984 FAULT_INFO_GENERAL_RW_ATTR(FAULT_INFO_TYPE, inject_type);
987 /* RESERVED_BLOCKS ATTR */
988 RESERVED_BLOCKS_GENERAL_RW_ATTR(reserved_blocks);
991 CPRC_INFO_GENERAL_RW_ATTR(ckpt_thread_ioprio);
994 ATGC_INFO_RW_ATTR(atgc_candidate_ratio, candidate_ratio);
995 ATGC_INFO_RW_ATTR(atgc_candidate_count, max_candidate_count);
996 ATGC_INFO_RW_ATTR(atgc_age_weight, age_weight);
997 ATGC_INFO_RW_ATTR(atgc_age_threshold, age_threshold);
999 F2FS_GENERAL_RO_ATTR(dirty_segments);
1000 F2FS_GENERAL_RO_ATTR(free_segments);
1001 F2FS_GENERAL_RO_ATTR(ovp_segments);
1002 F2FS_GENERAL_RO_ATTR(lifetime_write_kbytes);
1003 F2FS_GENERAL_RO_ATTR(features);
1004 F2FS_GENERAL_RO_ATTR(current_reserved_blocks);
1005 F2FS_GENERAL_RO_ATTR(unusable);
1006 F2FS_GENERAL_RO_ATTR(encoding);
1007 F2FS_GENERAL_RO_ATTR(mounted_time_sec);
1008 F2FS_GENERAL_RO_ATTR(main_blkaddr);
1009 F2FS_GENERAL_RO_ATTR(pending_discard);
1010 F2FS_GENERAL_RO_ATTR(gc_mode);
1011 #ifdef CONFIG_F2FS_STAT_FS
1012 F2FS_GENERAL_RO_ATTR(moved_blocks_background);
1013 F2FS_GENERAL_RO_ATTR(moved_blocks_foreground);
1014 F2FS_GENERAL_RO_ATTR(avg_vblocks);
1017 #ifdef CONFIG_FS_ENCRYPTION
1018 F2FS_FEATURE_RO_ATTR(encryption);
1019 F2FS_FEATURE_RO_ATTR(test_dummy_encryption_v2);
1020 #if IS_ENABLED(CONFIG_UNICODE)
1021 F2FS_FEATURE_RO_ATTR(encrypted_casefold);
1023 #endif /* CONFIG_FS_ENCRYPTION */
1024 #ifdef CONFIG_BLK_DEV_ZONED
1025 F2FS_FEATURE_RO_ATTR(block_zoned);
1027 F2FS_FEATURE_RO_ATTR(atomic_write);
1028 F2FS_FEATURE_RO_ATTR(extra_attr);
1029 F2FS_FEATURE_RO_ATTR(project_quota);
1030 F2FS_FEATURE_RO_ATTR(inode_checksum);
1031 F2FS_FEATURE_RO_ATTR(flexible_inline_xattr);
1032 F2FS_FEATURE_RO_ATTR(quota_ino);
1033 F2FS_FEATURE_RO_ATTR(inode_crtime);
1034 F2FS_FEATURE_RO_ATTR(lost_found);
1035 #ifdef CONFIG_FS_VERITY
1036 F2FS_FEATURE_RO_ATTR(verity);
1038 F2FS_FEATURE_RO_ATTR(sb_checksum);
1039 #if IS_ENABLED(CONFIG_UNICODE)
1040 F2FS_FEATURE_RO_ATTR(casefold);
1042 F2FS_FEATURE_RO_ATTR(readonly);
1043 #ifdef CONFIG_F2FS_FS_COMPRESSION
1044 F2FS_FEATURE_RO_ATTR(compression);
1046 F2FS_FEATURE_RO_ATTR(pin_file);
1048 #define ATTR_LIST(name) (&f2fs_attr_##name.attr)
1049 static struct attribute *f2fs_attrs[] = {
1050 ATTR_LIST(gc_urgent_sleep_time),
1051 ATTR_LIST(gc_min_sleep_time),
1052 ATTR_LIST(gc_max_sleep_time),
1053 ATTR_LIST(gc_no_gc_sleep_time),
1055 ATTR_LIST(gc_urgent),
1056 ATTR_LIST(reclaim_segments),
1057 ATTR_LIST(main_blkaddr),
1058 ATTR_LIST(max_small_discards),
1059 ATTR_LIST(max_discard_request),
1060 ATTR_LIST(min_discard_issue_time),
1061 ATTR_LIST(mid_discard_issue_time),
1062 ATTR_LIST(max_discard_issue_time),
1063 ATTR_LIST(discard_io_aware_gran),
1064 ATTR_LIST(discard_urgent_util),
1065 ATTR_LIST(discard_granularity),
1066 ATTR_LIST(max_ordered_discard),
1067 ATTR_LIST(pending_discard),
1069 ATTR_LIST(ipu_policy),
1070 ATTR_LIST(min_ipu_util),
1071 ATTR_LIST(min_fsync_blocks),
1072 ATTR_LIST(min_seq_blocks),
1073 ATTR_LIST(min_hot_blocks),
1074 ATTR_LIST(min_ssr_sections),
1075 ATTR_LIST(max_victim_search),
1076 ATTR_LIST(migration_granularity),
1077 ATTR_LIST(dir_level),
1078 ATTR_LIST(ram_thresh),
1079 ATTR_LIST(ra_nid_pages),
1080 ATTR_LIST(dirty_nats_ratio),
1081 ATTR_LIST(max_roll_forward_node_blocks),
1082 ATTR_LIST(cp_interval),
1083 ATTR_LIST(idle_interval),
1084 ATTR_LIST(discard_idle_interval),
1085 ATTR_LIST(gc_idle_interval),
1086 ATTR_LIST(umount_discard_timeout),
1087 #ifdef CONFIG_F2FS_IOSTAT
1088 ATTR_LIST(iostat_enable),
1089 ATTR_LIST(iostat_period_ms),
1091 ATTR_LIST(readdir_ra),
1092 ATTR_LIST(max_io_bytes),
1093 ATTR_LIST(gc_pin_file_thresh),
1094 ATTR_LIST(extension_list),
1095 #ifdef CONFIG_F2FS_FAULT_INJECTION
1096 ATTR_LIST(inject_rate),
1097 ATTR_LIST(inject_type),
1099 ATTR_LIST(data_io_flag),
1100 ATTR_LIST(node_io_flag),
1101 ATTR_LIST(gc_remaining_trials),
1102 ATTR_LIST(ckpt_thread_ioprio),
1103 ATTR_LIST(dirty_segments),
1104 ATTR_LIST(free_segments),
1105 ATTR_LIST(ovp_segments),
1106 ATTR_LIST(unusable),
1107 ATTR_LIST(lifetime_write_kbytes),
1108 ATTR_LIST(features),
1109 ATTR_LIST(reserved_blocks),
1110 ATTR_LIST(current_reserved_blocks),
1111 ATTR_LIST(encoding),
1112 ATTR_LIST(mounted_time_sec),
1113 #ifdef CONFIG_F2FS_STAT_FS
1114 ATTR_LIST(cp_foreground_calls),
1115 ATTR_LIST(cp_background_calls),
1116 ATTR_LIST(gc_foreground_calls),
1117 ATTR_LIST(gc_background_calls),
1118 ATTR_LIST(moved_blocks_foreground),
1119 ATTR_LIST(moved_blocks_background),
1120 ATTR_LIST(avg_vblocks),
1122 #ifdef CONFIG_BLK_DEV_ZONED
1123 ATTR_LIST(unusable_blocks_per_sec),
1125 #ifdef CONFIG_F2FS_FS_COMPRESSION
1126 ATTR_LIST(compr_written_block),
1127 ATTR_LIST(compr_saved_block),
1128 ATTR_LIST(compr_new_inode),
1129 ATTR_LIST(compress_percent),
1130 ATTR_LIST(compress_watermark),
1133 ATTR_LIST(atgc_candidate_ratio),
1134 ATTR_LIST(atgc_candidate_count),
1135 ATTR_LIST(atgc_age_weight),
1136 ATTR_LIST(atgc_age_threshold),
1137 ATTR_LIST(seq_file_ra_mul),
1138 ATTR_LIST(gc_segment_mode),
1139 ATTR_LIST(gc_reclaimed_segments),
1140 ATTR_LIST(max_fragment_chunk),
1141 ATTR_LIST(max_fragment_hole),
1142 ATTR_LIST(current_atomic_write),
1143 ATTR_LIST(peak_atomic_write),
1144 ATTR_LIST(committed_atomic_block),
1145 ATTR_LIST(revoked_atomic_block),
1146 ATTR_LIST(hot_data_age_threshold),
1147 ATTR_LIST(warm_data_age_threshold),
1148 ATTR_LIST(last_age_weight),
1151 ATTRIBUTE_GROUPS(f2fs);
1153 static struct attribute *f2fs_feat_attrs[] = {
1154 #ifdef CONFIG_FS_ENCRYPTION
1155 ATTR_LIST(encryption),
1156 ATTR_LIST(test_dummy_encryption_v2),
1157 #if IS_ENABLED(CONFIG_UNICODE)
1158 ATTR_LIST(encrypted_casefold),
1160 #endif /* CONFIG_FS_ENCRYPTION */
1161 #ifdef CONFIG_BLK_DEV_ZONED
1162 ATTR_LIST(block_zoned),
1164 ATTR_LIST(atomic_write),
1165 ATTR_LIST(extra_attr),
1166 ATTR_LIST(project_quota),
1167 ATTR_LIST(inode_checksum),
1168 ATTR_LIST(flexible_inline_xattr),
1169 ATTR_LIST(quota_ino),
1170 ATTR_LIST(inode_crtime),
1171 ATTR_LIST(lost_found),
1172 #ifdef CONFIG_FS_VERITY
1175 ATTR_LIST(sb_checksum),
1176 #if IS_ENABLED(CONFIG_UNICODE)
1177 ATTR_LIST(casefold),
1179 ATTR_LIST(readonly),
1180 #ifdef CONFIG_F2FS_FS_COMPRESSION
1181 ATTR_LIST(compression),
1183 ATTR_LIST(pin_file),
1186 ATTRIBUTE_GROUPS(f2fs_feat);
1188 F2FS_GENERAL_RO_ATTR(sb_status);
1189 F2FS_GENERAL_RO_ATTR(cp_status);
1190 static struct attribute *f2fs_stat_attrs[] = {
1191 ATTR_LIST(sb_status),
1192 ATTR_LIST(cp_status),
1195 ATTRIBUTE_GROUPS(f2fs_stat);
1197 F2FS_SB_FEATURE_RO_ATTR(encryption, ENCRYPT);
1198 F2FS_SB_FEATURE_RO_ATTR(block_zoned, BLKZONED);
1199 F2FS_SB_FEATURE_RO_ATTR(extra_attr, EXTRA_ATTR);
1200 F2FS_SB_FEATURE_RO_ATTR(project_quota, PRJQUOTA);
1201 F2FS_SB_FEATURE_RO_ATTR(inode_checksum, INODE_CHKSUM);
1202 F2FS_SB_FEATURE_RO_ATTR(flexible_inline_xattr, FLEXIBLE_INLINE_XATTR);
1203 F2FS_SB_FEATURE_RO_ATTR(quota_ino, QUOTA_INO);
1204 F2FS_SB_FEATURE_RO_ATTR(inode_crtime, INODE_CRTIME);
1205 F2FS_SB_FEATURE_RO_ATTR(lost_found, LOST_FOUND);
1206 F2FS_SB_FEATURE_RO_ATTR(verity, VERITY);
1207 F2FS_SB_FEATURE_RO_ATTR(sb_checksum, SB_CHKSUM);
1208 F2FS_SB_FEATURE_RO_ATTR(casefold, CASEFOLD);
1209 F2FS_SB_FEATURE_RO_ATTR(compression, COMPRESSION);
1210 F2FS_SB_FEATURE_RO_ATTR(readonly, RO);
1212 static struct attribute *f2fs_sb_feat_attrs[] = {
1213 ATTR_LIST(sb_encryption),
1214 ATTR_LIST(sb_block_zoned),
1215 ATTR_LIST(sb_extra_attr),
1216 ATTR_LIST(sb_project_quota),
1217 ATTR_LIST(sb_inode_checksum),
1218 ATTR_LIST(sb_flexible_inline_xattr),
1219 ATTR_LIST(sb_quota_ino),
1220 ATTR_LIST(sb_inode_crtime),
1221 ATTR_LIST(sb_lost_found),
1222 ATTR_LIST(sb_verity),
1223 ATTR_LIST(sb_sb_checksum),
1224 ATTR_LIST(sb_casefold),
1225 ATTR_LIST(sb_compression),
1226 ATTR_LIST(sb_readonly),
1229 ATTRIBUTE_GROUPS(f2fs_sb_feat);
1231 static const struct sysfs_ops f2fs_attr_ops = {
1232 .show = f2fs_attr_show,
1233 .store = f2fs_attr_store,
1236 static const struct kobj_type f2fs_sb_ktype = {
1237 .default_groups = f2fs_groups,
1238 .sysfs_ops = &f2fs_attr_ops,
1239 .release = f2fs_sb_release,
1242 static const struct kobj_type f2fs_ktype = {
1243 .sysfs_ops = &f2fs_attr_ops,
1246 static struct kset f2fs_kset = {
1247 .kobj = {.ktype = &f2fs_ktype},
1250 static const struct kobj_type f2fs_feat_ktype = {
1251 .default_groups = f2fs_feat_groups,
1252 .sysfs_ops = &f2fs_attr_ops,
1255 static struct kobject f2fs_feat = {
1259 static ssize_t f2fs_stat_attr_show(struct kobject *kobj,
1260 struct attribute *attr, char *buf)
1262 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
1264 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
1266 return a->show ? a->show(a, sbi, buf) : 0;
1269 static ssize_t f2fs_stat_attr_store(struct kobject *kobj, struct attribute *attr,
1270 const char *buf, size_t len)
1272 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
1274 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
1276 return a->store ? a->store(a, sbi, buf, len) : 0;
1279 static void f2fs_stat_kobj_release(struct kobject *kobj)
1281 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
1283 complete(&sbi->s_stat_kobj_unregister);
1286 static const struct sysfs_ops f2fs_stat_attr_ops = {
1287 .show = f2fs_stat_attr_show,
1288 .store = f2fs_stat_attr_store,
1291 static const struct kobj_type f2fs_stat_ktype = {
1292 .default_groups = f2fs_stat_groups,
1293 .sysfs_ops = &f2fs_stat_attr_ops,
1294 .release = f2fs_stat_kobj_release,
1297 static ssize_t f2fs_sb_feat_attr_show(struct kobject *kobj,
1298 struct attribute *attr, char *buf)
1300 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
1301 s_feature_list_kobj);
1302 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
1304 return a->show ? a->show(a, sbi, buf) : 0;
1307 static void f2fs_feature_list_kobj_release(struct kobject *kobj)
1309 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
1310 s_feature_list_kobj);
1311 complete(&sbi->s_feature_list_kobj_unregister);
1314 static const struct sysfs_ops f2fs_feature_list_attr_ops = {
1315 .show = f2fs_sb_feat_attr_show,
1318 static const struct kobj_type f2fs_feature_list_ktype = {
1319 .default_groups = f2fs_sb_feat_groups,
1320 .sysfs_ops = &f2fs_feature_list_attr_ops,
1321 .release = f2fs_feature_list_kobj_release,
1324 static int __maybe_unused segment_info_seq_show(struct seq_file *seq,
1327 struct super_block *sb = seq->private;
1328 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1329 unsigned int total_segs =
1330 le32_to_cpu(sbi->raw_super->segment_count_main);
1333 seq_puts(seq, "format: segment_type|valid_blocks\n"
1334 "segment_type(0:HD, 1:WD, 2:CD, 3:HN, 4:WN, 5:CN)\n");
1336 for (i = 0; i < total_segs; i++) {
1337 struct seg_entry *se = get_seg_entry(sbi, i);
1340 seq_printf(seq, "%-10d", i);
1341 seq_printf(seq, "%d|%-3u", se->type, se->valid_blocks);
1342 if ((i % 10) == 9 || i == (total_segs - 1))
1343 seq_putc(seq, '\n');
1351 static int __maybe_unused segment_bits_seq_show(struct seq_file *seq,
1354 struct super_block *sb = seq->private;
1355 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1356 unsigned int total_segs =
1357 le32_to_cpu(sbi->raw_super->segment_count_main);
1360 seq_puts(seq, "format: segment_type|valid_blocks|bitmaps\n"
1361 "segment_type(0:HD, 1:WD, 2:CD, 3:HN, 4:WN, 5:CN)\n");
1363 for (i = 0; i < total_segs; i++) {
1364 struct seg_entry *se = get_seg_entry(sbi, i);
1366 seq_printf(seq, "%-10d", i);
1367 seq_printf(seq, "%d|%-3u|", se->type, se->valid_blocks);
1368 for (j = 0; j < SIT_VBLOCK_MAP_SIZE; j++)
1369 seq_printf(seq, " %.2x", se->cur_valid_map[j]);
1370 seq_putc(seq, '\n');
1375 static int __maybe_unused victim_bits_seq_show(struct seq_file *seq,
1378 struct super_block *sb = seq->private;
1379 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1380 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1383 seq_puts(seq, "format: victim_secmap bitmaps\n");
1385 for (i = 0; i < MAIN_SECS(sbi); i++) {
1387 seq_printf(seq, "%-10d", i);
1388 seq_printf(seq, "%d", test_bit(i, dirty_i->victim_secmap) ? 1 : 0);
1389 if ((i % 10) == 9 || i == (MAIN_SECS(sbi) - 1))
1390 seq_putc(seq, '\n');
1397 static int __maybe_unused discard_plist_seq_show(struct seq_file *seq,
1400 struct super_block *sb = seq->private;
1401 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1402 struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
1405 seq_puts(seq, "Discard pend list(Show diacrd_cmd count on each entry, .:not exist):\n");
1406 if (!f2fs_realtime_discard_enable(sbi))
1410 mutex_lock(&dcc->cmd_lock);
1411 for (i = 0; i < MAX_PLIST_NUM; i++) {
1412 struct list_head *pend_list;
1413 struct discard_cmd *dc, *tmp;
1416 seq_printf(seq, " %-3d", i);
1418 pend_list = &dcc->pend_list[i];
1419 list_for_each_entry_safe(dc, tmp, pend_list, list)
1422 seq_printf(seq, " %7d", count);
1424 seq_puts(seq, " .");
1426 seq_putc(seq, '\n');
1428 seq_putc(seq, '\n');
1429 mutex_unlock(&dcc->cmd_lock);
1435 int __init f2fs_init_sysfs(void)
1439 kobject_set_name(&f2fs_kset.kobj, "f2fs");
1440 f2fs_kset.kobj.parent = fs_kobj;
1441 ret = kset_register(&f2fs_kset);
1445 ret = kobject_init_and_add(&f2fs_feat, &f2fs_feat_ktype,
1450 f2fs_proc_root = proc_mkdir("fs/f2fs", NULL);
1451 if (!f2fs_proc_root) {
1458 kobject_put(&f2fs_feat);
1459 kset_unregister(&f2fs_kset);
1463 void f2fs_exit_sysfs(void)
1465 kobject_put(&f2fs_feat);
1466 kset_unregister(&f2fs_kset);
1467 remove_proc_entry("fs/f2fs", NULL);
1468 f2fs_proc_root = NULL;
1471 int f2fs_register_sysfs(struct f2fs_sb_info *sbi)
1473 struct super_block *sb = sbi->sb;
1476 sbi->s_kobj.kset = &f2fs_kset;
1477 init_completion(&sbi->s_kobj_unregister);
1478 err = kobject_init_and_add(&sbi->s_kobj, &f2fs_sb_ktype, NULL,
1483 sbi->s_stat_kobj.kset = &f2fs_kset;
1484 init_completion(&sbi->s_stat_kobj_unregister);
1485 err = kobject_init_and_add(&sbi->s_stat_kobj, &f2fs_stat_ktype,
1486 &sbi->s_kobj, "stat");
1490 sbi->s_feature_list_kobj.kset = &f2fs_kset;
1491 init_completion(&sbi->s_feature_list_kobj_unregister);
1492 err = kobject_init_and_add(&sbi->s_feature_list_kobj,
1493 &f2fs_feature_list_ktype,
1494 &sbi->s_kobj, "feature_list");
1496 goto put_feature_list_kobj;
1498 sbi->s_proc = proc_mkdir(sb->s_id, f2fs_proc_root);
1501 goto put_feature_list_kobj;
1504 proc_create_single_data("segment_info", 0444, sbi->s_proc,
1505 segment_info_seq_show, sb);
1506 proc_create_single_data("segment_bits", 0444, sbi->s_proc,
1507 segment_bits_seq_show, sb);
1508 #ifdef CONFIG_F2FS_IOSTAT
1509 proc_create_single_data("iostat_info", 0444, sbi->s_proc,
1510 iostat_info_seq_show, sb);
1512 proc_create_single_data("victim_bits", 0444, sbi->s_proc,
1513 victim_bits_seq_show, sb);
1514 proc_create_single_data("discard_plist_info", 0444, sbi->s_proc,
1515 discard_plist_seq_show, sb);
1517 put_feature_list_kobj:
1518 kobject_put(&sbi->s_feature_list_kobj);
1519 wait_for_completion(&sbi->s_feature_list_kobj_unregister);
1521 kobject_put(&sbi->s_stat_kobj);
1522 wait_for_completion(&sbi->s_stat_kobj_unregister);
1524 kobject_put(&sbi->s_kobj);
1525 wait_for_completion(&sbi->s_kobj_unregister);
1529 void f2fs_unregister_sysfs(struct f2fs_sb_info *sbi)
1531 remove_proc_subtree(sbi->sb->s_id, f2fs_proc_root);
1533 kobject_put(&sbi->s_stat_kobj);
1534 wait_for_completion(&sbi->s_stat_kobj_unregister);
1535 kobject_put(&sbi->s_feature_list_kobj);
1536 wait_for_completion(&sbi->s_feature_list_kobj_unregister);
1538 kobject_put(&sbi->s_kobj);
1539 wait_for_completion(&sbi->s_kobj_unregister);