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

treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 222

Based on 1 normalized pattern(s):

license gplv2 this program is free software you can redistribute it
and or modify it under the terms and conditions of the gnu general
public license version 2 as published by the free software
foundation this program is distributed in the hope it will be useful
but without any warranty without even the implied warranty of
merchantability or fitness for a particular purpose see the gnu
general public license for more details you should have received a
copy of the gnu general public license along with this program if
not write to the free software foundation inc 51 franklin st fifth
floor boston ma 02110 1301 usa

extracted by the scancode license scanner the SPDX license identifier

GPL-2.0-only

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

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Alexios Zavras <alexios.zavras@intel.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/20190528171440.038486796@linutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Thomas Gleixner and committed by
Greg Kroah-Hartman
fc44ef5a f0aa4fa4

+4 -60
+1 -15
tools/testing/selftests/net/psock_fanout.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-only 1 2 /* 2 3 * Copyright 2013 Google Inc. 3 4 * Author: Willem de Bruijn (willemb@google.com) ··· 25 24 * 26 25 * Todo: 27 26 * - functionality: PACKET_FANOUT_FLAG_DEFRAG 28 - * 29 - * License (GPLv2): 30 - * 31 - * This program is free software; you can redistribute it and/or modify it 32 - * under the terms and conditions of the GNU General Public License, 33 - * version 2, as published by the Free Software Foundation. 34 - * 35 - * This program is distributed in the hope it will be useful, but WITHOUT 36 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 37 - * FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for 38 - * more details. 39 - * 40 - * You should have received a copy of the GNU General Public License along with 41 - * this program; if not, write to the Free Software Foundation, Inc., 42 - * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 43 27 */ 44 28 45 29 #define _GNU_SOURCE /* for sched_setaffinity */
+1 -15
tools/testing/selftests/net/psock_lib.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-only */ 1 2 /* 2 3 * Copyright 2013 Google Inc. 3 4 * Author: Willem de Bruijn <willemb@google.com> 4 5 * Daniel Borkmann <dborkman@redhat.com> 5 - * 6 - * License (GPLv2): 7 - * 8 - * This program is free software; you can redistribute it and/or modify it 9 - * under the terms and conditions of the GNU General Public License, 10 - * version 2, as published by the Free Software Foundation. 11 - * 12 - * This program is distributed in the hope it will be useful, but WITHOUT 13 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 14 - * FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for 15 - * more details. 16 - * 17 - * You should have received a copy of the GNU General Public License along with 18 - * this program; if not, write to the Free Software Foundation, Inc., 19 - * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 20 6 */ 21 7 22 8 #ifndef PSOCK_LIB_H
+1 -15
tools/testing/selftests/net/psock_tpacket.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-only 1 2 /* 2 3 * Copyright 2013 Red Hat, Inc. 3 4 * Author: Daniel Borkmann <dborkman@redhat.com> ··· 20 19 * - TPACKET_V1: RX_RING, TX_RING 21 20 * - TPACKET_V2: RX_RING, TX_RING 22 21 * - TPACKET_V3: RX_RING 23 - * 24 - * License (GPLv2): 25 - * 26 - * This program is free software; you can redistribute it and/or modify it 27 - * under the terms and conditions of the GNU General Public License, 28 - * version 2, as published by the Free Software Foundation. 29 - * 30 - * This program is distributed in the hope it will be useful, but WITHOUT 31 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 32 - * FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for 33 - * more details. 34 - * 35 - * You should have received a copy of the GNU General Public License along with 36 - * this program; if not, write to the Free Software Foundation, Inc., 37 - * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 38 22 */ 39 23 40 24 #include <stdio.h>
+1 -15
tools/testing/selftests/net/tcp_mmap.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-only 1 2 /* 2 3 * Copyright 2018 Google Inc. 3 4 * Author: Eric Dumazet (edumazet@google.com) ··· 45 44 * cpu usage user:0.046 sys:3.559, 110.016 usec per MB, 65529 c-switches 46 45 * received 32768 MB (99.9939 % mmap'ed) in 7.43764 s, 36.9577 Gbit 47 46 * cpu usage user:0.035 sys:3.467, 106.873 usec per MB, 65530 c-switches 48 - * 49 - * License (GPLv2): 50 - * 51 - * This program is free software; you can redistribute it and/or modify it 52 - * under the terms and conditions of the GNU General Public License, 53 - * version 2, as published by the Free Software Foundation. 54 - * 55 - * This program is distributed in the hope it will be useful, but WITHOUT 56 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 57 - * FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for 58 - * more details. 59 - * 60 - * You should have received a copy of the GNU General Public License along with 61 - * this program; if not, write to the Free Software Foundation, Inc., 62 - * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 63 47 */ 64 48 #define _GNU_SOURCE 65 49 #include <pthread.h>