aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2019-05-19 09:51:40 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-05-21 05:28:45 -0400
commitaded9cb8783c35becea1ef46f608d2a230651459 (patch)
tree515a169382aa53c382904ab616ef72fea8b4f902
parentd6cd1e9b9ff4f5e2d6b7085ad8601f86177fd300 (diff)
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 10
Based on 1 normalized pattern(s): licensed under the fsf s gnu public license v2 or later extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 2 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Jilayne Lovejoy <opensource@jilayne.com> Reviewed-by: Steve Winslow <swinslow@gmail.com> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190519154041.526489261@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--include/linux/plist.h4
-rw-r--r--lib/plist.c3
2 files changed, 2 insertions, 5 deletions
diff --git a/include/linux/plist.h b/include/linux/plist.h
index 9365df5a823f..66bab1bca35c 100644
--- a/include/linux/plist.h
+++ b/include/linux/plist.h
@@ -1,3 +1,4 @@
1/* SPDX-License-Identifier: GPL-2.0-or-later */
1/* 2/*
2 * Descending-priority-sorted double-linked list 3 * Descending-priority-sorted double-linked list
3 * 4 *
@@ -12,8 +13,6 @@
12 * Simplifications of the original code by 13 * Simplifications of the original code by
13 * Oleg Nesterov <oleg@tv-sign.ru> 14 * Oleg Nesterov <oleg@tv-sign.ru>
14 * 15 *
15 * Licensed under the FSF's GNU Public License v2 or later.
16 *
17 * Based on simple lists (include/linux/list.h). 16 * Based on simple lists (include/linux/list.h).
18 * 17 *
19 * This is a priority-sorted list of nodes; each node has a 18 * This is a priority-sorted list of nodes; each node has a
@@ -70,7 +69,6 @@
70 * is lowest priority. 69 * is lowest priority.
71 * 70 *
72 * No locking is done, up to the caller. 71 * No locking is done, up to the caller.
73 *
74 */ 72 */
75#ifndef _LINUX_PLIST_H_ 73#ifndef _LINUX_PLIST_H_
76#define _LINUX_PLIST_H_ 74#define _LINUX_PLIST_H_
diff --git a/lib/plist.c b/lib/plist.c
index d3bd8827186f..0d86ed7a76ac 100644
--- a/lib/plist.c
+++ b/lib/plist.c
@@ -1,3 +1,4 @@
1// SPDX-License-Identifier: GPL-2.0-or-later
1/* 2/*
2 * lib/plist.c 3 * lib/plist.c
3 * 4 *
@@ -14,8 +15,6 @@
14 * Simplifications of the original code by 15 * Simplifications of the original code by
15 * Oleg Nesterov <oleg@tv-sign.ru> 16 * Oleg Nesterov <oleg@tv-sign.ru>
16 * 17 *
17 * Licensed under the FSF's GNU Public License v2 or later.
18 *
19 * Based on simple lists (include/linux/list.h). 18 * Based on simple lists (include/linux/list.h).
20 * 19 *
21 * This file contains the add / del functions which are considered to 20 * This file contains the add / del functions which are considered to