diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2011-07-26 19:09:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-26 19:49:46 -0400 |
commit | 7f5ddcc8d3eaccd5e169fda738530f937509645e (patch) | |
tree | 14f5581871040f98bbdab864314e1afc00a19a4c /include | |
parent | 8307fc257cf3931d87e172bd8663e80c3d1e56a3 (diff) |
fault-injection: use debugfs_remove_recursive
Use debugfs_remove_recursive() to simplify initialization and
deinitialization of fault injection debugfs files.
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fault-inject.h | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/include/linux/fault-inject.h b/include/linux/fault-inject.h index 7b72328cc8fe..a842db638380 100644 --- a/include/linux/fault-inject.h +++ b/include/linux/fault-inject.h | |||
@@ -27,23 +27,7 @@ struct fault_attr { | |||
27 | unsigned long count; | 27 | unsigned long count; |
28 | 28 | ||
29 | #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS | 29 | #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS |
30 | 30 | struct dentry *dir; | |
31 | struct { | ||
32 | struct dentry *dir; | ||
33 | |||
34 | struct dentry *probability_file; | ||
35 | struct dentry *interval_file; | ||
36 | struct dentry *times_file; | ||
37 | struct dentry *space_file; | ||
38 | struct dentry *verbose_file; | ||
39 | struct dentry *task_filter_file; | ||
40 | struct dentry *stacktrace_depth_file; | ||
41 | struct dentry *require_start_file; | ||
42 | struct dentry *require_end_file; | ||
43 | struct dentry *reject_start_file; | ||
44 | struct dentry *reject_end_file; | ||
45 | } dentries; | ||
46 | |||
47 | #endif | 31 | #endif |
48 | }; | 32 | }; |
49 | 33 | ||