Skip to content
This repository has been archived by the owner on Sep 18, 2022. It is now read-only.

Commit

Permalink
fault-injection: add ability to export fault_attr in arbitrary directory
Browse files Browse the repository at this point in the history
init_fault_attr_dentries() is used to export fault_attr via debugfs.
But it can only export it in debugfs root directory.

Per Forlin is working on mmc_fail_request which adds support to inject
data errors after a completed host transfer in MMC subsystem.

The fault_attr for mmc_fail_request should be defined per mmc host and
export it in debugfs directory per mmc host like
/sys/kernel/debug/mmc0/mmc_fail_request.

init_fault_attr_dentries() doesn't help for mmc_fail_request.  So this
introduces fault_create_debugfs_attr() which is able to create a
directory in the arbitrary directory and replace
init_fault_attr_dentries().

[[email protected]: extraneous semicolon, per Randy]
Signed-off-by: Akinobu Mita <[email protected]>
Tested-by: Per Forlin <[email protected]>
Cc: Jens Axboe <[email protected]>
Cc: Christoph Lameter <[email protected]>
Cc: Pekka Enberg <[email protected]>
Cc: Matt Mackall <[email protected]>
Cc: Randy Dunlap <[email protected]>
Cc: Stephen Rothwell <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
mita authored and torvalds committed Aug 4, 2011
1 parent f48d191 commit dd48c08
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 46 deletions.
3 changes: 1 addition & 2 deletions Documentation/fault-injection/fault-injection.txt
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,7 @@ o provide a way to configure fault attributes
failslab, fail_page_alloc, and fail_make_request use this way.
Helper functions:

init_fault_attr_dentries(entries, attr, name);
void cleanup_fault_attr_dentries(entries);
fault_create_debugfs_attr(name, parent, attr);

- module parameters

Expand Down
6 changes: 4 additions & 2 deletions block/blk-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1368,8 +1368,10 @@ static bool should_fail_request(struct hd_struct *part, unsigned int bytes)

static int __init fail_make_request_debugfs(void)
{
return init_fault_attr_dentries(&fail_make_request,
"fail_make_request");
struct dentry *dir = fault_create_debugfs_attr("fail_make_request",
NULL, &fail_make_request);

return IS_ERR(dir) ? PTR_ERR(dir) : 0;
}

late_initcall(fail_make_request_debugfs);
Expand Down
5 changes: 4 additions & 1 deletion block/blk-timeout.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ int blk_should_fake_timeout(struct request_queue *q)

static int __init fail_io_timeout_debugfs(void)
{
return init_fault_attr_dentries(&fail_io_timeout, "fail_io_timeout");
struct dentry *dir = fault_create_debugfs_attr("fail_io_timeout",
NULL, &fail_io_timeout);

return IS_ERR(dir) ? PTR_ERR(dir) : 0;
}

late_initcall(fail_io_timeout_debugfs);
Expand Down
18 changes: 5 additions & 13 deletions include/linux/fault-inject.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ struct fault_attr {
unsigned long reject_end;

unsigned long count;

#ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
struct dentry *dir;
#endif
};

#define FAULT_ATTR_INITIALIZER { \
Expand All @@ -45,19 +41,15 @@ bool should_fail(struct fault_attr *attr, ssize_t size);

#ifdef CONFIG_FAULT_INJECTION_DEBUG_FS

int init_fault_attr_dentries(struct fault_attr *attr, const char *name);
void cleanup_fault_attr_dentries(struct fault_attr *attr);
struct dentry *fault_create_debugfs_attr(const char *name,
struct dentry *parent, struct fault_attr *attr);

#else /* CONFIG_FAULT_INJECTION_DEBUG_FS */

static inline int init_fault_attr_dentries(struct fault_attr *attr,
const char *name)
{
return -ENODEV;
}

static inline void cleanup_fault_attr_dentries(struct fault_attr *attr)
static inline struct dentry *fault_create_debugfs_attr(const char *name,
struct dentry *parent, struct fault_attr *attr)
{
return ERR_PTR(-ENODEV);
}

#endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */
Expand Down
20 changes: 7 additions & 13 deletions lib/fault-inject.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,21 +197,15 @@ static struct dentry *debugfs_create_atomic_t(const char *name, mode_t mode,
return debugfs_create_file(name, mode, parent, value, &fops_atomic_t);
}

void cleanup_fault_attr_dentries(struct fault_attr *attr)
{
debugfs_remove_recursive(attr->dir);
}

int init_fault_attr_dentries(struct fault_attr *attr, const char *name)
struct dentry *fault_create_debugfs_attr(const char *name,
struct dentry *parent, struct fault_attr *attr)
{
mode_t mode = S_IFREG | S_IRUSR | S_IWUSR;
struct dentry *dir;

dir = debugfs_create_dir(name, NULL);
dir = debugfs_create_dir(name, parent);
if (!dir)
return -ENOMEM;

attr->dir = dir;
return ERR_PTR(-ENOMEM);

if (!debugfs_create_ul("probability", mode, dir, &attr->probability))
goto fail;
Expand Down Expand Up @@ -243,11 +237,11 @@ int init_fault_attr_dentries(struct fault_attr *attr, const char *name)

#endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */

return 0;
return dir;
fail:
debugfs_remove_recursive(attr->dir);
debugfs_remove_recursive(dir);

return -ENOMEM;
return ERR_PTR(-ENOMEM);
}

#endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */
14 changes: 7 additions & 7 deletions mm/failslab.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,23 +34,23 @@ __setup("failslab=", setup_failslab);
#ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
static int __init failslab_debugfs_init(void)
{
struct dentry *dir;
mode_t mode = S_IFREG | S_IRUSR | S_IWUSR;
int err;

err = init_fault_attr_dentries(&failslab.attr, "failslab");
if (err)
return err;
dir = fault_create_debugfs_attr("failslab", NULL, &failslab.attr);
if (IS_ERR(dir))
return PTR_ERR(dir);

if (!debugfs_create_bool("ignore-gfp-wait", mode, failslab.attr.dir,
if (!debugfs_create_bool("ignore-gfp-wait", mode, dir,
&failslab.ignore_gfp_wait))
goto fail;
if (!debugfs_create_bool("cache-filter", mode, failslab.attr.dir,
if (!debugfs_create_bool("cache-filter", mode, dir,
&failslab.cache_filter))
goto fail;

return 0;
fail:
cleanup_fault_attr_dentries(&failslab.attr);
debugfs_remove_recursive(dir);

return -ENOMEM;
}
Expand Down
13 changes: 5 additions & 8 deletions mm/page_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1409,14 +1409,11 @@ static int __init fail_page_alloc_debugfs(void)
{
mode_t mode = S_IFREG | S_IRUSR | S_IWUSR;
struct dentry *dir;
int err;

err = init_fault_attr_dentries(&fail_page_alloc.attr,
"fail_page_alloc");
if (err)
return err;

dir = fail_page_alloc.attr.dir;
dir = fault_create_debugfs_attr("fail_page_alloc", NULL,
&fail_page_alloc.attr);
if (IS_ERR(dir))
return PTR_ERR(dir);

if (!debugfs_create_bool("ignore-gfp-wait", mode, dir,
&fail_page_alloc.ignore_gfp_wait))
Expand All @@ -1430,7 +1427,7 @@ static int __init fail_page_alloc_debugfs(void)

return 0;
fail:
cleanup_fault_attr_dentries(&fail_page_alloc.attr);
debugfs_remove_recursive(dir);

return -ENOMEM;
}
Expand Down

0 comments on commit dd48c08

Please sign in to comment.