From: Christian Borntraeger <borntraeger@de.ibm.com>
To: David Hildenbrand <david@redhat.com>, Cornelia Huck <cohuck@redhat.com>
Cc: qemu-devel <qemu-devel@nongnu.org>,
qemu-s390x <qemu-s390x@nongnu.org>,
Halil Pasic <pasic@linux.ibm.com>,
Richard Henderson <rth@twiddle.net>,
Collin Walling <walling@linux.ibm.com>,
"Jason J . Herne" <jjherne@linux.ibm.com>
Subject: Re: [Qemu-devel] [PATCH v2 09/10] s390x/cpumodel: disable csske and bpb from gen15 cpu models onwards
Date: Fri, 26 Apr 2019 13:18:49 +0200 [thread overview]
Message-ID: <41f2c4a5-7f40-3155-ba8c-e92d0c80b53e@de.ibm.com> (raw)
In-Reply-To: <c07b4807-787b-3420-1cae-fb29f56dd9b4@redhat.com>
On 26.04.19 13:18, David Hildenbrand wrote:
> On 26.04.19 13:10, Christian Borntraeger wrote:
>> These facilities are deprecated and no longer needed.
>>
>> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
>> ---
>> target/s390x/gen-features.c | 12 ++++++++++++
>> 1 file changed, 12 insertions(+)
>>
>> diff --git a/target/s390x/gen-features.c b/target/s390x/gen-features.c
>> index 6260f56dc1..c346b76bdf 100644
>> --- a/target/s390x/gen-features.c
>> +++ b/target/s390x/gen-features.c
>> @@ -13,6 +13,7 @@
>>
>> #include <inttypes.h>
>> #include <stdio.h>
>> +#include <string.h>
>> #include "cpu_features_def.h"
>>
>> #define ARRAY_SIZE(array) (sizeof(array) / sizeof(array[0]))
>> @@ -833,6 +834,11 @@ static void set_bits(uint64_t list[], BitSpec bits)
>> }
>> }
>>
>> +static inline void clear_bit(uint64_t list[], unsigned long nr)
>> +{
>> + list[nr / 64] &= ~(1ULL << (nr % 64));
>> +}
>> +
>> static void print_feature_defs(void)
>> {
>> uint64_t base_feat[S390_FEAT_MAX / 64 + 1] = {};
>> @@ -843,6 +849,12 @@ static void print_feature_defs(void)
>> printf("\n/* CPU model feature list data */\n");
>>
>> for (i = 0; i < ARRAY_SIZE(CpuFeatDef); i++) {
>> + /* With gen15 CSSKE and BPB are deprecated */
>> + if (strcmp(CpuFeatDef[i].name, "S390_FEAT_LIST_GEN15_GA1") == 0) {
>> + clear_bit(base_feat, S390_FEAT_CONDITIONAL_SSKE);
>> + clear_bit(default_feat, S390_FEAT_CONDITIONAL_SSKE);
>> + clear_bit(default_feat, S390_FEAT_BPB);
>> + }
>> set_bits(base_feat, CpuFeatDef[i].base_bits);
>> /* add the base to the default features */
>> set_bits(default_feat, CpuFeatDef[i].base_bits);
>>
>
> Can you squash that into the previous patch, so it doesn't look like the
> case model is suddenly changed?
can do. I wanted it to be separate for better review.
WARNING: multiple messages have this Message-ID (diff)
From: Christian Borntraeger <borntraeger@de.ibm.com>
To: David Hildenbrand <david@redhat.com>, Cornelia Huck <cohuck@redhat.com>
Cc: "Jason J . Herne" <jjherne@linux.ibm.com>,
Collin Walling <walling@linux.ibm.com>,
qemu-devel <qemu-devel@nongnu.org>,
Halil Pasic <pasic@linux.ibm.com>,
qemu-s390x <qemu-s390x@nongnu.org>,
Richard Henderson <rth@twiddle.net>
Subject: Re: [Qemu-devel] [PATCH v2 09/10] s390x/cpumodel: disable csske and bpb from gen15 cpu models onwards
Date: Fri, 26 Apr 2019 13:18:49 +0200 [thread overview]
Message-ID: <41f2c4a5-7f40-3155-ba8c-e92d0c80b53e@de.ibm.com> (raw)
Message-ID: <20190426111849.4RBpCvJwzdipYNcx4N8q9Jvv4bz-gXylR5hYfIv92AA@z> (raw)
In-Reply-To: <c07b4807-787b-3420-1cae-fb29f56dd9b4@redhat.com>
On 26.04.19 13:18, David Hildenbrand wrote:
> On 26.04.19 13:10, Christian Borntraeger wrote:
>> These facilities are deprecated and no longer needed.
>>
>> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
>> ---
>> target/s390x/gen-features.c | 12 ++++++++++++
>> 1 file changed, 12 insertions(+)
>>
>> diff --git a/target/s390x/gen-features.c b/target/s390x/gen-features.c
>> index 6260f56dc1..c346b76bdf 100644
>> --- a/target/s390x/gen-features.c
>> +++ b/target/s390x/gen-features.c
>> @@ -13,6 +13,7 @@
>>
>> #include <inttypes.h>
>> #include <stdio.h>
>> +#include <string.h>
>> #include "cpu_features_def.h"
>>
>> #define ARRAY_SIZE(array) (sizeof(array) / sizeof(array[0]))
>> @@ -833,6 +834,11 @@ static void set_bits(uint64_t list[], BitSpec bits)
>> }
>> }
>>
>> +static inline void clear_bit(uint64_t list[], unsigned long nr)
>> +{
>> + list[nr / 64] &= ~(1ULL << (nr % 64));
>> +}
>> +
>> static void print_feature_defs(void)
>> {
>> uint64_t base_feat[S390_FEAT_MAX / 64 + 1] = {};
>> @@ -843,6 +849,12 @@ static void print_feature_defs(void)
>> printf("\n/* CPU model feature list data */\n");
>>
>> for (i = 0; i < ARRAY_SIZE(CpuFeatDef); i++) {
>> + /* With gen15 CSSKE and BPB are deprecated */
>> + if (strcmp(CpuFeatDef[i].name, "S390_FEAT_LIST_GEN15_GA1") == 0) {
>> + clear_bit(base_feat, S390_FEAT_CONDITIONAL_SSKE);
>> + clear_bit(default_feat, S390_FEAT_CONDITIONAL_SSKE);
>> + clear_bit(default_feat, S390_FEAT_BPB);
>> + }
>> set_bits(base_feat, CpuFeatDef[i].base_bits);
>> /* add the base to the default features */
>> set_bits(default_feat, CpuFeatDef[i].base_bits);
>>
>
> Can you squash that into the previous patch, so it doesn't look like the
> case model is suddenly changed?
can do. I wanted it to be separate for better review.
next prev parent reply other threads:[~2019-04-26 11:19 UTC|newest]
Thread overview: 60+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-26 11:09 [Qemu-devel] [PATCH v2 00/10] s390x: new guest features Christian Borntraeger
2019-04-26 11:09 ` Christian Borntraeger
2019-04-26 11:09 ` [Qemu-devel] [PATCH v2 01/10] linux header sync Christian Borntraeger
2019-04-26 11:09 ` Christian Borntraeger
2019-04-26 11:09 ` [Qemu-devel] [PATCH v2 02/10] s390x/cpumodel: ignore csske for expansion Christian Borntraeger
2019-04-26 11:09 ` Christian Borntraeger
2019-04-26 11:15 ` David Hildenbrand
2019-04-26 11:15 ` David Hildenbrand
2019-04-26 11:09 ` [Qemu-devel] [PATCH v2 03/10] s390x/cpumodel: Miscellaneous-Instruction-Extensions Facility 3 Christian Borntraeger
2019-04-26 11:09 ` Christian Borntraeger
2019-04-26 11:09 ` [Qemu-devel] [PATCH v2 04/10] s390x/cpumodel: msa9 facility Christian Borntraeger
2019-04-26 11:09 ` Christian Borntraeger
2019-04-26 11:09 ` [Qemu-devel] [PATCH v2 05/10] s390x/cpumodel: vector enhancements Christian Borntraeger
2019-04-26 11:09 ` Christian Borntraeger
2019-04-26 11:09 ` [Qemu-devel] [PATCH v2 06/10] s390x/cpumodel: enhanced sort facility Christian Borntraeger
2019-04-26 11:09 ` Christian Borntraeger
2019-04-26 11:10 ` [Qemu-devel] [PATCH v2 07/10] s390x/cpumodel: add Deflate-conversion facility Christian Borntraeger
2019-04-26 11:10 ` Christian Borntraeger
2019-04-26 11:10 ` [Qemu-devel] [PATCH v2 08/10] s390x/cpumodel: add gen15 defintions Christian Borntraeger
2019-04-26 11:10 ` Christian Borntraeger
2019-04-26 11:10 ` [Qemu-devel] [PATCH v2 09/10] s390x/cpumodel: disable csske and bpb from gen15 cpu models onwards Christian Borntraeger
2019-04-26 11:10 ` Christian Borntraeger
2019-04-26 11:18 ` David Hildenbrand
2019-04-26 11:18 ` David Hildenbrand
2019-04-26 11:18 ` Christian Borntraeger [this message]
2019-04-26 11:18 ` Christian Borntraeger
2019-04-26 11:20 ` David Hildenbrand
2019-04-26 11:20 ` David Hildenbrand
2019-04-26 11:10 ` [Qemu-devel] [PATCH v2 10/10] s390x/cpumodel: wire up 8561 and 8562 as gen15 machines Christian Borntraeger
2019-04-26 11:10 ` Christian Borntraeger
2019-04-26 11:21 ` David Hildenbrand
2019-04-26 11:21 ` David Hildenbrand
2019-04-26 11:22 ` Christian Borntraeger
2019-04-26 11:22 ` Christian Borntraeger
2019-04-26 11:24 ` Christian Borntraeger
2019-04-26 11:24 ` Christian Borntraeger
2019-04-26 11:34 ` David Hildenbrand
2019-04-26 11:34 ` David Hildenbrand
2019-04-26 11:32 ` David Hildenbrand
2019-04-26 11:32 ` David Hildenbrand
2019-04-26 11:36 ` Christian Borntraeger
2019-04-26 11:36 ` Christian Borntraeger
2019-04-26 11:52 ` David Hildenbrand
2019-04-26 11:52 ` David Hildenbrand
2019-04-26 12:01 ` Christian Borntraeger
2019-04-26 12:01 ` Christian Borntraeger
2019-04-26 12:05 ` David Hildenbrand
2019-04-26 12:05 ` David Hildenbrand
2019-04-26 12:55 ` Cornelia Huck
2019-04-26 12:55 ` Cornelia Huck
2019-04-29 7:51 ` [Qemu-devel] [qemu-s390x] " Christian Borntraeger
2019-04-29 7:51 ` Christian Borntraeger
2019-04-29 8:53 ` Cornelia Huck
2019-04-29 8:53 ` Cornelia Huck
2019-04-29 8:55 ` Christian Borntraeger
2019-04-29 8:55 ` Christian Borntraeger
2019-04-29 10:16 ` David Hildenbrand
2019-04-29 10:16 ` David Hildenbrand
2019-04-26 11:23 ` [Qemu-devel] [PATCH v2 00/10] s390x: new guest features no-reply
2019-04-26 11:23 ` no-reply
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=41f2c4a5-7f40-3155-ba8c-e92d0c80b53e@de.ibm.com \
--to=borntraeger@de.ibm.com \
--cc=cohuck@redhat.com \
--cc=david@redhat.com \
--cc=jjherne@linux.ibm.com \
--cc=pasic@linux.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=rth@twiddle.net \
--cc=walling@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;
as well as URLs for NNTP newsgroup(s).