mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 15:42:46 +00:00
s390/mm: Check for valid vma before zapping in gmap_discard
Userspace could have munmapped the area before doing unmapping from
the gmap. This would leave us with a valid vmaddr, but an invalid vma
from which we would try to zap memory.
Let's check before using the vma.
Fixes: 1e133ab296
("s390/mm: split arch/s390/mm/pgtable.c")
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Message-Id: <20180816082432.78828-1-frankja@linux.ibm.com>
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
This commit is contained in:
parent
df88f3181f
commit
1843abd032
1 changed files with 3 additions and 1 deletions
|
@ -708,11 +708,13 @@ void gmap_discard(struct gmap *gmap, unsigned long from, unsigned long to)
|
||||||
vmaddr |= gaddr & ~PMD_MASK;
|
vmaddr |= gaddr & ~PMD_MASK;
|
||||||
/* Find vma in the parent mm */
|
/* Find vma in the parent mm */
|
||||||
vma = find_vma(gmap->mm, vmaddr);
|
vma = find_vma(gmap->mm, vmaddr);
|
||||||
|
if (!vma)
|
||||||
|
continue;
|
||||||
/*
|
/*
|
||||||
* We do not discard pages that are backed by
|
* We do not discard pages that are backed by
|
||||||
* hugetlbfs, so we don't have to refault them.
|
* hugetlbfs, so we don't have to refault them.
|
||||||
*/
|
*/
|
||||||
if (vma && is_vm_hugetlb_page(vma))
|
if (is_vm_hugetlb_page(vma))
|
||||||
continue;
|
continue;
|
||||||
size = min(to - gaddr, PMD_SIZE - (gaddr & ~PMD_MASK));
|
size = min(to - gaddr, PMD_SIZE - (gaddr & ~PMD_MASK));
|
||||||
zap_page_range(vma, vmaddr, size);
|
zap_page_range(vma, vmaddr, size);
|
||||||
|
|
Loading…
Reference in a new issue