Commit a8365826 authored by Patrick Boettcher's avatar Patrick Boettcher Committed by Greg Kroah-Hartman

staging: lustre-libcfs: make static-variable constant

This static can be made constant as it is never modified.

Found during sparse-cleanup.
Signed-off-by: default avatarPatrick Boettcher <patrick.boettcher@posteo.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 25bbe418
...@@ -707,7 +707,7 @@ struct lnet_debugfs_symlink_def { ...@@ -707,7 +707,7 @@ struct lnet_debugfs_symlink_def {
char *target; char *target;
}; };
static struct lnet_debugfs_symlink_def lnet_debugfs_symlinks[] = { static const struct lnet_debugfs_symlink_def lnet_debugfs_symlinks[] = {
{ "console_ratelimit", { "console_ratelimit",
"/sys/module/libcfs/parameters/libcfs_console_ratelimit"}, "/sys/module/libcfs/parameters/libcfs_console_ratelimit"},
{ "debug_path", { "debug_path",
...@@ -762,7 +762,7 @@ static void insert_debugfs(void) ...@@ -762,7 +762,7 @@ static void insert_debugfs(void)
{ {
struct ctl_table *table; struct ctl_table *table;
struct dentry *entry; struct dentry *entry;
struct lnet_debugfs_symlink_def *symlinks; const struct lnet_debugfs_symlink_def *symlinks;
if (lnet_debugfs_root == NULL) if (lnet_debugfs_root == NULL)
lnet_debugfs_root = debugfs_create_dir("lnet", NULL); lnet_debugfs_root = debugfs_create_dir("lnet", NULL);
......
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