From nobody Thu Apr 2 13:09:07 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7250CC04A95 for ; Sun, 25 Sep 2022 14:48:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231332AbiIYOr5 (ORCPT ); Sun, 25 Sep 2022 10:47:57 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49030 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230128AbiIYOrz (ORCPT ); Sun, 25 Sep 2022 10:47:55 -0400 Received: from smtp.smtpout.orange.fr (smtp05.smtpout.orange.fr [80.12.242.127]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BF24927B37 for ; Sun, 25 Sep 2022 07:47:54 -0700 (PDT) Received: from pop-os.home ([86.243.100.34]) by smtp.orange.fr with ESMTPA id cSv7o9OmcTyoucSv7olwZg; Sun, 25 Sep 2022 16:47:53 +0200 X-ME-Helo: pop-os.home X-ME-Auth: Y2hyaXN0b3BoZS5qYWlsbGV0QHdhbmFkb28uZnI= X-ME-Date: Sun, 25 Sep 2022 16:47:53 +0200 X-ME-IP: 86.243.100.34 From: Christophe JAILLET To: Peter Zijlstra , Ingo Molnar , Will Deacon , Waiman Long , Boqun Feng , Davidlohr Bueso Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET , Peter Zijlstra , Ingo Molnar Subject: [PATCH v2] locking/lock_events: Fix license version Date: Sun, 25 Sep 2022 16:47:47 +0200 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" SPDX-License-Identifier is GPL-2.0, but the license text states "either version 2 of the License, or (at your option) any later version." So update the SPDX-License-Identifier to GPL-2.0-or-later. Remove the license text as well. It is useless now. Fixes: ad53fa10fa9e ("locking/qspinlock_stat: Introduce generic lockevent_*= () counting APIs") Signed-off-by: Christophe JAILLET Acked-by: Waiman Long --- kernel/locking/lock_events.h | 12 +----------- kernel/locking/lock_events_list.h | 12 +----------- 2 files changed, 2 insertions(+), 22 deletions(-) diff --git a/kernel/locking/lock_events.h b/kernel/locking/lock_events.h index 8c7e7d25f09c..ba17c5be3c2b 100644 --- a/kernel/locking/lock_events.h +++ b/kernel/locking/lock_events.h @@ -1,15 +1,5 @@ -/* SPDX-License-Identifier: GPL-2.0 */ +/* SPDX-License-Identifier: GPL-2.0-or-later */ /* - * 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 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that 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. - * * Authors: Waiman Long */ =20 diff --git a/kernel/locking/lock_events_list.h b/kernel/locking/lock_events= _list.h index 97fb6f3f840a..7430ecd1fbc6 100644 --- a/kernel/locking/lock_events_list.h +++ b/kernel/locking/lock_events_list.h @@ -1,15 +1,5 @@ -/* SPDX-License-Identifier: GPL-2.0 */ +/* SPDX-License-Identifier: GPL-2.0-or-later */ /* - * 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 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that 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. - * * Authors: Waiman Long */ =20 --=20 2.34.1