public inbox for linux-s390@vger.kernel.org
 help / color / mirror / Atom feed
From: Christian Borntraeger <borntraeger@linux.ibm.com>
To: Sasha Levin <sashal@kernel.org>,
	linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Heiko Carstens <hca@linux.ibm.com>,
	Vineeth Vijayan <vneethv@linux.ibm.com>,
	gor@linux.ibm.com, egorenar@linux.ibm.com,
	agordeev@linux.ibm.com, svens@linux.ibm.com,
	ebiederm@xmission.com, valentin.schneider@arm.com,
	rppt@kernel.org, iii@linux.ibm.com, linux-s390@vger.kernel.org
Subject: Re: [PATCH AUTOSEL 5.15 081/188] s390/nmi: add missing __pa/__va address conversion of extended save area
Date: Tue, 18 Jan 2022 09:18:40 +0100	[thread overview]
Message-ID: <aef11e2f-2b92-e713-a407-3bebf9b3340d@linux.ibm.com> (raw)
In-Reply-To: <20220118023152.1948105-81-sashal@kernel.org>

Am 18.01.22 um 03:30 schrieb Sasha Levin:
> From: Heiko Carstens <hca@linux.ibm.com>
> 
> [ Upstream commit 402ff5a3387dc8ec6987a80d3ce26b0c25773622 ]
> 
> Add missing __pa/__va address conversion of machine check extended
> save area designation, which is an absolute address.
> 

vv
> Note: this currently doesn't fix a real bug, since virtual addresses
> are indentical to physical ones.
^^

Sasha,
please note the disclaimer above. There will be plenty of such fixes
in s390 code and there is no point in backporting single fixes to stable.
It will provide no benefit on its own but adds a risk of regression.



> 
> Reported-by: Vineeth Vijayan <vneethv@linux.ibm.com>
> Tested-by: Vineeth Vijayan <vneethv@linux.ibm.com>
> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
> Signed-off-by: Sasha Levin <sashal@kernel.org>
> ---
>   arch/s390/kernel/machine_kexec.c |  2 +-
>   arch/s390/kernel/nmi.c           | 10 +++++-----
>   arch/s390/kernel/smp.c           |  2 +-
>   3 files changed, 7 insertions(+), 7 deletions(-)
> 
> diff --git a/arch/s390/kernel/machine_kexec.c b/arch/s390/kernel/machine_kexec.c
> index 0505e55a62979..a16467b3825ec 100644
> --- a/arch/s390/kernel/machine_kexec.c
> +++ b/arch/s390/kernel/machine_kexec.c
> @@ -86,7 +86,7 @@ static noinline void __machine_kdump(void *image)
>   			continue;
>   	}
>   	/* Store status of the boot CPU */
> -	mcesa = (struct mcesa *)(S390_lowcore.mcesad & MCESA_ORIGIN_MASK);
> +	mcesa = __va(S390_lowcore.mcesad & MCESA_ORIGIN_MASK);
>   	if (MACHINE_HAS_VX)
>   		save_vx_regs((__vector128 *) mcesa->vector_save_area);
>   	if (MACHINE_HAS_GS) {
> diff --git a/arch/s390/kernel/nmi.c b/arch/s390/kernel/nmi.c
> index 20f8e1868853f..3f18c1412eba3 100644
> --- a/arch/s390/kernel/nmi.c
> +++ b/arch/s390/kernel/nmi.c
> @@ -68,7 +68,7 @@ void __init nmi_alloc_boot_cpu(struct lowcore *lc)
>   {
>   	if (!nmi_needs_mcesa())
>   		return;
> -	lc->mcesad = (unsigned long) &boot_mcesa;
> +	lc->mcesad = __pa(&boot_mcesa);
>   	if (MACHINE_HAS_GS)
>   		lc->mcesad |= ilog2(MCESA_MAX_SIZE);
>   }
> @@ -94,7 +94,7 @@ static int __init nmi_init(void)
>   	__ctl_store(cr0, 0, 0);
>   	__ctl_clear_bit(0, 28); /* disable lowcore protection */
>   	/* Replace boot_mcesa on the boot CPU */
> -	S390_lowcore.mcesad = origin | mcesa_origin_lc;
> +	S390_lowcore.mcesad = __pa(origin) | mcesa_origin_lc;
>   	__ctl_load(cr0, 0, 0);
>   	return 0;
>   }
> @@ -111,7 +111,7 @@ int nmi_alloc_per_cpu(struct lowcore *lc)
>   		return -ENOMEM;
>   	/* The pointer is stored with mcesa_bits ORed in */
>   	kmemleak_not_leak((void *) origin);
> -	lc->mcesad = origin | mcesa_origin_lc;
> +	lc->mcesad = __pa(origin) | mcesa_origin_lc;
>   	return 0;
>   }
>   
> @@ -119,7 +119,7 @@ void nmi_free_per_cpu(struct lowcore *lc)
>   {
>   	if (!nmi_needs_mcesa())
>   		return;
> -	kmem_cache_free(mcesa_cache, (void *)(lc->mcesad & MCESA_ORIGIN_MASK));
> +	kmem_cache_free(mcesa_cache, __va(lc->mcesad & MCESA_ORIGIN_MASK));
>   }
>   
>   static notrace void s390_handle_damage(void)
> @@ -246,7 +246,7 @@ static int notrace s390_validate_registers(union mci mci, int umode)
>   			: "Q" (S390_lowcore.fpt_creg_save_area));
>   	}
>   
> -	mcesa = (struct mcesa *)(S390_lowcore.mcesad & MCESA_ORIGIN_MASK);
> +	mcesa = __va(S390_lowcore.mcesad & MCESA_ORIGIN_MASK);
>   	if (!MACHINE_HAS_VX) {
>   		/* Validate floating point registers */
>   		asm volatile(
> diff --git a/arch/s390/kernel/smp.c b/arch/s390/kernel/smp.c
> index 1a04e5bdf6555..5c3d3d8f6b5d8 100644
> --- a/arch/s390/kernel/smp.c
> +++ b/arch/s390/kernel/smp.c
> @@ -622,7 +622,7 @@ int smp_store_status(int cpu)
>   		return -EIO;
>   	if (!MACHINE_HAS_VX && !MACHINE_HAS_GS)
>   		return 0;
> -	pa = __pa(lc->mcesad & MCESA_ORIGIN_MASK);
> +	pa = lc->mcesad & MCESA_ORIGIN_MASK;
>   	if (MACHINE_HAS_GS)
>   		pa |= lc->mcesad & MCESA_LC_MASK;
>   	if (__pcpu_sigp_relax(pcpu->address, SIGP_STORE_ADDITIONAL_STATUS,

  reply	other threads:[~2022-01-18  8:18 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20220118023152.1948105-1-sashal@kernel.org>
2022-01-18  2:30 ` [PATCH AUTOSEL 5.15 081/188] s390/nmi: add missing __pa/__va address conversion of extended save area Sasha Levin
2022-01-18  8:18   ` Christian Borntraeger [this message]
2022-01-22 19:18     ` Sasha Levin

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=aef11e2f-2b92-e713-a407-3bebf9b3340d@linux.ibm.com \
    --to=borntraeger@linux.ibm.com \
    --cc=agordeev@linux.ibm.com \
    --cc=ebiederm@xmission.com \
    --cc=egorenar@linux.ibm.com \
    --cc=gor@linux.ibm.com \
    --cc=hca@linux.ibm.com \
    --cc=iii@linux.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-s390@vger.kernel.org \
    --cc=rppt@kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=svens@linux.ibm.com \
    --cc=valentin.schneider@arm.com \
    --cc=vneethv@linux.ibm.com \
    /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