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 | 810f09b87b75d7cc3906ffffe4311003f37caa2a (patch) | |
tree | 0c1df5b5dbcc724d3c5cefd9ae4e5168121183d5 /mm | |
parent | 7f5ddcc8d3eaccd5e169fda738530f937509645e (diff) |
failslab: simplify debugfs initialization
Now cleanup_fault_attr_dentries() recursively removes a directory, So we
can simplify the error handling in the initialization code and no need
to hold dentry structs for each debugfs file.
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Cc: Christoph Lameter <cl@linux-foundation.org>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Matt Mackall <mpm@selenic.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/failslab.c | 31 |
1 files changed, 10 insertions, 21 deletions
diff --git a/mm/failslab.c b/mm/failslab.c index 7df9f7f0abf1..1ce58c201dca 100644 --- a/mm/failslab.c +++ b/mm/failslab.c | |||
@@ -5,10 +5,6 @@ static struct { | |||
5 | struct fault_attr attr; | 5 | struct fault_attr attr; |
6 | u32 ignore_gfp_wait; | 6 | u32 ignore_gfp_wait; |
7 | int cache_filter; | 7 | int cache_filter; |
8 | #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS | ||
9 | struct dentry *ignore_gfp_wait_file; | ||
10 | struct dentry *cache_filter_file; | ||
11 | #endif | ||
12 | } failslab = { | 8 | } failslab = { |
13 | .attr = FAULT_ATTR_INITIALIZER, | 9 | .attr = FAULT_ATTR_INITIALIZER, |
14 | .ignore_gfp_wait = 1, | 10 | .ignore_gfp_wait = 1, |
@@ -39,31 +35,24 @@ __setup("failslab=", setup_failslab); | |||
39 | static int __init failslab_debugfs_init(void) | 35 | static int __init failslab_debugfs_init(void) |
40 | { | 36 | { |
41 | mode_t mode = S_IFREG | S_IRUSR | S_IWUSR; | 37 | mode_t mode = S_IFREG | S_IRUSR | S_IWUSR; |
42 | struct dentry *dir; | ||
43 | int err; | 38 | int err; |
44 | 39 | ||
45 | err = init_fault_attr_dentries(&failslab.attr, "failslab"); | 40 | err = init_fault_attr_dentries(&failslab.attr, "failslab"); |
46 | if (err) | 41 | if (err) |
47 | return err; | 42 | return err; |
48 | dir = failslab.attr.dir; | ||
49 | |||
50 | failslab.ignore_gfp_wait_file = | ||
51 | debugfs_create_bool("ignore-gfp-wait", mode, dir, | ||
52 | &failslab.ignore_gfp_wait); | ||
53 | 43 | ||
54 | failslab.cache_filter_file = | 44 | if (!debugfs_create_bool("ignore-gfp-wait", mode, failslab.attr.dir, |
55 | debugfs_create_bool("cache-filter", mode, dir, | 45 | &failslab.ignore_gfp_wait)) |
56 | &failslab.cache_filter); | 46 | goto fail; |
47 | if (!debugfs_create_bool("cache-filter", mode, failslab.attr.dir, | ||
48 | &failslab.cache_filter)) | ||
49 | goto fail; | ||
57 | 50 | ||
58 | if (!failslab.ignore_gfp_wait_file || | 51 | return 0; |
59 | !failslab.cache_filter_file) { | 52 | fail: |
60 | err = -ENOMEM; | 53 | cleanup_fault_attr_dentries(&failslab.attr); |
61 | debugfs_remove(failslab.cache_filter_file); | ||
62 | debugfs_remove(failslab.ignore_gfp_wait_file); | ||
63 | cleanup_fault_attr_dentries(&failslab.attr); | ||
64 | } | ||
65 | 54 | ||
66 | return err; | 55 | return -ENOMEM; |
67 | } | 56 | } |
68 | 57 | ||
69 | late_initcall(failslab_debugfs_init); | 58 | late_initcall(failslab_debugfs_init); |