All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] s390x/tcg: fix and optimize SPX (SET PREFIX)
@ 2021-08-05 12:59 David Hildenbrand
  2021-08-05 13:44 ` Claudio Imbrenda
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: David Hildenbrand @ 2021-08-05 12:59 UTC (permalink / raw)
  To: qemu-devel
  Cc: Thomas Huth, David Hildenbrand, Cornelia Huck, Richard Henderson,
	qemu-s390x, Claudio Imbrenda

We not only invalidate the translation of the range 0x0-0x2000, we also
invalidate the translation of the new prefix range and the translation
of the old prefix range -- because real2abs would return different
results for all of these ranges when changing the prefix location.

This fixes the kvm-unit-tests "edat" test that just hangs before this
patch because we end up clearing the new prefix area instead of the old
prefix area.

While at it, let's not do anything in case the prefix doesn't change.

Cc: Richard Henderson <richard.henderson@linaro.org>
Cc: David Hildenbrand <david@redhat.com>
Cc: Cornelia Huck <cohuck@redhat.com>
Cc: Thomas Huth <thuth@redhat.com>
Cc: Claudio Imbrenda <imbrenda@linux.ibm.com>
Cc: qemu-s390x@nongnu.org
Signed-off-by: David Hildenbrand <david@redhat.com>
---
 target/s390x/tcg/misc_helper.c | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/target/s390x/tcg/misc_helper.c b/target/s390x/tcg/misc_helper.c
index 33e6999e15..aab9c47747 100644
--- a/target/s390x/tcg/misc_helper.c
+++ b/target/s390x/tcg/misc_helper.c
@@ -151,13 +151,26 @@ void HELPER(diag)(CPUS390XState *env, uint32_t r1, uint32_t r3, uint32_t num)
 /* Set Prefix */
 void HELPER(spx)(CPUS390XState *env, uint64_t a1)
 {
+    const uint32_t prefix = a1 & 0x7fffe000;
+    const uint32_t old_prefix = env->psa;
     CPUState *cs = env_cpu(env);
-    uint32_t prefix = a1 & 0x7fffe000;
+
+    if (prefix == old_prefix) {
+        return;
+    }
 
     env->psa = prefix;
     HELPER_LOG("prefix: %#x\n", prefix);
     tlb_flush_page(cs, 0);
     tlb_flush_page(cs, TARGET_PAGE_SIZE);
+    if (prefix != 0) {
+        tlb_flush_page(cs, prefix);
+        tlb_flush_page(cs, prefix + TARGET_PAGE_SIZE);
+    }
+    if (old_prefix != 0) {
+        tlb_flush_page(cs, old_prefix);
+        tlb_flush_page(cs, old_prefix + TARGET_PAGE_SIZE);
+    }
 }
 
 static void update_ckc_timer(CPUS390XState *env)
-- 
2.31.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v1] s390x/tcg: fix and optimize SPX (SET PREFIX)
  2021-08-05 12:59 [PATCH v1] s390x/tcg: fix and optimize SPX (SET PREFIX) David Hildenbrand
@ 2021-08-05 13:44 ` Claudio Imbrenda
  2021-08-06  5:21 ` Thomas Huth
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Claudio Imbrenda @ 2021-08-05 13:44 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: qemu-s390x, Thomas Huth, Cornelia Huck, Richard Henderson, qemu-devel

On Thu,  5 Aug 2021 14:59:38 +0200
David Hildenbrand <david@redhat.com> wrote:

> We not only invalidate the translation of the range 0x0-0x2000, we
> also invalidate the translation of the new prefix range and the
> translation of the old prefix range -- because real2abs would return
> different results for all of these ranges when changing the prefix
> location.

looks like a good idea

> This fixes the kvm-unit-tests "edat" test that just hangs before this
> patch because we end up clearing the new prefix area instead of the
> old prefix area.
> 
> While at it, let's not do anything in case the prefix doesn't change.

also looks like a good idea

Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
 
> Cc: Richard Henderson <richard.henderson@linaro.org>
> Cc: David Hildenbrand <david@redhat.com>
> Cc: Cornelia Huck <cohuck@redhat.com>
> Cc: Thomas Huth <thuth@redhat.com>
> Cc: Claudio Imbrenda <imbrenda@linux.ibm.com>
> Cc: qemu-s390x@nongnu.org
> Signed-off-by: David Hildenbrand <david@redhat.com>
> ---
>  target/s390x/tcg/misc_helper.c | 15 ++++++++++++++-
>  1 file changed, 14 insertions(+), 1 deletion(-)
> 
> diff --git a/target/s390x/tcg/misc_helper.c
> b/target/s390x/tcg/misc_helper.c index 33e6999e15..aab9c47747 100644
> --- a/target/s390x/tcg/misc_helper.c
> +++ b/target/s390x/tcg/misc_helper.c
> @@ -151,13 +151,26 @@ void HELPER(diag)(CPUS390XState *env, uint32_t
> r1, uint32_t r3, uint32_t num) /* Set Prefix */
>  void HELPER(spx)(CPUS390XState *env, uint64_t a1)
>  {
> +    const uint32_t prefix = a1 & 0x7fffe000;
> +    const uint32_t old_prefix = env->psa;
>      CPUState *cs = env_cpu(env);
> -    uint32_t prefix = a1 & 0x7fffe000;
> +
> +    if (prefix == old_prefix) {
> +        return;
> +    }
>  
>      env->psa = prefix;
>      HELPER_LOG("prefix: %#x\n", prefix);
>      tlb_flush_page(cs, 0);
>      tlb_flush_page(cs, TARGET_PAGE_SIZE);
> +    if (prefix != 0) {
> +        tlb_flush_page(cs, prefix);
> +        tlb_flush_page(cs, prefix + TARGET_PAGE_SIZE);
> +    }
> +    if (old_prefix != 0) {
> +        tlb_flush_page(cs, old_prefix);
> +        tlb_flush_page(cs, old_prefix + TARGET_PAGE_SIZE);
> +    }
>  }
>  
>  static void update_ckc_timer(CPUS390XState *env)



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v1] s390x/tcg: fix and optimize SPX (SET PREFIX)
  2021-08-05 12:59 [PATCH v1] s390x/tcg: fix and optimize SPX (SET PREFIX) David Hildenbrand
  2021-08-05 13:44 ` Claudio Imbrenda
@ 2021-08-06  5:21 ` Thomas Huth
  2021-08-06 11:17 ` Cornelia Huck
  2021-08-10 12:25 ` Cornelia Huck
  3 siblings, 0 replies; 6+ messages in thread
From: Thomas Huth @ 2021-08-06  5:21 UTC (permalink / raw)
  To: David Hildenbrand, qemu-devel
  Cc: Claudio Imbrenda, qemu-s390x, Cornelia Huck, Richard Henderson

On 05/08/2021 14.59, David Hildenbrand wrote:
> We not only invalidate the translation of the range 0x0-0x2000, we also
> invalidate the translation of the new prefix range and the translation
> of the old prefix range -- because real2abs would return different
> results for all of these ranges when changing the prefix location.
> 
> This fixes the kvm-unit-tests "edat" test that just hangs before this
> patch because we end up clearing the new prefix area instead of the old
> prefix area.
> 
> While at it, let's not do anything in case the prefix doesn't change.
> 
> Cc: Richard Henderson <richard.henderson@linaro.org>
> Cc: David Hildenbrand <david@redhat.com>
> Cc: Cornelia Huck <cohuck@redhat.com>
> Cc: Thomas Huth <thuth@redhat.com>
> Cc: Claudio Imbrenda <imbrenda@linux.ibm.com>
> Cc: qemu-s390x@nongnu.org
> Signed-off-by: David Hildenbrand <david@redhat.com>
> ---
>   target/s390x/tcg/misc_helper.c | 15 ++++++++++++++-
>   1 file changed, 14 insertions(+), 1 deletion(-)
> 
> diff --git a/target/s390x/tcg/misc_helper.c b/target/s390x/tcg/misc_helper.c
> index 33e6999e15..aab9c47747 100644
> --- a/target/s390x/tcg/misc_helper.c
> +++ b/target/s390x/tcg/misc_helper.c
> @@ -151,13 +151,26 @@ void HELPER(diag)(CPUS390XState *env, uint32_t r1, uint32_t r3, uint32_t num)
>   /* Set Prefix */
>   void HELPER(spx)(CPUS390XState *env, uint64_t a1)
>   {
> +    const uint32_t prefix = a1 & 0x7fffe000;
> +    const uint32_t old_prefix = env->psa;
>       CPUState *cs = env_cpu(env);
> -    uint32_t prefix = a1 & 0x7fffe000;
> +
> +    if (prefix == old_prefix) {
> +        return;
> +    }
>   
>       env->psa = prefix;
>       HELPER_LOG("prefix: %#x\n", prefix);
>       tlb_flush_page(cs, 0);
>       tlb_flush_page(cs, TARGET_PAGE_SIZE);
> +    if (prefix != 0) {
> +        tlb_flush_page(cs, prefix);
> +        tlb_flush_page(cs, prefix + TARGET_PAGE_SIZE);
> +    }
> +    if (old_prefix != 0) {
> +        tlb_flush_page(cs, old_prefix);
> +        tlb_flush_page(cs, old_prefix + TARGET_PAGE_SIZE);
> +    }
>   }

Sounds reasonable.

Reviewed-by: Thomas Huth <thuth@redhat.com>



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v1] s390x/tcg: fix and optimize SPX (SET PREFIX)
  2021-08-05 12:59 [PATCH v1] s390x/tcg: fix and optimize SPX (SET PREFIX) David Hildenbrand
  2021-08-05 13:44 ` Claudio Imbrenda
  2021-08-06  5:21 ` Thomas Huth
@ 2021-08-06 11:17 ` Cornelia Huck
  2021-08-06 11:30   ` David Hildenbrand
  2021-08-10 12:25 ` Cornelia Huck
  3 siblings, 1 reply; 6+ messages in thread
From: Cornelia Huck @ 2021-08-06 11:17 UTC (permalink / raw)
  To: David Hildenbrand, qemu-devel
  Cc: Thomas Huth, Claudio Imbrenda, Richard Henderson, qemu-s390x,
	David Hildenbrand

On Thu, Aug 05 2021, David Hildenbrand <david@redhat.com> wrote:

> We not only invalidate the translation of the range 0x0-0x2000, we also
> invalidate the translation of the new prefix range and the translation
> of the old prefix range -- because real2abs would return different
> results for all of these ranges when changing the prefix location.
>
> This fixes the kvm-unit-tests "edat" test that just hangs before this
> patch because we end up clearing the new prefix area instead of the old
> prefix area.
>
> While at it, let's not do anything in case the prefix doesn't change.
>
> Cc: Richard Henderson <richard.henderson@linaro.org>
> Cc: David Hildenbrand <david@redhat.com>
> Cc: Cornelia Huck <cohuck@redhat.com>
> Cc: Thomas Huth <thuth@redhat.com>
> Cc: Claudio Imbrenda <imbrenda@linux.ibm.com>
> Cc: qemu-s390x@nongnu.org
> Signed-off-by: David Hildenbrand <david@redhat.com>
> ---
>  target/s390x/tcg/misc_helper.c | 15 ++++++++++++++-
>  1 file changed, 14 insertions(+), 1 deletion(-)

Is this still -rc material? Especially as we are late in the -rc cycle
already.



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v1] s390x/tcg: fix and optimize SPX (SET PREFIX)
  2021-08-06 11:17 ` Cornelia Huck
@ 2021-08-06 11:30   ` David Hildenbrand
  0 siblings, 0 replies; 6+ messages in thread
From: David Hildenbrand @ 2021-08-06 11:30 UTC (permalink / raw)
  To: Cornelia Huck, qemu-devel
  Cc: Thomas Huth, Claudio Imbrenda, Richard Henderson, qemu-s390x

On 06.08.21 13:17, Cornelia Huck wrote:
> On Thu, Aug 05 2021, David Hildenbrand <david@redhat.com> wrote:
> 
>> We not only invalidate the translation of the range 0x0-0x2000, we also
>> invalidate the translation of the new prefix range and the translation
>> of the old prefix range -- because real2abs would return different
>> results for all of these ranges when changing the prefix location.
>>
>> This fixes the kvm-unit-tests "edat" test that just hangs before this
>> patch because we end up clearing the new prefix area instead of the old
>> prefix area.
>>
>> While at it, let's not do anything in case the prefix doesn't change.
>>
>> Cc: Richard Henderson <richard.henderson@linaro.org>
>> Cc: David Hildenbrand <david@redhat.com>
>> Cc: Cornelia Huck <cohuck@redhat.com>
>> Cc: Thomas Huth <thuth@redhat.com>
>> Cc: Claudio Imbrenda <imbrenda@linux.ibm.com>
>> Cc: qemu-s390x@nongnu.org
>> Signed-off-by: David Hildenbrand <david@redhat.com>
>> ---
>>   target/s390x/tcg/misc_helper.c | 15 ++++++++++++++-
>>   1 file changed, 14 insertions(+), 1 deletion(-)
> 
> Is this still -rc material? Especially as we are late in the -rc cycle
> already.
> 

It's been broken forever, this can wait I guess.

-- 
Thanks,

David / dhildenb



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v1] s390x/tcg: fix and optimize SPX (SET PREFIX)
  2021-08-05 12:59 [PATCH v1] s390x/tcg: fix and optimize SPX (SET PREFIX) David Hildenbrand
                   ` (2 preceding siblings ...)
  2021-08-06 11:17 ` Cornelia Huck
@ 2021-08-10 12:25 ` Cornelia Huck
  3 siblings, 0 replies; 6+ messages in thread
From: Cornelia Huck @ 2021-08-10 12:25 UTC (permalink / raw)
  To: David Hildenbrand, qemu-devel
  Cc: Thomas Huth, Claudio Imbrenda, Richard Henderson, qemu-s390x,
	David Hildenbrand

On Thu, Aug 05 2021, David Hildenbrand <david@redhat.com> wrote:

> We not only invalidate the translation of the range 0x0-0x2000, we also
> invalidate the translation of the new prefix range and the translation
> of the old prefix range -- because real2abs would return different
> results for all of these ranges when changing the prefix location.
>
> This fixes the kvm-unit-tests "edat" test that just hangs before this
> patch because we end up clearing the new prefix area instead of the old
> prefix area.
>
> While at it, let's not do anything in case the prefix doesn't change.
>
> Cc: Richard Henderson <richard.henderson@linaro.org>
> Cc: David Hildenbrand <david@redhat.com>
> Cc: Cornelia Huck <cohuck@redhat.com>
> Cc: Thomas Huth <thuth@redhat.com>
> Cc: Claudio Imbrenda <imbrenda@linux.ibm.com>
> Cc: qemu-s390x@nongnu.org
> Signed-off-by: David Hildenbrand <david@redhat.com>
> ---
>  target/s390x/tcg/misc_helper.c | 15 ++++++++++++++-
>  1 file changed, 14 insertions(+), 1 deletion(-)

Thanks, applied.



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-08-10 12:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-05 12:59 [PATCH v1] s390x/tcg: fix and optimize SPX (SET PREFIX) David Hildenbrand
2021-08-05 13:44 ` Claudio Imbrenda
2021-08-06  5:21 ` Thomas Huth
2021-08-06 11:17 ` Cornelia Huck
2021-08-06 11:30   ` David Hildenbrand
2021-08-10 12:25 ` Cornelia Huck

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.