mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
s390/pgtable: Fix gmap notifier address
The address of the gmap notifier was broken, resulting in unhandled validity intercepts in KVM. Fix the rmap->vmaddr to be on a segment boundary. Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
8b811bae69
commit
e86cbd8765
@ -492,7 +492,7 @@ static int gmap_connect_pgtable(unsigned long address, unsigned long segment,
|
||||
mp = (struct gmap_pgtable *) page->index;
|
||||
rmap->gmap = gmap;
|
||||
rmap->entry = segment_ptr;
|
||||
rmap->vmaddr = address;
|
||||
rmap->vmaddr = address & PMD_MASK;
|
||||
spin_lock(&mm->page_table_lock);
|
||||
if (*segment_ptr == segment) {
|
||||
list_add(&rmap->list, &mp->mapper);
|
||||
|
Loading…
Reference in New Issue
Block a user