blob: 192ade7d6fe6d82be5bdfc93c319d7c50062d8b1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Theodore Ts'ob5799012015-09-23 12:44:17 -04002/*
3 * linux/fs/ext4/sysfs.c
4 *
5 * Copyright (C) 1992, 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Theodore Ts'o (tytso@mit.edu)
8 *
9 */
10
11#include <linux/time.h>
12#include <linux/fs.h>
13#include <linux/seq_file.h>
Riccardo Schironeb99fee52018-01-11 15:11:32 -050014#include <linux/slab.h>
Theodore Ts'ob5799012015-09-23 12:44:17 -040015#include <linux/proc_fs.h>
16
17#include "ext4.h"
18#include "ext4_jbd2.h"
19
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040020typedef enum {
21 attr_noop,
22 attr_delayed_allocation_blocks,
23 attr_session_write_kbytes,
24 attr_lifetime_write_kbytes,
25 attr_reserved_clusters,
26 attr_inode_readahead,
27 attr_trigger_test_error,
28 attr_feature,
29 attr_pointer_ui,
30 attr_pointer_atomic,
31} attr_id_t;
32
33typedef enum {
34 ptr_explicit,
35 ptr_ext4_sb_info_offset,
36 ptr_ext4_super_block_offset,
37} attr_ptr_t;
38
Eric Biggersd6006182017-04-29 23:47:50 -040039static const char proc_dirname[] = "fs/ext4";
Theodore Ts'oebd173b2015-09-23 12:46:17 -040040static struct proc_dir_entry *ext4_proc_root;
41
Theodore Ts'ob5799012015-09-23 12:44:17 -040042struct ext4_attr {
43 struct attribute attr;
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040044 short attr_id;
45 short attr_ptr;
Theodore Ts'ob5799012015-09-23 12:44:17 -040046 union {
47 int offset;
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040048 void *explicit_ptr;
Theodore Ts'ob5799012015-09-23 12:44:17 -040049 } u;
50};
51
Theodore Ts'ob5799012015-09-23 12:44:17 -040052static ssize_t session_write_kbytes_show(struct ext4_attr *a,
53 struct ext4_sb_info *sbi, char *buf)
54{
55 struct super_block *sb = sbi->s_buddy_cache->i_sb;
56
57 if (!sb->s_bdev->bd_part)
58 return snprintf(buf, PAGE_SIZE, "0\n");
59 return snprintf(buf, PAGE_SIZE, "%lu\n",
60 (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
61 sbi->s_sectors_written_start) >> 1);
62}
63
64static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
65 struct ext4_sb_info *sbi, char *buf)
66{
67 struct super_block *sb = sbi->s_buddy_cache->i_sb;
68
69 if (!sb->s_bdev->bd_part)
70 return snprintf(buf, PAGE_SIZE, "0\n");
71 return snprintf(buf, PAGE_SIZE, "%llu\n",
72 (unsigned long long)(sbi->s_kbytes_written +
73 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
74 EXT4_SB(sb)->s_sectors_written_start) >> 1)));
75}
76
77static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
78 struct ext4_sb_info *sbi,
79 const char *buf, size_t count)
80{
81 unsigned long t;
82 int ret;
83
84 ret = kstrtoul(skip_spaces(buf), 0, &t);
85 if (ret)
86 return ret;
87
88 if (t && (!is_power_of_2(t) || t > 0x40000000))
89 return -EINVAL;
90
91 sbi->s_inode_readahead_blks = t;
92 return count;
93}
94
Theodore Ts'ob5799012015-09-23 12:44:17 -040095static ssize_t reserved_clusters_store(struct ext4_attr *a,
96 struct ext4_sb_info *sbi,
97 const char *buf, size_t count)
98{
99 unsigned long long val;
100 ext4_fsblk_t clusters = (ext4_blocks_count(sbi->s_es) >>
101 sbi->s_cluster_bits);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400102 int ret;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400103
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400104 ret = kstrtoull(skip_spaces(buf), 0, &val);
Chao Yu1ea15162017-06-23 01:08:22 -0400105 if (ret || val >= clusters)
Theodore Ts'ob5799012015-09-23 12:44:17 -0400106 return -EINVAL;
107
108 atomic64_set(&sbi->s_resv_clusters, val);
109 return count;
110}
111
112static ssize_t trigger_test_error(struct ext4_attr *a,
113 struct ext4_sb_info *sbi,
114 const char *buf, size_t count)
115{
116 int len = count;
117
118 if (!capable(CAP_SYS_ADMIN))
119 return -EPERM;
120
121 if (len && buf[len-1] == '\n')
122 len--;
123
124 if (len)
125 ext4_error(sbi->s_sb, "%.*s", len, buf);
126 return count;
127}
128
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400129#define EXT4_ATTR(_name,_mode,_id) \
Theodore Ts'ob5799012015-09-23 12:44:17 -0400130static struct ext4_attr ext4_attr_##_name = { \
131 .attr = {.name = __stringify(_name), .mode = _mode }, \
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400132 .attr_id = attr_##_id, \
Theodore Ts'ob5799012015-09-23 12:44:17 -0400133}
134
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400135#define EXT4_ATTR_FUNC(_name,_mode) EXT4_ATTR(_name,_mode,_name)
Theodore Ts'ob5799012015-09-23 12:44:17 -0400136
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400137#define EXT4_ATTR_FEATURE(_name) EXT4_ATTR(_name, 0444, feature)
Theodore Ts'ob5799012015-09-23 12:44:17 -0400138
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400139#define EXT4_ATTR_OFFSET(_name,_mode,_id,_struct,_elname) \
Theodore Ts'ob5799012015-09-23 12:44:17 -0400140static struct ext4_attr ext4_attr_##_name = { \
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400141 .attr = {.name = __stringify(_name), .mode = _mode }, \
142 .attr_id = attr_##_id, \
143 .attr_ptr = ptr_##_struct##_offset, \
Theodore Ts'ob5799012015-09-23 12:44:17 -0400144 .u = { \
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400145 .offset = offsetof(struct _struct, _elname),\
Theodore Ts'ob5799012015-09-23 12:44:17 -0400146 }, \
147}
148
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400149#define EXT4_RO_ATTR_ES_UI(_name,_elname) \
150 EXT4_ATTR_OFFSET(_name, 0444, pointer_ui, ext4_super_block, _elname)
151
152#define EXT4_RW_ATTR_SBI_UI(_name,_elname) \
153 EXT4_ATTR_OFFSET(_name, 0644, pointer_ui, ext4_sb_info, _elname)
154
155#define EXT4_ATTR_PTR(_name,_mode,_id,_ptr) \
156static struct ext4_attr ext4_attr_##_name = { \
157 .attr = {.name = __stringify(_name), .mode = _mode }, \
158 .attr_id = attr_##_id, \
159 .attr_ptr = ptr_explicit, \
160 .u = { \
161 .explicit_ptr = _ptr, \
162 }, \
163}
164
165#define ATTR_LIST(name) &ext4_attr_##name.attr
166
167EXT4_ATTR_FUNC(delayed_allocation_blocks, 0444);
168EXT4_ATTR_FUNC(session_write_kbytes, 0444);
169EXT4_ATTR_FUNC(lifetime_write_kbytes, 0444);
170EXT4_ATTR_FUNC(reserved_clusters, 0644);
171
172EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, inode_readahead,
173 ext4_sb_info, s_inode_readahead_blks);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400174EXT4_RW_ATTR_SBI_UI(inode_goal, s_inode_goal);
175EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
176EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
177EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
178EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
179EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
180EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400181EXT4_RW_ATTR_SBI_UI(extent_max_zeroout_kb, s_extent_max_zeroout_kb);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400182EXT4_ATTR(trigger_fs_error, 0200, trigger_test_error);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400183EXT4_RW_ATTR_SBI_UI(err_ratelimit_interval_ms, s_err_ratelimit_state.interval);
184EXT4_RW_ATTR_SBI_UI(err_ratelimit_burst, s_err_ratelimit_state.burst);
185EXT4_RW_ATTR_SBI_UI(warning_ratelimit_interval_ms, s_warning_ratelimit_state.interval);
186EXT4_RW_ATTR_SBI_UI(warning_ratelimit_burst, s_warning_ratelimit_state.burst);
187EXT4_RW_ATTR_SBI_UI(msg_ratelimit_interval_ms, s_msg_ratelimit_state.interval);
188EXT4_RW_ATTR_SBI_UI(msg_ratelimit_burst, s_msg_ratelimit_state.burst);
189EXT4_RO_ATTR_ES_UI(errors_count, s_error_count);
190EXT4_RO_ATTR_ES_UI(first_error_time, s_first_error_time);
191EXT4_RO_ATTR_ES_UI(last_error_time, s_last_error_time);
192
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400193static unsigned int old_bump_val = 128;
194EXT4_ATTR_PTR(max_writeback_mb_bump, 0444, pointer_ui, &old_bump_val);
195
Theodore Ts'ob5799012015-09-23 12:44:17 -0400196static struct attribute *ext4_attrs[] = {
197 ATTR_LIST(delayed_allocation_blocks),
198 ATTR_LIST(session_write_kbytes),
199 ATTR_LIST(lifetime_write_kbytes),
200 ATTR_LIST(reserved_clusters),
201 ATTR_LIST(inode_readahead_blks),
202 ATTR_LIST(inode_goal),
203 ATTR_LIST(mb_stats),
204 ATTR_LIST(mb_max_to_scan),
205 ATTR_LIST(mb_min_to_scan),
206 ATTR_LIST(mb_order2_req),
207 ATTR_LIST(mb_stream_req),
208 ATTR_LIST(mb_group_prealloc),
209 ATTR_LIST(max_writeback_mb_bump),
210 ATTR_LIST(extent_max_zeroout_kb),
211 ATTR_LIST(trigger_fs_error),
212 ATTR_LIST(err_ratelimit_interval_ms),
213 ATTR_LIST(err_ratelimit_burst),
214 ATTR_LIST(warning_ratelimit_interval_ms),
215 ATTR_LIST(warning_ratelimit_burst),
216 ATTR_LIST(msg_ratelimit_interval_ms),
217 ATTR_LIST(msg_ratelimit_burst),
218 ATTR_LIST(errors_count),
219 ATTR_LIST(first_error_time),
220 ATTR_LIST(last_error_time),
221 NULL,
222};
223
224/* Features this copy of ext4 supports */
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400225EXT4_ATTR_FEATURE(lazy_itable_init);
226EXT4_ATTR_FEATURE(batched_discard);
227EXT4_ATTR_FEATURE(meta_bg_resize);
Eric Biggersc4704a42016-10-12 23:24:51 -0400228#ifdef CONFIG_EXT4_FS_ENCRYPTION
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400229EXT4_ATTR_FEATURE(encryption);
Eric Biggersc4704a42016-10-12 23:24:51 -0400230#endif
Darrick J. Wong8c81bd82015-10-17 16:16:02 -0400231EXT4_ATTR_FEATURE(metadata_csum_seed);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400232
233static struct attribute *ext4_feat_attrs[] = {
234 ATTR_LIST(lazy_itable_init),
235 ATTR_LIST(batched_discard),
236 ATTR_LIST(meta_bg_resize),
Eric Biggersc4704a42016-10-12 23:24:51 -0400237#ifdef CONFIG_EXT4_FS_ENCRYPTION
Theodore Ts'ob5799012015-09-23 12:44:17 -0400238 ATTR_LIST(encryption),
Eric Biggersc4704a42016-10-12 23:24:51 -0400239#endif
Darrick J. Wong8c81bd82015-10-17 16:16:02 -0400240 ATTR_LIST(metadata_csum_seed),
Theodore Ts'ob5799012015-09-23 12:44:17 -0400241 NULL,
242};
243
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400244static void *calc_ptr(struct ext4_attr *a, struct ext4_sb_info *sbi)
245{
246 switch (a->attr_ptr) {
247 case ptr_explicit:
248 return a->u.explicit_ptr;
249 case ptr_ext4_sb_info_offset:
250 return (void *) (((char *) sbi) + a->u.offset);
251 case ptr_ext4_super_block_offset:
252 return (void *) (((char *) sbi->s_es) + a->u.offset);
253 }
254 return NULL;
255}
256
Theodore Ts'ob5799012015-09-23 12:44:17 -0400257static ssize_t ext4_attr_show(struct kobject *kobj,
258 struct attribute *attr, char *buf)
259{
260 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
261 s_kobj);
262 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400263 void *ptr = calc_ptr(a, sbi);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400264
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400265 switch (a->attr_id) {
266 case attr_delayed_allocation_blocks:
267 return snprintf(buf, PAGE_SIZE, "%llu\n",
268 (s64) EXT4_C2B(sbi,
269 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
270 case attr_session_write_kbytes:
271 return session_write_kbytes_show(a, sbi, buf);
272 case attr_lifetime_write_kbytes:
273 return lifetime_write_kbytes_show(a, sbi, buf);
274 case attr_reserved_clusters:
275 return snprintf(buf, PAGE_SIZE, "%llu\n",
276 (unsigned long long)
277 atomic64_read(&sbi->s_resv_clusters));
278 case attr_inode_readahead:
279 case attr_pointer_ui:
280 if (!ptr)
281 return 0;
282 return snprintf(buf, PAGE_SIZE, "%u\n",
283 *((unsigned int *) ptr));
284 case attr_pointer_atomic:
285 if (!ptr)
286 return 0;
287 return snprintf(buf, PAGE_SIZE, "%d\n",
288 atomic_read((atomic_t *) ptr));
289 case attr_feature:
290 return snprintf(buf, PAGE_SIZE, "supported\n");
291 }
292
293 return 0;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400294}
295
296static ssize_t ext4_attr_store(struct kobject *kobj,
297 struct attribute *attr,
298 const char *buf, size_t len)
299{
300 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
301 s_kobj);
302 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400303 void *ptr = calc_ptr(a, sbi);
304 unsigned long t;
305 int ret;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400306
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400307 switch (a->attr_id) {
308 case attr_reserved_clusters:
309 return reserved_clusters_store(a, sbi, buf, len);
310 case attr_pointer_ui:
311 if (!ptr)
312 return 0;
313 ret = kstrtoul(skip_spaces(buf), 0, &t);
314 if (ret)
315 return ret;
316 *((unsigned int *) ptr) = t;
317 return len;
318 case attr_inode_readahead:
319 return inode_readahead_blks_store(a, sbi, buf, len);
320 case attr_trigger_test_error:
321 return trigger_test_error(a, sbi, buf, len);
322 }
323 return 0;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400324}
325
326static void ext4_sb_release(struct kobject *kobj)
327{
328 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
329 s_kobj);
330 complete(&sbi->s_kobj_unregister);
331}
332
333static const struct sysfs_ops ext4_attr_ops = {
334 .show = ext4_attr_show,
335 .store = ext4_attr_store,
336};
337
338static struct kobj_type ext4_sb_ktype = {
339 .default_attrs = ext4_attrs,
340 .sysfs_ops = &ext4_attr_ops,
341 .release = ext4_sb_release,
342};
343
344static struct kobj_type ext4_ktype = {
345 .sysfs_ops = &ext4_attr_ops,
346};
347
348static struct kset ext4_kset = {
349 .kobj = {.ktype = &ext4_ktype},
350};
351
Theodore Ts'ob5799012015-09-23 12:44:17 -0400352static struct kobj_type ext4_feat_ktype = {
353 .default_attrs = ext4_feat_attrs,
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400354 .sysfs_ops = &ext4_attr_ops,
Riccardo Schironeb99fee52018-01-11 15:11:32 -0500355 .release = (void (*)(struct kobject *))kfree,
Theodore Ts'ob5799012015-09-23 12:44:17 -0400356};
357
Riccardo Schironeb99fee52018-01-11 15:11:32 -0500358static struct kobject *ext4_feat;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400359
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400360#define PROC_FILE_SHOW_DEFN(name) \
361static int name##_open(struct inode *inode, struct file *file) \
362{ \
363 return single_open(file, ext4_seq_##name##_show, PDE_DATA(inode)); \
364} \
365\
Xu Cang681c46b2015-11-26 15:52:24 -0500366static const struct file_operations ext4_seq_##name##_fops = { \
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400367 .open = name##_open, \
368 .read = seq_read, \
369 .llseek = seq_lseek, \
370 .release = single_release, \
371}
372
373#define PROC_FILE_LIST(name) \
374 { __stringify(name), &ext4_seq_##name##_fops }
375
376PROC_FILE_SHOW_DEFN(es_shrinker_info);
377PROC_FILE_SHOW_DEFN(options);
378
Eric Biggersd6006182017-04-29 23:47:50 -0400379static const struct ext4_proc_files {
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400380 const char *name;
381 const struct file_operations *fops;
382} proc_files[] = {
383 PROC_FILE_LIST(options),
384 PROC_FILE_LIST(es_shrinker_info),
385 PROC_FILE_LIST(mb_groups),
386 { NULL, NULL },
387};
388
Theodore Ts'ob5799012015-09-23 12:44:17 -0400389int ext4_register_sysfs(struct super_block *sb)
390{
391 struct ext4_sb_info *sbi = EXT4_SB(sb);
Eric Biggersd6006182017-04-29 23:47:50 -0400392 const struct ext4_proc_files *p;
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400393 int err;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400394
395 sbi->s_kobj.kset = &ext4_kset;
396 init_completion(&sbi->s_kobj_unregister);
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400397 err = kobject_init_and_add(&sbi->s_kobj, &ext4_sb_ktype, NULL,
398 "%s", sb->s_id);
Riccardo Schirone95c4df02018-01-11 14:28:13 -0500399 if (err) {
400 kobject_put(&sbi->s_kobj);
401 wait_for_completion(&sbi->s_kobj_unregister);
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400402 return err;
Riccardo Schirone95c4df02018-01-11 14:28:13 -0500403 }
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400404
405 if (ext4_proc_root)
406 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
407
408 if (sbi->s_proc) {
409 for (p = proc_files; p->name; p++)
410 proc_create_data(p->name, S_IRUGO, sbi->s_proc,
411 p->fops, sb);
412 }
413 return 0;
414}
415
416void ext4_unregister_sysfs(struct super_block *sb)
417{
418 struct ext4_sb_info *sbi = EXT4_SB(sb);
Eric Biggersd6006182017-04-29 23:47:50 -0400419 const struct ext4_proc_files *p;
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400420
421 if (sbi->s_proc) {
422 for (p = proc_files; p->name; p++)
423 remove_proc_entry(p->name, sbi->s_proc);
424 remove_proc_entry(sb->s_id, ext4_proc_root);
425 }
426 kobject_del(&sbi->s_kobj);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400427}
428
429int __init ext4_init_sysfs(void)
430{
431 int ret;
432
433 kobject_set_name(&ext4_kset.kobj, "ext4");
434 ext4_kset.kobj.parent = fs_kobj;
435 ret = kset_register(&ext4_kset);
Riccardo Schirone95c4df02018-01-11 14:28:13 -0500436 if (ret) {
437 kset_unregister(&ext4_kset);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400438 return ret;
Riccardo Schirone95c4df02018-01-11 14:28:13 -0500439 }
Theodore Ts'ob5799012015-09-23 12:44:17 -0400440
Riccardo Schironeb99fee52018-01-11 15:11:32 -0500441 ext4_feat = kzalloc(sizeof(*ext4_feat), GFP_KERNEL);
442 if (!ext4_feat) {
443 ret = -ENOMEM;
444 goto kset_err;
Riccardo Schirone95c4df02018-01-11 14:28:13 -0500445 }
Riccardo Schironeb99fee52018-01-11 15:11:32 -0500446
447 ext4_feat->kset = &ext4_kset;
448 ret = kobject_init_and_add(ext4_feat, &ext4_feat_ktype,
449 NULL, "features");
450 if (ret)
451 goto feat_err;
452
453 ext4_proc_root = proc_mkdir(proc_dirname, NULL);
454 return ret;
455
456feat_err:
457 kobject_put(ext4_feat);
458kset_err:
459 kset_unregister(&ext4_kset);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400460 return ret;
461}
462
463void ext4_exit_sysfs(void)
464{
Riccardo Schironeb99fee52018-01-11 15:11:32 -0500465 kobject_put(ext4_feat);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400466 kset_unregister(&ext4_kset);
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400467 remove_proc_entry(proc_dirname, NULL);
468 ext4_proc_root = NULL;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400469}
470