* [PATCH v2 0/3] xen: fix wrong idents in MODULE_LICENSE in some drivers
@ 2016-01-22 14:04 Wei Liu
2016-01-22 14:04 ` [PATCH v2 1/3] xen-netback: fix license ident used in MODULE_LICENSE Wei Liu
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Wei Liu @ 2016-01-22 14:04 UTC (permalink / raw)
To: Xen-devel; +Cc: Boris Ostrovsky, Wei Liu, David Vrabel
Wei Liu (3):
xen-netback: fix license ident used in MODULE_LICENSE
xen-blkback: fix license ident used in MODULE_LICENSE
xen-scsiback: fix license ident used in MODULE_LICENSE
drivers/block/xen-blkback/blkback.c | 2 +-
drivers/net/xen-netback/netback.c | 2 +-
drivers/xen/xen-scsiback.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
--
2.1.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 1/3] xen-netback: fix license ident used in MODULE_LICENSE
2016-01-22 14:04 [PATCH v2 0/3] xen: fix wrong idents in MODULE_LICENSE in some drivers Wei Liu
@ 2016-01-22 14:04 ` Wei Liu
2016-01-22 14:04 ` [PATCH v2 2/3] xen-blkback: " Wei Liu
2016-01-22 14:04 ` [PATCH v2 3/3] xen-scsiback: " Wei Liu
2 siblings, 0 replies; 4+ messages in thread
From: Wei Liu @ 2016-01-22 14:04 UTC (permalink / raw)
To: Xen-devel
Cc: Wei Liu, Ian Campbell, open list:XEN NETWORK BACKEND DRIVER,
open list, David Vrabel, Boris Ostrovsky
The comment at the beginning of the file is the canonical source of
licenses for this module. The license used to distribute outside of
Linux kernel is not BSD license but X11 license. Instead of trying to
determine whether X11 license can be mapped into Linux's "MIT" license
ident, simply make the code to use "GPL" only.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
drivers/net/xen-netback/netback.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c
index 61b97c3..e9601d1 100644
--- a/drivers/net/xen-netback/netback.c
+++ b/drivers/net/xen-netback/netback.c
@@ -2192,5 +2192,5 @@ static void __exit netback_fini(void)
}
module_exit(netback_fini);
-MODULE_LICENSE("Dual BSD/GPL");
+MODULE_LICENSE("GPL");
MODULE_ALIAS("xen-backend:vif");
--
2.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v2 2/3] xen-blkback: fix license ident used in MODULE_LICENSE
2016-01-22 14:04 [PATCH v2 0/3] xen: fix wrong idents in MODULE_LICENSE in some drivers Wei Liu
2016-01-22 14:04 ` [PATCH v2 1/3] xen-netback: fix license ident used in MODULE_LICENSE Wei Liu
@ 2016-01-22 14:04 ` Wei Liu
2016-01-22 14:04 ` [PATCH v2 3/3] xen-scsiback: " Wei Liu
2 siblings, 0 replies; 4+ messages in thread
From: Wei Liu @ 2016-01-22 14:04 UTC (permalink / raw)
To: Xen-devel
Cc: Wei Liu, open list, David Vrabel, Boris Ostrovsky,
Roger Pau Monné
The comment at the beginning of the file is the canonical source of
licenses for this module. The license used to distribute outside of
Linux kernel is not BSD license but X11 license. Instead of trying to
determine whether X11 license can be mapped into Linux's "MIT" license
ident, simply make the code to use "GPL" only.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
drivers/block/xen-blkback/blkback.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/block/xen-blkback/blkback.c b/drivers/block/xen-blkback/blkback.c
index 4809c15..1cb29a2 100644
--- a/drivers/block/xen-blkback/blkback.c
+++ b/drivers/block/xen-blkback/blkback.c
@@ -1496,5 +1496,5 @@ static int __init xen_blkif_init(void)
module_init(xen_blkif_init);
-MODULE_LICENSE("Dual BSD/GPL");
+MODULE_LICENSE("GPL");
MODULE_ALIAS("xen-backend:vbd");
--
2.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v2 3/3] xen-scsiback: fix license ident used in MODULE_LICENSE
2016-01-22 14:04 [PATCH v2 0/3] xen: fix wrong idents in MODULE_LICENSE in some drivers Wei Liu
2016-01-22 14:04 ` [PATCH v2 1/3] xen-netback: fix license ident used in MODULE_LICENSE Wei Liu
2016-01-22 14:04 ` [PATCH v2 2/3] xen-blkback: " Wei Liu
@ 2016-01-22 14:04 ` Wei Liu
2 siblings, 0 replies; 4+ messages in thread
From: Wei Liu @ 2016-01-22 14:04 UTC (permalink / raw)
To: Xen-devel
Cc: Juergen Gross, Wei Liu, open list:XEN PVSCSI DRIVERS, open list,
David Vrabel, Boris Ostrovsky
The comment at the beginning of the file is the canonical source of
licenses for this module. The license used to distribute outside of
Linux kernel is not BSD license but X11 license. Instead of trying to
determine whether X11 license can be mapped into Linux's "MIT" license
ident, simply make the code to use "GPL" only.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
drivers/xen/xen-scsiback.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/xen/xen-scsiback.c b/drivers/xen/xen-scsiback.c
index ad4eb10..250d70f 100644
--- a/drivers/xen/xen-scsiback.c
+++ b/drivers/xen/xen-scsiback.c
@@ -1915,6 +1915,6 @@ module_init(scsiback_init);
module_exit(scsiback_exit);
MODULE_DESCRIPTION("Xen SCSI backend driver");
-MODULE_LICENSE("Dual BSD/GPL");
+MODULE_LICENSE("GPL");
MODULE_ALIAS("xen-backend:vscsi");
MODULE_AUTHOR("Juergen Gross <jgross@suse.com>");
--
2.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-01-22 14:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-22 14:04 [PATCH v2 0/3] xen: fix wrong idents in MODULE_LICENSE in some drivers Wei Liu
2016-01-22 14:04 ` [PATCH v2 1/3] xen-netback: fix license ident used in MODULE_LICENSE Wei Liu
2016-01-22 14:04 ` [PATCH v2 2/3] xen-blkback: " Wei Liu
2016-01-22 14:04 ` [PATCH v2 3/3] xen-scsiback: " Wei Liu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).