From: Collin Walling <walling@linux.ibm.com>
To: cohuck@redhat.com, david@redhat.com, pbonzini@redhat.com,
kvm@vger.kernel.org, linux-s390@vger.kernel.org
Subject: [PATCH v5 1/2] s390/setup: diag318: refactor struct
Date: Tue, 25 Jun 2019 11:03:41 -0400 [thread overview]
Message-ID: <1561475022-18348-2-git-send-email-walling@linux.ibm.com> (raw)
In-Reply-To: <1561475022-18348-1-git-send-email-walling@linux.ibm.com>
The diag318 struct introduced in include/asm/diag.h can be
reused in KVM, so let's condense the version code fields in the
diag318_info struct for easier usage and simplify it until we
can determine how the data should be formatted.
Signed-off-by: Collin Walling <walling@linux.ibm.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
---
arch/s390/include/asm/diag.h | 6 ++----
arch/s390/kernel/setup.c | 3 +--
2 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/arch/s390/include/asm/diag.h b/arch/s390/include/asm/diag.h
index 0036eab..ca8f85b 100644
--- a/arch/s390/include/asm/diag.h
+++ b/arch/s390/include/asm/diag.h
@@ -298,10 +298,8 @@ struct diag26c_mac_resp {
union diag318_info {
unsigned long val;
struct {
- unsigned int cpnc : 8;
- unsigned int cpvc_linux : 24;
- unsigned char cpvc_distro[3];
- unsigned char zero;
+ unsigned long cpnc : 8;
+ unsigned long cpvc : 56;
};
};
diff --git a/arch/s390/kernel/setup.c b/arch/s390/kernel/setup.c
index f8544d5..b66c41f 100644
--- a/arch/s390/kernel/setup.c
+++ b/arch/s390/kernel/setup.c
@@ -1045,8 +1045,7 @@ static void __init setup_control_program_code(void)
{
union diag318_info diag318_info = {
.cpnc = CPNC_LINUX,
- .cpvc_linux = 0,
- .cpvc_distro = {0},
+ .cpvc = 0,
};
if (!sclp.has_diag318)
--
2.7.4
next prev parent reply other threads:[~2019-06-25 15:04 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-25 15:03 [PATCH v5 0/2] Use DIAG318 to set Control Program Name & Version Codes Collin Walling
2019-06-25 15:03 ` Collin Walling [this message]
2019-06-26 11:42 ` [PATCH v5 1/2] s390/setup: diag318: refactor struct Cornelia Huck
2019-06-25 15:03 ` [PATCH v5 2/2] s390/kvm: diagnose 318 handling Collin Walling
2019-06-26 9:08 ` David Hildenbrand
2019-06-26 13:57 ` Collin Walling
2019-06-26 9:45 ` David Hildenbrand
2019-06-26 10:28 ` Christian Borntraeger
2019-06-26 14:30 ` Collin Walling
2019-06-26 14:31 ` David Hildenbrand
2019-07-02 19:50 ` Collin Walling
2019-07-02 20:00 ` Christian Borntraeger
2019-07-02 20:04 ` Collin Walling
2019-07-02 20:08 ` Christian Borntraeger
2019-06-26 12:11 ` Cornelia Huck
2019-06-26 13:51 ` Collin Walling
2019-06-25 15:20 ` [PATCH v5 0/2] Use DIAG318 to set Control Program Name & Version Codes Collin Walling
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=1561475022-18348-2-git-send-email-walling@linux.ibm.com \
--to=walling@linux.ibm.com \
--cc=cohuck@redhat.com \
--cc=david@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=pbonzini@redhat.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