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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5004AC77B75 for ; Sat, 13 May 2023 00:17:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240711AbjEMARd (ORCPT ); Fri, 12 May 2023 20:17:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39704 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240657AbjEMARc (ORCPT ); Fri, 12 May 2023 20:17:32 -0400 Received: from out-41.mta1.migadu.com (out-41.mta1.migadu.com [95.215.58.41]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 376CC4EFF for ; Fri, 12 May 2023 17:17:28 -0700 (PDT) Date: Fri, 12 May 2023 20:17:23 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1683937047; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=ttMl3GoRsIQ0YRrQbLyOfzRqiL8QgIkkNBy0HJi+tP4=; b=Jlj8jvQrMzOj8HRaOclGGYRDE+ycviRq3z6G8f67Endeg3L2V1BLpLT3rP9PRqmPPUsotr bplaU/zH6tdzWWvuiET7LbTKrh0nvnnasSO5gT7hYLB7z5npiZVyuEzSiSuZfCwRHFytp+ /Ox3JZ5RVHFZAiBOriaJYG8xcd9f6CM= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Kent Overstreet To: Randy Dunlap Cc: Jan Engelhardt , linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-bcachefs@vger.kernel.org, Kent Overstreet , Peter Zijlstra , Ingo Molnar , Will Deacon , Waiman Long , Boqun Feng Subject: Re: [PATCH 04/32] locking: SIX locks (shared/intent/exclusive) Message-ID: References: <20230509165657.1735798-1-kent.overstreet@linux.dev> <20230509165657.1735798-5-kent.overstreet@linux.dev> <7233p553-861o-9772-n4nr-rr5424prq1r@vanv.qr> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Fri, May 12, 2023 at 04:49:04PM -0700, Randy Dunlap wrote: > > > On 5/12/23 16:26, Kent Overstreet wrote: > > On Sat, May 13, 2023 at 12:39:34AM +0200, Jan Engelhardt wrote: > >> > >> On Friday 2023-05-12 22:58, Kent Overstreet wrote: > >>> On Thu, May 11, 2023 at 02:14:08PM +0200, Jan Engelhardt wrote: > >>>>> +// SPDX-License-Identifier: GPL-2.0 > >>>> > >>>> The currently SPDX list only knows "GPL-2.0-only" or "GPL-2.0-or-later", > >>>> please edit. > >>> > >>> Where is that list? > >> > >> I just went to spdx.org and then chose "License List" from the > >> horizontal top bar menu. > > > > Do we have anything more official? Quick grep through the source tree > > says I'm following accepted usage. > > Documentation/process/license-rules.rst points to spdx.org for > further info. > > or LICENSES/preferred/GPL-2.0 contains this: > Valid-License-Identifier: GPL-2.0 > Valid-License-Identifier: GPL-2.0-only > Valid-License-Identifier: GPL-2.0+ > Valid-License-Identifier: GPL-2.0-or-later > SPDX-URL: https://spdx.org/licenses/GPL-2.0.html Thanks, I'll leave it at GPL-2.0 then.