Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 1 | /* |
| 2 | * f2fs sysfs interface |
| 3 | * |
| 4 | * Copyright (c) 2012 Samsung Electronics Co., Ltd. |
| 5 | * http://www.samsung.com/ |
| 6 | * Copyright (c) 2017 Chao Yu <chao@kernel.org> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
Randy Dunlap | cb15d1e | 2018-07-06 20:50:57 -0700 | [diff] [blame] | 12 | #include <linux/compiler.h> |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 13 | #include <linux/proc_fs.h> |
| 14 | #include <linux/f2fs_fs.h> |
Jaegeuk Kim | 299aa41 | 2017-07-13 17:45:21 -0700 | [diff] [blame] | 15 | #include <linux/seq_file.h> |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 16 | |
| 17 | #include "f2fs.h" |
| 18 | #include "segment.h" |
| 19 | #include "gc.h" |
| 20 | |
| 21 | static struct proc_dir_entry *f2fs_proc_root; |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 22 | |
| 23 | /* Sysfs support for f2fs */ |
| 24 | enum { |
| 25 | GC_THREAD, /* struct f2fs_gc_thread */ |
| 26 | SM_INFO, /* struct f2fs_sm_info */ |
| 27 | DCC_INFO, /* struct discard_cmd_control */ |
| 28 | NM_INFO, /* struct f2fs_nm_info */ |
| 29 | F2FS_SBI, /* struct f2fs_sb_info */ |
| 30 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
| 31 | FAULT_INFO_RATE, /* struct f2fs_fault_info */ |
| 32 | FAULT_INFO_TYPE, /* struct f2fs_fault_info */ |
| 33 | #endif |
Yunlong Song | 80d4214 | 2017-10-27 20:45:05 +0800 | [diff] [blame] | 34 | RESERVED_BLOCKS, /* struct f2fs_sb_info */ |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 35 | }; |
| 36 | |
| 37 | struct f2fs_attr { |
| 38 | struct attribute attr; |
| 39 | ssize_t (*show)(struct f2fs_attr *, struct f2fs_sb_info *, char *); |
| 40 | ssize_t (*store)(struct f2fs_attr *, struct f2fs_sb_info *, |
| 41 | const char *, size_t); |
| 42 | int struct_type; |
| 43 | int offset; |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 44 | int id; |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | static unsigned char *__struct_ptr(struct f2fs_sb_info *sbi, int struct_type) |
| 48 | { |
| 49 | if (struct_type == GC_THREAD) |
| 50 | return (unsigned char *)sbi->gc_thread; |
| 51 | else if (struct_type == SM_INFO) |
| 52 | return (unsigned char *)SM_I(sbi); |
| 53 | else if (struct_type == DCC_INFO) |
| 54 | return (unsigned char *)SM_I(sbi)->dcc_info; |
| 55 | else if (struct_type == NM_INFO) |
| 56 | return (unsigned char *)NM_I(sbi); |
Chao Yu | daeb433 | 2017-06-26 16:24:41 +0800 | [diff] [blame] | 57 | else if (struct_type == F2FS_SBI || struct_type == RESERVED_BLOCKS) |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 58 | return (unsigned char *)sbi; |
| 59 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
| 60 | else if (struct_type == FAULT_INFO_RATE || |
| 61 | struct_type == FAULT_INFO_TYPE) |
Chao Yu | 63189b7 | 2018-03-08 14:22:56 +0800 | [diff] [blame] | 62 | return (unsigned char *)&F2FS_OPTION(sbi).fault_info; |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 63 | #endif |
| 64 | return NULL; |
| 65 | } |
| 66 | |
Jaegeuk Kim | 8f1572f | 2017-10-24 09:46:54 +0200 | [diff] [blame] | 67 | static ssize_t dirty_segments_show(struct f2fs_attr *a, |
| 68 | struct f2fs_sb_info *sbi, char *buf) |
| 69 | { |
| 70 | return snprintf(buf, PAGE_SIZE, "%llu\n", |
| 71 | (unsigned long long)(dirty_segments(sbi))); |
| 72 | } |
| 73 | |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 74 | static ssize_t lifetime_write_kbytes_show(struct f2fs_attr *a, |
| 75 | struct f2fs_sb_info *sbi, char *buf) |
| 76 | { |
| 77 | struct super_block *sb = sbi->sb; |
| 78 | |
| 79 | if (!sb->s_bdev->bd_part) |
| 80 | return snprintf(buf, PAGE_SIZE, "0\n"); |
| 81 | |
| 82 | return snprintf(buf, PAGE_SIZE, "%llu\n", |
| 83 | (unsigned long long)(sbi->kbytes_written + |
| 84 | BD_PART_WRITTEN(sbi))); |
| 85 | } |
| 86 | |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 87 | static ssize_t features_show(struct f2fs_attr *a, |
| 88 | struct f2fs_sb_info *sbi, char *buf) |
| 89 | { |
| 90 | struct super_block *sb = sbi->sb; |
| 91 | int len = 0; |
| 92 | |
| 93 | if (!sb->s_bdev->bd_part) |
| 94 | return snprintf(buf, PAGE_SIZE, "0\n"); |
| 95 | |
Sheng Yong | ccd31cb | 2018-02-06 12:31:17 +0800 | [diff] [blame] | 96 | if (f2fs_sb_has_encrypt(sb)) |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 97 | len += snprintf(buf, PAGE_SIZE - len, "%s", |
| 98 | "encryption"); |
Sheng Yong | ccd31cb | 2018-02-06 12:31:17 +0800 | [diff] [blame] | 99 | if (f2fs_sb_has_blkzoned(sb)) |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 100 | len += snprintf(buf + len, PAGE_SIZE - len, "%s%s", |
| 101 | len ? ", " : "", "blkzoned"); |
| 102 | if (f2fs_sb_has_extra_attr(sb)) |
| 103 | len += snprintf(buf + len, PAGE_SIZE - len, "%s%s", |
| 104 | len ? ", " : "", "extra_attr"); |
| 105 | if (f2fs_sb_has_project_quota(sb)) |
| 106 | len += snprintf(buf + len, PAGE_SIZE - len, "%s%s", |
| 107 | len ? ", " : "", "projquota"); |
| 108 | if (f2fs_sb_has_inode_chksum(sb)) |
| 109 | len += snprintf(buf + len, PAGE_SIZE - len, "%s%s", |
| 110 | len ? ", " : "", "inode_checksum"); |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 111 | if (f2fs_sb_has_flexible_inline_xattr(sb)) |
| 112 | len += snprintf(buf + len, PAGE_SIZE - len, "%s%s", |
| 113 | len ? ", " : "", "flexible_inline_xattr"); |
Jaegeuk Kim | 234a968 | 2017-10-05 21:03:06 -0700 | [diff] [blame] | 114 | if (f2fs_sb_has_quota_ino(sb)) |
| 115 | len += snprintf(buf + len, PAGE_SIZE - len, "%s%s", |
| 116 | len ? ", " : "", "quota_ino"); |
Chao Yu | 1c1d35d | 2018-01-25 14:54:42 +0800 | [diff] [blame] | 117 | if (f2fs_sb_has_inode_crtime(sb)) |
| 118 | len += snprintf(buf + len, PAGE_SIZE - len, "%s%s", |
| 119 | len ? ", " : "", "inode_crtime"); |
Sheng Yong | b7c409d | 2018-03-15 18:51:41 +0800 | [diff] [blame] | 120 | if (f2fs_sb_has_lost_found(sb)) |
| 121 | len += snprintf(buf + len, PAGE_SIZE - len, "%s%s", |
| 122 | len ? ", " : "", "lost_found"); |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 123 | len += snprintf(buf + len, PAGE_SIZE - len, "\n"); |
| 124 | return len; |
| 125 | } |
| 126 | |
Yunlong Song | 80d4214 | 2017-10-27 20:45:05 +0800 | [diff] [blame] | 127 | static ssize_t current_reserved_blocks_show(struct f2fs_attr *a, |
| 128 | struct f2fs_sb_info *sbi, char *buf) |
| 129 | { |
| 130 | return snprintf(buf, PAGE_SIZE, "%u\n", sbi->current_reserved_blocks); |
| 131 | } |
| 132 | |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 133 | static ssize_t f2fs_sbi_show(struct f2fs_attr *a, |
| 134 | struct f2fs_sb_info *sbi, char *buf) |
| 135 | { |
| 136 | unsigned char *ptr = NULL; |
| 137 | unsigned int *ui; |
| 138 | |
| 139 | ptr = __struct_ptr(sbi, a->struct_type); |
| 140 | if (!ptr) |
| 141 | return -EINVAL; |
| 142 | |
Chao Yu | 846ae67 | 2018-02-26 22:04:13 +0800 | [diff] [blame] | 143 | if (!strcmp(a->attr.name, "extension_list")) { |
| 144 | __u8 (*extlist)[F2FS_EXTENSION_LEN] = |
| 145 | sbi->raw_super->extension_list; |
Chao Yu | b6a06cb | 2018-02-28 17:07:27 +0800 | [diff] [blame] | 146 | int cold_count = le32_to_cpu(sbi->raw_super->extension_count); |
| 147 | int hot_count = sbi->raw_super->hot_ext_count; |
Chao Yu | 846ae67 | 2018-02-26 22:04:13 +0800 | [diff] [blame] | 148 | int len = 0, i; |
| 149 | |
Chao Yu | b6a06cb | 2018-02-28 17:07:27 +0800 | [diff] [blame] | 150 | len += snprintf(buf + len, PAGE_SIZE - len, |
Colin Ian King | 4580038 | 2018-04-30 16:27:44 +0100 | [diff] [blame] | 151 | "cold file extension:\n"); |
Chao Yu | b6a06cb | 2018-02-28 17:07:27 +0800 | [diff] [blame] | 152 | for (i = 0; i < cold_count; i++) |
| 153 | len += snprintf(buf + len, PAGE_SIZE - len, "%s\n", |
| 154 | extlist[i]); |
| 155 | |
| 156 | len += snprintf(buf + len, PAGE_SIZE - len, |
Colin Ian King | 4580038 | 2018-04-30 16:27:44 +0100 | [diff] [blame] | 157 | "hot file extension:\n"); |
Chao Yu | b6a06cb | 2018-02-28 17:07:27 +0800 | [diff] [blame] | 158 | for (i = cold_count; i < cold_count + hot_count; i++) |
Chao Yu | 846ae67 | 2018-02-26 22:04:13 +0800 | [diff] [blame] | 159 | len += snprintf(buf + len, PAGE_SIZE - len, "%s\n", |
| 160 | extlist[i]); |
| 161 | return len; |
| 162 | } |
| 163 | |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 164 | ui = (unsigned int *)(ptr + a->offset); |
| 165 | |
| 166 | return snprintf(buf, PAGE_SIZE, "%u\n", *ui); |
| 167 | } |
| 168 | |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 169 | static ssize_t __sbi_store(struct f2fs_attr *a, |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 170 | struct f2fs_sb_info *sbi, |
| 171 | const char *buf, size_t count) |
| 172 | { |
| 173 | unsigned char *ptr; |
| 174 | unsigned long t; |
| 175 | unsigned int *ui; |
| 176 | ssize_t ret; |
| 177 | |
| 178 | ptr = __struct_ptr(sbi, a->struct_type); |
| 179 | if (!ptr) |
| 180 | return -EINVAL; |
| 181 | |
Chao Yu | 846ae67 | 2018-02-26 22:04:13 +0800 | [diff] [blame] | 182 | if (!strcmp(a->attr.name, "extension_list")) { |
| 183 | const char *name = strim((char *)buf); |
Chao Yu | b6a06cb | 2018-02-28 17:07:27 +0800 | [diff] [blame] | 184 | bool set = true, hot; |
Chao Yu | 846ae67 | 2018-02-26 22:04:13 +0800 | [diff] [blame] | 185 | |
Chao Yu | b6a06cb | 2018-02-28 17:07:27 +0800 | [diff] [blame] | 186 | if (!strncmp(name, "[h]", 3)) |
| 187 | hot = true; |
| 188 | else if (!strncmp(name, "[c]", 3)) |
| 189 | hot = false; |
| 190 | else |
| 191 | return -EINVAL; |
| 192 | |
| 193 | name += 3; |
| 194 | |
| 195 | if (*name == '!') { |
Chao Yu | 846ae67 | 2018-02-26 22:04:13 +0800 | [diff] [blame] | 196 | name++; |
| 197 | set = false; |
| 198 | } |
| 199 | |
| 200 | if (strlen(name) >= F2FS_EXTENSION_LEN) |
| 201 | return -EINVAL; |
| 202 | |
| 203 | down_write(&sbi->sb_lock); |
| 204 | |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 205 | ret = f2fs_update_extension_list(sbi, name, hot, set); |
Chao Yu | 846ae67 | 2018-02-26 22:04:13 +0800 | [diff] [blame] | 206 | if (ret) |
| 207 | goto out; |
| 208 | |
| 209 | ret = f2fs_commit_super(sbi, false); |
| 210 | if (ret) |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 211 | f2fs_update_extension_list(sbi, name, hot, !set); |
Chao Yu | 846ae67 | 2018-02-26 22:04:13 +0800 | [diff] [blame] | 212 | out: |
| 213 | up_write(&sbi->sb_lock); |
| 214 | return ret ? ret : count; |
| 215 | } |
| 216 | |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 217 | ui = (unsigned int *)(ptr + a->offset); |
| 218 | |
| 219 | ret = kstrtoul(skip_spaces(buf), 0, &t); |
| 220 | if (ret < 0) |
| 221 | return ret; |
| 222 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
| 223 | if (a->struct_type == FAULT_INFO_TYPE && t >= (1 << FAULT_MAX)) |
| 224 | return -EINVAL; |
| 225 | #endif |
Chao Yu | daeb433 | 2017-06-26 16:24:41 +0800 | [diff] [blame] | 226 | if (a->struct_type == RESERVED_BLOCKS) { |
| 227 | spin_lock(&sbi->stat_lock); |
Jaegeuk Kim | 7e65be4 | 2017-12-27 15:05:52 -0800 | [diff] [blame] | 228 | if (t > (unsigned long)(sbi->user_block_count - |
Chao Yu | 63189b7 | 2018-03-08 14:22:56 +0800 | [diff] [blame] | 229 | F2FS_OPTION(sbi).root_reserved_blocks)) { |
Chao Yu | daeb433 | 2017-06-26 16:24:41 +0800 | [diff] [blame] | 230 | spin_unlock(&sbi->stat_lock); |
| 231 | return -EINVAL; |
| 232 | } |
| 233 | *ui = t; |
Yunlong Song | 80d4214 | 2017-10-27 20:45:05 +0800 | [diff] [blame] | 234 | sbi->current_reserved_blocks = min(sbi->reserved_blocks, |
| 235 | sbi->user_block_count - valid_user_blocks(sbi)); |
Chao Yu | daeb433 | 2017-06-26 16:24:41 +0800 | [diff] [blame] | 236 | spin_unlock(&sbi->stat_lock); |
| 237 | return count; |
| 238 | } |
Chao Yu | 969d1b1 | 2017-08-07 23:09:56 +0800 | [diff] [blame] | 239 | |
| 240 | if (!strcmp(a->attr.name, "discard_granularity")) { |
Chao Yu | 969d1b1 | 2017-08-07 23:09:56 +0800 | [diff] [blame] | 241 | if (t == 0 || t > MAX_PLIST_NUM) |
| 242 | return -EINVAL; |
| 243 | if (t == *ui) |
| 244 | return count; |
Chao Yu | 80647e5 | 2017-09-12 14:25:35 +0800 | [diff] [blame] | 245 | *ui = t; |
Chao Yu | 969d1b1 | 2017-08-07 23:09:56 +0800 | [diff] [blame] | 246 | return count; |
| 247 | } |
| 248 | |
Chao Yu | 377224c | 2018-04-09 10:25:23 +0800 | [diff] [blame] | 249 | if (!strcmp(a->attr.name, "trim_sections")) |
| 250 | return -EINVAL; |
| 251 | |
Jaegeuk Kim | 5b0e953 | 2018-05-07 14:22:40 -0700 | [diff] [blame] | 252 | if (!strcmp(a->attr.name, "gc_urgent")) { |
| 253 | if (t >= 1) { |
| 254 | sbi->gc_mode = GC_URGENT; |
| 255 | if (sbi->gc_thread) { |
Sheng Yong | a690eff | 2018-08-05 12:45:35 +0800 | [diff] [blame^] | 256 | sbi->gc_thread->gc_wake = 1; |
Jaegeuk Kim | 5b0e953 | 2018-05-07 14:22:40 -0700 | [diff] [blame] | 257 | wake_up_interruptible_all( |
| 258 | &sbi->gc_thread->gc_wait_queue_head); |
| 259 | wake_up_discard_thread(sbi, true); |
| 260 | } |
| 261 | } else { |
| 262 | sbi->gc_mode = GC_NORMAL; |
| 263 | } |
| 264 | return count; |
| 265 | } |
| 266 | if (!strcmp(a->attr.name, "gc_idle")) { |
| 267 | if (t == GC_IDLE_CB) |
| 268 | sbi->gc_mode = GC_IDLE_CB; |
| 269 | else if (t == GC_IDLE_GREEDY) |
| 270 | sbi->gc_mode = GC_IDLE_GREEDY; |
| 271 | else |
| 272 | sbi->gc_mode = GC_NORMAL; |
| 273 | return count; |
| 274 | } |
| 275 | |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 276 | *ui = t; |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 277 | |
| 278 | if (!strcmp(a->attr.name, "iostat_enable") && *ui == 0) |
| 279 | f2fs_reset_iostat(sbi); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 280 | return count; |
| 281 | } |
| 282 | |
Chao Yu | 250dbf5 | 2018-05-28 16:57:32 +0800 | [diff] [blame] | 283 | static ssize_t f2fs_sbi_store(struct f2fs_attr *a, |
| 284 | struct f2fs_sb_info *sbi, |
| 285 | const char *buf, size_t count) |
| 286 | { |
| 287 | ssize_t ret; |
| 288 | bool gc_entry = (!strcmp(a->attr.name, "gc_urgent") || |
| 289 | a->struct_type == GC_THREAD); |
| 290 | |
Jaegeuk Kim | a1933c0 | 2018-07-15 09:58:08 +0900 | [diff] [blame] | 291 | if (gc_entry) { |
| 292 | if (!down_read_trylock(&sbi->sb->s_umount)) |
| 293 | return -EAGAIN; |
| 294 | } |
Chao Yu | 4d57b86 | 2018-05-30 00:20:41 +0800 | [diff] [blame] | 295 | ret = __sbi_store(a, sbi, buf, count); |
Chao Yu | 250dbf5 | 2018-05-28 16:57:32 +0800 | [diff] [blame] | 296 | if (gc_entry) |
| 297 | up_read(&sbi->sb->s_umount); |
| 298 | |
| 299 | return ret; |
| 300 | } |
| 301 | |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 302 | static ssize_t f2fs_attr_show(struct kobject *kobj, |
| 303 | struct attribute *attr, char *buf) |
| 304 | { |
| 305 | struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info, |
| 306 | s_kobj); |
| 307 | struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr); |
| 308 | |
| 309 | return a->show ? a->show(a, sbi, buf) : 0; |
| 310 | } |
| 311 | |
| 312 | static ssize_t f2fs_attr_store(struct kobject *kobj, struct attribute *attr, |
| 313 | const char *buf, size_t len) |
| 314 | { |
| 315 | struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info, |
| 316 | s_kobj); |
| 317 | struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr); |
| 318 | |
| 319 | return a->store ? a->store(a, sbi, buf, len) : 0; |
| 320 | } |
| 321 | |
| 322 | static void f2fs_sb_release(struct kobject *kobj) |
| 323 | { |
| 324 | struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info, |
| 325 | s_kobj); |
| 326 | complete(&sbi->s_kobj_unregister); |
| 327 | } |
| 328 | |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 329 | enum feat_id { |
| 330 | FEAT_CRYPTO = 0, |
| 331 | FEAT_BLKZONED, |
| 332 | FEAT_ATOMIC_WRITE, |
| 333 | FEAT_EXTRA_ATTR, |
| 334 | FEAT_PROJECT_QUOTA, |
| 335 | FEAT_INODE_CHECKSUM, |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 336 | FEAT_FLEXIBLE_INLINE_XATTR, |
Jaegeuk Kim | 234a968 | 2017-10-05 21:03:06 -0700 | [diff] [blame] | 337 | FEAT_QUOTA_INO, |
Chao Yu | 1c1d35d | 2018-01-25 14:54:42 +0800 | [diff] [blame] | 338 | FEAT_INODE_CRTIME, |
Sheng Yong | b7c409d | 2018-03-15 18:51:41 +0800 | [diff] [blame] | 339 | FEAT_LOST_FOUND, |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 340 | }; |
| 341 | |
| 342 | static ssize_t f2fs_feature_show(struct f2fs_attr *a, |
| 343 | struct f2fs_sb_info *sbi, char *buf) |
| 344 | { |
| 345 | switch (a->id) { |
| 346 | case FEAT_CRYPTO: |
| 347 | case FEAT_BLKZONED: |
| 348 | case FEAT_ATOMIC_WRITE: |
| 349 | case FEAT_EXTRA_ATTR: |
| 350 | case FEAT_PROJECT_QUOTA: |
| 351 | case FEAT_INODE_CHECKSUM: |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 352 | case FEAT_FLEXIBLE_INLINE_XATTR: |
Jaegeuk Kim | 234a968 | 2017-10-05 21:03:06 -0700 | [diff] [blame] | 353 | case FEAT_QUOTA_INO: |
Chao Yu | 1c1d35d | 2018-01-25 14:54:42 +0800 | [diff] [blame] | 354 | case FEAT_INODE_CRTIME: |
Sheng Yong | b7c409d | 2018-03-15 18:51:41 +0800 | [diff] [blame] | 355 | case FEAT_LOST_FOUND: |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 356 | return snprintf(buf, PAGE_SIZE, "supported\n"); |
| 357 | } |
| 358 | return 0; |
| 359 | } |
| 360 | |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 361 | #define F2FS_ATTR_OFFSET(_struct_type, _name, _mode, _show, _store, _offset) \ |
| 362 | static struct f2fs_attr f2fs_attr_##_name = { \ |
| 363 | .attr = {.name = __stringify(_name), .mode = _mode }, \ |
| 364 | .show = _show, \ |
| 365 | .store = _store, \ |
| 366 | .struct_type = _struct_type, \ |
| 367 | .offset = _offset \ |
| 368 | } |
| 369 | |
| 370 | #define F2FS_RW_ATTR(struct_type, struct_name, name, elname) \ |
| 371 | F2FS_ATTR_OFFSET(struct_type, name, 0644, \ |
| 372 | f2fs_sbi_show, f2fs_sbi_store, \ |
| 373 | offsetof(struct struct_name, elname)) |
| 374 | |
| 375 | #define F2FS_GENERAL_RO_ATTR(name) \ |
| 376 | static struct f2fs_attr f2fs_attr_##name = __ATTR(name, 0444, name##_show, NULL) |
| 377 | |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 378 | #define F2FS_FEATURE_RO_ATTR(_name, _id) \ |
| 379 | static struct f2fs_attr f2fs_attr_##_name = { \ |
| 380 | .attr = {.name = __stringify(_name), .mode = 0444 }, \ |
| 381 | .show = f2fs_feature_show, \ |
| 382 | .id = _id, \ |
| 383 | } |
| 384 | |
Jaegeuk Kim | d9872a6 | 2017-08-06 22:09:00 -0700 | [diff] [blame] | 385 | F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_urgent_sleep_time, |
| 386 | urgent_sleep_time); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 387 | F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_min_sleep_time, min_sleep_time); |
| 388 | F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_max_sleep_time, max_sleep_time); |
| 389 | F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_no_gc_sleep_time, no_gc_sleep_time); |
Jaegeuk Kim | 5b0e953 | 2018-05-07 14:22:40 -0700 | [diff] [blame] | 390 | F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, gc_idle, gc_mode); |
| 391 | F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, gc_urgent, gc_mode); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 392 | F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, reclaim_segments, rec_prefree_segments); |
| 393 | F2FS_RW_ATTR(DCC_INFO, discard_cmd_control, max_small_discards, max_discards); |
Chao Yu | 969d1b1 | 2017-08-07 23:09:56 +0800 | [diff] [blame] | 394 | F2FS_RW_ATTR(DCC_INFO, discard_cmd_control, discard_granularity, discard_granularity); |
Chao Yu | daeb433 | 2017-06-26 16:24:41 +0800 | [diff] [blame] | 395 | F2FS_RW_ATTR(RESERVED_BLOCKS, f2fs_sb_info, reserved_blocks, reserved_blocks); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 396 | F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, batched_trim_sections, trim_sections); |
| 397 | F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, ipu_policy, ipu_policy); |
| 398 | F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_ipu_util, min_ipu_util); |
| 399 | F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_fsync_blocks, min_fsync_blocks); |
| 400 | F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_hot_blocks, min_hot_blocks); |
Chao Yu | a2a12b6 | 2017-10-28 16:52:33 +0800 | [diff] [blame] | 401 | F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_ssr_sections, min_ssr_sections); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 402 | F2FS_RW_ATTR(NM_INFO, f2fs_nm_info, ram_thresh, ram_thresh); |
| 403 | F2FS_RW_ATTR(NM_INFO, f2fs_nm_info, ra_nid_pages, ra_nid_pages); |
| 404 | F2FS_RW_ATTR(NM_INFO, f2fs_nm_info, dirty_nats_ratio, dirty_nats_ratio); |
| 405 | F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, max_victim_search, max_victim_search); |
| 406 | F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, dir_level, dir_level); |
| 407 | F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, cp_interval, interval_time[CP_TIME]); |
| 408 | F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, idle_interval, interval_time[REQ_TIME]); |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 409 | F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, iostat_enable, iostat_enable); |
Sheng Yong | f6df8f2 | 2017-11-22 18:23:38 +0800 | [diff] [blame] | 410 | F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, readdir_ra, readdir_ra); |
Jaegeuk Kim | 1ad71a2 | 2017-12-07 16:25:39 -0800 | [diff] [blame] | 411 | F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, gc_pin_file_thresh, gc_pin_file_threshold); |
Chao Yu | 846ae67 | 2018-02-26 22:04:13 +0800 | [diff] [blame] | 412 | F2FS_RW_ATTR(F2FS_SBI, f2fs_super_block, extension_list, extension_list); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 413 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
| 414 | F2FS_RW_ATTR(FAULT_INFO_RATE, f2fs_fault_info, inject_rate, inject_rate); |
| 415 | F2FS_RW_ATTR(FAULT_INFO_TYPE, f2fs_fault_info, inject_type, inject_type); |
| 416 | #endif |
Jaegeuk Kim | 8f1572f | 2017-10-24 09:46:54 +0200 | [diff] [blame] | 417 | F2FS_GENERAL_RO_ATTR(dirty_segments); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 418 | F2FS_GENERAL_RO_ATTR(lifetime_write_kbytes); |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 419 | F2FS_GENERAL_RO_ATTR(features); |
Yunlong Song | 80d4214 | 2017-10-27 20:45:05 +0800 | [diff] [blame] | 420 | F2FS_GENERAL_RO_ATTR(current_reserved_blocks); |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 421 | |
| 422 | #ifdef CONFIG_F2FS_FS_ENCRYPTION |
| 423 | F2FS_FEATURE_RO_ATTR(encryption, FEAT_CRYPTO); |
| 424 | #endif |
| 425 | #ifdef CONFIG_BLK_DEV_ZONED |
| 426 | F2FS_FEATURE_RO_ATTR(block_zoned, FEAT_BLKZONED); |
| 427 | #endif |
| 428 | F2FS_FEATURE_RO_ATTR(atomic_write, FEAT_ATOMIC_WRITE); |
| 429 | F2FS_FEATURE_RO_ATTR(extra_attr, FEAT_EXTRA_ATTR); |
| 430 | F2FS_FEATURE_RO_ATTR(project_quota, FEAT_PROJECT_QUOTA); |
| 431 | F2FS_FEATURE_RO_ATTR(inode_checksum, FEAT_INODE_CHECKSUM); |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 432 | F2FS_FEATURE_RO_ATTR(flexible_inline_xattr, FEAT_FLEXIBLE_INLINE_XATTR); |
Jaegeuk Kim | 234a968 | 2017-10-05 21:03:06 -0700 | [diff] [blame] | 433 | F2FS_FEATURE_RO_ATTR(quota_ino, FEAT_QUOTA_INO); |
Chao Yu | 1c1d35d | 2018-01-25 14:54:42 +0800 | [diff] [blame] | 434 | F2FS_FEATURE_RO_ATTR(inode_crtime, FEAT_INODE_CRTIME); |
Sheng Yong | b7c409d | 2018-03-15 18:51:41 +0800 | [diff] [blame] | 435 | F2FS_FEATURE_RO_ATTR(lost_found, FEAT_LOST_FOUND); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 436 | |
| 437 | #define ATTR_LIST(name) (&f2fs_attr_##name.attr) |
| 438 | static struct attribute *f2fs_attrs[] = { |
Jaegeuk Kim | d9872a6 | 2017-08-06 22:09:00 -0700 | [diff] [blame] | 439 | ATTR_LIST(gc_urgent_sleep_time), |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 440 | ATTR_LIST(gc_min_sleep_time), |
| 441 | ATTR_LIST(gc_max_sleep_time), |
| 442 | ATTR_LIST(gc_no_gc_sleep_time), |
| 443 | ATTR_LIST(gc_idle), |
Jaegeuk Kim | d9872a6 | 2017-08-06 22:09:00 -0700 | [diff] [blame] | 444 | ATTR_LIST(gc_urgent), |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 445 | ATTR_LIST(reclaim_segments), |
| 446 | ATTR_LIST(max_small_discards), |
Chao Yu | 969d1b1 | 2017-08-07 23:09:56 +0800 | [diff] [blame] | 447 | ATTR_LIST(discard_granularity), |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 448 | ATTR_LIST(batched_trim_sections), |
| 449 | ATTR_LIST(ipu_policy), |
| 450 | ATTR_LIST(min_ipu_util), |
| 451 | ATTR_LIST(min_fsync_blocks), |
| 452 | ATTR_LIST(min_hot_blocks), |
Chao Yu | a2a12b6 | 2017-10-28 16:52:33 +0800 | [diff] [blame] | 453 | ATTR_LIST(min_ssr_sections), |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 454 | ATTR_LIST(max_victim_search), |
| 455 | ATTR_LIST(dir_level), |
| 456 | ATTR_LIST(ram_thresh), |
| 457 | ATTR_LIST(ra_nid_pages), |
| 458 | ATTR_LIST(dirty_nats_ratio), |
| 459 | ATTR_LIST(cp_interval), |
| 460 | ATTR_LIST(idle_interval), |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 461 | ATTR_LIST(iostat_enable), |
Sheng Yong | f6df8f2 | 2017-11-22 18:23:38 +0800 | [diff] [blame] | 462 | ATTR_LIST(readdir_ra), |
Jaegeuk Kim | 1ad71a2 | 2017-12-07 16:25:39 -0800 | [diff] [blame] | 463 | ATTR_LIST(gc_pin_file_thresh), |
Chao Yu | 846ae67 | 2018-02-26 22:04:13 +0800 | [diff] [blame] | 464 | ATTR_LIST(extension_list), |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 465 | #ifdef CONFIG_F2FS_FAULT_INJECTION |
| 466 | ATTR_LIST(inject_rate), |
| 467 | ATTR_LIST(inject_type), |
| 468 | #endif |
Jaegeuk Kim | 8f1572f | 2017-10-24 09:46:54 +0200 | [diff] [blame] | 469 | ATTR_LIST(dirty_segments), |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 470 | ATTR_LIST(lifetime_write_kbytes), |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 471 | ATTR_LIST(features), |
Chao Yu | daeb433 | 2017-06-26 16:24:41 +0800 | [diff] [blame] | 472 | ATTR_LIST(reserved_blocks), |
Yunlong Song | 80d4214 | 2017-10-27 20:45:05 +0800 | [diff] [blame] | 473 | ATTR_LIST(current_reserved_blocks), |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 474 | NULL, |
| 475 | }; |
| 476 | |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 477 | static struct attribute *f2fs_feat_attrs[] = { |
| 478 | #ifdef CONFIG_F2FS_FS_ENCRYPTION |
| 479 | ATTR_LIST(encryption), |
| 480 | #endif |
| 481 | #ifdef CONFIG_BLK_DEV_ZONED |
| 482 | ATTR_LIST(block_zoned), |
| 483 | #endif |
| 484 | ATTR_LIST(atomic_write), |
| 485 | ATTR_LIST(extra_attr), |
| 486 | ATTR_LIST(project_quota), |
| 487 | ATTR_LIST(inode_checksum), |
Chao Yu | 6afc662 | 2017-09-06 21:59:50 +0800 | [diff] [blame] | 488 | ATTR_LIST(flexible_inline_xattr), |
Jaegeuk Kim | 234a968 | 2017-10-05 21:03:06 -0700 | [diff] [blame] | 489 | ATTR_LIST(quota_ino), |
Chao Yu | 1c1d35d | 2018-01-25 14:54:42 +0800 | [diff] [blame] | 490 | ATTR_LIST(inode_crtime), |
Sheng Yong | b7c409d | 2018-03-15 18:51:41 +0800 | [diff] [blame] | 491 | ATTR_LIST(lost_found), |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 492 | NULL, |
| 493 | }; |
| 494 | |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 495 | static const struct sysfs_ops f2fs_attr_ops = { |
| 496 | .show = f2fs_attr_show, |
| 497 | .store = f2fs_attr_store, |
| 498 | }; |
| 499 | |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 500 | static struct kobj_type f2fs_sb_ktype = { |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 501 | .default_attrs = f2fs_attrs, |
| 502 | .sysfs_ops = &f2fs_attr_ops, |
| 503 | .release = f2fs_sb_release, |
| 504 | }; |
| 505 | |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 506 | static struct kobj_type f2fs_ktype = { |
| 507 | .sysfs_ops = &f2fs_attr_ops, |
| 508 | }; |
| 509 | |
| 510 | static struct kset f2fs_kset = { |
| 511 | .kobj = {.ktype = &f2fs_ktype}, |
| 512 | }; |
| 513 | |
| 514 | static struct kobj_type f2fs_feat_ktype = { |
| 515 | .default_attrs = f2fs_feat_attrs, |
| 516 | .sysfs_ops = &f2fs_attr_ops, |
| 517 | }; |
| 518 | |
| 519 | static struct kobject f2fs_feat = { |
| 520 | .kset = &f2fs_kset, |
| 521 | }; |
| 522 | |
Randy Dunlap | cb15d1e | 2018-07-06 20:50:57 -0700 | [diff] [blame] | 523 | static int __maybe_unused segment_info_seq_show(struct seq_file *seq, |
| 524 | void *offset) |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 525 | { |
| 526 | struct super_block *sb = seq->private; |
| 527 | struct f2fs_sb_info *sbi = F2FS_SB(sb); |
| 528 | unsigned int total_segs = |
| 529 | le32_to_cpu(sbi->raw_super->segment_count_main); |
| 530 | int i; |
| 531 | |
| 532 | seq_puts(seq, "format: segment_type|valid_blocks\n" |
| 533 | "segment_type(0:HD, 1:WD, 2:CD, 3:HN, 4:WN, 5:CN)\n"); |
| 534 | |
| 535 | for (i = 0; i < total_segs; i++) { |
| 536 | struct seg_entry *se = get_seg_entry(sbi, i); |
| 537 | |
| 538 | if ((i % 10) == 0) |
| 539 | seq_printf(seq, "%-10d", i); |
| 540 | seq_printf(seq, "%d|%-3u", se->type, |
| 541 | get_valid_blocks(sbi, i, false)); |
| 542 | if ((i % 10) == 9 || i == (total_segs - 1)) |
| 543 | seq_putc(seq, '\n'); |
| 544 | else |
| 545 | seq_putc(seq, ' '); |
| 546 | } |
| 547 | |
| 548 | return 0; |
| 549 | } |
| 550 | |
Randy Dunlap | cb15d1e | 2018-07-06 20:50:57 -0700 | [diff] [blame] | 551 | static int __maybe_unused segment_bits_seq_show(struct seq_file *seq, |
| 552 | void *offset) |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 553 | { |
| 554 | struct super_block *sb = seq->private; |
| 555 | struct f2fs_sb_info *sbi = F2FS_SB(sb); |
| 556 | unsigned int total_segs = |
| 557 | le32_to_cpu(sbi->raw_super->segment_count_main); |
| 558 | int i, j; |
| 559 | |
| 560 | seq_puts(seq, "format: segment_type|valid_blocks|bitmaps\n" |
| 561 | "segment_type(0:HD, 1:WD, 2:CD, 3:HN, 4:WN, 5:CN)\n"); |
| 562 | |
| 563 | for (i = 0; i < total_segs; i++) { |
| 564 | struct seg_entry *se = get_seg_entry(sbi, i); |
| 565 | |
| 566 | seq_printf(seq, "%-10d", i); |
| 567 | seq_printf(seq, "%d|%-3u|", se->type, |
| 568 | get_valid_blocks(sbi, i, false)); |
| 569 | for (j = 0; j < SIT_VBLOCK_MAP_SIZE; j++) |
| 570 | seq_printf(seq, " %.2x", se->cur_valid_map[j]); |
| 571 | seq_putc(seq, '\n'); |
| 572 | } |
| 573 | return 0; |
| 574 | } |
| 575 | |
Randy Dunlap | cb15d1e | 2018-07-06 20:50:57 -0700 | [diff] [blame] | 576 | static int __maybe_unused iostat_info_seq_show(struct seq_file *seq, |
| 577 | void *offset) |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 578 | { |
| 579 | struct super_block *sb = seq->private; |
| 580 | struct f2fs_sb_info *sbi = F2FS_SB(sb); |
| 581 | time64_t now = ktime_get_real_seconds(); |
| 582 | |
| 583 | if (!sbi->iostat_enable) |
| 584 | return 0; |
| 585 | |
| 586 | seq_printf(seq, "time: %-16llu\n", now); |
| 587 | |
| 588 | /* print app IOs */ |
| 589 | seq_printf(seq, "app buffered: %-16llu\n", |
| 590 | sbi->write_iostat[APP_BUFFERED_IO]); |
| 591 | seq_printf(seq, "app direct: %-16llu\n", |
| 592 | sbi->write_iostat[APP_DIRECT_IO]); |
| 593 | seq_printf(seq, "app mapped: %-16llu\n", |
| 594 | sbi->write_iostat[APP_MAPPED_IO]); |
| 595 | |
| 596 | /* print fs IOs */ |
| 597 | seq_printf(seq, "fs data: %-16llu\n", |
| 598 | sbi->write_iostat[FS_DATA_IO]); |
| 599 | seq_printf(seq, "fs node: %-16llu\n", |
| 600 | sbi->write_iostat[FS_NODE_IO]); |
| 601 | seq_printf(seq, "fs meta: %-16llu\n", |
| 602 | sbi->write_iostat[FS_META_IO]); |
| 603 | seq_printf(seq, "fs gc data: %-16llu\n", |
| 604 | sbi->write_iostat[FS_GC_DATA_IO]); |
| 605 | seq_printf(seq, "fs gc node: %-16llu\n", |
| 606 | sbi->write_iostat[FS_GC_NODE_IO]); |
| 607 | seq_printf(seq, "fs cp data: %-16llu\n", |
| 608 | sbi->write_iostat[FS_CP_DATA_IO]); |
| 609 | seq_printf(seq, "fs cp node: %-16llu\n", |
| 610 | sbi->write_iostat[FS_CP_NODE_IO]); |
| 611 | seq_printf(seq, "fs cp meta: %-16llu\n", |
| 612 | sbi->write_iostat[FS_CP_META_IO]); |
| 613 | seq_printf(seq, "fs discard: %-16llu\n", |
| 614 | sbi->write_iostat[FS_DISCARD]); |
| 615 | |
| 616 | return 0; |
| 617 | } |
| 618 | |
Yunlong Song | 970e348 | 2018-07-23 22:10:22 +0800 | [diff] [blame] | 619 | static int __maybe_unused victim_bits_seq_show(struct seq_file *seq, |
| 620 | void *offset) |
| 621 | { |
| 622 | struct super_block *sb = seq->private; |
| 623 | struct f2fs_sb_info *sbi = F2FS_SB(sb); |
| 624 | struct dirty_seglist_info *dirty_i = DIRTY_I(sbi); |
| 625 | int i; |
| 626 | |
| 627 | seq_puts(seq, "format: victim_secmap bitmaps\n"); |
| 628 | |
| 629 | for (i = 0; i < MAIN_SECS(sbi); i++) { |
| 630 | if ((i % 10) == 0) |
| 631 | seq_printf(seq, "%-10d", i); |
| 632 | seq_printf(seq, "%d", test_bit(i, dirty_i->victim_secmap) ? 1 : 0); |
| 633 | if ((i % 10) == 9 || i == (MAIN_SECS(sbi) - 1)) |
| 634 | seq_putc(seq, '\n'); |
| 635 | else |
| 636 | seq_putc(seq, ' '); |
| 637 | } |
| 638 | return 0; |
| 639 | } |
| 640 | |
Jaegeuk Kim | dc6b205 | 2017-07-26 11:24:13 -0700 | [diff] [blame] | 641 | int __init f2fs_init_sysfs(void) |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 642 | { |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 643 | int ret; |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 644 | |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 645 | kobject_set_name(&f2fs_kset.kobj, "f2fs"); |
| 646 | f2fs_kset.kobj.parent = fs_kobj; |
| 647 | ret = kset_register(&f2fs_kset); |
| 648 | if (ret) |
| 649 | return ret; |
| 650 | |
| 651 | ret = kobject_init_and_add(&f2fs_feat, &f2fs_feat_ktype, |
| 652 | NULL, "features"); |
| 653 | if (ret) |
| 654 | kset_unregister(&f2fs_kset); |
| 655 | else |
| 656 | f2fs_proc_root = proc_mkdir("fs/f2fs", NULL); |
| 657 | return ret; |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 658 | } |
| 659 | |
Jaegeuk Kim | dc6b205 | 2017-07-26 11:24:13 -0700 | [diff] [blame] | 660 | void f2fs_exit_sysfs(void) |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 661 | { |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 662 | kobject_put(&f2fs_feat); |
| 663 | kset_unregister(&f2fs_kset); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 664 | remove_proc_entry("fs/f2fs", NULL); |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 665 | f2fs_proc_root = NULL; |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 666 | } |
| 667 | |
Jaegeuk Kim | dc6b205 | 2017-07-26 11:24:13 -0700 | [diff] [blame] | 668 | int f2fs_register_sysfs(struct f2fs_sb_info *sbi) |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 669 | { |
| 670 | struct super_block *sb = sbi->sb; |
| 671 | int err; |
| 672 | |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 673 | sbi->s_kobj.kset = &f2fs_kset; |
| 674 | init_completion(&sbi->s_kobj_unregister); |
| 675 | err = kobject_init_and_add(&sbi->s_kobj, &f2fs_sb_ktype, NULL, |
| 676 | "%s", sb->s_id); |
| 677 | if (err) |
| 678 | return err; |
| 679 | |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 680 | if (f2fs_proc_root) |
| 681 | sbi->s_proc = proc_mkdir(sb->s_id, f2fs_proc_root); |
| 682 | |
| 683 | if (sbi->s_proc) { |
Christoph Hellwig | 3f3942a | 2018-05-15 15:57:23 +0200 | [diff] [blame] | 684 | proc_create_single_data("segment_info", S_IRUGO, sbi->s_proc, |
| 685 | segment_info_seq_show, sb); |
| 686 | proc_create_single_data("segment_bits", S_IRUGO, sbi->s_proc, |
| 687 | segment_bits_seq_show, sb); |
| 688 | proc_create_single_data("iostat_info", S_IRUGO, sbi->s_proc, |
| 689 | iostat_info_seq_show, sb); |
Yunlong Song | 970e348 | 2018-07-23 22:10:22 +0800 | [diff] [blame] | 690 | proc_create_single_data("victim_bits", S_IRUGO, sbi->s_proc, |
| 691 | victim_bits_seq_show, sb); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 692 | } |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 693 | return 0; |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 694 | } |
| 695 | |
Jaegeuk Kim | dc6b205 | 2017-07-26 11:24:13 -0700 | [diff] [blame] | 696 | void f2fs_unregister_sysfs(struct f2fs_sb_info *sbi) |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 697 | { |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 698 | if (sbi->s_proc) { |
Chao Yu | b0af6d4 | 2017-08-02 23:21:48 +0800 | [diff] [blame] | 699 | remove_proc_entry("iostat_info", sbi->s_proc); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 700 | remove_proc_entry("segment_info", sbi->s_proc); |
| 701 | remove_proc_entry("segment_bits", sbi->s_proc); |
Yunlong Song | 970e348 | 2018-07-23 22:10:22 +0800 | [diff] [blame] | 702 | remove_proc_entry("victim_bits", sbi->s_proc); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 703 | remove_proc_entry(sbi->sb->s_id, f2fs_proc_root); |
| 704 | } |
Jaegeuk Kim | bf9e697 | 2017-07-21 17:14:09 -0700 | [diff] [blame] | 705 | kobject_del(&sbi->s_kobj); |
Chao Yu | 8ceffcb | 2017-06-14 17:39:47 +0800 | [diff] [blame] | 706 | } |