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=-9.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED 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 56D77C072B5 for ; Fri, 24 May 2019 13:19:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 312B02075E for ; Fri, 24 May 2019 13:19:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2391436AbfEXNTY (ORCPT ); Fri, 24 May 2019 09:19:24 -0400 Received: from mail-vs1-f65.google.com ([209.85.217.65]:41443 "EHLO mail-vs1-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2391124AbfEXNTX (ORCPT ); Fri, 24 May 2019 09:19:23 -0400 Received: by mail-vs1-f65.google.com with SMTP id w19so5701469vsw.8 for ; Fri, 24 May 2019 06:19:22 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=9ShdqZ+9hRDKfK/clFjj+vwPaIKQdgnx/BMbgLn7pUI=; b=c1sx8Tar27gZ9YKwSHDTChGO/gN60VqT9wdL1E3RxXlqkQZjR1MFeEweoGuEFSUbKI J3JPLCj8Ua7lU3Jt9qgfC27b36OazaqojgYcwTKjKBaNbZA6nM/8O6mxapNS0GrrJ6+m edqGqLECq7HWs0Dmowe15bX+Kh7xONp7EBHAUR2Q/gqwsSXDMKgDIpF0/ns4XXqzjvfN Jqooy+3wJa1yRIDSdIB4KZV6XLtGpuAsYnC2ayjfAq0vpSKC2Ot5oR2auNKhVZK5UQYB 8UsGgxNzBUibPqge8w6weIWf0YAud2jK6R91JWDIQFIF1Z501vD0yfiIitjfklIfFE9W xwCg== X-Gm-Message-State: APjAAAWiygvPQRHKcGaE1RcPRc1utv+gkcpSGH1SOwiOscgIKZGyvVIt OzShlE4U5hMmsxbY/wDLNsxMms6xki5eKlFW6DGQwt7G X-Google-Smtp-Source: APXvYqxVgFS+gVG7t/uDgn0RZ2xPgRbb1NA3wCWN0JAJB8OjDPEnGiB4UjEMEaUbmN2S/cuFVtBs5t0NIGTdn4lPgg0= X-Received: by 2002:a67:ea0d:: with SMTP id g13mr4502359vso.137.1558703962268; Fri, 24 May 2019 06:19:22 -0700 (PDT) MIME-Version: 1.0 References: <20190524100345.776412942@linutronix.de> <20190524100844.465381181@linutronix.de> In-Reply-To: <20190524100844.465381181@linutronix.de> From: Richard Fontana Date: Fri, 24 May 2019 09:19:11 -0400 Message-ID: Subject: Re: [Batch 6 - patch 17/25] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 142 To: Thomas Gleixner Cc: linux-spdx@vger.kernel.org Content-Type: text/plain; charset="UTF-8" Sender: linux-spdx-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spdx@vger.kernel.org Reviewed-by: Richard Fontana On Fri, May 24, 2019 at 6:12 AM Thomas Gleixner wrote: > > From: Thomas Gleixner tglx@linutronix.de > > 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 inc 675 mass ave cambridge ma 02139 usa > either version 2 of the license or at your option any later version > incorporated herein by reference > > extracted by the scancode license scanner the SPDX license identifier > > GPL-2.0-or-later > > has been chosen to replace the boilerplate/reference in 4 file(s). > > Signed-off-by: Thomas Gleixner > > --- > https://git.kernel.org/pub/scm/linux/kernel/git/tglx/linux-spdx.git/commit/?h=batch6&id=2b4e6cfd61c1 > --- > arch/x86/kernel/cpuid.c | 7 +------ > arch/x86/kernel/msr.c | 7 +------ > fs/isofs/compress.c | 7 +------ > fs/isofs/zisofs.h | 7 +------ > 4 files changed, 4 insertions(+), 24 deletions(-) > > --- a/arch/x86/kernel/cpuid.c > +++ b/arch/x86/kernel/cpuid.c > @@ -1,13 +1,8 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > /* ----------------------------------------------------------------------- * > * > * Copyright 2000-2008 H. Peter Anvin - All Rights Reserved > * > - * 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, Inc., 675 Mass Ave, Cambridge MA 02139, > - * USA; either version 2 of the License, or (at your option) any later > - * version; incorporated herein by reference. > - * > * ----------------------------------------------------------------------- */ > > /* > --- a/arch/x86/kernel/msr.c > +++ b/arch/x86/kernel/msr.c > @@ -1,14 +1,9 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > /* ----------------------------------------------------------------------- * > * > * Copyright 2000-2008 H. Peter Anvin - All Rights Reserved > * Copyright 2009 Intel Corporation; author: H. Peter Anvin > * > - * 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, Inc., 675 Mass Ave, Cambridge MA 02139, > - * USA; either version 2 of the License, or (at your option) any later > - * version; incorporated herein by reference. > - * > * ----------------------------------------------------------------------- */ > > /* > --- a/fs/isofs/compress.c > +++ b/fs/isofs/compress.c > @@ -1,13 +1,8 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > /* -*- linux-c -*- ------------------------------------------------------- * > * > * Copyright 2001 H. Peter Anvin - All Rights Reserved > * > - * 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, Inc., 675 Mass Ave, Cambridge MA 02139, > - * USA; either version 2 of the License, or (at your option) any later > - * version; incorporated herein by reference. > - * > * ----------------------------------------------------------------------- */ > > /* > --- a/fs/isofs/zisofs.h > +++ b/fs/isofs/zisofs.h > @@ -1,13 +1,8 @@ > +/* SPDX-License-Identifier: GPL-2.0-or-later */ > /* ----------------------------------------------------------------------- * > * > * Copyright 2001 H. Peter Anvin - All Rights Reserved > * > - * 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, Inc., 675 Mass Ave, Cambridge MA 02139, > - * USA; either version 2 of the License, or (at your option) any later > - * version; incorporated herein by reference. > - * > * ----------------------------------------------------------------------- */ > > /* > > -- Richard Fontana Senior Commercial Counsel Red Hat, Inc.