KVM: s390: fix task size check
authorMartin Schwidefsky <schwidefsky@de.ibm.com>
Fri, 26 Jul 2013 13:04:03 +0000 (15:04 +0200)
committerWilly Tarreau <w@1wt.eu>
Tue, 20 Jun 2017 12:04:26 +0000 (14:04 +0200)
commitf7bbcabc5e963cc49e3e1b4e82f80117487868e7
tree4a29393d4690964ab7b97e49a5f06d6da82b9754
parent9f3a56a47922f7652f6051a99747a8b445fd3600
KVM: s390: fix task size check

The gmap_map_segment function uses PGDIR_SIZE in the check for the
maximum address in the tasks address space. This incorrectly limits
the amount of memory usable for a kvm guest to 4TB. The correct limit
is (1UL << 53). As the TASK_SIZE has different values (4TB vs 8PB)
dependent on the existance of the fourth page table level, create
a new define 'TASK_MAX_SIZE' for (1UL << 53).

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Willy Tarreau <w@1wt.eu>
arch/s390/include/asm/processor.h
arch/s390/mm/pgtable.c