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 9EC6FC77B73 for ; Mon, 22 May 2023 09:53:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232382AbjEVJxS (ORCPT ); Mon, 22 May 2023 05:53:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44232 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231872AbjEVJxM (ORCPT ); Mon, 22 May 2023 05:53:12 -0400 Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E21DAE9; Mon, 22 May 2023 02:53:10 -0700 (PDT) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 62355219CD; Mon, 22 May 2023 09:53:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1684749189; h=from:from:reply-to: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=4tAwcv/0opqfAzTbZ8LE0GBtCVCfivuLmJ0kcePdhuY=; b=s3s3DclJNCwaeJ9NFCQUFHdp4pkETcTo5YzWGy+WPgte0mb7JqT3ABd+YPspWJ8hSvwj4G wqLi9x/0LsNH7GuKx8EJjSRwk5xkL1KasUR/OsHy+nxarb10mDlYRCUV4s3hRvpL6SclWA sa/AhHPyzQebet5WBez2jG5AcWW+I38= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1684749189; h=from:from:reply-to: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=4tAwcv/0opqfAzTbZ8LE0GBtCVCfivuLmJ0kcePdhuY=; b=fk5AIWrEN2Pty919DCwiJny2xQwClVGTKKR2gDmHjB/c4VM/kEgyk6xuc22QrleutCMwe1 Vl8HZucOtpm8bzCQ== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 4964313336; Mon, 22 May 2023 09:53:09 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 9i7gEYU7a2QJfwAAMHmgww (envelope-from ); Mon, 22 May 2023 09:53:09 +0000 Received: by quack3.suse.cz (Postfix, from userid 1000) id A9ED5A075B; Mon, 22 May 2023 11:53:08 +0200 (CEST) Date: Mon, 22 May 2023 11:53:08 +0200 From: Jan Kara To: Bagas Sanjaya Cc: Linux SPDX Licenses , Linux Kernel Mailing List , Linux ARM , Linux Kernel Actions , Linux Memory Management List , Jan Kara , Andreas =?utf-8?Q?F=C3=A4rber?= , Manivannan Sadhasivam , Christoph Hellwig , Andrew Morton , Diederik de Haas , Kate Stewart , Philippe Ombredanne , Greg Kroah-Hartman Subject: Re: [PATCH v2 0/2] SPDX conversion from UDF Message-ID: <20230522095308.ypwi5txynkbvnfw7@quack3> References: <20230522005434.22133-1-bagasdotme@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230522005434.22133-1-bagasdotme@gmail.com> Precedence: bulk List-ID: X-Mailing-List: linux-spdx@vger.kernel.org On Mon 22-05-23 07:54:33, Bagas Sanjaya wrote: > This small SPDX conversion series targets UDF file system, which is > splitted from v2 of my SPDX conversion series that is triggered by > Didi's GPL full name fixes [1]. It is done to ease review. > > All boilerplates in fs/udf/ is converted, except fs/udf/ecma_167.h. > The latter file apparently looks like 2-clause BSD Source-Code > license, yet the second clause is from third clause of 3-Clause BSD. > This custom license can't be expressed satisfiably in SPDX license > identifier, hence the file doesn't get converted. > > This series is based on mm-nonmm-unstable branch. > > Changes since v1 [2]: > * Correct SPDX tag for LGPL (correct spdxcheck warning) > > [1]: https://lore.kernel.org/linux-spdx/20230512100620.36807-1-bagasdotme@gmail.com/ > [2]: https://lore.kernel.org/linux-mm/20230517083344.1090863-1-bagasdotme@gmail.com/ > > Bagas Sanjaya (2): > fs: udf: Replace GPL 2.0 boilerplate license notice with SPDX > identifier > fs: udf: udftime: Replace LGPL boilerplate with SPDX identifier The patches look good to me. So unless someone objects in a few days, I'll queue them into my tree. Thanks! Honza > > fs/udf/balloc.c | 6 +----- > fs/udf/dir.c | 6 +----- > fs/udf/directory.c | 6 +----- > fs/udf/file.c | 6 +----- > fs/udf/ialloc.c | 6 +----- > fs/udf/inode.c | 6 +----- > fs/udf/lowlevel.c | 6 +----- > fs/udf/misc.c | 6 +----- > fs/udf/namei.c | 6 +----- > fs/udf/partition.c | 6 +----- > fs/udf/super.c | 6 +----- > fs/udf/symlink.c | 6 +----- > fs/udf/truncate.c | 6 +----- > fs/udf/udftime.c | 18 ++---------------- > fs/udf/unicode.c | 6 +----- > 15 files changed, 16 insertions(+), 86 deletions(-) > > > base-commit: 7e61b33831bc7680b24bc04af9ed9c1553dac406 > > Range-diff against v1: > > 1: 442194d17ed043 = 1: 30fb64a215be1c fs: udf: Replace GPL 2.0 boilerplate license notice with SPDX identifier > 2: ccb407446ab324 ! 2: f7cfeaa5cec879 fs: udf: udftime: Replace LGPL boilerplate with SPDX identifier > @@ Commit message > > ## fs/udf/udftime.c ## > @@ > -+// SPDX-License-Identifier: LGPL-2.0-or-later > ++// SPDX-License-Identifier: LGPL-2.0+ > /* Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. > This file is part of the GNU C Library. > - Contributed by Paul Eggert (eggert@twinsun.com). > > -- > An old man doll... just what I always wanted! - Clara > -- Jan Kara SUSE Labs, CR 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id DB698C7EE26 for ; Mon, 22 May 2023 09:53:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=UQYOUTqJig310kmzZ5+QyKgiBEKuRMT4uAFuRYMmw20=; b=GUifFNXz8DyyQp YN7SCPzucYe5C8D90RzscaJuG/7y4OyjU0bbrOOFNqMkJYu3WGWP2FYUt7+YzTqmNOpEoiRRHEuGd nnVaqhHsjyh9nsZ1hGjHJ1pLHgiIWQJtuHdGJPA4/6id/cnaZnwxJrn++gM6aN84wCAPi3TqBLd9s Kvtvkj6K3BZ8zNodWwp2721UQ3zDIGV89uBGJ+ybNx5STSl5tDUmjo4TaacuZt7EFARpl7noUSEN/ VjfkXFHiF5C+H8fW5ipn/CHjlSDw3WMoAvBiCZM9HBd+PQJ7AIrqmz/EOXbIo0yw3tLylI4EEETnE ar9v3VlFm2C4FWolzQCw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1q12E9-005v6l-0u; Mon, 22 May 2023 09:53:17 +0000 Received: from smtp-out1.suse.de ([195.135.220.28]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1q12E5-005v5S-2i; Mon, 22 May 2023 09:53:15 +0000 Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 62355219CD; Mon, 22 May 2023 09:53:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1684749189; h=from:from:reply-to: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=4tAwcv/0opqfAzTbZ8LE0GBtCVCfivuLmJ0kcePdhuY=; b=s3s3DclJNCwaeJ9NFCQUFHdp4pkETcTo5YzWGy+WPgte0mb7JqT3ABd+YPspWJ8hSvwj4G wqLi9x/0LsNH7GuKx8EJjSRwk5xkL1KasUR/OsHy+nxarb10mDlYRCUV4s3hRvpL6SclWA sa/AhHPyzQebet5WBez2jG5AcWW+I38= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1684749189; h=from:from:reply-to: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=4tAwcv/0opqfAzTbZ8LE0GBtCVCfivuLmJ0kcePdhuY=; b=fk5AIWrEN2Pty919DCwiJny2xQwClVGTKKR2gDmHjB/c4VM/kEgyk6xuc22QrleutCMwe1 Vl8HZucOtpm8bzCQ== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 4964313336; Mon, 22 May 2023 09:53:09 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 9i7gEYU7a2QJfwAAMHmgww (envelope-from ); Mon, 22 May 2023 09:53:09 +0000 Received: by quack3.suse.cz (Postfix, from userid 1000) id A9ED5A075B; Mon, 22 May 2023 11:53:08 +0200 (CEST) Date: Mon, 22 May 2023 11:53:08 +0200 From: Jan Kara To: Bagas Sanjaya Cc: Linux SPDX Licenses , Linux Kernel Mailing List , Linux ARM , Linux Kernel Actions , Linux Memory Management List , Jan Kara , Andreas =?utf-8?Q?F=C3=A4rber?= , Manivannan Sadhasivam , Christoph Hellwig , Andrew Morton , Diederik de Haas , Kate Stewart , Philippe Ombredanne , Greg Kroah-Hartman Subject: Re: [PATCH v2 0/2] SPDX conversion from UDF Message-ID: <20230522095308.ypwi5txynkbvnfw7@quack3> References: <20230522005434.22133-1-bagasdotme@gmail.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20230522005434.22133-1-bagasdotme@gmail.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230522_025314_156306_CD63B3A0 X-CRM114-Status: GOOD ( 18.73 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon 22-05-23 07:54:33, Bagas Sanjaya wrote: > This small SPDX conversion series targets UDF file system, which is > splitted from v2 of my SPDX conversion series that is triggered by > Didi's GPL full name fixes [1]. It is done to ease review. > > All boilerplates in fs/udf/ is converted, except fs/udf/ecma_167.h. > The latter file apparently looks like 2-clause BSD Source-Code > license, yet the second clause is from third clause of 3-Clause BSD. > This custom license can't be expressed satisfiably in SPDX license > identifier, hence the file doesn't get converted. > > This series is based on mm-nonmm-unstable branch. > > Changes since v1 [2]: > * Correct SPDX tag for LGPL (correct spdxcheck warning) > > [1]: https://lore.kernel.org/linux-spdx/20230512100620.36807-1-bagasdotme@gmail.com/ > [2]: https://lore.kernel.org/linux-mm/20230517083344.1090863-1-bagasdotme@gmail.com/ > > Bagas Sanjaya (2): > fs: udf: Replace GPL 2.0 boilerplate license notice with SPDX > identifier > fs: udf: udftime: Replace LGPL boilerplate with SPDX identifier The patches look good to me. So unless someone objects in a few days, I'll queue them into my tree. Thanks! Honza > > fs/udf/balloc.c | 6 +----- > fs/udf/dir.c | 6 +----- > fs/udf/directory.c | 6 +----- > fs/udf/file.c | 6 +----- > fs/udf/ialloc.c | 6 +----- > fs/udf/inode.c | 6 +----- > fs/udf/lowlevel.c | 6 +----- > fs/udf/misc.c | 6 +----- > fs/udf/namei.c | 6 +----- > fs/udf/partition.c | 6 +----- > fs/udf/super.c | 6 +----- > fs/udf/symlink.c | 6 +----- > fs/udf/truncate.c | 6 +----- > fs/udf/udftime.c | 18 ++---------------- > fs/udf/unicode.c | 6 +----- > 15 files changed, 16 insertions(+), 86 deletions(-) > > > base-commit: 7e61b33831bc7680b24bc04af9ed9c1553dac406 > > Range-diff against v1: > > 1: 442194d17ed043 = 1: 30fb64a215be1c fs: udf: Replace GPL 2.0 boilerplate license notice with SPDX identifier > 2: ccb407446ab324 ! 2: f7cfeaa5cec879 fs: udf: udftime: Replace LGPL boilerplate with SPDX identifier > @@ Commit message > > ## fs/udf/udftime.c ## > @@ > -+// SPDX-License-Identifier: LGPL-2.0-or-later > ++// SPDX-License-Identifier: LGPL-2.0+ > /* Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. > This file is part of the GNU C Library. > - Contributed by Paul Eggert (eggert@twinsun.com). > > -- > An old man doll... just what I always wanted! - Clara > -- Jan Kara SUSE Labs, CR _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel