Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Thomas Gleixner and committed by
Greg Kroah-Hartman
aded9cb8 d6cd1e9b

+2 -5
+1 -3
include/linux/plist.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 1 2 /* 2 3 * Descending-priority-sorted double-linked list 3 4 * ··· 12 11 * 13 12 * Simplifications of the original code by 14 13 * Oleg Nesterov <oleg@tv-sign.ru> 15 - * 16 - * Licensed under the FSF's GNU Public License v2 or later. 17 14 * 18 15 * Based on simple lists (include/linux/list.h). 19 16 * ··· 69 70 * is lowest priority. 70 71 * 71 72 * No locking is done, up to the caller. 72 - * 73 73 */ 74 74 #ifndef _LINUX_PLIST_H_ 75 75 #define _LINUX_PLIST_H_
+1 -2
lib/plist.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * lib/plist.c 3 4 * ··· 14 13 * 15 14 * Simplifications of the original code by 16 15 * Oleg Nesterov <oleg@tv-sign.ru> 17 - * 18 - * Licensed under the FSF's GNU Public License v2 or later. 19 16 * 20 17 * Based on simple lists (include/linux/list.h). 21 18 *