On 2/28/19 12:36 AM, David Hildenbrand wrote: > On 27.02.19 17:02, Richard Henderson wrote: >> On 2/26/19 3:38 AM, David Hildenbrand wrote: >>> Also fairly easy to implement. One issue we have is that exceptions will >>> result in some vectors already being modified. At least handle it >>> consistently per vector by using a temporary vector. Good enough for >>> now, add a FIXME. >>> >>> Signed-off-by: David Hildenbrand <da...@redhat.com> >>> --- >>> target/s390x/insn-data.def | 2 ++ >>> target/s390x/translate_vx.inc.c | 26 ++++++++++++++++++++++++++ >>> 2 files changed, 28 insertions(+) >> >> I suppose the fixme is good enough. For the record, I think you could do the >> check with just two loads -- the first and last quadword. After that, none >> of >> the other loads can fault, and you can store everything else into the >> destination vectors as you read them. > > Aren't such approaches prone to races if other VCPUs invalidate page > tables/TLB entries?
No, because... > (or am I messing up things and the MMU of this VCPU won't be touched > while in this block and once we touched all applicable pages, it cannot > fail anymore?) Correct. If vcpu 1 does a global invalidate, the time at which vcpu 2 acknowledges that invalidate is somewhat fluid. VCPU 2 will see an interrupt, exit at a TB boundary, and then acknowledge. VCPU 1 has to wait for the ack before it knows the operation is complete. Thus no race within any given instruction's execution. r~