diff options
author | Brian Behlendorf <[email protected]> | 2020-09-28 18:43:27 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2020-09-28 18:43:27 -0700 |
commit | 5aa3e3d3be4b0c2a2f30cd0a6de49ad1d0c42de2 (patch) | |
tree | 9c28509248ff6787308e2972ae33485fb2db0488 /module/zstd | |
parent | 4c5159cc5cb08f00c2a69d2b1dd0d5420745eb4b (diff) |
Use known license string for zzstd
The Linux kernel MODULE_LICENSE macro only recognizes a handful of
license strings and "BSD" is not one of the them. Update the macro
to use "Dual BSD/GPL" which is recognized and what the kernel expects
BSD licensed module to use.
Reviewed-by: Kjeld Schouten <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #10982
Closes #10992
Diffstat (limited to 'module/zstd')
-rw-r--r-- | module/zstd/zfs_zstd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zstd/zfs_zstd.c b/module/zstd/zfs_zstd.c index 431801d47..c10b7a84d 100644 --- a/module/zstd/zfs_zstd.c +++ b/module/zstd/zfs_zstd.c @@ -729,7 +729,7 @@ module_init(zstd_init); module_exit(zstd_fini); ZFS_MODULE_DESCRIPTION("ZSTD Compression for ZFS"); -ZFS_MODULE_LICENSE("BSD"); +ZFS_MODULE_LICENSE("Dual BSD/GPL"); ZFS_MODULE_VERSION(ZSTD_VERSION_STRING); EXPORT_SYMBOL(zfs_zstd_compress); |