From dd16884e8e367007e792708901bdf55ffeac665b Mon Sep 17 00:00:00 2001 From: James Simmons Date: Wed, 7 Oct 2015 10:46:27 -0400 Subject: [PATCH] LU-6204 misc: Add missing MODULE_VERSION for lustre Many of the lustre modules are missing a MODULE_VERSION. Update the remaining MODULE_AUTHORS from Intel to OpenSFS. Change-Id: Iae24d820c68c570c6e1399bbc7396060d21bdf41 Signed-off-by: James Simmons Reviewed-on: http://review.whamcloud.com/16729 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger Reviewed-by: John L. Hammond Reviewed-by: Frank Zago Reviewed-by: Oleg Drokin --- lustre/lfsck/lfsck_lib.c | 2 +- lustre/llite/lloop.c | 1 + lustre/llite/super25.c | 1 + lustre/lmv/lmv_obd.c | 1 + lustre/lod/lod_dev.c | 3 ++- lustre/mdc/mdc_request.c | 1 + lustre/mgc/mgc_request.c | 1 + lustre/mgs/mgs_handler.c | 1 + lustre/obdclass/llog_test.c | 1 + lustre/ofd/ofd_dev.c | 3 ++- lustre/osp/osp_dev.c | 2 +- lustre/ost/ost_handler.c | 1 + lustre/ptlrpc/gss/sec_gss.c | 1 + lustre/quota/lquota_lib.c | 2 +- 14 files changed, 16 insertions(+), 5 deletions(-) diff --git a/lustre/lfsck/lfsck_lib.c b/lustre/lfsck/lfsck_lib.c index ef5fc61..1422ced 100644 --- a/lustre/lfsck/lfsck_lib.c +++ b/lustre/lfsck/lfsck_lib.c @@ -3591,7 +3591,7 @@ static void __exit lfsck_exit(void) lu_context_key_degister(&lfsck_thread_key); } -MODULE_AUTHOR("Intel Corporation "); +MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("LFSCK"); MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); diff --git a/lustre/llite/lloop.c b/lustre/llite/lloop.c index 9b0cf65..48ff50b 100644 --- a/lustre/llite/lloop.c +++ b/lustre/llite/lloop.c @@ -916,4 +916,5 @@ module_exit(lloop_exit); CFS_MODULE_PARM(max_loop, "i", int, 0444, "maximum of lloop_device"); MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("Lustre virtual block device"); +MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); diff --git a/lustre/llite/super25.c b/lustre/llite/super25.c index 4183853..4f1c2df 100644 --- a/lustre/llite/super25.c +++ b/lustre/llite/super25.c @@ -230,6 +230,7 @@ static void __exit exit_lustre_lite(void) MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("Lustre Lite Client File System"); +MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); module_init(init_lustre_lite); diff --git a/lustre/lmv/lmv_obd.c b/lustre/lmv/lmv_obd.c index d276e34..f85fbb8 100644 --- a/lustre/lmv/lmv_obd.c +++ b/lustre/lmv/lmv_obd.c @@ -3410,6 +3410,7 @@ static void lmv_exit(void) MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("Lustre Logical Metadata Volume OBD driver"); +MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); module_init(lmv_init); diff --git a/lustre/lod/lod_dev.c b/lustre/lod/lod_dev.c index 7886704..70dd8fb 100644 --- a/lustre/lod/lod_dev.c +++ b/lustre/lod/lod_dev.c @@ -1887,8 +1887,9 @@ static void __exit lod_mod_exit(void) lu_kmem_fini(lod_caches); } -MODULE_AUTHOR("Intel Corporation. "); +MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("Lustre Logical Object Device ("LUSTRE_LOD_NAME")"); +MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); module_init(lod_mod_init); diff --git a/lustre/mdc/mdc_request.c b/lustre/mdc/mdc_request.c index 0d7d267..5ac5f9a 100644 --- a/lustre/mdc/mdc_request.c +++ b/lustre/mdc/mdc_request.c @@ -2796,6 +2796,7 @@ static void /*__exit*/ mdc_exit(void) MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("Lustre Metadata Client"); +MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); module_init(mdc_init); diff --git a/lustre/mgc/mgc_request.c b/lustre/mgc/mgc_request.c index ab67b62..b522748 100644 --- a/lustre/mgc/mgc_request.c +++ b/lustre/mgc/mgc_request.c @@ -2141,6 +2141,7 @@ static void /*__exit*/ mgc_exit(void) MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("Lustre Management Client"); +MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); module_init(mgc_init); diff --git a/lustre/mgs/mgs_handler.c b/lustre/mgs/mgs_handler.c index cd4c7e5..8a33c7e 100644 --- a/lustre/mgs/mgs_handler.c +++ b/lustre/mgs/mgs_handler.c @@ -1552,6 +1552,7 @@ static void /*__exit*/ mgs_exit(void) MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("Lustre Management Server (MGS)"); +MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); module_init(mgs_init); diff --git a/lustre/obdclass/llog_test.c b/lustre/obdclass/llog_test.c index 293e1d3..4d85962 100644 --- a/lustre/obdclass/llog_test.c +++ b/lustre/obdclass/llog_test.c @@ -1561,6 +1561,7 @@ static void __exit llog_test_exit(void) MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("llog test module"); +MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); module_init(llog_test_init); diff --git a/lustre/ofd/ofd_dev.c b/lustre/ofd/ofd_dev.c index a55a234..f45388a 100644 --- a/lustre/ofd/ofd_dev.c +++ b/lustre/ofd/ofd_dev.c @@ -3055,8 +3055,9 @@ static void __exit ofd_exit(void) class_unregister_type(LUSTRE_OST_NAME); } -MODULE_AUTHOR("Intel Corporation. "); +MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("Lustre Object Filtering Device"); +MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); module_init(ofd_init); diff --git a/lustre/osp/osp_dev.c b/lustre/osp/osp_dev.c index 528e5899..af5adf6 100644 --- a/lustre/osp/osp_dev.c +++ b/lustre/osp/osp_dev.c @@ -1923,7 +1923,7 @@ static void __exit osp_mod_exit(void) lu_kmem_fini(osp_caches); } -MODULE_AUTHOR("Intel, Inc. "); +MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("Lustre OST Proxy Device ("LUSTRE_OSP_NAME")"); MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); diff --git a/lustre/ost/ost_handler.c b/lustre/ost/ost_handler.c index ebce42b..fcb0b8d 100644 --- a/lustre/ost/ost_handler.c +++ b/lustre/ost/ost_handler.c @@ -435,6 +435,7 @@ static void /*__exit*/ ost_exit(void) MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("Lustre Object Storage Target (OST) v0.01"); +MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); module_init(ost_init); diff --git a/lustre/ptlrpc/gss/sec_gss.c b/lustre/ptlrpc/gss/sec_gss.c index 7f4b861..c493dbb 100644 --- a/lustre/ptlrpc/gss/sec_gss.c +++ b/lustre/ptlrpc/gss/sec_gss.c @@ -2941,6 +2941,7 @@ static void __exit sptlrpc_gss_exit(void) MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("GSS security policy for Lustre"); +MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); module_init(sptlrpc_gss_init); diff --git a/lustre/quota/lquota_lib.c b/lustre/quota/lquota_lib.c index 66c328a..52caaf0 100644 --- a/lustre/quota/lquota_lib.c +++ b/lustre/quota/lquota_lib.c @@ -328,7 +328,7 @@ static void exit_lquota(void) lu_context_key_degister(&lquota_thread_key); } -MODULE_AUTHOR("Intel Corporation "); +MODULE_AUTHOR("OpenSFS, Inc. "); MODULE_DESCRIPTION("Lustre Quota"); MODULE_VERSION(LUSTRE_VERSION_STRING); MODULE_LICENSE("GPL"); -- 1.8.3.1