Commit c4f90771 authored by NeilBrown's avatar NeilBrown Committed by Greg Kroah-Hartman

staging: lustre: make lnet_debugfs_symlink_def local to libcfs/modules.c

This type is only used in libcfs/module.c, so make it local to there.
If any other module ever wanted to add its own symlinks,
it would probably be easiest to export lnet_debugfs_root
and just call debugfs_create_symlink as required.
Signed-off-by: default avatarNeilBrown <neilb@suse.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1c36b6de
...@@ -110,13 +110,7 @@ extern char lnet_debug_log_upcall[1024]; ...@@ -110,13 +110,7 @@ extern char lnet_debug_log_upcall[1024];
extern struct workqueue_struct *cfs_rehash_wq; extern struct workqueue_struct *cfs_rehash_wq;
struct lnet_debugfs_symlink_def { void lustre_insert_debugfs(struct ctl_table *table);
char *name;
char *target;
};
void lustre_insert_debugfs(struct ctl_table *table,
const struct lnet_debugfs_symlink_def *symlinks);
int lprocfs_call_handler(void *data, int write, loff_t *ppos, int lprocfs_call_handler(void *data, int write, loff_t *ppos,
void __user *buffer, size_t *lenp, void __user *buffer, size_t *lenp,
int (*handler)(void *data, int write, loff_t pos, int (*handler)(void *data, int write, loff_t pos,
......
...@@ -60,6 +60,11 @@ ...@@ -60,6 +60,11 @@
#include <uapi/linux/lnet/lnet-dlc.h> #include <uapi/linux/lnet/lnet-dlc.h>
#include "tracefile.h" #include "tracefile.h"
struct lnet_debugfs_symlink_def {
char *name;
char *target;
};
static struct dentry *lnet_debugfs_root; static struct dentry *lnet_debugfs_root;
BLOCKING_NOTIFIER_HEAD(libcfs_ioctl_list); BLOCKING_NOTIFIER_HEAD(libcfs_ioctl_list);
...@@ -620,8 +625,7 @@ static const struct file_operations *lnet_debugfs_fops_select(umode_t mode) ...@@ -620,8 +625,7 @@ static const struct file_operations *lnet_debugfs_fops_select(umode_t mode)
return &lnet_debugfs_file_operations_rw; return &lnet_debugfs_file_operations_rw;
} }
void lustre_insert_debugfs(struct ctl_table *table, void lustre_insert_debugfs(struct ctl_table *table)
const struct lnet_debugfs_symlink_def *symlinks)
{ {
if (!lnet_debugfs_root) if (!lnet_debugfs_root)
lnet_debugfs_root = debugfs_create_dir("lnet", NULL); lnet_debugfs_root = debugfs_create_dir("lnet", NULL);
...@@ -630,19 +634,24 @@ void lustre_insert_debugfs(struct ctl_table *table, ...@@ -630,19 +634,24 @@ void lustre_insert_debugfs(struct ctl_table *table,
if (IS_ERR_OR_NULL(lnet_debugfs_root)) if (IS_ERR_OR_NULL(lnet_debugfs_root))
return; return;
/* We don't save the dentry returned in next two calls, because /*
* we don't call debugfs_remove() but rather remove_recursive() * We don't save the dentry returned because we don't call
* debugfs_remove() but rather remove_recursive()
*/ */
for (; table->procname; table++) for (; table->procname; table++)
debugfs_create_file(table->procname, table->mode, debugfs_create_file(table->procname, table->mode,
lnet_debugfs_root, table, lnet_debugfs_root, table,
lnet_debugfs_fops_select(table->mode)); lnet_debugfs_fops_select(table->mode));
}
EXPORT_SYMBOL_GPL(lustre_insert_debugfs);
static void lustre_insert_debugfs_links(
const struct lnet_debugfs_symlink_def *symlinks)
{
for (; symlinks && symlinks->name; symlinks++) for (; symlinks && symlinks->name; symlinks++)
debugfs_create_symlink(symlinks->name, lnet_debugfs_root, debugfs_create_symlink(symlinks->name, lnet_debugfs_root,
symlinks->target); symlinks->target);
} }
EXPORT_SYMBOL_GPL(lustre_insert_debugfs);
static void lustre_remove_debugfs(void) static void lustre_remove_debugfs(void)
{ {
...@@ -688,7 +697,9 @@ int libcfs_setup(void) ...@@ -688,7 +697,9 @@ int libcfs_setup(void)
goto err; goto err;
} }
lustre_insert_debugfs(lnet_table, lnet_debugfs_symlinks); lustre_insert_debugfs(lnet_table);
if (!IS_ERR_OR_NULL(lnet_debugfs_root))
lustre_insert_debugfs_links(lnet_debugfs_symlinks);
CDEBUG(D_OTHER, "portals setup OK\n"); CDEBUG(D_OTHER, "portals setup OK\n");
out: out:
......
...@@ -900,7 +900,7 @@ static struct ctl_table lnet_table[] = { ...@@ -900,7 +900,7 @@ static struct ctl_table lnet_table[] = {
void lnet_router_debugfs_init(void) void lnet_router_debugfs_init(void)
{ {
lustre_insert_debugfs(lnet_table, NULL); lustre_insert_debugfs(lnet_table);
} }
void lnet_router_debugfs_fini(void) void lnet_router_debugfs_fini(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment