aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Hildenbrand <david@redhat.com>2020-04-01 18:26:59 +0200
committerDavid Hildenbrand <david@redhat.com>2020-04-24 11:53:00 +0200
commit6abbd4f0ed2ce1cdf092c11e108896e4a1517047 (patch)
tree80194e6a3da7f519c92fbc5dc29048b7fa6e7fdf
parent7e62c95250d2710779601269e0d7b57839b38130 (diff)
downloadkvm-unit-tests-6abbd4f0ed2ce1cdf092c11e108896e4a1517047.tar.gz
s390x: STFLE operates on doublewords
STFLE operates on doublewords, not bytes. Passing in "256" resulted in some ignored bits getting set. Not bad, but also not clean. Let's just convert our stfle handling code to operate on doublewords. Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com> Reviewed-by: Janosch Frank <frankja@linux.ibm.com> Message-Id: <20200401163305.31550-1-david@redhat.com> Signed-off-by: David Hildenbrand <david@redhat.com>
-rw-r--r--lib/s390x/asm/facility.h14
-rw-r--r--lib/s390x/io.c2
2 files changed, 8 insertions, 8 deletions
diff --git a/lib/s390x/asm/facility.h b/lib/s390x/asm/facility.h
index e34dc2c..def2705 100644
--- a/lib/s390x/asm/facility.h
+++ b/lib/s390x/asm/facility.h
@@ -14,12 +14,12 @@
#include <asm/facility.h>
#include <asm/arch_def.h>
-#define NR_STFL_BYTES 256
-extern uint8_t stfl_bytes[];
+#define NB_STFL_DOUBLEWORDS 32
+extern uint64_t stfl_doublewords[];
static inline bool test_facility(int nr)
{
- return stfl_bytes[nr / 8] & (0x80U >> (nr % 8));
+ return stfl_doublewords[nr / 64] & (0x8000000000000000UL >> (nr % 64));
}
static inline void stfl(void)
@@ -27,9 +27,9 @@ static inline void stfl(void)
asm volatile(" stfl 0(0)\n" : : : "memory");
}
-static inline void stfle(uint8_t *fac, unsigned int len)
+static inline void stfle(uint64_t *fac, unsigned int nb_doublewords)
{
- register unsigned long r0 asm("0") = len - 1;
+ register unsigned long r0 asm("0") = nb_doublewords - 1;
asm volatile(" .insn s,0xb2b00000,0(%1)\n"
: "+d" (r0) : "a" (fac) : "memory", "cc");
@@ -40,9 +40,9 @@ static inline void setup_facilities(void)
struct lowcore *lc = NULL;
stfl();
- memcpy(stfl_bytes, &lc->stfl, sizeof(lc->stfl));
+ memcpy(stfl_doublewords, &lc->stfl, sizeof(lc->stfl));
if (test_facility(7))
- stfle(stfl_bytes, NR_STFL_BYTES);
+ stfle(stfl_doublewords, NB_STFL_DOUBLEWORDS);
}
#endif
diff --git a/lib/s390x/io.c b/lib/s390x/io.c
index e091c37..c0f0bf7 100644
--- a/lib/s390x/io.c
+++ b/lib/s390x/io.c
@@ -19,7 +19,7 @@
#include "smp.h"
extern char ipl_args[];
-uint8_t stfl_bytes[NR_STFL_BYTES] __attribute__((aligned(8)));
+uint64_t stfl_doublewords[NB_STFL_DOUBLEWORDS];
static struct spinlock lock;