summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolay Borisov <[email protected]>2016-07-29 19:43:23 +0300
committerBrian Behlendorf <[email protected]>2016-07-29 15:34:12 -0700
commite334e828a6d8bbcff51b61acb0f7b4d238a28089 (patch)
tree8d3f950adeee48e471f5b2973c48c3cac1ca5aae
parent9f3d1407dcfa7a8548b17d36ef501dd72a215560 (diff)
Unify license of icp module with the rest of zfs
The newly added icp module uses a hardcoded value of CDDL for the license, however in local development one might want to change that to something else in order to facilitate compiling against lock debugging enabled kernel. All modules of the zfs use the ZFS_META_LICNSE string which is replaced with the value held in the META file. One can modify the value in the META file once and then rerun the configure to have all modules' licenses changed. Change the icp module license string to be ZFS_META_LICENSE so that it falls under the same paradigm. Signed-off-by: Nikolay Borisov <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]> Closes #4905
-rw-r--r--module/icp/illumos-crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/icp/illumos-crypto.c b/module/icp/illumos-crypto.c
index 63f019fa6..7dd5dbf42 100644
--- a/module/icp/illumos-crypto.c
+++ b/module/icp/illumos-crypto.c
@@ -148,5 +148,5 @@ icp_init(void)
#if defined(_KERNEL) && defined(HAVE_SPL)
module_exit(icp_fini);
module_init(icp_init);
-MODULE_LICENSE("CDDL");
+MODULE_LICENSE(ZFS_META_LICENSE);
#endif