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 <kjeld@schouten-lebbing.nl> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #10982 Closes #10992
This commit is contained in:
parent
fdbec0423b
commit
13c38c4c45
|
@ -729,7 +729,7 @@ module_init(zstd_init);
|
||||||
module_exit(zstd_fini);
|
module_exit(zstd_fini);
|
||||||
|
|
||||||
ZFS_MODULE_DESCRIPTION("ZSTD Compression for ZFS");
|
ZFS_MODULE_DESCRIPTION("ZSTD Compression for ZFS");
|
||||||
ZFS_MODULE_LICENSE("BSD");
|
ZFS_MODULE_LICENSE("Dual BSD/GPL");
|
||||||
ZFS_MODULE_VERSION(ZSTD_VERSION_STRING);
|
ZFS_MODULE_VERSION(ZSTD_VERSION_STRING);
|
||||||
|
|
||||||
EXPORT_SYMBOL(zfs_zstd_compress);
|
EXPORT_SYMBOL(zfs_zstd_compress);
|
||||||
|
|
Loading…
Reference in New Issue