|
|
a83cc2 |
From 609d8661171760c7ead04f64359d47a77c31d474 Mon Sep 17 00:00:00 2001
|
|
|
a83cc2 |
From: Thomas Huth <thuth@redhat.com>
|
|
|
a83cc2 |
Date: Fri, 23 Apr 2021 10:30:51 +0200
|
|
|
a83cc2 |
Subject: [PATCH 29/39] pc-bios/s390-ccw: Use reset_psw pointer instead of
|
|
|
a83cc2 |
hard-coded null pointer
|
|
|
a83cc2 |
MIME-Version: 1.0
|
|
|
a83cc2 |
Content-Type: text/plain; charset=UTF-8
|
|
|
a83cc2 |
Content-Transfer-Encoding: 8bit
|
|
|
a83cc2 |
|
|
|
a83cc2 |
RH-Author: Jon Maloy <jmaloy@redhat.com>
|
|
|
a83cc2 |
RH-MergeRequest: 24: v7: Add support for building qemu-kvm with clang and safe-stack
|
|
|
a83cc2 |
RH-Commit: [2/11] c65a986104a1830847e772879ca6eaf76c86b2f3 (jmaloy/qemu-kvm-centos-jon)
|
|
|
a83cc2 |
RH-Bugzilla: 1939509 1940132
|
|
|
a83cc2 |
RH-Acked-by: Danilo Cesar Lemes de Paula <ddepaula@redhat.com>
|
|
|
a83cc2 |
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
|
|
a83cc2 |
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
a83cc2 |
|
|
|
a83cc2 |
When compiling the s390-ccw bios with clang, it emits a warning like this:
|
|
|
a83cc2 |
|
|
|
a83cc2 |
pc-bios/s390-ccw/jump2ipl.c:86:9: warning: indirection of non-volatile null
|
|
|
a83cc2 |
pointer will be deleted, not trap [-Wnull-dereference]
|
|
|
a83cc2 |
if (*((uint64_t *)0) & RESET_PSW_MASK) {
|
|
|
a83cc2 |
^~~~~~~~~~~~~~~~
|
|
|
a83cc2 |
pc-bios/s390-ccw/jump2ipl.c:86:9: note: consider using __builtin_trap() or
|
|
|
a83cc2 |
qualifying pointer with 'volatile'
|
|
|
a83cc2 |
|
|
|
a83cc2 |
We could add a "volatile" here to shut it up, but on the other hand,
|
|
|
a83cc2 |
we also have a pointer variable called "reset_psw" in this file already
|
|
|
a83cc2 |
that points to the PSW at address 0, so we can simply use that pointer
|
|
|
a83cc2 |
variable instead.
|
|
|
a83cc2 |
|
|
|
a83cc2 |
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
|
|
|
a83cc2 |
Message-Id: <20210423142440.582188-1-thuth@redhat.com>
|
|
|
a83cc2 |
Reviewed-by: Janosch Frank <frankja@linux.ibm.com>
|
|
|
a83cc2 |
Signed-off-by: Thomas Huth <thuth@redhat.com>
|
|
|
a83cc2 |
(cherry picked from commit ff77712a8a2e15e5901fad35b9a6bb65974b2e4a)
|
|
|
a83cc2 |
Signed-off-by: Jon Maloy <jmaloy@redhat.com>
|
|
|
a83cc2 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
a83cc2 |
---
|
|
|
a83cc2 |
pc-bios/s390-ccw/jump2ipl.c | 4 ++--
|
|
|
a83cc2 |
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
a83cc2 |
|
|
|
a83cc2 |
diff --git a/pc-bios/s390-ccw/jump2ipl.c b/pc-bios/s390-ccw/jump2ipl.c
|
|
|
a83cc2 |
index b9c70d64a5..73e4367e09 100644
|
|
|
a83cc2 |
--- a/pc-bios/s390-ccw/jump2ipl.c
|
|
|
a83cc2 |
+++ b/pc-bios/s390-ccw/jump2ipl.c
|
|
|
a83cc2 |
@@ -82,8 +82,8 @@ void jump_to_low_kernel(void)
|
|
|
a83cc2 |
jump_to_IPL_code(KERN_IMAGE_START);
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
|
|
|
a83cc2 |
- /* Trying to get PSW at zero address */
|
|
|
a83cc2 |
- if (*((uint64_t *)0) & RESET_PSW_MASK) {
|
|
|
a83cc2 |
+ /* Trying to get PSW at zero address (pointed to by reset_psw) */
|
|
|
a83cc2 |
+ if (*reset_psw & RESET_PSW_MASK) {
|
|
|
a83cc2 |
/*
|
|
|
a83cc2 |
* Surely nobody will try running directly from lowcore, so
|
|
|
a83cc2 |
* let's use 0 as an indication that we want to load the reset
|
|
|
a83cc2 |
--
|
|
|
a83cc2 |
2.27.0
|
|
|
a83cc2 |
|