public inbox for linux-s390@vger.kernel.org
 help / color / mirror / Atom feed
From: Thomas Huth <thuth@redhat.com>
To: Janosch Frank <frankja@linux.ibm.com>, kvm@vger.kernel.org
Cc: linux-s390@vger.kernel.org, imbrenda@linux.ibm.com,
	david@redhat.com, cohuck@redhat.com
Subject: Re: [kvm-unit-tests PATCH 1/3] s390x: Add SPDX and header comments for s390x/* and lib/s390x/*
Date: Wed, 28 Jul 2021 12:33:09 +0200	[thread overview]
Message-ID: <7e33e33f-63ef-c4d9-50d9-c1df150af1e6@redhat.com> (raw)
In-Reply-To: <20210728101328.51646-2-frankja@linux.ibm.com>

On 28/07/2021 12.13, Janosch Frank wrote:
> Seems like I missed adding them.
> 
> The s390x/sieve.c one is a bit of a head scratcher since it came with
> the first commit but I assume it's lpgl2-only since that's what the
> COPYRIGHT file said then.
> 
> Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
> ---
>   lib/s390x/uv.c   |  9 +++++++++
>   s390x/mvpg-sie.c |  9 +++++++++
>   s390x/sie.c      | 10 ++++++++++
>   x86/sieve.c      |  5 +++++
>   4 files changed, 33 insertions(+)
> 
> diff --git a/lib/s390x/uv.c b/lib/s390x/uv.c
> index 0d8c141c..fd9de944 100644
> --- a/lib/s390x/uv.c
> +++ b/lib/s390x/uv.c
> @@ -1,3 +1,12 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> +/*
> + * Ultravisor related functionality
> + *
> + * Copyright 2020 IBM Corp.
> + *
> + * Authors:
> + *    Janosch Frank <frankja@linux.ibm.com>
> + */
>   #include <libcflat.h>
>   #include <bitops.h>
>   #include <alloc.h>
> diff --git a/s390x/mvpg-sie.c b/s390x/mvpg-sie.c
> index 9bcd15a2..5e70f591 100644
> --- a/s390x/mvpg-sie.c
> +++ b/s390x/mvpg-sie.c
> @@ -1,3 +1,12 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> +/*
> + * Tests mvpg SIE partial execution intercepts.
> + *
> + * Copyright 2021 IBM Corp.
> + *
> + * Authors:
> + *    Janosch Frank <frankja@linux.ibm.com>
> + */
>   #include <libcflat.h>
>   #include <asm/asm-offsets.h>
>   #include <asm-generic/barrier.h>
> diff --git a/s390x/sie.c b/s390x/sie.c
> index cfc746f3..134d3c4f 100644
> --- a/s390x/sie.c
> +++ b/s390x/sie.c
> @@ -1,3 +1,13 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> +/*
> + * Tests SIE diagnose intercepts.
> + * Mainly used as a template for SIE tests.
> + *
> + * Copyright 2021 IBM Corp.
> + *
> + * Authors:
> + *    Janosch Frank <frankja@linux.ibm.com>
> + */
>   #include <libcflat.h>
>   #include <asm/asm-offsets.h>
>   #include <asm/arch_def.h>
> diff --git a/x86/sieve.c b/x86/sieve.c
> index 8150f2d9..b89d5f80 100644
> --- a/x86/sieve.c
> +++ b/x86/sieve.c
> @@ -1,3 +1,8 @@
> +/* SPDX-License-Identifier: LGPL-2.0-only */
> +/*
> + * Implementation of the sieve of Eratosthenes
> + * Calculation and memory intensive workload for general stress testing.
> + */
>   #include "alloc.h"
>   #include "libcflat.h"
>   

Reviewed-by: Thomas Huth <thuth@redhat.com>


  parent reply	other threads:[~2021-07-28 10:33 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-28 10:13 [kvm-unit-tests PATCH 0/3] s390x: SPDX and header comment fixes Janosch Frank
2021-07-28 10:13 ` [kvm-unit-tests PATCH 1/3] s390x: Add SPDX and header comments for s390x/* and lib/s390x/* Janosch Frank
2021-07-28 10:32   ` Claudio Imbrenda
2021-07-28 10:36     ` Thomas Huth
2021-07-28 11:36       ` Janosch Frank
2021-07-28 11:41         ` Janosch Frank
2021-07-28 11:56           ` Thomas Huth
2021-07-28 10:33   ` Thomas Huth [this message]
2021-07-28 12:56   ` [kvm-unit-tests PATCH v2] " Janosch Frank
2021-07-28 13:25     ` Claudio Imbrenda
2021-07-28 14:35     ` Thomas Huth
2021-07-28 10:13 ` [kvm-unit-tests PATCH 2/3] s390x: Add SPDX and header comments for the snippets folder Janosch Frank
2021-07-28 10:28   ` Claudio Imbrenda
2021-07-28 10:33   ` Thomas Huth
2021-07-28 10:13 ` [kvm-unit-tests PATCH 3/3] s390x: Fix my mail address in the headers Janosch Frank
2021-07-28 10:28   ` Claudio Imbrenda
2021-07-28 10:34   ` Thomas Huth

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=7e33e33f-63ef-c4d9-50d9-c1df150af1e6@redhat.com \
    --to=thuth@redhat.com \
    --cc=cohuck@redhat.com \
    --cc=david@redhat.com \
    --cc=frankja@linux.ibm.com \
    --cc=imbrenda@linux.ibm.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-s390@vger.kernel.org \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox