mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-01 03:54:02 +00:00
fault-injection: cleanup simple attribute of stacktrace_depth
Minor cosmetic changes for simple attribute of stacktrace_depth: - use min_t() - reduce #ifdef by moving a function - do not use partly capitalized function name 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>
This commit is contained in:
parent
6b16f748a0
commit
8307fc257c
1 changed files with 15 additions and 15 deletions
|
@ -139,16 +139,6 @@ static int debugfs_ul_set(void *data, u64 val)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
|
|
||||||
static int debugfs_ul_set_MAX_STACK_TRACE_DEPTH(void *data, u64 val)
|
|
||||||
{
|
|
||||||
*(unsigned long *)data =
|
|
||||||
val < MAX_STACK_TRACE_DEPTH ?
|
|
||||||
val : MAX_STACK_TRACE_DEPTH;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
#endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
|
|
||||||
|
|
||||||
static int debugfs_ul_get(void *data, u64 *val)
|
static int debugfs_ul_get(void *data, u64 *val)
|
||||||
{
|
{
|
||||||
*val = *(unsigned long *)data;
|
*val = *(unsigned long *)data;
|
||||||
|
@ -164,16 +154,26 @@ static struct dentry *debugfs_create_ul(const char *name, mode_t mode,
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
|
#ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
|
||||||
DEFINE_SIMPLE_ATTRIBUTE(fops_ul_MAX_STACK_TRACE_DEPTH, debugfs_ul_get,
|
|
||||||
debugfs_ul_set_MAX_STACK_TRACE_DEPTH, "%llu\n");
|
|
||||||
|
|
||||||
static struct dentry *debugfs_create_ul_MAX_STACK_TRACE_DEPTH(
|
static int debugfs_stacktrace_depth_set(void *data, u64 val)
|
||||||
|
{
|
||||||
|
*(unsigned long *)data =
|
||||||
|
min_t(unsigned long, val, MAX_STACK_TRACE_DEPTH);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
DEFINE_SIMPLE_ATTRIBUTE(fops_stacktrace_depth, debugfs_ul_get,
|
||||||
|
debugfs_stacktrace_depth_set, "%llu\n");
|
||||||
|
|
||||||
|
static struct dentry *debugfs_create_stacktrace_depth(
|
||||||
const char *name, mode_t mode,
|
const char *name, mode_t mode,
|
||||||
struct dentry *parent, unsigned long *value)
|
struct dentry *parent, unsigned long *value)
|
||||||
{
|
{
|
||||||
return debugfs_create_file(name, mode, parent, value,
|
return debugfs_create_file(name, mode, parent, value,
|
||||||
&fops_ul_MAX_STACK_TRACE_DEPTH);
|
&fops_stacktrace_depth);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
|
#endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
|
||||||
|
|
||||||
static int debugfs_atomic_t_set(void *data, u64 val)
|
static int debugfs_atomic_t_set(void *data, u64 val)
|
||||||
|
@ -281,7 +281,7 @@ int init_fault_attr_dentries(struct fault_attr *attr, const char *name)
|
||||||
#ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
|
#ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
|
||||||
|
|
||||||
attr->dentries.stacktrace_depth_file =
|
attr->dentries.stacktrace_depth_file =
|
||||||
debugfs_create_ul_MAX_STACK_TRACE_DEPTH(
|
debugfs_create_stacktrace_depth(
|
||||||
"stacktrace-depth", mode, dir, &attr->stacktrace_depth);
|
"stacktrace-depth", mode, dir, &attr->stacktrace_depth);
|
||||||
|
|
||||||
attr->dentries.require_start_file =
|
attr->dentries.require_start_file =
|
||||||
|
|
Loading…
Add table
Reference in a new issue