* [Qemu-devel] [PATCH] PowerPC: Add TM bits into msr_mask
@ 2018-02-28 1:51 wei.guo.simon
2018-03-05 6:22 ` David Gibson
0 siblings, 1 reply; 3+ messages in thread
From: wei.guo.simon @ 2018-02-28 1:51 UTC (permalink / raw)
To: qemu-ppc; +Cc: qemu-devel, David Gibson, Alexander Graf, Simon Guo
From: Simon Guo <wei.guo.simon@gmail.com>
During migration, cpu_post_load() will use msr_mask to determine which
PPC MSR bits will be sync to the target side. Hardware Transaction
Memory(HTM) has been supported since Power8. This patch adds TM/TS bits
into msr_mask for Power8, so that transactional application can be
migrated across qemu.
Signed-off-by: Simon Guo <wei.guo.simon@gmail.com>
---
target/ppc/translate_init.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/target/ppc/translate_init.c b/target/ppc/translate_init.c
index 55c99c9..a438721 100644
--- a/target/ppc/translate_init.c
+++ b/target/ppc/translate_init.c
@@ -8689,6 +8689,9 @@ POWERPC_FAMILY(POWER8)(ObjectClass *oc, void *data)
(1ull << MSR_DR) |
(1ull << MSR_PMM) |
(1ull << MSR_RI) |
+ (1ull << MSR_TM) |
+ (1ull << MSR_TS0) |
+ (1ull << MSR_TS1) |
(1ull << MSR_LE);
pcc->mmu_model = POWERPC_MMU_2_07;
#if defined(CONFIG_SOFTMMU)
--
1.8.3.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] PowerPC: Add TM bits into msr_mask
2018-02-28 1:51 [Qemu-devel] [PATCH] PowerPC: Add TM bits into msr_mask wei.guo.simon
@ 2018-03-05 6:22 ` David Gibson
2018-03-05 11:02 ` Simon Guo
0 siblings, 1 reply; 3+ messages in thread
From: David Gibson @ 2018-03-05 6:22 UTC (permalink / raw)
To: wei.guo.simon; +Cc: qemu-ppc, qemu-devel, Alexander Graf
[-- Attachment #1: Type: text/plain, Size: 1981 bytes --]
On Wed, Feb 28, 2018 at 09:51:37AM +0800, wei.guo.simon@gmail.com wrote:
> From: Simon Guo <wei.guo.simon@gmail.com>
>
> During migration, cpu_post_load() will use msr_mask to determine which
> PPC MSR bits will be sync to the target side. Hardware Transaction
> Memory(HTM) has been supported since Power8. This patch adds TM/TS bits
> into msr_mask for Power8, so that transactional application can be
> migrated across qemu.
>
> Signed-off-by: Simon Guo <wei.guo.simon@gmail.com>
Sorry I've taken a while to respond to this.
This addresses a real bug, but doesn't get the details quite right.
First, the MSR_TM bit is *already* included in the msr_mask for POWER8
(it's a little above the context for this patch), though TS0 and TS1
were not.
Second, all MSR bits are sent to the far side, it's just that without
them in the MSR mask they'll be dropped instead of re-inserted into
KVM. That's the only reason the msr_mask is relevant to KVM (and TCG
doesn't support HTM anyway). The commit message needs to make that clearer.
> ---
> target/ppc/translate_init.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/target/ppc/translate_init.c b/target/ppc/translate_init.c
> index 55c99c9..a438721 100644
> --- a/target/ppc/translate_init.c
> +++ b/target/ppc/translate_init.c
> @@ -8689,6 +8689,9 @@ POWERPC_FAMILY(POWER8)(ObjectClass *oc, void *data)
> (1ull << MSR_DR) |
> (1ull << MSR_PMM) |
> (1ull << MSR_RI) |
> + (1ull << MSR_TM) |
> + (1ull << MSR_TS0) |
> + (1ull << MSR_TS1) |
> (1ull << MSR_LE);
> pcc->mmu_model = POWERPC_MMU_2_07;
> #if defined(CONFIG_SOFTMMU)
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] PowerPC: Add TM bits into msr_mask
2018-03-05 6:22 ` David Gibson
@ 2018-03-05 11:02 ` Simon Guo
0 siblings, 0 replies; 3+ messages in thread
From: Simon Guo @ 2018-03-05 11:02 UTC (permalink / raw)
To: David Gibson; +Cc: qemu-ppc, qemu-devel, Alexander Graf
Hi David,
On Mon, Mar 05, 2018 at 05:22:33PM +1100, David Gibson wrote:
> On Wed, Feb 28, 2018 at 09:51:37AM +0800, wei.guo.simon@gmail.com wrote:
> > From: Simon Guo <wei.guo.simon@gmail.com>
> >
> > During migration, cpu_post_load() will use msr_mask to determine which
> > PPC MSR bits will be sync to the target side. Hardware Transaction
> > Memory(HTM) has been supported since Power8. This patch adds TM/TS bits
> > into msr_mask for Power8, so that transactional application can be
> > migrated across qemu.
> >
> > Signed-off-by: Simon Guo <wei.guo.simon@gmail.com>
>
> Sorry I've taken a while to respond to this.
>
> This addresses a real bug, but doesn't get the details quite right.
>
> First, the MSR_TM bit is *already* included in the msr_mask for POWER8
> (it's a little above the context for this patch), though TS0 and TS1
> were not.
>
> Second, all MSR bits are sent to the far side, it's just that without
> them in the MSR mask they'll be dropped instead of re-inserted into
> KVM. That's the only reason the msr_mask is relevant to KVM (and TCG
> doesn't support HTM anyway). The commit message needs to make that clearer.
>
Thanks for the comments. I have sent v2 to correct the above.
Regards,
- Simon
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-03-05 11:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-28 1:51 [Qemu-devel] [PATCH] PowerPC: Add TM bits into msr_mask wei.guo.simon
2018-03-05 6:22 ` David Gibson
2018-03-05 11:02 ` Simon Guo
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).