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 47

Based on 1 normalized pattern(s):

this program is free software you can redistribute it and or modify
it under the terms of the gnu general public license as published by
the free software foundation either version 2 or at your option any
later version you should have received a copy of the gnu general
public license for example usr src linux copying if not write to the
free software foundation inc 675 mass ave cambridge ma 02139 usa

extracted by the scancode license scanner the SPDX license identifier

GPL-2.0-or-later

has been chosen to replace the boilerplate/reference in 20 file(s).

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Allison Randal <allison@lohutok.net>
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Cc: linux-spdx@vger.kernel.org
Link: https://lkml.kernel.org/r/20190520170858.552543146@linutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Thomas Gleixner and committed by
Greg Kroah-Hartman
af1a8899 62810dbd

+20 -177
+1 -9
arch/alpha/include/asm/xor.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 1 2 /* 2 3 * include/asm-alpha/xor.h 3 4 * 4 5 * Optimized RAID-5 checksumming functions for alpha EV5 and EV6 5 - * 6 - * This program is free software; you can redistribute it and/or modify 7 - * it under the terms of the GNU General Public License as published by 8 - * the Free Software Foundation; either version 2, or (at your option) 9 - * any later version. 10 - * 11 - * You should have received a copy of the GNU General Public License 12 - * (for example /usr/src/linux/COPYING); if not, write to the Free 13 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 14 6 */ 15 7 16 8 extern void xor_alpha_2(unsigned long, unsigned long *, unsigned long *);
+1 -9
arch/ia64/include/asm/xor.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 1 2 /* 2 3 * Optimized RAID-5 checksumming functions for IA-64. 3 - * 4 - * This program is free software; you can redistribute it and/or modify 5 - * it under the terms of the GNU General Public License as published by 6 - * the Free Software Foundation; either version 2, or (at your option) 7 - * any later version. 8 - * 9 - * You should have received a copy of the GNU General Public License 10 - * (for example /usr/src/linux/COPYING); if not, write to the Free 11 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 12 4 */ 13 5 14 6
+1 -9
arch/ia64/lib/xor.S
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 1 2 /* 2 3 * arch/ia64/lib/xor.S 3 4 * 4 5 * Optimized RAID-5 checksumming functions for IA-64. 5 - * 6 - * This program is free software; you can redistribute it and/or modify 7 - * it under the terms of the GNU General Public License as published by 8 - * the Free Software Foundation; either version 2, or (at your option) 9 - * any later version. 10 - * 11 - * You should have received a copy of the GNU General Public License 12 - * (for example /usr/src/linux/COPYING); if not, write to the Free 13 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 14 6 */ 15 7 16 8 #include <asm/asmmacro.h>
+1 -9
arch/sparc/include/asm/xor_32.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 1 2 /* 2 3 * include/asm/xor.h 3 4 * 4 5 * Optimized RAID-5 checksumming functions for 32-bit Sparc. 5 - * 6 - * This program is free software; you can redistribute it and/or modify 7 - * it under the terms of the GNU General Public License as published by 8 - * the Free Software Foundation; either version 2, or (at your option) 9 - * any later version. 10 - * 11 - * You should have received a copy of the GNU General Public License 12 - * (for example /usr/src/linux/COPYING); if not, write to the Free 13 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 14 6 */ 15 7 16 8 /*
+1 -9
arch/sparc/include/asm/xor_64.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 1 2 /* 2 3 * include/asm/xor.h 3 4 * ··· 8 7 * 9 8 * Copyright (C) 1997, 1999 Jakub Jelinek (jj@ultra.linux.cz) 10 9 * Copyright (C) 2006 David S. Miller <davem@davemloft.net> 11 - * 12 - * This program is free software; you can redistribute it and/or modify 13 - * it under the terms of the GNU General Public License as published by 14 - * the Free Software Foundation; either version 2, or (at your option) 15 - * any later version. 16 - * 17 - * You should have received a copy of the GNU General Public License 18 - * (for example /usr/src/linux/COPYING); if not, write to the Free 19 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 10 */ 21 11 22 12 #include <asm/spitfire.h>
+1 -9
arch/x86/include/asm/xor.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 1 2 #ifndef _ASM_X86_XOR_H 2 3 #define _ASM_X86_XOR_H 3 4 4 5 /* 5 6 * Optimized RAID-5 checksumming functions for SSE. 6 - * 7 - * This program is free software; you can redistribute it and/or modify 8 - * it under the terms of the GNU General Public License as published by 9 - * the Free Software Foundation; either version 2, or (at your option) 10 - * any later version. 11 - * 12 - * You should have received a copy of the GNU General Public License 13 - * (for example /usr/src/linux/COPYING); if not, write to the Free 14 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 15 7 */ 16 8 17 9 /*
+1 -9
arch/x86/include/asm/xor_32.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 1 2 #ifndef _ASM_X86_XOR_32_H 2 3 #define _ASM_X86_XOR_32_H 3 4 4 5 /* 5 6 * Optimized RAID-5 checksumming functions for MMX. 6 - * 7 - * This program is free software; you can redistribute it and/or modify 8 - * it under the terms of the GNU General Public License as published by 9 - * the Free Software Foundation; either version 2, or (at your option) 10 - * any later version. 11 - * 12 - * You should have received a copy of the GNU General Public License 13 - * (for example /usr/src/linux/COPYING); if not, write to the Free 14 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 15 7 */ 16 8 17 9 /*
+1 -9
crypto/xor.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * xor.c : Multiple Devices driver for Linux 3 4 * ··· 6 5 * Ingo Molnar, Matti Aarnio, Jakub Jelinek, Richard Henderson. 7 6 * 8 7 * Dispatch optimized RAID-5 checksumming functions. 9 - * 10 - * This program is free software; you can redistribute it and/or modify 11 - * it under the terms of the GNU General Public License as published by 12 - * the Free Software Foundation; either version 2, or (at your option) 13 - * any later version. 14 - * 15 - * You should have received a copy of the GNU General Public License 16 - * (for example /usr/src/linux/COPYING); if not, write to the Free 17 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 18 8 */ 19 9 20 10 #define BH_TRACE 0
+1 -9
drivers/ide/ide-pnp.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * This file provides autodetection for ISA PnP IDE interfaces. 3 4 * It was tested with "ESS ES1868 Plug and Play AudioDrive" IDE interface. 4 5 * 5 6 * Copyright (C) 2000 Andrey Panin <pazke@donpac.ru> 6 - * 7 - * This program is free software; you can redistribute it and/or modify 8 - * it under the terms of the GNU General Public License as published by 9 - * the Free Software Foundation; either version 2, or (at your option) 10 - * any later version. 11 - * 12 - * You should have received a copy of the GNU General Public License 13 - * (for example /usr/src/linux/COPYING); if not, write to the Free 14 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 15 7 */ 16 8 17 9 #include <linux/init.h>
+1 -10
drivers/md/md-faulty.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * faulty.c : Multiple Devices driver for Linux 3 4 * 4 5 * Copyright (C) 2004 Neil Brown 5 6 * 6 7 * fautly-device-simulator personality for md 7 - * 8 - * 9 - * This program is free software; you can redistribute it and/or modify 10 - * it under the terms of the GNU General Public License as published by 11 - * the Free Software Foundation; either version 2, or (at your option) 12 - * any later version. 13 - * 14 - * You should have received a copy of the GNU General Public License 15 - * (for example /usr/src/linux/COPYING); if not, write to the Free 16 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 17 8 */ 18 9 19 10
+1 -8
drivers/md/md-linear.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 linear.c : Multiple Devices driver for Linux 3 4 Copyright (C) 1994-96 Marc ZYNGIER ··· 7 6 8 7 Linear mode management functions. 9 8 10 - This program is free software; you can redistribute it and/or modify 11 - it under the terms of the GNU General Public License as published by 12 - the Free Software Foundation; either version 2, or (at your option) 13 - any later version. 14 - 15 - You should have received a copy of the GNU General Public License 16 - (for example /usr/src/linux/COPYING); if not, write to the Free 17 - Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 18 9 */ 19 10 20 11 #include <linux/blkdev.h>
+1 -9
drivers/md/md-multipath.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * multipath.c : Multiple Devices driver for Linux 3 4 * ··· 9 8 * MULTIPATH management functions. 10 9 * 11 10 * derived from raid1.c. 12 - * 13 - * This program is free software; you can redistribute it and/or modify 14 - * it under the terms of the GNU General Public License as published by 15 - * the Free Software Foundation; either version 2, or (at your option) 16 - * any later version. 17 - * 18 - * You should have received a copy of the GNU General Public License 19 - * (for example /usr/src/linux/COPYING); if not, write to the Free 20 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 21 11 */ 22 12 23 13 #include <linux/blkdev.h>
+1 -8
drivers/md/md.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 md.c : Multiple Devices driver for Linux 3 4 Copyright (C) 1998, 1999, 2000 Ingo Molnar ··· 23 22 - persistent bitmap code 24 23 Copyright (C) 2003-2004, Paul Clements, SteelEye Technology, Inc. 25 24 26 - This program is free software; you can redistribute it and/or modify 27 - it under the terms of the GNU General Public License as published by 28 - the Free Software Foundation; either version 2, or (at your option) 29 - any later version. 30 - 31 - You should have received a copy of the GNU General Public License 32 - (for example /usr/src/linux/COPYING); if not, write to the Free 33 - Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 34 25 35 26 Errors, Warnings, etc. 36 27 Please use:
+1 -8
drivers/md/md.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 1 2 /* 2 3 md.h : kernel internal structure of the Linux MD driver 3 4 Copyright (C) 1996-98 Ingo Molnar, Gadi Oxman 4 5 5 - This program is free software; you can redistribute it and/or modify 6 - it under the terms of the GNU General Public License as published by 7 - the Free Software Foundation; either version 2, or (at your option) 8 - any later version. 9 - 10 - You should have received a copy of the GNU General Public License 11 - (for example /usr/src/linux/COPYING); if not, write to the Free 12 - Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 13 6 */ 14 7 15 8 #ifndef _MD_MD_H
+1 -8
drivers/md/raid0.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 raid0.c : Multiple Devices driver for Linux 3 4 Copyright (C) 1994-96 Marc ZYNGIER ··· 8 7 9 8 RAID-0 management functions. 10 9 11 - This program is free software; you can redistribute it and/or modify 12 - it under the terms of the GNU General Public License as published by 13 - the Free Software Foundation; either version 2, or (at your option) 14 - any later version. 15 - 16 - You should have received a copy of the GNU General Public License 17 - (for example /usr/src/linux/COPYING); if not, write to the Free 18 - Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 19 10 */ 20 11 21 12 #include <linux/blkdev.h>
+1 -9
drivers/md/raid1.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * raid1.c : Multiple Devices driver for Linux 3 4 * ··· 21 20 * 22 21 * Additions to bitmap code, (C) 2003-2004 Paul Clements, SteelEye Technology: 23 22 * - persistent bitmap code 24 - * 25 - * This program is free software; you can redistribute it and/or modify 26 - * it under the terms of the GNU General Public License as published by 27 - * the Free Software Foundation; either version 2, or (at your option) 28 - * any later version. 29 - * 30 - * You should have received a copy of the GNU General Public License 31 - * (for example /usr/src/linux/COPYING); if not, write to the Free 32 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 33 23 */ 34 24 35 25 #include <linux/slab.h>
+1 -10
drivers/md/raid10.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * raid10.c : Multiple Devices driver for Linux 3 4 * ··· 7 6 * RAID-10 support for md. 8 7 * 9 8 * Base on code in raid1.c. See raid1.c for further copyright information. 10 - * 11 - * 12 - * This program is free software; you can redistribute it and/or modify 13 - * it under the terms of the GNU General Public License as published by 14 - * the Free Software Foundation; either version 2, or (at your option) 15 - * any later version. 16 - * 17 - * You should have received a copy of the GNU General Public License 18 - * (for example /usr/src/linux/COPYING); if not, write to the Free 19 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 9 */ 21 10 22 11 #include <linux/slab.h>
+1 -9
drivers/md/raid5.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * raid5.c : Multiple Devices driver for Linux 3 4 * Copyright (C) 1996, 1997 Ingo Molnar, Miguel de Icaza, Gadi Oxman ··· 8 7 * RAID-4/5/6 management functions. 9 8 * Thanks to Penguin Computing for making the RAID-6 development possible 10 9 * by donating a test server! 11 - * 12 - * This program is free software; you can redistribute it and/or modify 13 - * it under the terms of the GNU General Public License as published by 14 - * the Free Software Foundation; either version 2, or (at your option) 15 - * any later version. 16 - * 17 - * You should have received a copy of the GNU General Public License 18 - * (for example /usr/src/linux/COPYING); if not, write to the Free 19 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 10 */ 21 11 22 12 /*
+1 -9
include/asm-generic/xor.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 1 2 /* 2 3 * include/asm-generic/xor.h 3 4 * 4 5 * Generic optimized RAID-5 checksumming functions. 5 - * 6 - * This program is free software; you can redistribute it and/or modify 7 - * it under the terms of the GNU General Public License as published by 8 - * the Free Software Foundation; either version 2, or (at your option) 9 - * any later version. 10 - * 11 - * You should have received a copy of the GNU General Public License 12 - * (for example /usr/src/linux/COPYING); if not, write to the Free 13 - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 14 6 */ 15 7 16 8 #include <linux/prefetch.h>
+1 -8
include/linux/raid/md_u.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 1 2 /* 2 3 md_u.h : user <=> kernel API between Linux raidtools and RAID drivers 3 4 Copyright (C) 1998 Ingo Molnar 4 5 5 - This program is free software; you can redistribute it and/or modify 6 - it under the terms of the GNU General Public License as published by 7 - the Free Software Foundation; either version 2, or (at your option) 8 - any later version. 9 - 10 - You should have received a copy of the GNU General Public License 11 - (for example /usr/src/linux/COPYING); if not, write to the Free 12 - Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 13 6 */ 14 7 #ifndef _MD_U_H 15 8 #define _MD_U_H