From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 020B4C04AB4 for ; Sun, 19 May 2019 17:31:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CF08E204EC for ; Sun, 19 May 2019 17:31:07 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="key not found in DNS" (0-bit key) header.d=jilayne.com header.i=@jilayne.com header.b="hB4sUYQV" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726866AbfESRbH (ORCPT ); Sun, 19 May 2019 13:31:07 -0400 Received: from mx2-c1.supremebox.com ([198.23.53.234]:35683 "EHLO mx1.supremebox.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725769AbfESRbH (ORCPT ); Sun, 19 May 2019 13:31:07 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=jilayne.com ; s=default; h=To:References:Message-Id:Content-Transfer-Encoding:Cc:Date: In-Reply-To:From:Subject:Mime-Version:Content-Type:Sender:Reply-To:Content-ID :Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To: Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe :List-Post:List-Owner:List-Archive; bh=bYWIM/7e2OHDFC667roDC6jzti+WDsokf1M41NlExvo=; b=hB4sUYQVgEgSuVV7+hevUPGt+g y/Np4S9IvmNqcKSX/CWEuR8ejCz+imMkGgxDlZk1fhhFTBduhkkllH3CzvSa9C/eOKTYeOaTJ46qf IazxnvXCOBLX+QwhKq5blA7NzbbrHoIVeA8GIlcZ1lsndKfWaXlkRy63tThzBqXxWfgQ=; Received: from [67.164.173.226] (helo=[10.0.0.176]) by mx1.supremebox.com with esmtpa (Exim 4.89) (envelope-from ) id 1hSPeM-0007w5-Jw; Sun, 19 May 2019 17:31:06 +0000 Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 12.4 \(3445.104.8\)) Subject: Re: [patch 10/25] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 10 From: J Lovejoy In-Reply-To: <20190519154041.526489261@linutronix.de> Date: Sun, 19 May 2019 11:31:06 -0600 Cc: linux-spdx@vger.kernel.org Content-Transfer-Encoding: quoted-printable Message-Id: References: <20190519135130.462579320@linutronix.de> <20190519154041.526489261@linutronix.de> To: Thomas Gleixner X-Mailer: Apple Mail (2.3445.104.8) X-Sender-Ident-agJab5osgicCis: opensource@jilayne.com Sender: linux-spdx-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spdx@vger.kernel.org Reviewed-by: Jilayne Lovejoy > On May 19, 2019, at 7:51 AM, Thomas Gleixner = wrote: >=20 > Based on 1 normalized pattern(s): >=20 > licensed under the fsf s gnu public license v2 or later >=20 > extracted by the scancode license scanner the SPDX license identifier >=20 > GPL-2.0-or-later >=20 > has been chosen to replace the boilerplate/reference in 2 file(s). >=20 > Signed-off-by: Thomas Gleixner > --- > = https://git.kernel.org/pub/scm/linux/kernel/git/tglx/linux-spdx.git/commit= /?h=3Dstep2&id=3Deabb52974b15 > --- > include/linux/plist.h | 4 +--- > lib/plist.c | 3 +-- > 2 files changed, 2 insertions(+), 5 deletions(-) >=20 > --- a/include/linux/plist.h > +++ b/include/linux/plist.h > @@ -1,3 +1,4 @@ > +/* SPDX-License-Identifier: GPL-2.0-or-later */ > /* > * Descending-priority-sorted double-linked list > * > @@ -12,8 +13,6 @@ > * Simplifications of the original code by > * Oleg Nesterov > * > - * Licensed under the FSF's GNU Public License v2 or later. > - * > * Based on simple lists (include/linux/list.h). > * > * This is a priority-sorted list of nodes; each node has a > @@ -70,7 +69,6 @@ > * is lowest priority. > * > * No locking is done, up to the caller. > - * > */ > #ifndef _LINUX_PLIST_H_ > #define _LINUX_PLIST_H_ > --- a/lib/plist.c > +++ b/lib/plist.c > @@ -1,3 +1,4 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > /* > * lib/plist.c > * > @@ -14,8 +15,6 @@ > * Simplifications of the original code by > * Oleg Nesterov > * > - * Licensed under the FSF's GNU Public License v2 or later. > - * > * Based on simple lists (include/linux/list.h). > * > * This file contains the add / del functions which are considered to >=20 >=20