* [PATCH] kernel: add SPDX-License-Identifier lines
@ 2026-01-13 23:44 Tim Bird
2026-01-14 15:24 ` Karim Yaghmour
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Tim Bird @ 2026-01-13 23:44 UTC (permalink / raw)
To: karim, akpm, rusty, tglx
Cc: tom.zanussi, kernelxing, perterz, linux-spdx, linux-kernel,
Tim Bird
Add SPDX-License-Identifier lines to some old kernel
files.
Signed-off-by: Tim Bird <tim.bird@sony.com>
---
kernel/cpu.c | 3 +--
kernel/relay.c | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/kernel/cpu.c b/kernel/cpu.c
index 8df2d773fe3b..5185c0be847a 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1,7 +1,6 @@
+// SPDX-License-Identifier: GPL-2.0
/* CPU control.
* (C) 2001, 2002, 2003, 2004 Rusty Russell
- *
- * This code is licenced under the GPL.
*/
#include <linux/sched/mm.h>
#include <linux/proc_fs.h>
diff --git a/kernel/relay.c b/kernel/relay.c
index e36f6b926f7f..6ed6bc929bf9 100644
--- a/kernel/relay.c
+++ b/kernel/relay.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
/*
* Public API and common code for kernel->userspace relay file support.
*
@@ -9,8 +10,6 @@
* Moved to kernel/relay.c by Paul Mundt, 2006.
* November 2006 - CPU hotplug support by Mathieu Desnoyers
* (mathieu.desnoyers@polymtl.ca)
- *
- * This file is released under the GPL.
*/
#include <linux/errno.h>
#include <linux/stddef.h>
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH] kernel: add SPDX-License-Identifier lines
2026-01-13 23:44 [PATCH] kernel: add SPDX-License-Identifier lines Tim Bird
@ 2026-01-14 15:24 ` Karim Yaghmour
2026-01-19 5:30 ` Rusty Russell
` (2 subsequent siblings)
3 siblings, 0 replies; 10+ messages in thread
From: Karim Yaghmour @ 2026-01-14 15:24 UTC (permalink / raw)
To: Tim Bird, akpm, rusty, tglx
Cc: tom.zanussi, kernelxing, perterz, linux-spdx, linux-kernel
Hi Tim,
Thanks for taking care of this following our discussion at LPC.
Just addressing the relay.c part below.
On 1/13/26 18:44, Tim Bird wrote:
> Add SPDX-License-Identifier lines to some old kernel
> files.
>
> Signed-off-by: Tim Bird <tim.bird@sony.com>
> ---
> kernel/cpu.c | 3 +--
> kernel/relay.c | 3 +--
> 2 files changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/kernel/cpu.c b/kernel/cpu.c
> index 8df2d773fe3b..5185c0be847a 100644
> --- a/kernel/cpu.c
> +++ b/kernel/cpu.c
> @@ -1,7 +1,6 @@
> +// SPDX-License-Identifier: GPL-2.0
> /* CPU control.
> * (C) 2001, 2002, 2003, 2004 Rusty Russell
> - *
> - * This code is licenced under the GPL.
> */
> #include <linux/sched/mm.h>
> #include <linux/proc_fs.h>
For this part:
> diff --git a/kernel/relay.c b/kernel/relay.c
> index e36f6b926f7f..6ed6bc929bf9 100644
> --- a/kernel/relay.c
> +++ b/kernel/relay.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
> /*
> * Public API and common code for kernel->userspace relay file support.
> *
> @@ -9,8 +10,6 @@
> * Moved to kernel/relay.c by Paul Mundt, 2006.
> * November 2006 - CPU hotplug support by Mathieu Desnoyers
> * (mathieu.desnoyers@polymtl.ca)
> - *
> - * This file is released under the GPL.
> */
> #include <linux/errno.h>
> #include <linux/stddef.h>
Acked-by: Karim Yaghmour <karim.yaghmour@opersys.com>
Cheers,
--
Karim Yaghmour
CEO - Opersys inc. / www.opersys.com
https://www.linkedin.com/in/karimyaghmour/
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] kernel: add SPDX-License-Identifier lines
2026-01-13 23:44 [PATCH] kernel: add SPDX-License-Identifier lines Tim Bird
2026-01-14 15:24 ` Karim Yaghmour
@ 2026-01-19 5:30 ` Rusty Russell
2026-01-19 19:41 ` Bird, Tim
2026-01-19 22:40 ` [PATCH v2] kernel: Add " Tim Bird
2026-01-28 20:04 ` [PATCH] kernel: adjust cpu.c SPDX id Tim Bird
3 siblings, 1 reply; 10+ messages in thread
From: Rusty Russell @ 2026-01-19 5:30 UTC (permalink / raw)
To: Tim Bird, karim, akpm, tglx
Cc: tom.zanussi, kernelxing, perterz, linux-spdx, linux-kernel,
Tim Bird
Actually, all my kernel licenses were intended "GPL v2 or any later version".
Sorry if that makes trouble for your licensing theater group!
Cheers,
Rusty.
Tim Bird <tim.bird@sony.com> writes:
> Add SPDX-License-Identifier lines to some old kernel
> files.
>
> Signed-off-by: Tim Bird <tim.bird@sony.com>
> ---
> kernel/cpu.c | 3 +--
> kernel/relay.c | 3 +--
> 2 files changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/kernel/cpu.c b/kernel/cpu.c
> index 8df2d773fe3b..5185c0be847a 100644
> --- a/kernel/cpu.c
> +++ b/kernel/cpu.c
> @@ -1,7 +1,6 @@
> +// SPDX-License-Identifier: GPL-2.0
> /* CPU control.
> * (C) 2001, 2002, 2003, 2004 Rusty Russell
> - *
> - * This code is licenced under the GPL.
> */
> #include <linux/sched/mm.h>
> #include <linux/proc_fs.h>
> diff --git a/kernel/relay.c b/kernel/relay.c
> index e36f6b926f7f..6ed6bc929bf9 100644
> --- a/kernel/relay.c
> +++ b/kernel/relay.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
> /*
> * Public API and common code for kernel->userspace relay file support.
> *
> @@ -9,8 +10,6 @@
> * Moved to kernel/relay.c by Paul Mundt, 2006.
> * November 2006 - CPU hotplug support by Mathieu Desnoyers
> * (mathieu.desnoyers@polymtl.ca)
> - *
> - * This file is released under the GPL.
> */
> #include <linux/errno.h>
> #include <linux/stddef.h>
> --
> 2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH] kernel: add SPDX-License-Identifier lines
2026-01-19 5:30 ` Rusty Russell
@ 2026-01-19 19:41 ` Bird, Tim
0 siblings, 0 replies; 10+ messages in thread
From: Bird, Tim @ 2026-01-19 19:41 UTC (permalink / raw)
To: Rusty Russell, karim@opersys.com, akpm@linuxfoundation.org,
tglx@kernel.org
Cc: tom.zanussi@linux.intel.com, kernelxing@tencent.com,
perterz@infradead.org, linux-spdx@vger.kernel.org,
linux-kernel@vger.kernel.org
> -----Original Message-----
> From: Rusty Russell <rusty@rustcorp.com.au>
> Actually, all my kernel licenses were intended "GPL v2 or any later version".
>
OK - good to know. I'll note that for future SPDX work.
> Sorry if that makes trouble for your licensing theater group!
No problem. Trying to capture original intent is why I include original
authors on the SDPX patch emails.
Thanks. There should be a v2 soon reflecting this change.
-- Tim
>
> Tim Bird <tim.bird@sony.com> writes:
> > Add SPDX-License-Identifier lines to some old kernel
> > files.
> >
> > Signed-off-by: Tim Bird <tim.bird@sony.com>
> > ---
> > kernel/cpu.c | 3 +--
> > kernel/relay.c | 3 +--
> > 2 files changed, 2 insertions(+), 4 deletions(-)
> >
> > diff --git a/kernel/cpu.c b/kernel/cpu.c
> > index 8df2d773fe3b..5185c0be847a 100644
> > --- a/kernel/cpu.c
> > +++ b/kernel/cpu.c
> > @@ -1,7 +1,6 @@
> > +// SPDX-License-Identifier: GPL-2.0
> > /* CPU control.
> > * (C) 2001, 2002, 2003, 2004 Rusty Russell
> > - *
> > - * This code is licenced under the GPL.
> > */
> > #include <linux/sched/mm.h>
> > #include <linux/proc_fs.h>
> > diff --git a/kernel/relay.c b/kernel/relay.c
> > index e36f6b926f7f..6ed6bc929bf9 100644
> > --- a/kernel/relay.c
> > +++ b/kernel/relay.c
> > @@ -1,3 +1,4 @@
> > +// SPDX-License-Identifier: GPL-2.0
> > /*
> > * Public API and common code for kernel->userspace relay file support.
> > *
> > @@ -9,8 +10,6 @@
> > * Moved to kernel/relay.c by Paul Mundt, 2006.
> > * November 2006 - CPU hotplug support by Mathieu Desnoyers
> > * (mathieu.desnoyers@polymtl.ca)
> > - *
> > - * This file is released under the GPL.
> > */
> > #include <linux/errno.h>
> > #include <linux/stddef.h>
> > --
> > 2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2] kernel: Add SPDX-License-Identifier lines
2026-01-13 23:44 [PATCH] kernel: add SPDX-License-Identifier lines Tim Bird
2026-01-14 15:24 ` Karim Yaghmour
2026-01-19 5:30 ` Rusty Russell
@ 2026-01-19 22:40 ` Tim Bird
2026-01-27 14:57 ` Greg KH
2026-01-28 20:04 ` [PATCH] kernel: adjust cpu.c SPDX id Tim Bird
3 siblings, 1 reply; 10+ messages in thread
From: Tim Bird @ 2026-01-19 22:40 UTC (permalink / raw)
To: rusty, karim.yaghmour, akpm, tglx
Cc: kernelxing, peterz, linux-spdx, linux-kernel, Tim Bird
Add SPDX-License-Identifier lines to some old kernel
files.
Signed-off-by: Tim Bird <tim.bird@sony.com>
Acked-by: Karim Yaghmour <karim.yaghmour@opersys.com>
--
V1 -> V2 Use GPL-2.0-or-later for cpu.c
---
kernel/cpu.c | 3 +--
kernel/relay.c | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/kernel/cpu.c b/kernel/cpu.c
index 8df2d773fe3b..a7a1cf8ea8e0 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1,7 +1,6 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
/* CPU control.
* (C) 2001, 2002, 2003, 2004 Rusty Russell
- *
- * This code is licenced under the GPL.
*/
#include <linux/sched/mm.h>
#include <linux/proc_fs.h>
diff --git a/kernel/relay.c b/kernel/relay.c
index e36f6b926f7f..6ed6bc929bf9 100644
--- a/kernel/relay.c
+++ b/kernel/relay.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
/*
* Public API and common code for kernel->userspace relay file support.
*
@@ -9,8 +10,6 @@
* Moved to kernel/relay.c by Paul Mundt, 2006.
* November 2006 - CPU hotplug support by Mathieu Desnoyers
* (mathieu.desnoyers@polymtl.ca)
- *
- * This file is released under the GPL.
*/
#include <linux/errno.h>
#include <linux/stddef.h>
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2] kernel: Add SPDX-License-Identifier lines
2026-01-19 22:40 ` [PATCH v2] kernel: Add " Tim Bird
@ 2026-01-27 14:57 ` Greg KH
2026-01-27 15:05 ` Bird, Tim
0 siblings, 1 reply; 10+ messages in thread
From: Greg KH @ 2026-01-27 14:57 UTC (permalink / raw)
To: Tim Bird
Cc: rusty, karim.yaghmour, akpm, tglx, kernelxing, peterz, linux-spdx,
linux-kernel
On Mon, Jan 19, 2026 at 03:40:21PM -0700, Tim Bird wrote:
> Add SPDX-License-Identifier lines to some old kernel
> files.
>
> Signed-off-by: Tim Bird <tim.bird@sony.com>
> Acked-by: Karim Yaghmour <karim.yaghmour@opersys.com>
> --
> V1 -> V2 Use GPL-2.0-or-later for cpu.c
I already applied v1, so can you send a fixup patch for this?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH v2] kernel: Add SPDX-License-Identifier lines
2026-01-27 14:57 ` Greg KH
@ 2026-01-27 15:05 ` Bird, Tim
0 siblings, 0 replies; 10+ messages in thread
From: Bird, Tim @ 2026-01-27 15:05 UTC (permalink / raw)
To: Greg KH
Cc: rusty@rustcorp.com.au, karim.yaghmour@opersys.com,
akpm@linuxfoundation.org, tglx@kernel.org, kernelxing@tencent.com,
peterz@infradead.org, linux-spdx@vger.kernel.org,
linux-kernel@vger.kernel.org
> -----Original Message-----
> From: Greg KH <greg@kroah.com>
> On Mon, Jan 19, 2026 at 03:40:21PM -0700, Tim Bird wrote:
> > Add SPDX-License-Identifier lines to some old kernel
> > files.
> >
> > Signed-off-by: Tim Bird <tim.bird@sony.com>
> > Acked-by: Karim Yaghmour <karim.yaghmour@opersys.com>
> > --
> > V1 -> V2 Use GPL-2.0-or-later for cpu.c
>
> I already applied v1, so can you send a fixup patch for this?
Will do.
Thanks,
-- Tim
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH] kernel: adjust cpu.c SPDX id
2026-01-13 23:44 [PATCH] kernel: add SPDX-License-Identifier lines Tim Bird
` (2 preceding siblings ...)
2026-01-19 22:40 ` [PATCH v2] kernel: Add " Tim Bird
@ 2026-01-28 20:04 ` Tim Bird
2026-01-28 20:39 ` Peter Zijlstra
3 siblings, 1 reply; 10+ messages in thread
From: Tim Bird @ 2026-01-28 20:04 UTC (permalink / raw)
To: rusty, greg, tglx, peterz; +Cc: linux-spdx, linux-kernel, Tim Bird
From: Tim Bird <tbird20d@yahoo.com>
Rusty Russell's intent was to have his files licensed as
GPL-2.0-or-later. Reflect that intent by adjusting the
SPDX-License-Identifier line for cpu.c
Signed-off-by: Tim Bird <tbird20d@yahoo.com>
Link: https://lore.kernel.org/linux-spdx/875x8yw4n6.fsf@rustcorp.com.au/
---
kernel/cpu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/cpu.c b/kernel/cpu.c
index 5185c0be847a0..a7a1cf8ea8e08 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1,4 +1,4 @@
-// SPDX-License-Identifier: GPL-2.0
+// SPDX-License-Identifier: GPL-2.0-or-later
/* CPU control.
* (C) 2001, 2002, 2003, 2004 Rusty Russell
*/
--
2.21.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH] kernel: adjust cpu.c SPDX id
2026-01-28 20:04 ` [PATCH] kernel: adjust cpu.c SPDX id Tim Bird
@ 2026-01-28 20:39 ` Peter Zijlstra
2026-01-29 16:28 ` Bird, Tim
0 siblings, 1 reply; 10+ messages in thread
From: Peter Zijlstra @ 2026-01-28 20:39 UTC (permalink / raw)
To: Tim Bird; +Cc: rusty, greg, tglx, linux-spdx, linux-kernel, Tim Bird
On Wed, Jan 28, 2026 at 01:04:33PM -0700, Tim Bird wrote:
> From: Tim Bird <tbird20d@yahoo.com>
>
> Rusty Russell's intent was to have his files licensed as
> GPL-2.0-or-later. Reflect that intent by adjusting the
> SPDX-License-Identifier line for cpu.c
>
> Signed-off-by: Tim Bird <tbird20d@yahoo.com>
> Link: https://lore.kernel.org/linux-spdx/875x8yw4n6.fsf@rustcorp.com.au/
> ---
> kernel/cpu.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/cpu.c b/kernel/cpu.c
> index 5185c0be847a0..a7a1cf8ea8e08 100644
> --- a/kernel/cpu.c
> +++ b/kernel/cpu.c
> @@ -1,4 +1,4 @@
> -// SPDX-License-Identifier: GPL-2.0
> +// SPDX-License-Identifier: GPL-2.0-or-later
> /* CPU control.
> * (C) 2001, 2002, 2003, 2004 Rusty Russell
> */
While seeing this fly by (and I really don't care too deeply), I did
make me wonder to the purpose and efficacy of the SPDX header itself.
That is; while Rusty prefers GPL2+, not many of the actual lines in that
file are actually still authored by him. What if those authors prefer
something else?
That is, why are we accounting copyright per file, rather than per
author or even commit (git-blame FTW and all).
Most of the current lines (by a fair margin) seem to belong to Thomas,
so lets throw him under the bus and ponder the hypothetical that he very
strongly prefers GPL2 rather than GPL2+, how does the SPDX header make
sense?
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH] kernel: adjust cpu.c SPDX id
2026-01-28 20:39 ` Peter Zijlstra
@ 2026-01-29 16:28 ` Bird, Tim
0 siblings, 0 replies; 10+ messages in thread
From: Bird, Tim @ 2026-01-29 16:28 UTC (permalink / raw)
To: Peter Zijlstra
Cc: rusty@rustcorp.com.au, greg@kroah.com, tglx@kernel.org,
linux-spdx@vger.kernel.org, linux-kernel@vger.kernel.org,
Tim Bird
> -----Original Message-----
> From: Peter Zijlstra <peterz@infradead.org>
> On Wed, Jan 28, 2026 at 01:04:33PM -0700, Tim Bird wrote:
> > From: Tim Bird <tbird20d@yahoo.com>
> >
> > Rusty Russell's intent was to have his files licensed as
> > GPL-2.0-or-later. Reflect that intent by adjusting the
> > SPDX-License-Identifier line for cpu.c
> >
> > Signed-off-by: Tim Bird <tbird20d@yahoo.com>
> > Link: https://lore.kernel.org/linux-spdx/875x8yw4n6.fsf@rustcorp.com.au/
> > ---
> > kernel/cpu.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/kernel/cpu.c b/kernel/cpu.c
> > index 5185c0be847a0..a7a1cf8ea8e08 100644
> > --- a/kernel/cpu.c
> > +++ b/kernel/cpu.c
> > @@ -1,4 +1,4 @@
> > -// SPDX-License-Identifier: GPL-2.0
> > +// SPDX-License-Identifier: GPL-2.0-or-later
> > /* CPU control.
> > * (C) 2001, 2002, 2003, 2004 Rusty Russell
> > */
Hey Peter,
My apologies in advance for what is going to be a long response...
>
> While seeing this fly by (and I really don't care too deeply), I did
> make me wonder to the purpose and efficacy of the SPDX header itself.
Indeed, it is an imperfect system. More on this below.
>
> That is; while Rusty prefers GPL2+, not many of the actual lines in that
> file are actually still authored by him. What if those authors prefer
> something else?
I understand. Hopefully, there's not a lot of dissension between authors
on acceptable licensing, but it's bound to happen. (And I get that you're
raising a hypothetical here. So far, no authors of cpu.c have directly said
that they disagree with 'GPL-2.0-or-later' for this file, but you raise an
interesting point that I'll give my thoughts on.)
>
> That is, why are we accounting copyright per file, rather than per
> author or even commit (git-blame FTW and all).
Well, to be precise the SPDX line asserts license per file, not copyright.
But copyright has the same problem. You are right that the granularity
of the licensing should not necessarily follow file boundaries, but
rather author or contribution boundaries. Copyright should also follow
different boundaries than file boundaries. Both license and copyright
information for the kernel have a fair amount of ambiguity, for both
historical and practical reasons. Over time developers have worked
to reduce the ambiguity for licensing through a number of actions (including applying
SPDX identifier lines).
The use of per-file copyright lines and licensing lines represents (IMHO) a
tradeoff between perfection and practicality. The reality is that copyright law
(upon which the licensing is based) does not really handle collaborative works,
such as open source software, very well.
>
> Most of the current lines (by a fair margin) seem to belong to Thomas,
> so lets throw him under the bus and ponder the hypothetical that he very
> strongly prefers GPL2 rather than GPL2+, how does the SPDX header make
> sense?
A single licensing line (just like a single copyright line, or even a small set of
copyright lines) will, in some cases, never perfectly and accurately reflect the intent of all
authors of a file. In cases where there is dispute between authors, I would lean
towards resolving the dispute in the following manner:
- try, as much as possible, to get as many authors as possible to come to an agreement they
can all live with
- absent such a consensus, rely on some 'fairness' doctrine, such as going with the decision
of some majority of contributors.
In my own SPDX line application work, I try to understand the intent of the original authors and the current
maintainers to see what they think. I could do something more exhaustive like try to contact
all contributors for current lines in the file (doing some kind of git blame conversion to authors),
or even all authors since the creation of the file. Given the amount of time the kernel has been
in existence, and the nature of the involvement of contributors to the kernel, this is not guaranteed
to get the intent of everyone who might have a claim in the licensing decision.
I also weigh, as factors, 1) when the file was introduced, 2) whether the file already includes
licensing info, and how clear it is, 3) whether the overall project (ie Linux kernel) licensing was clear
to contributors, and 4) how likely subsequent contributors were to be aware of the license for the
project and individual file, at the time of their contribution.
This is the first time a potential dispute has been raised, and I don't want to burden the process
too much for what might be a rare case. Otherwise, the whole process will get bogged down trying
to achieve perfection when only *advancement* in licensing clarity is desired.
I think in many cases, the parties involved don't have strong enough feelings to object to the licensing
that I have concluded to apply using my research.
As a side note, I believe that the difference between GPL-2.0 and GPL-2.0-or-later for a Linux kernel file is negligible.
There are multiple reasons for this, but one of the strongest, I believe, is that there is no operating
system kernel that is licensed GPL 3.0 where files from the Linux kernel would have any useful applicability.
If code from a GPL-2.0-or-later file from the Linux kernel was applied to a GPL-3.0 operating system,
I suspect it would have to be substantially modified sufficient to render a copyright claim (and license claim)
invalid (or at least weak).
Now, getting back to this specific case, if it would be helpful, I can do a contributor analysis on the file,
and try to get consensus among more contributors than are currently on this thread. My strong preference
would be to have any developers who disagree with each other on the proposed SPDX license come to
a consensus with each other on a license they can all live with. Absent that, I'll try to make a reasonable
and fair assignment, based on the facts at hand and additional analysis. Please note that the original stated
license information was pretty clear in indicating that the license was "GPL", without any additional qualifiers
about current or future versions of the license. The exact licensing line used in the original contribution, and
throughout the life of the file, was:
* This code is licenced under the GPL.
Given that the kernel's license was GPL 2.0 at the time of original authorship, and that additional contributors likely
contributed code with that understanding, I'm inclined to stay with the 'GPL-2.0' license identifier for this
file. But I'm happy to listen to additional arguments and information. And I'm happy to do additional research
on the intent of as many authors and contributors as possible, if it would be helpful to resolve this issue.
If no one responds to this email with any objections, I'll interpret that as assent, and let the current patch
(applying a 'GPL-2.0-or-later' id) stand. That gives Rusty, who is the only person to directly and affirmatively
object to 'GPL-2.0', the say.
Regards,
-- Tim
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-01-29 16:29 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-13 23:44 [PATCH] kernel: add SPDX-License-Identifier lines Tim Bird
2026-01-14 15:24 ` Karim Yaghmour
2026-01-19 5:30 ` Rusty Russell
2026-01-19 19:41 ` Bird, Tim
2026-01-19 22:40 ` [PATCH v2] kernel: Add " Tim Bird
2026-01-27 14:57 ` Greg KH
2026-01-27 15:05 ` Bird, Tim
2026-01-28 20:04 ` [PATCH] kernel: adjust cpu.c SPDX id Tim Bird
2026-01-28 20:39 ` Peter Zijlstra
2026-01-29 16:28 ` Bird, Tim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox