From: "Darrick J. Wong" <djwong@kernel.org> To: Amir Goldstein <amir73il@gmail.com> Cc: Eryu Guan <guaneryu@gmail.com>, "Darrick J. Wong" <darrick.wong@oracle.com>, linux-xfs <linux-xfs@vger.kernel.org>, fstests <fstests@vger.kernel.org>, Eryu Guan <guan@eryu.me> Subject: Re: [PATCH 7/9] tools: add missing license tags to my scripts Date: Thu, 16 Sep 2021 14:44:56 -0700 [thread overview] Message-ID: <20210916214456.GA34846@magnolia> (raw) In-Reply-To: <CAOQ4uxh-_qHNRJF1Jn8A=NpFw4+8tneOMPTFE6B-Rj4ryWFeqw@mail.gmail.com> On Thu, Sep 16, 2021 at 09:06:38AM +0300, Amir Goldstein wrote: > On Thu, Sep 16, 2021 at 2:43 AM Darrick J. Wong <djwong@kernel.org> wrote: > > > > From: Darrick J. Wong <djwong@kernel.org> > > > > I forgot to add spdx license tags and copyright statements to some of > > the tools that I've contributed to fstests. Fix this to be explicit. > > > > Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> > > Signed-off-by: Darrick J. Wong <djwong@kernel.org> > > Is someone having an identity crisis? :-P No, just an IT crisis. @oracle.com is now exchange cloud, hence me moving to kernel.org mail forwarding. For licensing things I want to make it clear that someone from oracle is adding an oracle copyright statement. --D > Reviewed-by: Amir Goldstein <amir73il@gmail.com> > > > --- > > common/preamble | 21 ++++++++ > > doc/group-names.txt | 135 +++++++++++++++++++++++++++++++++++++++++++++++++++ > > tools/mkgroupfile | 33 +++++++++--- > > 3 files changed, 181 insertions(+), 8 deletions(-) > > create mode 100644 doc/group-names.txt > > > > > > diff > > --- > > tools/mkgroupfile | 4 +++- > > tools/mvtest | 5 ++++- > > tools/nextid | 4 +++- > > 3 files changed, 10 insertions(+), 3 deletions(-) > > > > > > diff --git a/tools/mkgroupfile b/tools/mkgroupfile > > index e4244507..634ec92c 100755 > > --- a/tools/mkgroupfile > > +++ b/tools/mkgroupfile > > @@ -1,5 +1,7 @@ > > #!/bin/bash > > - > > +# SPDX-License-Identifier: GPL-2.0 > > +# Copyright (c) 2021 Oracle. All Rights Reserved. > > +# > > # Generate a group file from the _begin_fstest call in each test. > > > > if [ "$1" = "--help" ]; then > > diff --git a/tools/mvtest b/tools/mvtest > > index 5088b45f..99b15414 100755 > > --- a/tools/mvtest > > +++ b/tools/mvtest > > @@ -1,6 +1,9 @@ > > #!/bin/sh > > +# SPDX-License-Identifier: GPL-2.0 > > +# Copyright (c) 2015 Oracle. All Rights Reserved. > > +# > > [...] > > > diff --git a/tools/nextid b/tools/nextid > > index 9507de29..9e31718c 100755 > > --- a/tools/nextid > > +++ b/tools/nextid > > @@ -1,5 +1,7 @@ > > #!/bin/bash > > - > > +# SPDX-License-Identifier: GPL-2.0 > > +# Copyright (c) 2015 Oracle. All Rights Reserved. > > +# > > I suppose 2015 is intentional? > Should it be 2015-2021? I have no idea what the legal implications > are, but anyway, very low probability that those scripts would end up > in litigation :) > > Thanks, > Amir.
next prev parent reply other threads:[~2021-09-16 21:44 UTC|newest] Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-09-15 23:42 [PATCHSET v3 0/9] fstests: document all test groups Darrick J. Wong 2021-09-15 23:42 ` [PATCH 1/9] ceph: re-tag copy_file_range as being in the copy_range group Darrick J. Wong 2021-09-16 5:51 ` Amir Goldstein 2021-09-15 23:42 ` [PATCH 2/9] xfs: move reflink tests into the clone group Darrick J. Wong 2021-09-16 5:51 ` Amir Goldstein 2021-09-15 23:42 ` [PATCH 3/9] xfs: fix incorrect fuzz test group name Darrick J. Wong 2021-09-16 5:52 ` Amir Goldstein 2021-09-15 23:42 ` [PATCH 4/9] btrfs: fix incorrect subvolume " Darrick J. Wong 2021-09-16 5:52 ` Amir Goldstein 2021-09-15 23:43 ` [PATCH 5/9] generic/631: change this test to use the 'whiteout' group Darrick J. Wong 2021-09-16 5:53 ` Amir Goldstein 2021-09-15 23:43 ` [PATCH 6/9] tools: make sure that test groups are described in the documentation Darrick J. Wong 2021-09-16 5:58 ` Amir Goldstein 2021-09-15 23:43 ` [PATCH 7/9] tools: add missing license tags to my scripts Darrick J. Wong 2021-09-16 6:06 ` Amir Goldstein 2021-09-16 21:44 ` Darrick J. Wong [this message] 2021-09-15 23:43 ` [PATCH 8/9] new: only allow documented test group names Darrick J. Wong 2021-09-16 6:10 ` Amir Goldstein 2021-09-15 23:43 ` [PATCH 9/9] new: don't allow new tests in group 'other' Darrick J. Wong 2021-09-16 6:40 ` Amir Goldstein 2021-09-16 22:53 ` Darrick J. Wong 2021-09-17 2:31 ` Amir Goldstein 2021-09-17 16:00 ` Darrick J. Wong
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210916214456.GA34846@magnolia \ --to=djwong@kernel.org \ --cc=amir73il@gmail.com \ --cc=darrick.wong@oracle.com \ --cc=fstests@vger.kernel.org \ --cc=guan@eryu.me \ --cc=guaneryu@gmail.com \ --cc=linux-xfs@vger.kernel.org \ --subject='Re: [PATCH 7/9] tools: add missing license tags to my scripts' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).