linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sched/cpufreq: Add the SPDX tags
@ 2018-10-18 19:55 Daniel Lezcano
  2018-12-03 10:07 ` Daniel Lezcano
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Lezcano @ 2018-10-18 19:55 UTC (permalink / raw)
  To: rafael, mingo, peterz; +Cc: linux-kernel, Ingo Molnar

The SPDX tags are not present in cpufreq.c and cpufreq_schedutil.c.

Add them and remove the license descriptions

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 kernel/sched/cpufreq.c           | 5 +----
 kernel/sched/cpufreq_schedutil.c | 5 +----
 2 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/kernel/sched/cpufreq.c b/kernel/sched/cpufreq.c
index 5e54cbc..22bd898 100644
--- a/kernel/sched/cpufreq.c
+++ b/kernel/sched/cpufreq.c
@@ -1,12 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Scheduler code and data structures related to cpufreq.
  *
  * Copyright (C) 2016, Intel Corporation
  * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
  */
 #include "sched.h"
 
diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c
index 3fffad3..626ddd4 100644
--- a/kernel/sched/cpufreq_schedutil.c
+++ b/kernel/sched/cpufreq_schedutil.c
@@ -1,12 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * CPUFreq governor based on scheduler-provided CPU utilization data.
  *
  * Copyright (C) 2016, Intel Corporation
  * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
  */
 
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] sched/cpufreq: Add the SPDX tags
  2018-10-18 19:55 [PATCH] sched/cpufreq: Add the SPDX tags Daniel Lezcano
@ 2018-12-03 10:07 ` Daniel Lezcano
  2018-12-03 10:12   ` Rafael J. Wysocki
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Lezcano @ 2018-12-03 10:07 UTC (permalink / raw)
  To: rafael, mingo, peterz; +Cc: linux-kernel, Ingo Molnar

On 18/10/2018 21:55, Daniel Lezcano wrote:
> The SPDX tags are not present in cpufreq.c and cpufreq_schedutil.c.
> 
> Add them and remove the license descriptions
> 
> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>

Hi Rafael,

I think this patch passed between the cracks.

 -- Daniel

> ---
>  kernel/sched/cpufreq.c           | 5 +----
>  kernel/sched/cpufreq_schedutil.c | 5 +----
>  2 files changed, 2 insertions(+), 8 deletions(-)
> 
> diff --git a/kernel/sched/cpufreq.c b/kernel/sched/cpufreq.c
> index 5e54cbc..22bd898 100644
> --- a/kernel/sched/cpufreq.c
> +++ b/kernel/sched/cpufreq.c
> @@ -1,12 +1,9 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Scheduler code and data structures related to cpufreq.
>   *
>   * Copyright (C) 2016, Intel Corporation
>   * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> - *
> - * This program is free software; you can redistribute it and/or modify
> - * it under the terms of the GNU General Public License version 2 as
> - * published by the Free Software Foundation.
>   */
>  #include "sched.h"
>  
> diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c
> index 3fffad3..626ddd4 100644
> --- a/kernel/sched/cpufreq_schedutil.c
> +++ b/kernel/sched/cpufreq_schedutil.c
> @@ -1,12 +1,9 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * CPUFreq governor based on scheduler-provided CPU utilization data.
>   *
>   * Copyright (C) 2016, Intel Corporation
>   * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> - *
> - * This program is free software; you can redistribute it and/or modify
> - * it under the terms of the GNU General Public License version 2 as
> - * published by the Free Software Foundation.
>   */
>  
>  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
> 


-- 
 <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] sched/cpufreq: Add the SPDX tags
  2018-12-03 10:07 ` Daniel Lezcano
@ 2018-12-03 10:12   ` Rafael J. Wysocki
  2018-12-03 10:15     ` Daniel Lezcano
  0 siblings, 1 reply; 8+ messages in thread
From: Rafael J. Wysocki @ 2018-12-03 10:12 UTC (permalink / raw)
  To: Daniel Lezcano
  Cc: Rafael J. Wysocki, Ingo Molnar, Peter Zijlstra,
	Linux Kernel Mailing List, Ingo Molnar

On Mon, Dec 3, 2018 at 11:07 AM Daniel Lezcano
<daniel.lezcano@linaro.org> wrote:
>
> On 18/10/2018 21:55, Daniel Lezcano wrote:
> > The SPDX tags are not present in cpufreq.c and cpufreq_schedutil.c.
> >
> > Add them and remove the license descriptions
> >
> > Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
>
> Hi Rafael,
>
> I think this patch passed between the cracks.

Well, please resend. :-)

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] sched/cpufreq: Add the SPDX tags
  2018-12-03 10:12   ` Rafael J. Wysocki
@ 2018-12-03 10:15     ` Daniel Lezcano
  2018-12-03 10:21       ` Rafael J. Wysocki
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Lezcano @ 2018-12-03 10:15 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Ingo Molnar, Peter Zijlstra, Linux Kernel Mailing List, Ingo Molnar

On 03/12/2018 11:12, Rafael J. Wysocki wrote:
> On Mon, Dec 3, 2018 at 11:07 AM Daniel Lezcano
> <daniel.lezcano@linaro.org> wrote:
>>
>> On 18/10/2018 21:55, Daniel Lezcano wrote:
>>> The SPDX tags are not present in cpufreq.c and cpufreq_schedutil.c.
>>>
>>> Add them and remove the license descriptions
>>>
>>> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
>>
>> Hi Rafael,
>>
>> I think this patch passed between the cracks.
> 
> Well, please resend. :-)

I can resend, but can't you pick this one directly?


-- 
 <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] sched/cpufreq: Add the SPDX tags
  2018-12-03 10:15     ` Daniel Lezcano
@ 2018-12-03 10:21       ` Rafael J. Wysocki
  2018-12-03 10:29         ` [PATCH RESEND] " Daniel Lezcano
  0 siblings, 1 reply; 8+ messages in thread
From: Rafael J. Wysocki @ 2018-12-03 10:21 UTC (permalink / raw)
  To: Daniel Lezcano
  Cc: Rafael J. Wysocki, Ingo Molnar, Peter Zijlstra,
	Linux Kernel Mailing List, Ingo Molnar

On Mon, Dec 3, 2018 at 11:15 AM Daniel Lezcano
<daniel.lezcano@linaro.org> wrote:
>
> On 03/12/2018 11:12, Rafael J. Wysocki wrote:
> > On Mon, Dec 3, 2018 at 11:07 AM Daniel Lezcano
> > <daniel.lezcano@linaro.org> wrote:
> >>
> >> On 18/10/2018 21:55, Daniel Lezcano wrote:
> >>> The SPDX tags are not present in cpufreq.c and cpufreq_schedutil.c.
> >>>
> >>> Add them and remove the license descriptions
> >>>
> >>> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
> >>
> >> Hi Rafael,
> >>
> >> I think this patch passed between the cracks.
> >
> > Well, please resend. :-)
>
> I can resend, but can't you pick this one directly?

No, I can't apply it, because it depends on a patch that was not applied.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH RESEND] sched/cpufreq: Add the SPDX tags
  2018-12-03 10:21       ` Rafael J. Wysocki
@ 2018-12-03 10:29         ` Daniel Lezcano
  2018-12-03 10:33           ` Viresh Kumar
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Lezcano @ 2018-12-03 10:29 UTC (permalink / raw)
  To: rafael; +Cc: mingo, peterz, linux-kernel, Ingo Molnar

The SPDX tags are not present in cpufreq.c and cpufreq_schedutil.c.

Add them and remove the license descriptions

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 kernel/sched/cpufreq.c           | 5 +----
 kernel/sched/cpufreq_schedutil.c | 5 +----
 2 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/kernel/sched/cpufreq.c b/kernel/sched/cpufreq.c
index 5e54cbc..22bd898 100644
--- a/kernel/sched/cpufreq.c
+++ b/kernel/sched/cpufreq.c
@@ -1,12 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Scheduler code and data structures related to cpufreq.
  *
  * Copyright (C) 2016, Intel Corporation
  * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
  */
 #include "sched.h"
 
diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c
index 3fffad3..626ddd4 100644
--- a/kernel/sched/cpufreq_schedutil.c
+++ b/kernel/sched/cpufreq_schedutil.c
@@ -1,12 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * CPUFreq governor based on scheduler-provided CPU utilization data.
  *
  * Copyright (C) 2016, Intel Corporation
  * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
  */
 
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH RESEND] sched/cpufreq: Add the SPDX tags
  2018-12-03 10:29         ` [PATCH RESEND] " Daniel Lezcano
@ 2018-12-03 10:33           ` Viresh Kumar
  2018-12-12 13:05             ` Rafael J. Wysocki
  0 siblings, 1 reply; 8+ messages in thread
From: Viresh Kumar @ 2018-12-03 10:33 UTC (permalink / raw)
  To: Daniel Lezcano; +Cc: rafael, mingo, peterz, linux-kernel, Ingo Molnar

On 03-12-18, 11:29, Daniel Lezcano wrote:
> The SPDX tags are not present in cpufreq.c and cpufreq_schedutil.c.
> 
> Add them and remove the license descriptions
> 
> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
> ---
>  kernel/sched/cpufreq.c           | 5 +----
>  kernel/sched/cpufreq_schedutil.c | 5 +----
>  2 files changed, 2 insertions(+), 8 deletions(-)

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

-- 
viresh

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH RESEND] sched/cpufreq: Add the SPDX tags
  2018-12-03 10:33           ` Viresh Kumar
@ 2018-12-12 13:05             ` Rafael J. Wysocki
  0 siblings, 0 replies; 8+ messages in thread
From: Rafael J. Wysocki @ 2018-12-12 13:05 UTC (permalink / raw)
  To: Viresh Kumar
  Cc: Daniel Lezcano, Rafael J. Wysocki, Ingo Molnar, Peter Zijlstra,
	Linux Kernel Mailing List, Ingo Molnar

On Mon, Dec 3, 2018 at 11:33 AM Viresh Kumar <viresh.kumar@linaro.org> wrote:
>
> On 03-12-18, 11:29, Daniel Lezcano wrote:
> > The SPDX tags are not present in cpufreq.c and cpufreq_schedutil.c.
> >
> > Add them and remove the license descriptions
> >
> > Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
> > ---
> >  kernel/sched/cpufreq.c           | 5 +----
> >  kernel/sched/cpufreq_schedutil.c | 5 +----
> >  2 files changed, 2 insertions(+), 8 deletions(-)
>
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

Patch applied, thanks!

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2018-12-12 13:05 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-18 19:55 [PATCH] sched/cpufreq: Add the SPDX tags Daniel Lezcano
2018-12-03 10:07 ` Daniel Lezcano
2018-12-03 10:12   ` Rafael J. Wysocki
2018-12-03 10:15     ` Daniel Lezcano
2018-12-03 10:21       ` Rafael J. Wysocki
2018-12-03 10:29         ` [PATCH RESEND] " Daniel Lezcano
2018-12-03 10:33           ` Viresh Kumar
2018-12-12 13:05             ` Rafael J. Wysocki

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).