From: David Hildenbrand <david@redhat.com>
To: Pierre Morel <pmorel@linux.ibm.com>, kvm@vger.kernel.org
Cc: linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org,
borntraeger@de.ibm.com, frankja@linux.ibm.com, cohuck@redhat.com,
thuth@redhat.com, imbrenda@linux.ibm.com, hca@linux.ibm.com,
gor@linux.ibm.com, svens@linux.ibm.com
Subject: Re: [PATCH] KVM: s390: vsie: fix crycb virtual vs physical usage
Date: Mon, 5 Sep 2022 18:32:29 +0200 [thread overview]
Message-ID: <08c54ddd-b74e-9f6c-f5eb-13e994530ad6@redhat.com> (raw)
In-Reply-To: <20220905084148.234821-1-pmorel@linux.ibm.com>
On 05.09.22 10:41, Pierre Morel wrote:
> Prepare VSIE for architectural changes where lowmem kernel real and
> kernel virtual address are different.
Bear with me, it used to be
crycb = (struct kvm_s390_crypto_cb *) (unsigned long)crycb_o;
apcb_o = (unsigned long) &crycb->apcb0;
and now it's
apcb_o = crycb_o + offsetof(struct kvm_s390_crypto_cb, apcb0);
So the real issue seems to be
crycb = (struct kvm_s390_crypto_cb *) (unsigned long)crycb_o;
because crycb_o actually is a guest address and not a host address.
But now I'm confused, because I would have thought that the result
produced by both code would be identical (I completely agree that the
new variant is better).
How does this interact with "lowmem kernel real and kernel virtual
address are different." -- I would have thought that &crycb->apcb0
doesn't actually access any memory and only performs arithmetical
operations?
>
> When we get the original crycb from the guest crycb we can use the
> phys_to_virt transformation, which will use the host transformations,
> but we must use an offset to calculate the guest real address apcb
> and give it to read_guest_real().
Can you elaborate where phys_to_virt() comes into play?
If this is an actual fix (as indicated in the patch subject), should
this carry a
Fixes: 56019f9aca22 ("KVM: s390: vsie: Allow CRYCB FORMAT-2")
--
Thanks,
David / dhildenb
next prev parent reply other threads:[~2022-09-05 16:32 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-05 8:41 [PATCH] KVM: s390: vsie: fix crycb virtual vs physical usage Pierre Morel
2022-09-05 16:32 ` David Hildenbrand [this message]
2022-09-12 8:03 ` Pierre Morel
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=08c54ddd-b74e-9f6c-f5eb-13e994530ad6@redhat.com \
--to=david@redhat.com \
--cc=borntraeger@de.ibm.com \
--cc=cohuck@redhat.com \
--cc=frankja@linux.ibm.com \
--cc=gor@linux.ibm.com \
--cc=hca@linux.ibm.com \
--cc=imbrenda@linux.ibm.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=pmorel@linux.ibm.com \
--cc=svens@linux.ibm.com \
--cc=thuth@redhat.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