summaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/lustre/llite/super25.c
diff options
context:
space:
mode:
authorAndreas Dilger <andreas.dilger@intel.com>2016-02-26 11:36:05 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-03-01 19:19:17 -0800
commite0f9411344f2b3cc98583074e42f29846e13b071 (patch)
tree474d32062fa3f85363e119d51511d6887a010132 /drivers/staging/lustre/lustre/llite/super25.c
parent57878e17f90579210f0b0b9608cc5c90648c1e32 (diff)
downloadop-kernel-dev-e0f9411344f2b3cc98583074e42f29846e13b071.zip
op-kernel-dev-e0f9411344f2b3cc98583074e42f29846e13b071.tar.gz
staging: lustre: make module_init/exit naming consistent
Make the name of the module_init()/_exit() functions consistently {module_name}_init and {module_name}_exit. Signed-off-by: Andreas Dilger <andreas.dilger@intel.com> Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-6204 Reviewed-on: http://review.whamcloud.com/16787 Reviewed-by: John L. Hammond <john.hammond@intel.com> Reviewed-by: Dmitry Eremin <dmitry.eremin@intel.com> Reviewed-by: Frank Zago <fzago@cray.com> Reviewed-by: Oleg Drokin <oleg.drokin@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre/lustre/llite/super25.c')
-rw-r--r--drivers/staging/lustre/lustre/llite/super25.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/lustre/lustre/llite/super25.c b/drivers/staging/lustre/lustre/llite/super25.c
index b1612e5..61856d3 100644
--- a/drivers/staging/lustre/lustre/llite/super25.c
+++ b/drivers/staging/lustre/lustre/llite/super25.c
@@ -89,7 +89,7 @@ MODULE_ALIAS_FS("lustre");
void lustre_register_client_process_config(int (*cpc)(struct lustre_cfg *lcfg));
-static int __init init_lustre_lite(void)
+static int __init lustre_init(void)
{
lnet_process_id_t lnet_id;
struct timespec64 ts;
@@ -188,7 +188,7 @@ out_cache:
return rc;
}
-static void __exit exit_lustre_lite(void)
+static void __exit lustre_exit(void)
{
lustre_register_client_fill_super(NULL);
lustre_register_kill_super_cb(NULL);
@@ -213,5 +213,5 @@ MODULE_DESCRIPTION("Lustre Client File System");
MODULE_VERSION(LUSTRE_VERSION_STRING);
MODULE_LICENSE("GPL");
-module_init(init_lustre_lite);
-module_exit(exit_lustre_lite);
+module_init(lustre_init);
+module_exit(lustre_exit);
OpenPOWER on IntegriCloud