qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v1 02/27] s390x/cpumodel: fix max STFL(E) bit number


From: David Hildenbrand
Subject: [Qemu-devel] [PATCH v1 02/27] s390x/cpumodel: fix max STFL(E) bit number
Date: Mon, 18 Sep 2017 17:59:47 +0200

Not that it would matter in the near future, but it is actually 2048
bytes, therefore 16384 possible bits.

Signed-off-by: David Hildenbrand <address@hidden>
---
 target/s390x/cpu_features.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/s390x/cpu_features.c b/target/s390x/cpu_features.c
index 1d3a036393..31a4676f05 100644
--- a/target/s390x/cpu_features.c
+++ b/target/s390x/cpu_features.c
@@ -381,7 +381,7 @@ void s390_add_from_feat_block(S390FeatBitmap features, 
S390FeatType type,
 
     switch (type) {
     case S390_FEAT_TYPE_STFL:
-       nr_bits = 2048;
+       nr_bits = 16384;
        break;
     case S390_FEAT_TYPE_PLO:
        nr_bits = 256;
-- 
2.13.5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]